[xml/sgml-commit] r1203 - in /packages/libxml-encoding-perl/branches/experimental: Makefile.PL bin/compile_encoding bin/make_encmap debian/changelog debian/patches/00list debian/patches/makefile_pl.dpatch debian/patches/shebang_perl_path.dpatch

dleidert-guest at users.alioth.debian.org dleidert-guest at users.alioth.debian.org
Thu Sep 11 14:02:01 UTC 2008


Author: dleidert-guest
Date: Thu Sep 11 14:01:59 2008
New Revision: 1203

URL: http://svn.debian.org/wsvn/debian-xml-sgml/?sc=1&rev=1203
Log:
* debian/patches/shebang_perl_path.dpatch: Added.
  - bin/compile_encoding: Fixed shebang.
  - bin/make_encmap: Ditto.
* debian/patches/makefile_pl.dpatch: Added.
  - Makefile.PL (WriteMakefile): Applied patch from 1.01-9.
* debian/patches/00list: Added and adjusted.

Added:
    packages/libxml-encoding-perl/branches/experimental/debian/patches/makefile_pl.dpatch   (with props)
    packages/libxml-encoding-perl/branches/experimental/debian/patches/shebang_perl_path.dpatch   (with props)
Removed:
    packages/libxml-encoding-perl/branches/experimental/Makefile.PL
    packages/libxml-encoding-perl/branches/experimental/bin/compile_encoding
    packages/libxml-encoding-perl/branches/experimental/bin/make_encmap
Modified:
    packages/libxml-encoding-perl/branches/experimental/debian/changelog
    packages/libxml-encoding-perl/branches/experimental/debian/patches/00list

Modified: packages/libxml-encoding-perl/branches/experimental/debian/changelog
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/libxml-encoding-perl/branches/experimental/debian/changelog?rev=1203&op=diff
==============================================================================
--- packages/libxml-encoding-perl/branches/experimental/debian/changelog (original)
+++ packages/libxml-encoding-perl/branches/experimental/debian/changelog Thu Sep 11 14:01:59 2008
@@ -11,6 +11,12 @@
 
   * debian/control (Build-Depends): Added dpatch.
   * debian/rules: Added dpatch environment.
+  * debian/patches/shebang_perl_path.dpatch: Added.
+    - bin/compile_encoding: Fixed shebang.
+    - bin/make_encmap: Ditto.
+  * debian/patches/makefile_pl.dpatch: Added.
+    - Makefile.PL (WriteMakefile): Applied patch from 1.01-9.
+  * debian/patches/00list: Added and adjusted.
 
  -- Daniel Leidert (dale) <daniel.leidert at wgdd.de>  Thu, 11 Sep 2008 15:25:31 +0200
 

Modified: packages/libxml-encoding-perl/branches/experimental/debian/patches/00list
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/libxml-encoding-perl/branches/experimental/debian/patches/00list?rev=1203&op=diff
==============================================================================
--- packages/libxml-encoding-perl/branches/experimental/debian/patches/00list (original)
+++ packages/libxml-encoding-perl/branches/experimental/debian/patches/00list Thu Sep 11 14:01:59 2008
@@ -1,0 +1,2 @@
+shebang_perl_path
+makefile_pl

Added: packages/libxml-encoding-perl/branches/experimental/debian/patches/makefile_pl.dpatch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/libxml-encoding-perl/branches/experimental/debian/patches/makefile_pl.dpatch?rev=1203&op=file
==============================================================================
--- packages/libxml-encoding-perl/branches/experimental/debian/patches/makefile_pl.dpatch (added)
+++ packages/libxml-encoding-perl/branches/experimental/debian/patches/makefile_pl.dpatch Thu Sep 11 14:01:59 2008
@@ -1,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## makefile_pl.dpatch by Daniel Leidert (dale) <daniel.leidert at wgdd.de>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+ at DPATCH@
+diff -urNad experimental~/Makefile.PL experimental/Makefile.PL
+--- experimental~/Makefile.PL	2008-09-11 15:26:33.000000000 +0200
++++ experimental/Makefile.PL	2008-09-11 15:57:32.000000000 +0200
+@@ -16,7 +16,7 @@
+               dist         => {COMPRESS => 'gzip', SUFFIX => '.gz'},
+ 	      VERSION_FROM => 'Encoding.pm',
+ 	      PREREQ_PM    => {XML::Parser => 2.18},
+-	      EXE_FILES    => ['bin/compile_encoding', 'bin/make_encmap'],
++	      EXE_FILES    => [qw(bin/compile_encoding bin/make_encmap)],
+ 	      @extras
+              );
+ 

Propchange: packages/libxml-encoding-perl/branches/experimental/debian/patches/makefile_pl.dpatch
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libxml-encoding-perl/branches/experimental/debian/patches/shebang_perl_path.dpatch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/libxml-encoding-perl/branches/experimental/debian/patches/shebang_perl_path.dpatch?rev=1203&op=file
==============================================================================
--- packages/libxml-encoding-perl/branches/experimental/debian/patches/shebang_perl_path.dpatch (added)
+++ packages/libxml-encoding-perl/branches/experimental/debian/patches/shebang_perl_path.dpatch Thu Sep 11 14:01:59 2008
@@ -1,0 +1,25 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## shebang_perl_path.dpatch by Daniel Leidert (dale) <daniel.leidert at wgdd.de>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+ at DPATCH@
+diff -urNad experimental~/bin/compile_encoding experimental/bin/compile_encoding
+--- experimental~/bin/compile_encoding	2008-07-08 22:46:36.000000000 +0200
++++ experimental/bin/compile_encoding	2008-09-11 15:56:15.000000000 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/perl -w
++#!/usr/bin/perl -w
+ #
+ # compile_encoding
+ #
+diff -urNad experimental~/bin/make_encmap experimental/bin/make_encmap
+--- experimental~/bin/make_encmap	2008-07-08 22:29:04.000000000 +0200
++++ experimental/bin/make_encmap	2008-09-11 15:56:24.000000000 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/perl -w
++#!/usr/bin/perl -w
+ #
+ # make_encmap
+ #

Propchange: packages/libxml-encoding-perl/branches/experimental/debian/patches/shebang_perl_path.dpatch
------------------------------------------------------------------------------
    svn:executable = *




More information about the debian-xml-sgml-commit mailing list