r26120 - in /trunk/libflickr-api-perl/debian: changelog control patches/00-test-no-internet.patch patches/series patches/should_query_for_tags_not_elements patches/test-no-internet rules

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Sat Oct 18 00:01:12 UTC 2008


Author: gwolf
Date: Sat Oct 18 00:01:04 2008
New Revision: 26120

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26120
Log:
Switched over to quilt; applied a fix to wrong API call (#502312)

Added:
    trunk/libflickr-api-perl/debian/patches/series
    trunk/libflickr-api-perl/debian/patches/should_query_for_tags_not_elements
    trunk/libflickr-api-perl/debian/patches/test-no-internet   (props changed)
      - copied unchanged from r26119, trunk/libflickr-api-perl/debian/patches/00-test-no-internet.patch
Removed:
    trunk/libflickr-api-perl/debian/patches/00-test-no-internet.patch
Modified:
    trunk/libflickr-api-perl/debian/changelog
    trunk/libflickr-api-perl/debian/control
    trunk/libflickr-api-perl/debian/rules

Modified: trunk/libflickr-api-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libflickr-api-perl/debian/changelog?rev=26120&op=diff
==============================================================================
--- trunk/libflickr-api-perl/debian/changelog (original)
+++ trunk/libflickr-api-perl/debian/changelog Sat Oct 18 00:01:04 2008
@@ -1,3 +1,11 @@
+libflickr-api-perl (1.01-2) unstable; urgency=low
+
+  * Switched over the patch system to quilt
+  * Fixed bug that called the wrong method on the API, resulting in many
+    operations being unperformable (Closes: #5023312)
+
+ -- Gunnar Wolf <gwolf at debian.org>  Fri, 17 Oct 2008 18:52:36 -0500
+
 libflickr-api-perl (1.01-1) unstable; urgency=low
 
   [ Gunnar Wolf ]

Modified: trunk/libflickr-api-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libflickr-api-perl/debian/control?rev=26120&op=diff
==============================================================================
--- trunk/libflickr-api-perl/debian/control (original)
+++ trunk/libflickr-api-perl/debian/control Sat Oct 18 00:01:04 2008
@@ -6,7 +6,7 @@
  Jose Luis Rivas <ghostbar38 at gmail.com>, Gunnar Wolf <gwolf at debian.org>
 Build-Depends-Indep: perl, libxml-parser-lite-tree-perl (>= 0.03-2),
  libwww-perl, liburi-perl
-Build-Depends: cdbs, debhelper (>= 6)
+Build-Depends: cdbs, debhelper (>= 6), quilt
 Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/Flickr-API/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libflickr-api-perl/

Added: trunk/libflickr-api-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libflickr-api-perl/debian/patches/series?rev=26120&op=file
==============================================================================
--- trunk/libflickr-api-perl/debian/patches/series (added)
+++ trunk/libflickr-api-perl/debian/patches/series Sat Oct 18 00:01:04 2008
@@ -1,0 +1,2 @@
+should_query_for_tags_not_elements
+test-no-internet

Added: trunk/libflickr-api-perl/debian/patches/should_query_for_tags_not_elements
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libflickr-api-perl/debian/patches/should_query_for_tags_not_elements?rev=26120&op=file
==============================================================================
--- trunk/libflickr-api-perl/debian/patches/should_query_for_tags_not_elements (added)
+++ trunk/libflickr-api-perl/debian/patches/should_query_for_tags_not_elements Sat Oct 18 00:01:04 2008
@@ -1,0 +1,13 @@
+Index: libflickr-api-perl/lib/Flickr/API.pm
+===================================================================
+--- libflickr-api-perl.orig/lib/Flickr/API.pm	2008-10-17 18:58:24.000000000 -0500
++++ libflickr-api-perl/lib/Flickr/API.pm	2008-10-17 18:58:28.000000000 -0500
+@@ -135,7 +135,7 @@
+ sub _find_tag {
+ 	my ($self, $children) = @_;
+ 	for my $child(@{$children}){
+-		return $child if $child->{type} eq 'element';
++		return $child if $child->{type} eq 'tag';
+ 	}
+ 	return {};
+ }

Propchange: trunk/libflickr-api-perl/debian/patches/test-no-internet
------------------------------------------------------------------------------
    svn:mergeinfo = 

Modified: trunk/libflickr-api-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libflickr-api-perl/debian/rules?rev=26120&op=diff
==============================================================================
--- trunk/libflickr-api-perl/debian/rules (original)
+++ trunk/libflickr-api-perl/debian/rules Sat Oct 18 00:01:04 2008
@@ -2,7 +2,7 @@
   
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/perlmodule.mk
-include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 # set DEBIAN_BUILD so test.pl will skip network connections
 DEB_MAKE_CHECK_TARGET=test DEBIAN_BUILD=1




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