r44234 - in /trunk/libmoose-perl/debian: README.source changelog control patches/ patches/series patches/use-old-test-simple.patch rules

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Fri Sep 18 11:48:41 UTC 2009


Author: ansgar-guest
Date: Fri Sep 18 11:48:35 2009
New Revision: 44234

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=44234
Log:
  + new patch use-old-test-simple.patch to work around #541342.
  + add quilt framework and README.source.

Added:
    trunk/libmoose-perl/debian/README.source
    trunk/libmoose-perl/debian/patches/
    trunk/libmoose-perl/debian/patches/series
    trunk/libmoose-perl/debian/patches/use-old-test-simple.patch
Modified:
    trunk/libmoose-perl/debian/changelog
    trunk/libmoose-perl/debian/control
    trunk/libmoose-perl/debian/rules

Added: trunk/libmoose-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/README.source?rev=44234&op=file
==============================================================================
--- trunk/libmoose-perl/debian/README.source (added)
+++ trunk/libmoose-perl/debian/README.source Fri Sep 18 11:48:35 2009
@@ -1,0 +1,6 @@
+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/libmoose-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/changelog?rev=44234&op=diff
==============================================================================
--- trunk/libmoose-perl/debian/changelog (original)
+++ trunk/libmoose-perl/debian/changelog Fri Sep 18 11:48:35 2009
@@ -12,6 +12,8 @@
     + Breaks libmoosex-attributehelpers-perl (<< 0.21+),
       libmoosex-classattribute-perl (<< 0.09+),
       libmoosex-singleton-perl (<< 0.19+), libmoosex-types-perl (<< 0.19+)
+    + new patch use-old-test-simple.patch to work around #541342.
+    + add quilt framework and README.source.
   * Bump Standards-Version to 3.8.3 (no changes).
 
  -- Ansgar Burchardt <ansgar at 43-1.org>  Thu, 17 Sep 2009 19:59:39 +0200

Modified: trunk/libmoose-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/control?rev=44234&op=diff
==============================================================================
--- trunk/libmoose-perl/debian/control (original)
+++ trunk/libmoose-perl/debian/control Fri Sep 18 11:48:35 2009
@@ -1,7 +1,7 @@
 Source: libmoose-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7)
 Build-Depends-Indep: perl (>= 5.10), libsub-exporter-perl (>= 0.980),
  libclass-mop-perl (>= 0.93), libtest-exception-perl (>= 0.27), liburi-perl,
  libtest-pod-coverage-perl, libsub-name-perl (>= 0.02), libio-string-perl,

Added: trunk/libmoose-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/patches/series?rev=44234&op=file
==============================================================================
--- trunk/libmoose-perl/debian/patches/series (added)
+++ trunk/libmoose-perl/debian/patches/series Fri Sep 18 11:48:35 2009
@@ -1,0 +1,1 @@
+use-old-test-simple.patch

Added: trunk/libmoose-perl/debian/patches/use-old-test-simple.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/patches/use-old-test-simple.patch?rev=44234&op=file
==============================================================================
--- trunk/libmoose-perl/debian/patches/use-old-test-simple.patch (added)
+++ trunk/libmoose-perl/debian/patches/use-old-test-simple.patch Fri Sep 18 11:48:35 2009
@@ -1,0 +1,46 @@
+From: Ansgar Burchardt <ansgar at 43-1.org>
+Date: Fri, 18 Sep 2009 13:25:35 +0200
+Subject: Use old Test::More
+
+Use an older version of Test::More to avoid a bug in sbuild.
+This patch can be dropped once [1] is fixed.
+
+[2] http://bugs.debian.org/541342
+--- libmoose-perl.orig/META.yml
++++ libmoose-perl/META.yml
+@@ -5,7 +5,7 @@
+ build_requires:
+   ExtUtils::MakeMaker: 6.42
+   Test::Exception: 0.27
+-  Test::More: 0.88
++  Test::More: 0
+ configure_requires:
+   ExtUtils::MakeMaker: 6.42
+ distribution_type: module
+--- libmoose-perl.orig/Makefile.PL
++++ libmoose-perl/Makefile.PL
+@@ -20,7 +20,7 @@
+ requires 'Task::Weaken'     => '0';
+ requires 'Try::Tiny'        => '0.02';
+ 
+-test_requires 'Test::More'      => '0.88';
++test_requires 'Test::More'      => '0';
+ test_requires 'Test::Exception' => '0.27';
+ 
+ if ( -d '.svn' || -d '.git' || $ENV{IS_MAINTAINER} ) {
+--- libmoose-perl.orig/t/050_metaclasses/030_metarole_combination.t
++++ libmoose-perl/t/050_metaclasses/030_metarole_combination.t
+@@ -1,6 +1,6 @@
+ use strict;
+ use warnings;
+-use Test::More;
++use Test::More tests => 31;
+ 
+ our @applications;
+ 
+@@ -229,5 +229,3 @@
+     ::ok( $applications[1]->[1]->is_anon_class );
+     ::ok( $applications[1]->[1]->name->isa('Garply') );
+ }
+-
+-done_testing;

Modified: trunk/libmoose-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoose-perl/debian/rules?rev=44234&op=diff
==============================================================================
--- trunk/libmoose-perl/debian/rules (original)
+++ trunk/libmoose-perl/debian/rules Fri Sep 18 11:48:35 2009
@@ -1,4 +1,4 @@
 #!/usr/bin/make -f
 
 %:
-	dh $@
+	dh --with quilt $@




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