r7406 - in /trunk/libxml-xpathengine-perl: Makefile.PL debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules

jeremiah-guest at users.alioth.debian.org jeremiah-guest at users.alioth.debian.org
Tue Sep 11 12:18:13 UTC 2007


Author: jeremiah-guest
Date: Tue Sep 11 12:18:13 2007
New Revision: 7406

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

Added:
    trunk/libxml-xpathengine-perl/debian/
    trunk/libxml-xpathengine-perl/debian/changelog
    trunk/libxml-xpathengine-perl/debian/compat
    trunk/libxml-xpathengine-perl/debian/control
    trunk/libxml-xpathengine-perl/debian/copyright
    trunk/libxml-xpathengine-perl/debian/rules   (with props)
Modified:
    trunk/libxml-xpathengine-perl/Makefile.PL

Modified: trunk/libxml-xpathengine-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libxml-xpathengine-perl/Makefile.PL?rev=7406&op=diff
==============================================================================
--- trunk/libxml-xpathengine-perl/Makefile.PL (original)
+++ trunk/libxml-xpathengine-perl/Makefile.PL Tue Sep 11 12:18:13 2007
@@ -17,3 +17,5 @@
 # add the license bit in META.yaml
 unless( `$^X -n -e'print if( m{license\\s*:\\s*perl})' Makefile`)
   { system $^X . q{ -p -i -e's{^((.*)distribution_type: module(.*))}{$1\n$2license: perl$3}m' Makefile}; }
+
+1;

Added: trunk/libxml-xpathengine-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libxml-xpathengine-perl/debian/changelog?rev=7406&op=file
==============================================================================
--- trunk/libxml-xpathengine-perl/debian/changelog (added)
+++ trunk/libxml-xpathengine-perl/debian/changelog Tue Sep 11 12:18:13 2007
@@ -1,0 +1,5 @@
+libxml-xpathengine-perl (0.08-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Jeremiah C. Foster <jeremiah at jeremiahfoster.com>  Tue, 11 Sep 2007 12:13:24 +0000

Added: trunk/libxml-xpathengine-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libxml-xpathengine-perl/debian/compat?rev=7406&op=file
==============================================================================
--- trunk/libxml-xpathengine-perl/debian/compat (added)
+++ trunk/libxml-xpathengine-perl/debian/compat Tue Sep 11 12:18:13 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libxml-xpathengine-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libxml-xpathengine-perl/debian/control?rev=7406&op=file
==============================================================================
--- trunk/libxml-xpathengine-perl/debian/control (added)
+++ trunk/libxml-xpathengine-perl/debian/control Tue Sep 11 12:18:13 2007
@@ -1,0 +1,27 @@
+Source: libxml-xpathengine-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-7)
+Maintainer: Jeremiah C. Foster <jeremiah at jeremiahfoster.com>
+Standards-Version: 3.7.2
+
+Package: libxml-xpathengine-perl
+Architecture: all
+Depends: libtest-simple-perl
+Description: a re-usable XPath engine for DOM-like trees
+ This module provides an XPath engine, that can be re-used by other
+ module/classes that implement trees.
+ .
+ In order to use the XPath engine, nodes in the user module need to mimick
+ DOM nodes. The degree of similitude between the user tree and a DOM dictates 
+ how much of the XPath features can be used. A module implementing all of the
+ DOM should be able to use this module very easily (you might need to add
+ the cmp method on nodes in order to get ordered result sets).
+ .
+ This code is a more or less direct copy of the XML::XPath module by
+ Matt Sergeant. I only removed the XML processing part to remove the dependency
+ on XML::Parser, applied a couple of patches, renamed a whole lot of methods
+ to make Pod::Coverage happy, and changed the docs.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libxml-xpathengine-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libxml-xpathengine-perl/debian/copyright?rev=7406&op=file
==============================================================================
--- trunk/libxml-xpathengine-perl/debian/copyright (added)
+++ trunk/libxml-xpathengine-perl/debian/copyright Tue Sep 11 12:18:13 2007
@@ -1,0 +1,12 @@
+This is the debian package for the XML-XPathEngine module.
+It was created by Jeremiah C. Foster <jeremiah at jeremiahfoster.com> using dh-make-perl.
+
+This copyright info was automatically extracted from the perl module.
+It may not be accurate, so you better check the module sources
+if don't want to get into legal troubles.
+
+The upstream author is: Michel Rodriguez <mirod at cpan.org>.
+
+
+The Debian packaging is (C) 2007, Jeremiah C. Foster <jeremiah at jeremiahfoster.com> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libxml-xpathengine-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libxml-xpathengine-perl/debian/rules?rev=7406&op=file
==============================================================================
--- trunk/libxml-xpathengine-perl/debian/rules (added)
+++ trunk/libxml-xpathengine-perl/debian/rules Tue Sep 11 12:18:13 2007
@@ -1,0 +1,79 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we delete them from the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

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




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