r15448 - in /trunk/libdevel-ebug-perl: Build.PL Makefile.PL debian/changelog debian/control debian/patches/ debian/patches/Build.PL.patch debian/patches/Makefile.PL.patch debian/patches/series debian/rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Feb 23 14:01:55 UTC 2008


Author: gregoa-guest
Date: Sat Feb 23 14:01:54 2008
New Revision: 15448

URL: http://svn.debian.org/wsvn/?sc=1&rev=15448
Log:
Split out changes to Build.PL and Makefile.PL into proper patches and
  manage them with quilt.

Added:
    trunk/libdevel-ebug-perl/debian/patches/
    trunk/libdevel-ebug-perl/debian/patches/Build.PL.patch
    trunk/libdevel-ebug-perl/debian/patches/Makefile.PL.patch
    trunk/libdevel-ebug-perl/debian/patches/series
Modified:
    trunk/libdevel-ebug-perl/Build.PL
    trunk/libdevel-ebug-perl/Makefile.PL
    trunk/libdevel-ebug-perl/debian/changelog
    trunk/libdevel-ebug-perl/debian/control
    trunk/libdevel-ebug-perl/debian/rules

Modified: trunk/libdevel-ebug-perl/Build.PL
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/Build.PL?rev=15448&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/Build.PL (original)
+++ trunk/libdevel-ebug-perl/Build.PL Sat Feb 23 14:01:54 2008
@@ -25,7 +25,7 @@
 }
 
 my $build = Module::Build->new(
-  create_makefile_pl => 'traditional',
+  create_makefile_pl => 'small',
   license            => 'perl',
   module_name        => 'Devel::ebug',
   requires           => $requires,

Modified: trunk/libdevel-ebug-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/Makefile.PL?rev=15448&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/Makefile.PL (original)
+++ trunk/libdevel-ebug-perl/Makefile.PL Sat Feb 23 14:01:54 2008
@@ -1,30 +1,6 @@
 # Note: this file was auto-generated by Module::Build::Compat version 0.03
-use ExtUtils::MakeMaker;
-WriteMakefile
-(
-          'PL_FILES' => {},
-          'INSTALLDIRS' => 'site',
-          'NAME' => 'Devel::ebug',
-          'EXE_FILES' => [
-                           'ebug',
-                           'ebug_client',
-                           'ebug_server'
-                         ],
-          'VERSION_FROM' => 'lib/Devel/ebug.pm',
-          'PREREQ_PM' => {
-                           'Scalar::Util' => '0',
-                           'PadWalker' => '0',
-                           'Module::Pluggable' => '0',
-                           'Devel::StackTrace' => '0',
-                           'IO::Socket::INET' => '0',
-                           'YAML::Syck' => '0.85',
-                           'Test::Expect' => '0',
-                           'Carp' => '0',
-                           'Test::More' => '0',
-                           'Class::Accessor::Chained::Fast' => '0',
-                           'String::Koremutake' => '0',
-                           'File::Find' => '0',
-                           'Proc::Background' => '0'
-                         }
-        )
-;
+    use Module::Build::Compat 0.02;
+    use lib '_build/lib';
+    Module::Build::Compat->run_build_pl(args => \@ARGV);
+    require Module::Build;
+    Module::Build::Compat->write_makefile(build_class => 'Module::Build');

Modified: trunk/libdevel-ebug-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/changelog?rev=15448&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/debian/changelog (original)
+++ trunk/libdevel-ebug-perl/debian/changelog Sat Feb 23 14:01:54 2008
@@ -7,8 +7,10 @@
     (closes: #467159).
   * Set Standards-Version to 3.7.3 (no changes needed).
   * Set debhelper compatibility level to 6.
+  * Split out changes to Build.PL and Makefile.PL into proper patches and
+    manage them with quilt.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 23 Feb 2008 14:52:18 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 23 Feb 2008 14:57:18 +0100
 
 libdevel-ebug-perl (0.48-2) unstable; urgency=low
 

Modified: trunk/libdevel-ebug-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/control?rev=15448&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/debian/control (original)
+++ trunk/libdevel-ebug-perl/debian/control Sat Feb 23 14:01:54 2008
@@ -1,7 +1,7 @@
 Source: libdevel-ebug-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 6), cdbs, libmodule-build-perl
+Build-Depends: debhelper (>= 6), cdbs, libmodule-build-perl, quilt
 Build-Depends-Indep: perl (>= 5.8.8-7), libtest-expect-perl,
  libdevel-stacktrace-perl, libproc-background-perl, libstring-koremutake-perl,
  libclass-accessor-chained-perl, libmodule-pluggable-perl, libpadwalker-perl,

Added: trunk/libdevel-ebug-perl/debian/patches/Build.PL.patch
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/patches/Build.PL.patch?rev=15448&op=file
==============================================================================
--- trunk/libdevel-ebug-perl/debian/patches/Build.PL.patch (added)
+++ trunk/libdevel-ebug-perl/debian/patches/Build.PL.patch Sat Feb 23 14:01:54 2008
@@ -1,0 +1,11 @@
+--- libdevel-ebug-perl.orig/Build.PL
++++ libdevel-ebug-perl/Build.PL
+@@ -25,7 +25,7 @@
+ }
+ 
+ my $build = Module::Build->new(
+-  create_makefile_pl => 'small',
++  create_makefile_pl => 'traditional',
+   license            => 'perl',
+   module_name        => 'Devel::ebug',
+   requires           => $requires,

Added: trunk/libdevel-ebug-perl/debian/patches/Makefile.PL.patch
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/patches/Makefile.PL.patch?rev=15448&op=file
==============================================================================
--- trunk/libdevel-ebug-perl/debian/patches/Makefile.PL.patch (added)
+++ trunk/libdevel-ebug-perl/debian/patches/Makefile.PL.patch Sat Feb 23 14:01:54 2008
@@ -1,0 +1,38 @@
+--- libdevel-ebug-perl.orig/Makefile.PL
++++ libdevel-ebug-perl/Makefile.PL
+@@ -1,6 +1,30 @@
+ # Note: this file was auto-generated by Module::Build::Compat version 0.03
+-    use Module::Build::Compat 0.02;
+-    use lib '_build/lib';
+-    Module::Build::Compat->run_build_pl(args => \@ARGV);
+-    require Module::Build;
+-    Module::Build::Compat->write_makefile(build_class => 'Module::Build');
++use ExtUtils::MakeMaker;
++WriteMakefile
++(
++          'PL_FILES' => {},
++          'INSTALLDIRS' => 'site',
++          'NAME' => 'Devel::ebug',
++          'EXE_FILES' => [
++                           'ebug',
++                           'ebug_client',
++                           'ebug_server'
++                         ],
++          'VERSION_FROM' => 'lib/Devel/ebug.pm',
++          'PREREQ_PM' => {
++                           'Scalar::Util' => '0',
++                           'PadWalker' => '0',
++                           'Module::Pluggable' => '0',
++                           'Devel::StackTrace' => '0',
++                           'IO::Socket::INET' => '0',
++                           'YAML::Syck' => '0.85',
++                           'Test::Expect' => '0',
++                           'Carp' => '0',
++                           'Test::More' => '0',
++                           'Class::Accessor::Chained::Fast' => '0',
++                           'String::Koremutake' => '0',
++                           'File::Find' => '0',
++                           'Proc::Background' => '0'
++                         }
++        )
++;

Added: trunk/libdevel-ebug-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/patches/series?rev=15448&op=file
==============================================================================
--- trunk/libdevel-ebug-perl/debian/patches/series (added)
+++ trunk/libdevel-ebug-perl/debian/patches/series Sat Feb 23 14:01:54 2008
@@ -1,0 +1,2 @@
+Build.PL.patch
+Makefile.PL.patch

Modified: trunk/libdevel-ebug-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/rules?rev=15448&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/debian/rules (original)
+++ trunk/libdevel-ebug-perl/debian/rules Sat Feb 23 14:01:54 2008
@@ -4,6 +4,7 @@
 
 # Put perlmodule.mk last to dh_clean temporary files not in MANIFEST
 include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 include /usr/share/cdbs/1/class/perlmodule.mk
 
 binary-install/libdevel-ebug-perl::




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