r4551 - in /packages/libhtml-scrubber-perl/trunk/debian: ./ changelog compat control copyright rules watch

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Mon Dec 4 22:29:47 CET 2006


Author: ntyni-guest
Date: Mon Dec  4 22:29:46 2006
New Revision: 4551

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4551
Log:
Load libhtml-scrubber-perl-0.08 into
packages/libhtml-scrubber-perl/trunk.

Added:
    packages/libhtml-scrubber-perl/trunk/debian/
    packages/libhtml-scrubber-perl/trunk/debian/changelog
    packages/libhtml-scrubber-perl/trunk/debian/compat
    packages/libhtml-scrubber-perl/trunk/debian/control
    packages/libhtml-scrubber-perl/trunk/debian/copyright
    packages/libhtml-scrubber-perl/trunk/debian/rules   (with props)
    packages/libhtml-scrubber-perl/trunk/debian/watch

Added: packages/libhtml-scrubber-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libhtml-scrubber-perl/trunk/debian/changelog?rev=4551&op=file
==============================================================================
--- packages/libhtml-scrubber-perl/trunk/debian/changelog (added)
+++ packages/libhtml-scrubber-perl/trunk/debian/changelog Mon Dec  4 22:29:46 2006
@@ -1,0 +1,20 @@
+libhtml-scrubber-perl (0.08-3) unstable; urgency=low
+
+  * Moved debhelper to Build-Depends
+  * Switched to my debian.org email address throughout
+
+ -- Stephen Quinney <sjq at debian.org>  Wed, 21 Jun 2006 18:44:20 +0100
+
+libhtml-scrubber-perl (0.08-2) unstable; urgency=low
+
+  * debian/watch - Updated URL to stop lookups randomly failing.
+
+ -- Stephen Quinney <sjq at debian.org>  Sat, 11 Jun 2005 14:17:10 +0100
+
+libhtml-scrubber-perl (0.08-1) unstable; urgency=low
+
+  *  Inital release, closes: #256642.
+
+ -- Stephen Quinney <sjq at debian.org>  Fri,  2 Jul 2004 11:46:04 +0100
+
+

Added: packages/libhtml-scrubber-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libhtml-scrubber-perl/trunk/debian/compat?rev=4551&op=file
==============================================================================
--- packages/libhtml-scrubber-perl/trunk/debian/compat (added)
+++ packages/libhtml-scrubber-perl/trunk/debian/compat Mon Dec  4 22:29:46 2006
@@ -1,0 +1,1 @@
+4

Added: packages/libhtml-scrubber-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libhtml-scrubber-perl/trunk/debian/control?rev=4551&op=file
==============================================================================
--- packages/libhtml-scrubber-perl/trunk/debian/control (added)
+++ packages/libhtml-scrubber-perl/trunk/debian/control Mon Dec  4 22:29:46 2006
@@ -1,0 +1,18 @@
+Source: libhtml-scrubber-perl
+Section: perl
+Priority: optional
+Maintainer: Stephen Quinney <sjq at debian.org>
+Build-Depends: debhelper (>= 4)
+Build-Depends-Indep: perl (>= 5.8.0), libhtml-parser-perl
+Standards-Version: 3.7.2
+
+Package: libhtml-scrubber-perl
+Architecture: all
+Depends: perl (>= 5.6.0-16), libhtml-parser-perl
+Description: Perl extension for scrubbing/sanitizing html
+ If you want to "scrub" or "sanitize" html input in a reliable and
+ flexible fashion, then this module is for you.
+ .
+ The author says: "I was not satisfied with HTML::Sanitizer because it
+ is based on HTML::TreeBuilder, so I thought I would write something
+ similar that works directly with HTML::Parser".

Added: packages/libhtml-scrubber-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libhtml-scrubber-perl/trunk/debian/copyright?rev=4551&op=file
==============================================================================
--- packages/libhtml-scrubber-perl/trunk/debian/copyright (added)
+++ packages/libhtml-scrubber-perl/trunk/debian/copyright Mon Dec  4 22:29:46 2006
@@ -1,0 +1,25 @@
+This package was debianized by Stephen Quinney <stephen at jadevine.org.uk> on
+Fri, 02 Jul 2004 11:46:26 +0100
+
+It was downloaded from http://search.cpan.org/CPAN/authors/id/P/PO/PODMASTER/
+
+Author: D.H. aka PodMaster <crazyinsomniac at yahoo.com>
+
+Copyright:
+
+   Copyright (C) 2003 D.H. aka PodMaster
+
+   This library is free software; you can redistribute it and/or modify
+   it under the same terms as Perl itself, these are:
+
+   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" which comes with Perl.
+
+   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/libhtml-scrubber-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libhtml-scrubber-perl/trunk/debian/rules?rev=4551&op=file
==============================================================================
--- packages/libhtml-scrubber-perl/trunk/debian/rules (added)
+++ packages/libhtml-scrubber-perl/trunk/debian/rules Mon Dec  4 22:29:46 2006
@@ -1,0 +1,73 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+PERL = /usr/bin/perl
+
+DESTDIR=..
+
+TMP     = $(CURDIR)/debian/$(PACKAGE)
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL verbose INSTALLDIRS=vendor
+
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp
+	dh_testdir
+
+	$(MAKE)
+	$(MAKE) test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot 
+
+	[ ! -e Makefile ] || $(MAKE) distclean
+
+	dh_clean build-stamp configure-stamp
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+	# Remove any empty directories
+
+	find $(TMP)/usr -type d -empty -print0 | xargs --no-run-if-empty --null rmdir -p --ignore-fail-on-non-empty
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installman
+	dh_installchangelogs Changes
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
+

Propchange: packages/libhtml-scrubber-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libhtml-scrubber-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libhtml-scrubber-perl/trunk/debian/watch?rev=4551&op=file
==============================================================================
--- packages/libhtml-scrubber-perl/trunk/debian/watch (added)
+++ packages/libhtml-scrubber-perl/trunk/debian/watch Mon Dec  4 22:29:46 2006
@@ -1,0 +1,7 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site		Directory		Pattern			Version	Script
+version=2
+http://www.cpan.org/authors/id/P/PO/PODMASTER/HTML-Scrubber-(\d+\.\d+)\.tar\.gz debian uupdate
+




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