[SCM] Debian packaging of libmodule-cpants-analyse-perl branch, master, updated. d236b82b6e5151aae478636f27c18c34df5a2d7b

gregor herrmann gregoa at debian.org
Fri Jun 8 21:14:25 UTC 2012


The following commit has been merged in the master branch:
commit bc692b1a15f0151a46ce038ee0b51cfe9b138c37
Author: gregor herrmann <gregoa at debian.org>
Date:   Fri Jun 8 23:00:59 2012 +0200

    Add patch to use YAML::Syck again (no YAML::Any in Debian); adjust
    dependencies.

diff --git a/debian/control b/debian/control
index d38e44d..4c5bdff 100644
--- a/debian/control
+++ b/debian/control
@@ -23,7 +23,7 @@ Build-Depends-Indep: perl,
  libtest-warn-perl,
  libtext-csv-xs-perl,
  libwww-perl,
- libyaml-any-perl
+ libyaml-syck-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Peter Pentchev <roam at ringlet.net>, Jonathan Yu <jawnsy at cpan.org>,
  Ryan Niebur <ryan at debian.org>, gregor herrmann <gregoa at debian.org>
@@ -52,7 +52,7 @@ Depends: ${misc:Depends}, ${perl:Depends},
  libtest-cpan-meta-yaml-perl,
  libtext-csv-xs-perl,
  libwww-perl,
- libyaml-any-perl
+ libyaml-syck-perl
 Description: Perl module to generate Kwalitee ratings for a distribution
  Module::CPANTS::Analyse is a utility module used by Test::Kwalitee and others
  to analyse CPAN distributions and determine their Kwalitee. Kwalitee is a set
diff --git a/debian/patches/03-yaml.patch b/debian/patches/03-yaml.patch
new file mode 100644
index 0000000..6849e7b
--- /dev/null
+++ b/debian/patches/03-yaml.patch
@@ -0,0 +1,39 @@
+Description: there's no YAML::Any in Debian yet, switch back to YAML::Syck
+Origin: vendor
+Forwarded: not-needed
+Author: gregor herrmann <gregoa at debian.org>
+Last-Update: 2012-06-08
+
+--- a/bin/cpants_lint.pl
++++ b/bin/cpants_lint.pl
+@@ -5,7 +5,7 @@
+ use Getopt::Long;
+ use IO::Capture::Stdout;
+ use Data::Dumper;
+-use YAML::Any;
++use YAML::Syck;
+ use File::Spec::Functions;
+ use Cwd;
+ use Pod::Usage;
+--- a/lib/Module/CPANTS/Analyse.pm
++++ b/lib/Module/CPANTS/Analyse.pm
+@@ -11,7 +11,7 @@
+ use Module::CPANTS::Kwalitee;
+ use IO::Capture::Stdout;
+ use IO::Capture::Stderr;
+-use YAML::Any qw(LoadFile);
++use YAML::Syck qw(LoadFile);
+ 
+ our $VERSION = '0.86';
+ 
+--- a/lib/Module/CPANTS/Kwalitee/MetaYML.pm
++++ b/lib/Module/CPANTS/Kwalitee/MetaYML.pm
+@@ -2,7 +2,7 @@
+ use warnings;
+ use strict;
+ use File::Spec::Functions qw(catfile);
+-use YAML::Any qw(Load LoadFile);
++use YAML::Syck qw(Load LoadFile);
+ use Test::CPAN::Meta::YAML::Version;
+ 
+ sub order { 20 }
diff --git a/debian/patches/series b/debian/patches/series
index 55b2d37..892c911 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 01-cpants-lint-rename.patch
 02-cpantserrors-pod.patch
+03-yaml.patch

-- 
Debian packaging of libmodule-cpants-analyse-perl



More information about the Pkg-perl-cvs-commits mailing list