r25289 - in /trunk/libxml-autowriter-perl/debian: ./ changelog control packages patches/ patches/010-perl-5.10.patch rules watch

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Sep 17 19:39:15 UTC 2008


Author: dmn
Date: Wed Sep 17 19:39:11 2008
New Revision: 25289

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25289
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libxml-autowriter-perl/debian/
    trunk/libxml-autowriter-perl/debian/changelog
    trunk/libxml-autowriter-perl/debian/control
    trunk/libxml-autowriter-perl/debian/packages
    trunk/libxml-autowriter-perl/debian/patches/
    trunk/libxml-autowriter-perl/debian/patches/010-perl-5.10.patch
    trunk/libxml-autowriter-perl/debian/rules   (with props)
    trunk/libxml-autowriter-perl/debian/watch

Added: trunk/libxml-autowriter-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-autowriter-perl/debian/changelog?rev=25289&op=file
==============================================================================
--- trunk/libxml-autowriter-perl/debian/changelog (added)
+++ trunk/libxml-autowriter-perl/debian/changelog Wed Sep 17 19:39:11 2008
@@ -1,0 +1,13 @@
+libxml-autowriter-perl (0.39-1) unstable; urgency=medium
+
+  * New upstream release.
+  * Fixes FTBFS with Perl 5.10. Closes: #467318, #479932.
+
+ -- Piotr Roszatycki <dexter at debian.org>  Mon, 12 May 2008 14:22:24 +0200
+
+libxml-autowriter-perl (0.38-1) unstable; urgency=low
+
+  * Initial Debian version. Closes: #278371.
+
+ -- Piotr Roszatycki <dexter at debian.org>  Tue, 26 Oct 2004 14:56:25 +0200
+

Added: trunk/libxml-autowriter-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-autowriter-perl/debian/control?rev=25289&op=file
==============================================================================
--- trunk/libxml-autowriter-perl/debian/control (added)
+++ trunk/libxml-autowriter-perl/debian/control Wed Sep 17 19:39:11 2008
@@ -1,0 +1,29 @@
+Source: libxml-autowriter-perl
+Maintainer: Piotr Roszatycki <dexter at debian.org>
+Section: perl
+Priority: extra
+Standards-Version: 3.7.3
+Build-Depends: perl (>= 5.8), libxml-parser-perl, yada (>= 0.54)
+Homepage: http://search.cpan.org/dist/XML-AutoWriter/
+Vcs-Browser: http://svn.debian.org/wsvn/cvsdebuild/trunk/debian/dists/libdatetime-perl/
+Vcs-Svn: svn://svn.debian.org/cvsdebuild/trunk/debian/dists/libdatetime-perl
+
+Package: libxml-autowriter-perl
+Architecture: all
+Depends: libxml-parser-perl, ${libxml-autowriter-perl:Depends}
+Description: perl XML::AutoWriter - DOCTYPE based XML output
+ This package provides a several Perl modules which provides API for writting
+ XML files.
+ .
+ * XML::ValidWriter - This module uses the DTD contained in an XML::Doctype to
+ enable compile- and run-time checks of XML output validity.  It also provides
+ methods and functions named after the elements mentioned in the DTD.
+ .
+ * XML::AutoWriter - This module subclasses XML::ValidWriter and provides
+ automatic start and end tag generation, allowing you to emit only the
+ 'important' tags.
+ .
+ * XML::Doctype - This module parses DTDs and allows them to be saved as .pm
+ files and reloaded.  The ability to save and reload is intended to aid in
+ packaging parsed DTDs with XML tools so that XML::Parser need not be
+ installed.

Added: trunk/libxml-autowriter-perl/debian/packages
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-autowriter-perl/debian/packages?rev=25289&op=file
==============================================================================
--- trunk/libxml-autowriter-perl/debian/packages (added)
+++ trunk/libxml-autowriter-perl/debian/packages Wed Sep 17 19:39:11 2008
@@ -1,0 +1,80 @@
+# If the debian/rules or debian/control file is missing, rebuild the file:
+#
+#   $ yada rebuild control
+#   $ yada rebuild rules
+
+
+# Environment variables:
+
+# don't run `make test'
+#   with_no_test=%{with_no_test}
+
+
+Source: libxml-autowriter-perl
+Section: perl
+Priority: extra
+Maintainer: Piotr Roszatycki <dexter at debian.org>
+Standards-Version: 3.7.3
+Upstream-Source: <URL:http://www.cpan.org/pub/CPAN/modules/by-module/XML/
+%if %`dpkg --compare-versions %{YADA_VERSION} ge 0.54 && echo 1`
+Homepage: http://search.cpan.org/dist/XML-AutoWriter/
+Vcs-Browser: http://svn.debian.org/wsvn/cvsdebuild/trunk/debian/dists/libdatetime-perl/
+Vcs-Svn: svn://svn.debian.org/cvsdebuild/trunk/debian/dists/libdatetime-perl
+%endif
+Patches: patches/*.patch
+Description: perl XML::AutoWriter - DOCTYPE based XML output
+Copyright: GPL
+ This module is Copyright 2000, 2005 Barrie Slaymaker.  All rights reserved.
+ .
+ This module is licensed under your choice of the Artistic, BSD or
+ General Public License.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL' and
+ the Artistic Licence in `/usr/share/common-licenses/Artistic' and
+ the BSD License in `/usr/share/common-licenses/BSD'.
+Build-Depends: perl (>= 5.8)
+Build-Depends: libxml-parser-perl
+Build: sh
+ CC=${CC:-gcc}
+ CFLAGS=${CFLAGS:--Wall -g}
+ if [ "${DEB_BUILD_OPTIONS#*noopt}" != "$DEB_BUILD_OPTIONS" ]; then
+     CFLAGS="$CFLAGS -O0"
+ else
+     CFLAGS="$CFLAGS -O2"
+ fi
+ PERL=${PERL:-/usr/bin/perl}
+ $PERL Makefile.PL INSTALLDIRS=vendor
+ make CC="$CC" OPTIMIZE="$CFLAGS"
+%if %{without_no_test}
+ make test
+%endif
+Clean: sh
+ test -f Makefile && touch Makefile && make distclean || true
+
+Package: libxml-autowriter-perl
+Architecture: all
+Depends: libxml-parser-perl
+Depends: []
+Description: perl XML::AutoWriter - DOCTYPE based XML output
+ This package provides a several Perl modules which provides API for writting
+ XML files.
+ .
+ * XML::ValidWriter - This module uses the DTD contained in an XML::Doctype to
+ enable compile- and run-time checks of XML output validity.  It also provides
+ methods and functions named after the elements mentioned in the DTD. 
+ .
+ * XML::AutoWriter - This module subclasses XML::ValidWriter and provides
+ automatic start and end tag generation, allowing you to emit only the
+ 'important' tags.
+ .
+ * XML::Doctype - This module parses DTDs and allows them to be saved as .pm
+ files and reloaded.  The ability to save and reload is intended to aid in
+ packaging parsed DTDs with XML tools so that XML::Parser need not be
+ installed.
+Install: sh
+ PERL=${PERL:-/usr/bin/perl}
+ make install PREFIX=$ROOT/usr
+ find $ROOT/usr/lib/perl5 $ROOT/usr/share/perl5 -name '*.pm' -print0 | xargs -0 -r -t chmod -x
+ find $ROOT/usr/lib/perl5 $ROOT/usr/share/perl5 -name '*.pm' -print0 | xargs -0 -r -t -n1 sed -i 's/\r//g'
+ yada install -doc -as changelog CHANGES

Added: trunk/libxml-autowriter-perl/debian/patches/010-perl-5.10.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-autowriter-perl/debian/patches/010-perl-5.10.patch?rev=25289&op=file
==============================================================================
--- trunk/libxml-autowriter-perl/debian/patches/010-perl-5.10.patch (added)
+++ trunk/libxml-autowriter-perl/debian/patches/010-perl-5.10.patch Wed Sep 17 19:39:11 2008
@@ -1,0 +1,17 @@
+diff --git a/lib/XML/ValidWriter.pm b/lib/XML/ValidWriter.pm
+index 281ea05..f24b30c 100644
+--- a/lib/XML/ValidWriter.pm
++++ b/lib/XML/ValidWriter.pm
+@@ -302,11 +302,7 @@ sub new {
+    my $class = shift ;
+    $class = ref $class || $class ;
+ 
+-   my XML::VWElement $self ;
+-   {
+-      no strict 'refs' ;
+-      $self = bless [ \%{"$class\::FIELDS"} ], $class ;
+-   }
++   my XML::VWElement $self = fields::new($class);
+ 
+    my ( $elt_decl ) = @_ ;
+ 

Added: trunk/libxml-autowriter-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-autowriter-perl/debian/rules?rev=25289&op=file
==============================================================================
--- trunk/libxml-autowriter-perl/debian/rules (added)
+++ trunk/libxml-autowriter-perl/debian/rules Wed Sep 17 19:39:11 2008
@@ -1,0 +1,254 @@
+#!/usr/bin/make -f
+# Generated automatically from debian/packages
+# by yada v0.54, of Sun, 28 Oct 2007
+
+DEB_HOST_ARCH        := $(shell dpkg-architecture -qDEB_HOST_ARCH 2>/dev/null)
+DEB_HOST_ARCH_OS     := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null)
+DEB_HOST_ARCH_CPU    := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null)
+DEB_HOST_GNU_CPU     := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU 2>/dev/null)
+DEB_HOST_GNU_TYPE    := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE 2>/dev/null)
+DEB_HOST_GNU_SYSTEM  := $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM 2>/dev/null)
+
+DEB_BUILD_ARCH       := $(shell dpkg-architecture -qDEB_BUILD_ARCH 2>/dev/null)
+DEB_BUILD_ARCH_OS    := $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS 2>/dev/null)
+DEB_BUILD_ARCH_CPU   := $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU 2>/dev/null)
+DEB_BUILD_GNU_CPU    := $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU 2>/dev/null)
+DEB_BUILD_GNU_TYPE   := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE 2>/dev/null)
+DEB_BUILD_GNU_SYSTEM := $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM 2>/dev/null)
+
+# Take account of old dpkg-architecture output.
+ifeq ($(DEB_HOST_ARCH_CPU),)
+  DEB_HOST_ARCH_CPU := $(DEB_HOST_GNU_CPU))
+  ifeq ($(DEB_HOST_ARCH_CPU),i486)
+    DEB_HOST_ARCH_OS := i386
+  else
+  ifeq ($(DEB_HOST_ARCH_CPU),x86_64)
+    DEB_HOST_ARCH_OS := amd64
+  endif
+  endif
+endif
+ifeq ($(DEB_HOST_ARCH_OS),)
+  DEB_HOST_ARCH_OS := $(subst -gnu,,$(DEB_HOST_GNU_SYSTEM))
+  ifeq ($(DEB_HOST_ARCH_OS),gnu)
+    DEB_HOST_ARCH_OS := hurd
+  endif
+endif
+ifeq ($(DEB_BUILD_ARCH_CPU),)
+  DEB_BUILD_ARCH_CPU := $(DEB_BUILD_GNU_CPU))
+  ifeq ($(DEB_BUILD_ARCH_CPU),i486)
+    DEB_BUILD_ARCH_OS := i386
+  else
+  ifeq ($(DEB_BUILD_ARCH_CPU),x86_64)
+    DEB_BUILD_ARCH_OS := amd64
+  endif
+  endif
+endif
+ifeq ($(DEB_BUILD_ARCH_OS),)
+  DEB_BUILD_ARCH_OS := $(subst -gnu,,$(DEB_BUILD_GNU_SYSTEM))
+  ifeq ($(DEB_BUILD_ARCH_OS),gnu)
+    DEB_BUILD_ARCH_OS := hurd
+  endif
+endif
+
+LEFT_PARENTHESIS:=(
+VERSION:=$(shell head -n1 debian/changelog | sed -e "s/^[0-9a-zA-Z.-]* $(LEFT_PARENTHESIS)//" -e "s/[^0-9a-zA-Z.:+~-].*//")
+
+SHELL=/bin/bash
+
+.PHONY: default
+default:
+	@echo "Specify a target:"; \
+	echo " build              compile the package"; \
+	echo " build-arch         compile the architecture-dependent package"; \
+	echo " build-indep        compile the architecture-independent package"; \
+	echo " binary             make all binary packages"; \
+	echo " binary-arch        make all architecture-dependent binary packages"; \
+	echo " binary-indep       make all architecture-independent binary packages"; \
+	echo " clean              clean up the source package"; \
+	echo; \
+	echo " clean-install-tree clean up only under debian/"; \
+	echo
+
+# Build the package and prepare the install tree
+
+.PHONY: build-only build
+build-only: debian/build-stamp
+build: build-only
+
+.PHONY: build-arch-only build-arch
+build-arch-only: debian/build-arch-stamp
+build-arch: build-arch-only
+
+.PHONY: build-indep-only build-indep
+build-indep-only: debian/build-indep-stamp
+build-indep: build-indep-only
+
+# Make sure these rules and the control file are up-to-date
+
+.PHONY: rules control templates
+rules: debian/rules
+debian/rules: $(shell which yada) debian/packages-tmp
+	yada rebuild rules
+
+control: debian/control
+debian/control: $(shell which yada) debian/packages-tmp
+	yada rebuild control
+
+templates: debian/templates debian/po/POTFILES.in
+debian/templates: $(shell which yada) debian/packages-tmp
+	yada rebuild templates
+debian/po/POTFILES.in: $(shell which yada) debian/packages-tmp
+	yada rebuild templates
+
+debian/build-stamp: debian/build-arch-stamp debian/build-indep-stamp
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	yada patch "debian/patches/*.patch"
+	@umask 022 \
+	  && export pwd="$$(pwd)" \
+	  && export TMPROOT="$$(pwd)/debian/tmp" \
+	  && export SOURCE="libxml-autowriter-perl" \
+	  && export VERSION="$(VERSION)" \
+	  && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \
+	  && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \
+	  && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \
+	  && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \
+	  && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \
+	  && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\
+	echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\
+	echo -E 'CC=$${CC:-gcc}';\
+	echo -E 'CFLAGS=$${CFLAGS:--Wall -g}';\
+	echo -E 'if [ "$${DEB_BUILD_OPTIONS#*noopt}" != "$$DEB_BUILD_OPTIONS" ]; then';\
+	echo -E '    CFLAGS="$$CFLAGS -O0"';\
+	echo -E 'else';\
+	echo -E '    CFLAGS="$$CFLAGS -O2"';\
+	echo -E 'fi';\
+	echo -E 'PERL=$${PERL:-/usr/bin/perl}';\
+	echo -E '$$PERL Makefile.PL INSTALLDIRS=vendor';\
+	echo -E 'make CC="$$CC" OPTIMIZE="$$CFLAGS"';\
+	echo -E 'make test') | /bin/sh
+	touch debian/build-stamp
+
+debian/build-arch-stamp:
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	yada patch "debian/patches/*.patch"
+	touch debian/build-arch-stamp
+
+debian/build-indep-stamp: debian/build-arch-stamp
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	yada patch "debian/patches/*.patch"
+	touch debian/build-indep-stamp
+
+.PHONY: install-tree
+install-tree: install-tree-any
+install-tree-any: \
+	debian/tmp-libxml-autowriter-perl/DEBIAN/control
+
+debian/tmp-libxml-autowriter-perl/DEBIAN/control: debian/build-stamp debian/control
+	rm -rf debian/tmp-libxml-autowriter-perl
+	umask 022 && install -d debian/tmp-libxml-autowriter-perl/DEBIAN
+	install -d debian/tmp-libxml-autowriter-perl/usr/share/doc/libxml-autowriter-perl
+	umask 022; yada generate copyright libxml-autowriter-perl \
+	  > debian/tmp-libxml-autowriter-perl/usr/share/doc/libxml-autowriter-perl/copyright
+	install -m 644 -p debian/changelog \
+	  debian/tmp-libxml-autowriter-perl/usr/share/doc/libxml-autowriter-perl/changelog.Debian
+	@umask 022 \
+	  && export pwd="$$(pwd)" \
+	  && export ROOT="$$(pwd)/debian/tmp-libxml-autowriter-perl" \
+	  && export TMPROOT="$$(pwd)/debian/tmp" \
+	  && export CONTROL="$$(pwd)/debian/tmp-libxml-autowriter-perl/DEBIAN" \
+	  && export PACKAGE="libxml-autowriter-perl" \
+	  && export SOURCE="libxml-autowriter-perl" \
+	  && export VERSION="$(VERSION)" \
+	  && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \
+	  && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \
+	  && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \
+	  && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \
+	  && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \
+	  && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\
+	echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\
+	echo -E 'PERL=$${PERL:-/usr/bin/perl}';\
+	echo -E 'make install PREFIX=$$ROOT/usr';\
+	echo -E 'find $$ROOT/usr/lib/perl5 $$ROOT/usr/share/perl5 -name '\''*.pm'\'' -print0 | xargs -0 -r -t chmod -x';\
+	echo -E 'find $$ROOT/usr/lib/perl5 $$ROOT/usr/share/perl5 -name '\''*.pm'\'' -print0 | xargs -0 -r -t -n1 sed -i '\''s/\r//g'\''';\
+	echo -E 'yada install -doc -as changelog CHANGES') | /bin/sh
+	@umask 022 \
+	  && export pwd="$$(pwd)" \
+	  && export ROOT="$$(pwd)/debian/tmp-libxml-autowriter-perl" \
+	  && export TMPROOT="$$(pwd)/debian/tmp" \
+	  && export CONTROL="$$(pwd)/debian/tmp-libxml-autowriter-perl/DEBIAN" \
+	  && export PACKAGE="libxml-autowriter-perl" \
+	  && export SOURCE="libxml-autowriter-perl" \
+	  && export VERSION="$(VERSION)" && (\
+	echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\
+	echo -E 'yada perl';\
+	echo -E 'yada python';\
+	echo -E 'yada strip';\
+	echo -E 'yada shlibdeps') | /bin/sh
+	yada compress libxml-autowriter-perl
+	yada generate maintscripts libxml-autowriter-perl
+	find debian/tmp-libxml-autowriter-perl -type f -print \
+	  | sed -n 's/^debian\/tmp-libxml-autowriter-perl\(\/etc\/.*\)$$/\1/p' \
+	  > debian/tmp-libxml-autowriter-perl/DEBIAN/conffiles
+	test -s debian/tmp-libxml-autowriter-perl/DEBIAN/conffiles || rm -f debian/tmp-libxml-autowriter-perl/DEBIAN/conffiles
+	yada rebuild control
+	yada generate substvars libxml-autowriter-perl
+	umask 022 && dpkg-gencontrol -isp -plibxml-autowriter-perl -Pdebian/tmp-libxml-autowriter-perl
+
+# Build package files
+
+.PHONY: binary binary-arch binary-indep
+binary: binary-arch binary-indep
+binary-arch: binary-arch-any
+
+.PHONY: binary-arch-any
+binary-arch-any:
+binary-indep: \
+	binary-package-libxml-autowriter-perl
+
+.PHONY: binary-package-libxml-autowriter-perl
+binary-package-libxml-autowriter-perl: check-root debian/tmp-libxml-autowriter-perl/DEBIAN/control
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	chown -R 0.0 debian/tmp-libxml-autowriter-perl
+	chmod -R u=rwX,go=rX debian/tmp-libxml-autowriter-perl
+	@if [ -d debian/tmp-libxml-autowriter-perl/usr/doc/libxml-autowriter-perl ]; then \
+	  echo "*** Yada warning: /usr/doc/libxml-autowriter-perl should be /usr/share/doc/libxml-autowriter-perl";\
+	fi
+	dpkg-deb --build debian/tmp-libxml-autowriter-perl ..
+
+.PHONY: check-root
+check-root:
+	@[ `id -u` = 0 ] || (echo "You must be root to do this!"; false)
+
+debian/packages-tmp: debian/packages 
+	yada rebuild packages
+
+## Clean up afterwards
+
+.PHONY: clean clean-install-tree clean-build
+
+clean: clean-install-tree clean-build debian/control debian/rules
+	rm -f debian/packages-tmp debian/packages-tmp-new debian/packages-tmp-include
+
+clean-build:
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	rm -f debian/build-stamp debian/build-arch-stamp debian/build-indep-stamp
+	@umask 022 \
+	  && export pwd="$$(pwd)" \
+	  && export TMPROOT="$$(pwd)/debian/tmp" \
+	  && export SOURCE="libxml-autowriter-perl" \
+	  && export VERSION="$(VERSION)" \
+	  && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \
+	  && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \
+	  && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \
+	  && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \
+	  && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \
+	  && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\
+	echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\
+	echo -E 'test -f Makefile && touch Makefile && make distclean || true') | /bin/sh
+	yada unpatch
+	rm -rf debian/tmp
+
+clean-install-tree: debian/rules
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	rm -f debian/install-tree-stamp
+	rm -rf debian/tmp-* debian/files* debian/substvars debian/shlibs.local debian/ucf

Propchange: trunk/libxml-autowriter-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libxml-autowriter-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-autowriter-perl/debian/watch?rev=25289&op=file
==============================================================================
--- trunk/libxml-autowriter-perl/debian/watch (added)
+++ trunk/libxml-autowriter-perl/debian/watch Wed Sep 17 19:39:11 2008
@@ -1,0 +1,6 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+
+# upstream version 0.1234 -> debian version 0.12.34
+opts=uversionmangle=s/\.(\d\d)(\d\d)$/.$1.$2/ \
+    http://www.cpan.org/modules/by-module/XML/XML-AutoWriter-([0-9.]+)\.tar.gz




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