r168 - in packages/libxml-filter-sort-perl/trunk: . debian

Allard Hoeve hoeve-guest@haydn.debian.org
Thu, 10 Jun 2004 08:43:51 -0600


Author: hoeve-guest
Date: 2004-06-10 08:43:47 -0600 (Thu, 10 Jun 2004)
New Revision: 168

Added:
   packages/libxml-filter-sort-perl/trunk/debian/
   packages/libxml-filter-sort-perl/trunk/debian/changelog
   packages/libxml-filter-sort-perl/trunk/debian/compat
   packages/libxml-filter-sort-perl/trunk/debian/control
   packages/libxml-filter-sort-perl/trunk/debian/copyright
   packages/libxml-filter-sort-perl/trunk/debian/docs
   packages/libxml-filter-sort-perl/trunk/debian/rules
Log:
Load libxml-filter-sort-perl-0.91 into
packages/libxml-filter-sort-perl/trunk.


Added: packages/libxml-filter-sort-perl/trunk/debian/changelog
===================================================================
--- packages/libxml-filter-sort-perl/trunk/debian/changelog	2004-06-10 14:42:33 UTC (rev 167)
+++ packages/libxml-filter-sort-perl/trunk/debian/changelog	2004-06-10 14:43:47 UTC (rev 168)
@@ -0,0 +1,6 @@
+libxml-filter-sort-perl (0.91-1) unstable; urgency=low
+
+  * Initial Release (Closes: #204091).
+
+ -- Florian Ragwitz <florian@mookooh.org>  Sat, 22 May 2004 11:39:40 +0200
+

Added: packages/libxml-filter-sort-perl/trunk/debian/compat
===================================================================
--- packages/libxml-filter-sort-perl/trunk/debian/compat	2004-06-10 14:42:33 UTC (rev 167)
+++ packages/libxml-filter-sort-perl/trunk/debian/compat	2004-06-10 14:43:47 UTC (rev 168)
@@ -0,0 +1 @@
+4

Added: packages/libxml-filter-sort-perl/trunk/debian/control
===================================================================
--- packages/libxml-filter-sort-perl/trunk/debian/control	2004-06-10 14:42:33 UTC (rev 167)
+++ packages/libxml-filter-sort-perl/trunk/debian/control	2004-06-10 14:43:47 UTC (rev 168)
@@ -0,0 +1,19 @@
+Source: libxml-filter-sort-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Florian Ragwitz <florian@mookooh.org>, Joachim Breitner <nomeata@debian.org>
+Build-Depends: debhelper (>= 4.0.0)
+Build-Depends-Indep: perl (>= 5.6.0-16), libxml-sax-perl (>= 0.12-4), libxml-sax-writer-perl (>= 0.44-4), libxml-sax-machines-perl (>= 0.41-1)
+Standards-Version: 3.6.1
+
+Package: libxml-filter-sort-perl
+Architecture: all
+Depends: ${perl:Depends}, libxml-sax-perl (>= 0.12-4), libxml-sax-writer-perl (>= 0.44-4)
+Suggests: libxml-sax-machines-perl (>= 0.41-1)
+Description: Perl module that implement a SAX filter for sorting XML elements
+ Perl SAX filter for sorting 'records' in XML documents (including
+ documents larger than available memory).
+ .
+ Includes also the `xmlsort' utility that can be used to sort an XML
+ file from the command line without writing Perl code.

Added: packages/libxml-filter-sort-perl/trunk/debian/copyright
===================================================================
--- packages/libxml-filter-sort-perl/trunk/debian/copyright	2004-06-10 14:42:33 UTC (rev 167)
+++ packages/libxml-filter-sort-perl/trunk/debian/copyright	2004-06-10 14:43:47 UTC (rev 168)
@@ -0,0 +1,17 @@
+This package was debianized by Florian Ragwitz <florian@mookooh.org> on
+Sat, 22 May 2004 11:39:40 +0200.
+
+It was downloaded from http://search.cpan.org/~grantm/XML-Filter-Sort/
+
+Upstream Author: Grant McLean <grantm@cpan.org>
+
+Copyright: GNU GPL, Artistic
+
+ Copyright 2002 Grant McLean <grantm@cpan.org>
+
+ This library is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself. (Artistic or GPL)
+
+ 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'.

Added: packages/libxml-filter-sort-perl/trunk/debian/docs
===================================================================
--- packages/libxml-filter-sort-perl/trunk/debian/docs	2004-06-10 14:42:33 UTC (rev 167)
+++ packages/libxml-filter-sort-perl/trunk/debian/docs	2004-06-10 14:43:47 UTC (rev 168)
@@ -0,0 +1 @@
+README

Added: packages/libxml-filter-sort-perl/trunk/debian/rules
===================================================================
--- packages/libxml-filter-sort-perl/trunk/debian/rules	2004-06-10 14:42:33 UTC (rev 167)
+++ packages/libxml-filter-sort-perl/trunk/debian/rules	2004-06-10 14:43:47 UTC (rev 168)
@@ -0,0 +1,78 @@
+#!/usr/bin/make -f
+
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc@dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" 
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) test
+	$(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 by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+#	dh_installexamples
+	dh_perl
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	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


Property changes on: packages/libxml-filter-sort-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *