--- libwww-indexparser-perl-0.91.orig/debian/changelog +++ libwww-indexparser-perl-0.91/debian/changelog @@ -0,0 +1,77 @@ +libwww-indexparser-perl (0.91-1.1) unstable; urgency=medium + + * Non-maintainer upload + * Bump debhelper compat level. Closes: #817561 + + -- Christoph Biedl Sat, 17 Dec 2016 14:36:33 +0100 + +libwww-indexparser-perl (0.91-1) unstable; urgency=low + + * New upstream release + + -- James Bromberger Sat, 26 Jul 2008 16:04:59 +0100 + +libwww-indexparser-perl (0.8-1) unstable; urgency=low + + * New upstream release + * Previous release 0.7 never uploaded since I found a bug + between building the 0.7 package, and uploading it. + + -- James Bromberger Sun, 19 Nov 2006 14:27:45 +0000 + +libwww-indexparser-perl (0.7-1) unstable; urgency=low + + * New upstream release, support lighttpd: www.lighttpd.net + + -- James Bromberger Sun, 19 Nov 2006 11:56:11 +0000 + +libwww-indexparser-perl (0.6-2.1) unstable; urgency=medium + + * NMU to fix release critical bug. + * Do not run testsuite, since only test requires net access + which cannot be considered available on package build (and has + potential privacy ('callout') issues). Closes: #389696. + + -- Thijs Kinkhorst Fri, 6 Oct 2006 15:13:42 +0200 + +libwww-indexparser-perl (0.6-2) unstable; urgency=low + + * Correct fix for Build-Depends that somewhow got removed between 0.5-1 + and 0.6-1. *sigh*. + + -- James Bromberger Fri, 29 Sep 2006 21:39:22 +0100 + +libwww-indexparser-perl (0.6-1) unstable; urgency=low + + * New upstream release + * Fix build-depends on HTTP::Headers (used during the tests after + build), thanks to Daniel Schepler. Closes: #389696. + + -- James Bromberger Thu, 28 Sep 2006 07:49:44 +0100 + +libwww-indexparser-perl (0.5-1) unstable; urgency=low + + * New upstream release + + -- James Bromberger Sun, 24 Sep 2006 18:01:21 +0100 + +libwww-indexparser-perl (0.4-3) unstable; urgency=low + + * Fix build-depends on libwww-perl, thanks to Andreas Jochens. + Closes: #386981. + + -- James Bromberger Mon, 11 Sep 2006 21:23:53 +0100 + +libwww-indexparser-perl (0.4-2) unstable; urgency=low + + * Corrected copyright file and package description + (removing boilerblate text). + + -- James Bromberger Mon, 11 Sep 2006 21:21:22 +0100 + +libwww-indexparser-perl (0.4-1) unstable; urgency=low + + * Initial Release. Closes: #385756. + + -- James Bromberger Sat, 2 Sep 2006 22:44:31 +0100 + --- libwww-indexparser-perl-0.91.orig/debian/compat +++ libwww-indexparser-perl-0.91/debian/compat @@ -0,0 +1 @@ +10 --- libwww-indexparser-perl-0.91.orig/debian/control +++ libwww-indexparser-perl-0.91/debian/control @@ -0,0 +1,18 @@ +Source: libwww-indexparser-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 10~), libwww-perl, libdatetime-locale-perl, libhtml-parser-perl +Build-Depends-Indep: perl (>= 5.8.0-7) +Maintainer: James Bromberger +Standards-Version: 3.8.0.0 + +Package: libwww-indexparser-perl +Architecture: all +Depends: ${perl:Depends}, libwww-perl, libdatetime-locale-perl, libhtml-parser-perl +Description: Fetch and parse the directory index from a web server + WWW::IndexParser is a module that uses LWP to fetch a URL from a web + server. It then atempts to parse this page as if it were an auto generated + index page. It returns an array of WWW::IndexParser::Entry objects, one + per entry in the directory index that it has found. Each Entry has a + set of methods: filename(), time(), size(), and others if supported + by the autoindex generated: type() and size_units(). --- libwww-indexparser-perl-0.91.orig/debian/copyright +++ libwww-indexparser-perl-0.91/debian/copyright @@ -0,0 +1,16 @@ +This is the debian package for the WWW-IndexParser module. +It was created by James Bromberger using dh-make-perl. + +The upstream author is: + +James Bromberger . + + +Copyright (c) 2006 James Bromberger. All rights reserved. All rights +reserved. This program is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic 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'. --- libwww-indexparser-perl-0.91.orig/debian/rules +++ libwww-indexparser-perl-0.91/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt 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) OPTIMIZE="-Wall -O2 -g" + + 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 + # Disable testsuite since it requires net access during build. + #$(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_installcron +# dh_installmenu +# dh_installexamples + dh_installdocs README + dh_installchangelogs Changes + dh_perl + 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 --- libwww-indexparser-perl-0.91.orig/debian/watch +++ libwww-indexparser-perl-0.91/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 2; this line is compulsory! +version=2 +http://www.cpan.org/modules/by-module/WWW/WWW-IndexParser-(.*).(tar.gz|tar|tgz)