r10459 - in /trunk/libxml-filter-detectws-perl/debian: ./ changelog compat control copyright rules watch

vdanjean at users.alioth.debian.org vdanjean at users.alioth.debian.org
Sat Dec 1 12:28:17 UTC 2007


Author: vdanjean
Date: Sat Dec  1 12:28:17 2007
New Revision: 10459

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

Added:
    trunk/libxml-filter-detectws-perl/debian/
    trunk/libxml-filter-detectws-perl/debian/changelog
    trunk/libxml-filter-detectws-perl/debian/compat
    trunk/libxml-filter-detectws-perl/debian/control
    trunk/libxml-filter-detectws-perl/debian/copyright
    trunk/libxml-filter-detectws-perl/debian/rules   (with props)
    trunk/libxml-filter-detectws-perl/debian/watch

Added: trunk/libxml-filter-detectws-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libxml-filter-detectws-perl/debian/changelog?rev=10459&op=file
==============================================================================
--- trunk/libxml-filter-detectws-perl/debian/changelog (added)
+++ trunk/libxml-filter-detectws-perl/debian/changelog Sat Dec  1 12:28:17 2007
@@ -1,0 +1,51 @@
+libxml-filter-detectws-perl (0.01-6) unstable; urgency=low
+
+  * Added debian/watch file so uscan will actually work
+
+ -- Jay Bonci <jaybonci at debian.org>  Tue, 26 Oct 2004 23:02:29 -0400
+
+libxml-filter-detectws-perl (0.01-5) unstable; urgency=low
+
+  * New Maintainer (Closes: #210523)
+  * Bumped policy version to 3.6.1.0 (no other changes)
+  * Updated CPAN url
+  * Changed copyright boilerplate to more accurately describe the dual nature of the perl license
+  * Removed upstream README from distribution as it contained nothing outside of the POD or control file
+  * Changed over to my standard rules template
+
+ -- Jay Bonci <jaybonci at debian.org>  Sun,  9 Nov 2003 22:02:44 -0500
+
+libxml-filter-detectws-perl (0.01-4) unstable; urgency=low
+
+  * debian/rules: moved debhelper compatibility level setting to
+    'debian/compat' per latest debhelper best practices
+  * debian/control: updated sections according to latest archive changes:
+    - 'libxml-filter-detectws-perl' from 'interpreters' to 'perl'
+  * debian/control: upgraded build dependency on 'debhelper' to '>= 4.1'
+  * debian/control: upgraded to Debian Policy 3.6.0 (no changes)
+
+ -- Ardo van Rangelrooij <ardo at debian.org>  Wed,  3 Sep 2003 16:33:16 -0500
+
+libxml-filter-detectws-perl (0.01-3) unstable; urgency=low
+
+  * debian/rules: upgraded to debhelper v4
+  * debian/control: changed build dependency on debhelper accordingly
+  * debian/rules: migrated from 'dh_movefiles' to 'dh_install'
+  * debian/rules: split off 'install' target from 'binary-indep' target
+  * debian/copyright: added pointer to license
+
+ -- Ardo van Rangelrooij <ardo at debian.org>  Tue,  6 Aug 2002 20:58:02 -0500
+
+libxml-filter-detectws-perl (0.01-2) unstable; urgency=low
+
+  * debian/control: fixed typos and such in description
+    (closes: Bug#115948)
+  * debian/control: upgraded to Debian Policy 3.5.6
+
+ -- Ardo van Rangelrooij <ardo at debian.org>  Sat,  3 Nov 2001 20:13:50 -0600
+
+libxml-filter-detectws-perl (0.01-1) unstable; urgency=low
+
+  * Initial release as a separate package
+
+ -- Ardo van Rangelrooij <ardo at debian.org>  Mon,  3 Sep 2001 10:59:22 -0500

Added: trunk/libxml-filter-detectws-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libxml-filter-detectws-perl/debian/compat?rev=10459&op=file
==============================================================================
--- trunk/libxml-filter-detectws-perl/debian/compat (added)
+++ trunk/libxml-filter-detectws-perl/debian/compat Sat Dec  1 12:28:17 2007
@@ -1,0 +1,1 @@
+4

Added: trunk/libxml-filter-detectws-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libxml-filter-detectws-perl/debian/control?rev=10459&op=file
==============================================================================
--- trunk/libxml-filter-detectws-perl/debian/control (added)
+++ trunk/libxml-filter-detectws-perl/debian/control Sat Dec  1 12:28:17 2007
@@ -1,0 +1,35 @@
+Source: libxml-filter-detectws-perl
+Section: perl
+Priority: optional
+Maintainer: Jay Bonci <jaybonci at debian.org>
+Standards-Version: 3.6.1.0
+Build-Depends-Indep: debhelper (>= 4.1), perl, libxml-filter-saxt-perl
+
+Package: libxml-filter-detectws-perl
+Section: perl
+Priority: optional
+Architecture: all
+Depends: ${perl:Depends}, libxml-filter-saxt-perl
+Conflicts: libxml-enno-perl
+Replaces: libxml-enno-perl
+Description: Perl module for detecting ignorable whitespace
+ This module is a PerlSAX filter that detects which character data
+ contains ignorable whitespace and optionally filters it.
+ .
+ The XML spec defines ignorable whitespace as the character data found
+ in elements that were defined in an <!ELEMENT> declaration with a model
+ of 'EMPTY' or 'Children' (Children is the rule that does not contain
+ '#PCDATA').
+ .
+ In addition, XML::Filter::DetectWS allows the user to define other
+ whitespace to be ignorable.  The ignorable whitespace is passed to
+ the PerlSAX Handler with the ignorable_whitespace handler, provided
+ that the Handler implements this method.  Otherwise it is passed to
+ the characters handler.  If the SkipIgnorableWS is set, the ignorable
+ whitespace is simply discarded.  XML::Filter::DetectWS also takes
+ xml:space attributes into account.
+ .
+ CDATA sections are passed in the standard PerlSAX way (i.e. with
+ surrounding start_cdata and end_cdata events), unless the Handler
+ does not implement these methods.  In that case, the CDATA section is
+ simply passed to the characters method.

Added: trunk/libxml-filter-detectws-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libxml-filter-detectws-perl/debian/copyright?rev=10459&op=file
==============================================================================
--- trunk/libxml-filter-detectws-perl/debian/copyright (added)
+++ trunk/libxml-filter-detectws-perl/debian/copyright Sat Dec  1 12:28:17 2007
@@ -1,0 +1,27 @@
+This package was debianized by Ardo van Rangelrooij <ardo at debian.org>
+on Mon, Sep  3, 2001, 10:55:12 -0500.
+
+It was downloaded from the Comprehensive Perl Archive Network:
+http://search.cpan.org/dist/XML-Filter-DetectWS/
+
+Upstream Author: Enno Derksen <enno at att.com>
+
+Copyright (c) 1999,2000 Enno Derksen
+All rights reserved.
+
+        This program is free software; you can redistribute it and/or modify
+        it under the terms of either:
+
+        a) the GNU General Public License as published by the Free
+        Software Foundation; either version 1, or (at your option) any
+        later version, or
+
+        b) the "Artistic License"
+
+        See:
+
+        /usr/share/common-licenses/Artistic
+        /usr/share/common-licenses/GPL
+
+        For more information regarding these licensing options
+

Added: trunk/libxml-filter-detectws-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libxml-filter-detectws-perl/debian/rules?rev=10459&op=file
==============================================================================
--- trunk/libxml-filter-detectws-perl/debian/rules (added)
+++ trunk/libxml-filter-detectws-perl/debian/rules Sat Dec  1 12:28:17 2007
@@ -1,0 +1,53 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+# export DH_COMPAT=4
+
+PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
+
+
+build:
+	dh_testdir
+	# Add here commands to compile the package.
+	perl Makefile.PL verbose INSTALLDIRS=vendor
+clean:
+	dh_testdir
+	dh_testroot
+
+	-$(MAKE) clean
+	rm -f Makefile.old
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) PREFIX=$(CURDIR)/debian/$(PACKAGE)/usr OPTIMIZE="-O2 -g -Wall" test install
+	-find $(CURDIR)/debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
+
+binary-arch:;
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installman
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

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

Added: trunk/libxml-filter-detectws-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libxml-filter-detectws-perl/debian/watch?rev=10459&op=file
==============================================================================
--- trunk/libxml-filter-detectws-perl/debian/watch (added)
+++ trunk/libxml-filter-detectws-perl/debian/watch Sat Dec  1 12:28:17 2007
@@ -1,0 +1,2 @@
+version=2
+http://www.cpan.org/modules/by-module/XML/XML-Filter-DetectWS-([0-9].*)\.tar.gz




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