r50621 - /trunk/libmoosex-storage-perl/debian/patches/remove-best-dep.patch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Jan 10 03:38:10 UTC 2010


Author: jawnsy-guest
Date: Sun Jan 10 03:37:58 2010
New Revision: 50621

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50621
Log:
update patch per changes in MX::Storage git

Modified:
    trunk/libmoosex-storage-perl/debian/patches/remove-best-dep.patch

Modified: trunk/libmoosex-storage-perl/debian/patches/remove-best-dep.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-storage-perl/debian/patches/remove-best-dep.patch?rev=50621&op=diff
==============================================================================
--- trunk/libmoosex-storage-perl/debian/patches/remove-best-dep.patch (original)
+++ trunk/libmoosex-storage-perl/debian/patches/remove-best-dep.patch Sun Jan 10 03:37:58 2010
@@ -12,19 +12,18 @@
 -    [ qw[YAML::Syck YAML] ],
 -    [ qw[Load Dump] ]
 -];
-+use YAML qw(Load Dump);
++use YAML::Any qw(Load Dump);
  
  our $VERSION   = '0.23';
  our $AUTHORITY = 'cpan:STEVAN';
 --- a/t/020_basic_yaml.t
 +++ b/t/020_basic_yaml.t
-@@ -5,12 +5,12 @@
- 
+@@ -6,11 +6,11 @@
  use Test::More;
  
-+use YAML;
-+
  BEGIN {
++    eval "use YAML::Any";
++    plan skip_all => "YAML::Any is required for this test" if $@;
      eval "use Test::YAML::Valid";
      plan skip_all => "Test::YAML::Valid is required for this test" if $@;            
 -    eval "use Best [[qw(YAML::Syck YAML)]]";
@@ -133,3 +132,14 @@
  }
  
  {
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -20,7 +20,7 @@
+ 
+ feature 'YAML',
+   -default            => 1,
+-  'Best'              => '0.1',
++  'YAML::Any'         => '0',
+   'Test::YAML::Valid' => '0';
+ 
+ feature 'Storable',




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