r52418 - in /trunk/libnet-amazon-s3-perl/debian: changelog control patches/series patches/use_ok.patch

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Wed Feb 10 00:10:01 UTC 2010


Author: gregoa
Date: Wed Feb 10 00:09:44 2010
New Revision: 52418

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52418
Log:
* New patch use_ok.patch: create a simple test that tries to use the module.
  Add necessary build dependencies.
* Remove version from perl build dependency.

Added:
    trunk/libnet-amazon-s3-perl/debian/patches/use_ok.patch
Modified:
    trunk/libnet-amazon-s3-perl/debian/changelog
    trunk/libnet-amazon-s3-perl/debian/control
    trunk/libnet-amazon-s3-perl/debian/patches/series

Modified: trunk/libnet-amazon-s3-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/changelog?rev=52418&op=diff
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/changelog (original)
+++ trunk/libnet-amazon-s3-perl/debian/changelog Wed Feb 10 00:09:44 2010
@@ -9,6 +9,9 @@
   * Add build dependency on libtest-exception-perl (closes: #569086).
   * Set Standards-Version to 3.8.4 (no changes).
   * Fix hashbang in examples.
+  * New patch use_ok.patch: create a simple test that tries to use the module.
+    Add necessary build dependencies.
+  * Remove version from perl build dependency.
 
  -- Ryan Niebur <ryan at debian.org>  Fri, 25 Sep 2009 00:25:43 -0700
 

Modified: trunk/libnet-amazon-s3-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/control?rev=52418&op=diff
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/control (original)
+++ trunk/libnet-amazon-s3-perl/debian/control Wed Feb 10 00:09:44 2010
@@ -2,11 +2,19 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7.0.50), 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,
- libmoosex-strictconstructor-perl, libregexp-common-perl,
- libtest-exception-perl
+Build-Depends-Indep: perl,
+ libclass-accessor-perl,
+ libdata-stream-bulk-perl,
+ libdigest-hmac-perl,
+ libdigest-md5-file-perl,
+ libmoose-perl,
+ libmoosex-strictconstructor-perl,
+ libmoosex-types-datetime-perl,
+ libregexp-common-perl,
+ libtest-exception-perl,
+ libtest-pod-coverage-perl,
+ libtest-pod-perl,
+ libxml-libxml-perl (>= 1.61)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Damyan Ivanov <dmn at debian.org>, gregor herrmann <gregoa at debian.org>,
  Ryan Niebur <ryan at debian.org>
@@ -18,13 +26,19 @@
 Package: libnet-amazon-s3-perl
 Architecture: all
 Depends: ${perl:Depends}, ${misc:Depends},
-         libclass-accessor-perl, libxml-libxml-perl (>= 1.61),
-         libdigest-hmac-perl, libwww-perl,
-         liburi-perl, libdigest-md5-file-perl,
-         liblwp-useragent-determined-perl, libmoose-perl,
-         libmoosex-strictconstructor-perl, libregexp-common-perl,
-         libdata-stream-bulk-perl, libdatetime-format-http-perl,
-         libmoosex-types-datetime-perl
+ libclass-accessor-perl,
+ libdata-stream-bulk-perl,
+ libdatetime-format-http-perl,
+ libdigest-hmac-perl,
+ libdigest-md5-file-perl,
+ liblwp-useragent-determined-perl,
+ libmoose-perl,
+ libmoosex-strictconstructor-perl,
+ libmoosex-types-datetime-perl,
+ libregexp-common-perl,
+ liburi-perl,
+ libwww-perl,
+ libxml-libxml-perl (>= 1.61)
 Description: Amazon S3 Perl API - Simple Storage Service
  Net::Amazon::S3 provides a Perlish interface to Amazon S3. From the
  developer blurb: "Amazon S3 is storage for the Internet. It is

Modified: 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=52418&op=diff
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/patches/series (original)
+++ trunk/libnet-amazon-s3-perl/debian/patches/series Wed Feb 10 00:09:44 2010
@@ -1,1 +1,2 @@
+use_ok.patch
 uri_escape_utf8.patch

Added: trunk/libnet-amazon-s3-perl/debian/patches/use_ok.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-s3-perl/debian/patches/use_ok.patch?rev=52418&op=file
==============================================================================
--- trunk/libnet-amazon-s3-perl/debian/patches/use_ok.patch (added)
+++ trunk/libnet-amazon-s3-perl/debian/patches/use_ok.patch Wed Feb 10 00:09:44 2010
@@ -1,0 +1,12 @@
+Author: gregor herrmann <gregoa at debian.org>
+Description: Additional test that just "use"es the module.
+ The other tests are skipped unfortunately, so lets do it separately.
+--- /dev/null
++++ b/t/00use.t
+@@ -0,0 +1,6 @@
++use warnings;
++use strict;
++use lib 'lib';
++use Test::More tests => 1;
++
++use_ok('Net::Amazon::S3');




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