diff -Nru libyaml-perl-0.81/Changes libyaml-perl-0.84/Changes --- libyaml-perl-0.81/Changes 2012-04-19 18:04:02.000000000 +0000 +++ libyaml-perl-0.84/Changes 2012-07-13 18:18:14.000000000 +0000 @@ -1,4 +1,20 @@ --- +version: 0.84 +date: Fri Jul 13 18:17:27 GMT 2012 +changes: +- Resolve distribution error that caused .git to be shipped in the .tar.gz +--- +version: 0.83 +date: Fri Jul 13 15:44:03 GMT 2012 +changes: +- Only call stat() and tell() on a filehandle if fileno existed +- Explicit tied() call on globs to avoid a 5.16 deprecation warning +--- +version: 0.82 +date: Thu Jul 12 18:49:45 GMT 2012 +changes: +- Test scalar @array rather than deprecated defined @array (Sebastian Stumpf) +--- version: 0.81 date: Thu Apr 19 11:03:38 PDT 2012 changes: diff -Nru libyaml-perl-0.81/LICENSE libyaml-perl-0.84/LICENSE --- libyaml-perl-0.81/LICENSE 2012-04-19 18:04:03.000000000 +0000 +++ libyaml-perl-0.84/LICENSE 2012-07-13 18:18:18.000000000 +0000 @@ -18,16 +18,15 @@ The GNU General Public License, Version 1, February 1989 - GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 + GNU GENERAL PUBLIC LICENSE + Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Suite 500, Boston, MA 02110-1335 USA - + 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - Preamble + Preamble The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public @@ -68,7 +67,7 @@ The precise terms and conditions for copying, distribution and modification follow. - GNU GENERAL PUBLIC LICENSE + GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any program or other work which @@ -186,7 +185,7 @@ of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - NO WARRANTY + NO WARRANTY 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN @@ -208,9 +207,9 @@ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS - Appendix: How to Apply These Terms to Your New Programs + Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to humanity, the best way to achieve this is to make it @@ -236,9 +235,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA - + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. Also add information on how to contact you by electronic and paper mail. diff -Nru libyaml-perl-0.81/META.yml libyaml-perl-0.84/META.yml --- libyaml-perl-0.81/META.yml 2012-04-19 18:04:04.000000000 +0000 +++ libyaml-perl-0.84/META.yml 2012-07-13 18:18:20.000000000 +0000 @@ -30,4 +30,4 @@ type: git url: git://github.com/ingydotnet/yaml-pm.git web: https://github.com/ingydotnet/yaml-pm/tree -version: 0.81 +version: 0.84 diff -Nru libyaml-perl-0.81/debian/changelog libyaml-perl-0.84/debian/changelog --- libyaml-perl-0.81/debian/changelog 2012-04-22 20:01:45.000000000 +0000 +++ libyaml-perl-0.84/debian/changelog 2012-07-23 20:01:28.000000000 +0000 @@ -1,3 +1,10 @@ +libyaml-perl (0.84-1) unstable; urgency=low + + * Team upload + * New upstream release + + -- Nuno Carvalho Fri, 13 Jul 2012 21:33:16 +0100 + libyaml-perl (0.81-1) unstable; urgency=low * New upstream release. diff -Nru libyaml-perl-0.81/lib/Test/YAML.pm libyaml-perl-0.84/lib/Test/YAML.pm --- libyaml-perl-0.81/lib/Test/YAML.pm 2012-04-18 03:09:19.000000000 +0000 +++ libyaml-perl-0.84/lib/Test/YAML.pm 2012-07-13 17:57:03.000000000 +0000 @@ -3,7 +3,7 @@ use Test::Base 0.47 -Base; use lib 'lib'; -our $VERSION = '0.81'; +our $VERSION = '0.84'; our $YAML = 'YAML'; our @EXPORT = qw( diff -Nru libyaml-perl-0.81/lib/YAML/Any.pm libyaml-perl-0.84/lib/YAML/Any.pm --- libyaml-perl-0.81/lib/YAML/Any.pm 2012-04-18 03:08:13.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Any.pm 2012-07-13 17:57:03.000000000 +0000 @@ -1,6 +1,6 @@ package YAML::Any; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use strict; use Exporter (); @@ -95,7 +95,7 @@ sub order { return @YAML::Any::_TEST_ORDER - if defined @YAML::Any::_TEST_ORDER; + if @YAML::Any::_TEST_ORDER; return @implementations; } diff -Nru libyaml-perl-0.81/lib/YAML/Dumper/Base.pm libyaml-perl-0.84/lib/YAML/Dumper/Base.pm --- libyaml-perl-0.81/lib/YAML/Dumper/Base.pm 2012-04-18 03:09:14.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Dumper/Base.pm 2012-07-13 17:57:03.000000000 +0000 @@ -1,7 +1,7 @@ package YAML::Dumper::Base; use YAML::Mo; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use YAML::Node; diff -Nru libyaml-perl-0.81/lib/YAML/Dumper.pm libyaml-perl-0.84/lib/YAML/Dumper.pm --- libyaml-perl-0.81/lib/YAML/Dumper.pm 2012-04-18 03:08:59.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Dumper.pm 2012-07-13 17:57:03.000000000 +0000 @@ -2,7 +2,7 @@ use YAML::Mo; extends 'YAML::Dumper::Base'; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use YAML::Dumper::Base; use YAML::Node; diff -Nru libyaml-perl-0.81/lib/YAML/Error.pm libyaml-perl-0.84/lib/YAML/Error.pm --- libyaml-perl-0.81/lib/YAML/Error.pm 2012-04-18 03:09:10.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Error.pm 2012-07-13 17:57:03.000000000 +0000 @@ -1,7 +1,7 @@ package YAML::Error; use YAML::Mo; -our $VERSION = '0.81'; +our $VERSION = '0.84'; has 'code'; has 'type' => default => sub {'Error'}; diff -Nru libyaml-perl-0.81/lib/YAML/Loader/Base.pm libyaml-perl-0.84/lib/YAML/Loader/Base.pm --- libyaml-perl-0.81/lib/YAML/Loader/Base.pm 2012-04-18 03:08:39.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Loader/Base.pm 2012-07-13 17:57:03.000000000 +0000 @@ -1,7 +1,7 @@ package YAML::Loader::Base; use YAML::Mo; -our $VERSION = '0.81'; +our $VERSION = '0.84'; has load_code => default => sub {0}; has stream => default => sub {''}; diff -Nru libyaml-perl-0.81/lib/YAML/Loader.pm libyaml-perl-0.84/lib/YAML/Loader.pm --- libyaml-perl-0.81/lib/YAML/Loader.pm 2012-04-18 03:09:05.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Loader.pm 2012-07-13 17:57:03.000000000 +0000 @@ -2,7 +2,7 @@ use YAML::Mo; extends 'YAML::Loader::Base'; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use YAML::Loader::Base; use YAML::Types; diff -Nru libyaml-perl-0.81/lib/YAML/Marshall.pm libyaml-perl-0.84/lib/YAML/Marshall.pm --- libyaml-perl-0.81/lib/YAML/Marshall.pm 2012-04-18 03:08:19.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Marshall.pm 2012-07-13 17:57:03.000000000 +0000 @@ -2,7 +2,7 @@ use warnings; package YAML::Marshall; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use YAML::Node (); diff -Nru libyaml-perl-0.81/lib/YAML/Mo.pm libyaml-perl-0.84/lib/YAML/Mo.pm --- libyaml-perl-0.81/lib/YAML/Mo.pm 2012-04-19 18:00:14.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Mo.pm 2012-07-13 17:57:03.000000000 +0000 @@ -1,4 +1,4 @@ -package YAML::Mo; $VERSION = '0.81'; +package YAML::Mo; $VERSION = '0.84'; # use Mo qw[builder default import]; # The following line of code was produced from the previous line by # Mo::Inline version 0.31 diff -Nru libyaml-perl-0.81/lib/YAML/Node.pm libyaml-perl-0.84/lib/YAML/Node.pm --- libyaml-perl-0.81/lib/YAML/Node.pm 2012-04-18 03:08:46.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Node.pm 2012-07-13 17:57:03.000000000 +0000 @@ -2,7 +2,7 @@ use warnings; package YAML::Node; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use YAML::Tag; require YAML::Mo; @@ -19,6 +19,9 @@ elsif (ref($_[0]) eq 'ARRAY') { $self = tied(@{$_[0]}); } + elsif (ref(\$_[0]) eq 'GLOB') { + $self = tied(*{$_[0]}); + } else { $self = tied($_[0]); } diff -Nru libyaml-perl-0.81/lib/YAML/Tag.pm libyaml-perl-0.84/lib/YAML/Tag.pm --- libyaml-perl-0.81/lib/YAML/Tag.pm 2012-04-18 03:08:04.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Tag.pm 2012-07-13 17:57:03.000000000 +0000 @@ -2,7 +2,7 @@ use warnings; package YAML::Tag; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use overload '""' => sub { ${$_[0]} }; diff -Nru libyaml-perl-0.81/lib/YAML/Types.pm libyaml-perl-0.84/lib/YAML/Types.pm --- libyaml-perl-0.81/lib/YAML/Types.pm 2012-04-18 03:08:54.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML/Types.pm 2012-07-13 17:57:03.000000000 +0000 @@ -1,7 +1,7 @@ package YAML::Types; use YAML::Mo; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use YAML::Node; @@ -58,10 +58,9 @@ atime mtime ctime blksize blocks); undef $value; $value->{stat} = YAML::Node->new({}); - map {$value->{stat}{shift @stats} = $_} stat(*{$_[0]}); - $value->{fileno} = fileno(*{$_[0]}); - { + if ($value->{fileno} = fileno(*{$_[0]})) { local $^W; + map {$value->{stat}{shift @stats} = $_} stat(*{$_[0]}); $value->{tell} = tell(*{$_[0]}); } } diff -Nru libyaml-perl-0.81/lib/YAML.pm libyaml-perl-0.84/lib/YAML.pm --- libyaml-perl-0.81/lib/YAML.pm 2012-04-18 03:07:30.000000000 +0000 +++ libyaml-perl-0.84/lib/YAML.pm 2012-07-13 17:57:03.000000000 +0000 @@ -2,7 +2,7 @@ package YAML; use YAML::Mo; -our $VERSION = '0.81'; +our $VERSION = '0.84'; use Exporter; push @YAML::ISA, 'Exporter';