r37843 - in /trunk/libsearch-gin-perl: debian/changelog debian/patches/ debian/patches/fix_deprecated_warning.patch debian/patches/series lib/Search/GIN/Extract/Attributes.pm

franck-guest at users.alioth.debian.org franck-guest at users.alioth.debian.org
Mon Jun 8 07:06:59 UTC 2009


Author: franck-guest
Date: Mon Jun  8 07:06:54 2009
New Revision: 37843

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=37843
Log:
add a patch to fix the deprecated warning

Added:
    trunk/libsearch-gin-perl/debian/patches/
    trunk/libsearch-gin-perl/debian/patches/fix_deprecated_warning.patch
    trunk/libsearch-gin-perl/debian/patches/series
Modified:
    trunk/libsearch-gin-perl/debian/changelog
    trunk/libsearch-gin-perl/lib/Search/GIN/Extract/Attributes.pm

Modified: trunk/libsearch-gin-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsearch-gin-perl/debian/changelog?rev=37843&op=diff
==============================================================================
--- trunk/libsearch-gin-perl/debian/changelog (original)
+++ trunk/libsearch-gin-perl/debian/changelog Mon Jun  8 07:06:54 2009
@@ -1,9 +1,8 @@
 libsearch-gin-perl (0.03-1) UNRELEASED; urgency=low
+
+  requires libtest-tempdir-perl in NEW
 
   [ franck cuny ]
   * Initial Release (Closes: #531403).
 
-  [ Nathan Handler ]
-  * debian/watch: Update to ignore development releases.
-
  -- franck cuny <franck at lumberjaph.net>  Mon, 1 Jun 2009 11:05:30 +0200

Added: trunk/libsearch-gin-perl/debian/patches/fix_deprecated_warning.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsearch-gin-perl/debian/patches/fix_deprecated_warning.patch?rev=37843&op=file
==============================================================================
--- trunk/libsearch-gin-perl/debian/patches/fix_deprecated_warning.patch (added)
+++ trunk/libsearch-gin-perl/debian/patches/fix_deprecated_warning.patch Mon Jun  8 07:06:54 2009
@@ -1,0 +1,13 @@
+Index: libsearch-gin-perl/lib/Search/GIN/Extract/Attributes.pm
+===================================================================
+--- libsearch-gin-perl.orig/lib/Search/GIN/Extract/Attributes.pm	2009-06-08 09:01:26.000000000 +0200
++++ libsearch-gin-perl/lib/Search/GIN/Extract/Attributes.pm	2009-06-08 09:01:44.000000000 +0200
+@@ -33,7 +33,7 @@
+     if ( $self->has_attributes ) {
+         return grep { defined } map { $meta->find_attribute_by_name($_) } @{ $self->attributes };
+     } else {
+-        return $meta->compute_all_applicable_attributes;
++        return $meta->get_all_attributes;
+     }
+ }
+ 

Added: trunk/libsearch-gin-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsearch-gin-perl/debian/patches/series?rev=37843&op=file
==============================================================================
--- trunk/libsearch-gin-perl/debian/patches/series (added)
+++ trunk/libsearch-gin-perl/debian/patches/series Mon Jun  8 07:06:54 2009
@@ -1,0 +1,1 @@
+fix_deprecated_warning.patch

Modified: trunk/libsearch-gin-perl/lib/Search/GIN/Extract/Attributes.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsearch-gin-perl/lib/Search/GIN/Extract/Attributes.pm?rev=37843&op=diff
==============================================================================
--- trunk/libsearch-gin-perl/lib/Search/GIN/Extract/Attributes.pm (original)
+++ trunk/libsearch-gin-perl/lib/Search/GIN/Extract/Attributes.pm Mon Jun  8 07:06:54 2009
@@ -33,7 +33,7 @@
     if ( $self->has_attributes ) {
         return grep { defined } map { $meta->find_attribute_by_name($_) } @{ $self->attributes };
     } else {
-        return $meta->compute_all_applicable_attributes;
+        return $meta->get_all_attributes;
     }
 }
 




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