r41561 - in /trunk/libnet-amazon-s3-perl/debian: README.source changelog control patches/ patches/series patches/uri_escape_utf8.patch rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Aug 9 15:41:05 UTC 2009


Author: gregoa
Date: Sun Aug  9 15:40:59 2009
New Revision: 41561

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41561
Log:
* New patch uri_escape_utf8.patch: add missing "use URI::Escape
  qw(uri_escape_utf8);" to lib/Net/Amazon/S3/HTTPRequest.pm; thanks to Erik
  Anderson for the bug report (closes: #531652). Add quilt framework.
* Minimize debian/rules.

Added:
    trunk/libnet-amazon-s3-perl/debian/README.source
    trunk/libnet-amazon-s3-perl/debian/patches/
    trunk/libnet-amazon-s3-perl/debian/patches/series
    trunk/libnet-amazon-s3-perl/debian/patches/uri_escape_utf8.patch
Modified:
    trunk/libnet-amazon-s3-perl/debian/changelog
    trunk/libnet-amazon-s3-perl/debian/control
    trunk/libnet-amazon-s3-perl/debian/rules

Added: trunk/libnet-amazon-s3-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/README.source?rev=41561&op=file
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/README.source (added)
+++ trunk/libnet-amazon-s3-perl/debian/README.source Sun Aug  9 15:40:59 2009
@@ -1,0 +1,5 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+See /usr/share/doc/quilt/README.source for a detailed explanation.

Modified: trunk/libnet-amazon-s3-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/changelog?rev=41561&op=diff
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/changelog (original)
+++ trunk/libnet-amazon-s3-perl/debian/changelog Sun Aug  9 15:40:59 2009
@@ -1,7 +1,4 @@
 libnet-amazon-s3-perl (0.52-1) UNRELEASED; urgency=low
-
-  IGNORE-VERSION: 0.52-1
-  No release necessary
 
   [ Jonathan Yu ]
   * Removed Alexis Sukrieh from Uploaders (Closes: #536135)
@@ -12,6 +9,12 @@
   [ Ryan Niebur ]
   * New upstream release
   * Debian Policy 3.8.2
+
+  [ gregor herrmann ]
+  * New patch uri_escape_utf8.patch: add missing "use URI::Escape
+    qw(uri_escape_utf8);" to lib/Net/Amazon/S3/HTTPRequest.pm; thanks to Erik
+    Anderson for the bug report (closes: #531652). Add quilt framework.
+  * Minimize debian/rules.
 
  -- Jonathan Yu <frequency at cpan.org>  Tue, 07 Jul 2009 11:33:00 -0400
 

Modified: trunk/libnet-amazon-s3-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/control?rev=41561&op=diff
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/control (original)
+++ trunk/libnet-amazon-s3-perl/debian/control Sun Aug  9 15:40:59 2009
@@ -1,7 +1,7 @@
 Source: libnet-amazon-s3-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7)
 Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl,
  libtest-pod-coverage-perl, libdigest-md5-file-perl,
  libxml-libxml-perl (>= 1.61), libclass-accessor-perl, libmoose-perl,

Added: trunk/libnet-amazon-s3-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/patches/series?rev=41561&op=file
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/patches/series (added)
+++ trunk/libnet-amazon-s3-perl/debian/patches/series Sun Aug  9 15:40:59 2009
@@ -1,0 +1,1 @@
+uri_escape_utf8.patch

Added: trunk/libnet-amazon-s3-perl/debian/patches/uri_escape_utf8.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/patches/uri_escape_utf8.patch?rev=41561&op=file
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/patches/uri_escape_utf8.patch (added)
+++ trunk/libnet-amazon-s3-perl/debian/patches/uri_escape_utf8.patch Sun Aug  9 15:40:59 2009
@@ -1,0 +1,14 @@
+Author: gregor herrmann <gregoa at debian.org>
+Bugs-Debian: #531652
+Description: add missing URI::Escape, since uri_escape_utf8 is used
+
+--- a/lib/Net/Amazon/S3/HTTPRequest.pm
++++ b/lib/Net/Amazon/S3/HTTPRequest.pm
+@@ -4,6 +4,7 @@
+ use HTTP::Date;
+ use MIME::Base64 qw(encode_base64);
+ use Moose::Util::TypeConstraints;
++use URI::Escape qw(uri_escape_utf8);
+ use URI::QueryParam;
+ 
+ my $METADATA_PREFIX      = 'x-amz-meta-';

Modified: trunk/libnet-amazon-s3-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/rules?rev=41561&op=diff
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/rules (original)
+++ trunk/libnet-amazon-s3-perl/debian/rules Sun Aug  9 15:40:59 2009
@@ -1,23 +1,4 @@
 #!/usr/bin/make -f
 
-build: build-stamp
-build-stamp:
-	dh build
-	touch $@
-
-clean:
-	dh $@
-
-install: install-stamp
-install-stamp: build-stamp
-	dh install
-	touch $@
-
-binary-arch:
-
-binary-indep: install
-	dh $@
-
-binary: binary-arch binary-indep
-
-.PHONY: binary binary-arch binary-indep install clean build
+%:
+	dh --with quilt $@




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