--- libhttp-dav-perl-0.44.orig/debian/rules +++ libhttp-dav-perl-0.44/debian/rules @@ -0,0 +1,52 @@ +#! /usr/bin/make -f +# -*-makefile-*- +# debian/rules file for libhttp-dav-perl + +PERL ?= /usr/bin/perl + +package := $(shell sed -ne 's/^Package: *//p' debian/control) +dest := $(CURDIR)/debian/$(package) + +version := $(shell dpkg-parsechangelog | \ + sed -ne 's/Version: *\([0-9]\+:\)*//p') + +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor PERL=$(PERL) + $(MAKE) LD_RUN_PATH= + touch $@ + +clean: checkroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +binary-indep: checkroot build + dh_clean + dh_installdirs + + $(MAKE) pure_install DESTDIR=$(dest) + + dh_installdocs README + dh_installexamples + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: checkroot build + +binary: binary-indep binary-arch + +checkroot: + dh_testdir + dh_testroot + +.PHONY: binary binary-arch binary-indep clean checkroot build --- libhttp-dav-perl-0.44.orig/debian/compat +++ libhttp-dav-perl-0.44/debian/compat @@ -0,0 +1 @@ +5 --- libhttp-dav-perl-0.44.orig/debian/copyright +++ libhttp-dav-perl-0.44/debian/copyright @@ -0,0 +1,21 @@ + +This package was downloaded from + + http://www.cpan.org/authors/id/P/PC/PCOLLINS/ + +Copyright 1998 Swarthmore College. All rights reserved. + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +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. + + +You will find a copy of the GPL in /usr/share/common-licenses/GPL. + +You will find a copy of the Artistic licence in +/usr/share/common-licenses/Artistic. --- libhttp-dav-perl-0.44.orig/debian/changelog +++ libhttp-dav-perl-0.44/debian/changelog @@ -0,0 +1,69 @@ +libhttp-dav-perl (0.44-1) unstable; urgency=low + + * New upstream release. + * Replace PREFIX with DESTDIR in make install; fixes lintian warning + and prepares for change in ExtUtils::MakeMaker. + * Add ${misc:Depends} to Depends list, to make debhelper happy. + * Bump Standard-Version to 3.9.4. + * Add build-arch and build-indep targets. + + -- Steinar H. Gunderson Thu, 14 Mar 2013 19:32:14 +1300 + +libhttp-dav-perl (0.38-1) unstable; urgency=low + + * New upstream release (Closes: #560249). + * Obsoletes (incorporates) all local patches. + * Upgrade to debhelper compat level 5 (no changes needed except + adjustment of build-dependency). + * Upgrade to Standards-Version level 3.8.3 (no changes needed). + * Reformat description to avoid line wrapping of the bullet list. + (Closes: #480329) + * Remove obsolete "tag" target from debian/rules. + * Don't ignore all distclean failures in debian/rules; check for existence + of Makefile instead. + + -- Steinar H. Gunderson Thu, 10 Dec 2009 00:34:50 +0100 + +libhttp-dav-perl (0.31-5) unstable; urgency=low + + * Use CURDIR instead of PWD in debian/rules; fixes lintian warning and + possible FTBFS with sudo. + * Update Standards-Version to 3.7.2; no changes needed. + + -- Steinar H. Gunderson Thu, 31 May 2007 15:54:41 +0200 + +libhttp-dav-perl (0.31-4) unstable; urgency=low + + * Add the upstream URL to debian/copyright. + * Update short description to mention dave; based on patch by Jon + Dowland. (Closes: #420617) + + -- Steinar H. Gunderson Sun, 20 May 2007 11:36:38 +0200 + +libhttp-dav-perl (0.31-3) unstable; urgency=low + + * Make Build-depends-indep on debhelper into an ordinary build-depends, as + we use them in non-indep targets. + + -- Steinar H. Gunderson Thu, 15 Jun 2006 21:45:04 +0200 + +libhttp-dav-perl (0.31-2) unstable; urgency=low + + * New maintainer. (Closes: #279792) + * Upgraded Standards-Version to 3.6.1 (no changes needed). + * Minor correction in short package description. + * Minor reformatting in the long package description. + * Added a missing quote in the man page. (Closes: #218001) + * HTTP::DAV::Utils::get_elements_by_tag_name() now handles as + well as (where D: is any namespace). (Closes: #227064) + * Now uses debhelper v4 (and uses debian/compat instead of DH_COMPAT). + Build-Depends updated correspondingly. + + -- Steinar H. Gunderson Sat, 13 Nov 2004 23:29:30 +0100 + +libhttp-dav-perl (0.31-1) unstable; urgency=low + + * New package, + Closes: #78442 + + -- Stephen Zander Fri, 26 Apr 2002 14:35:07 -0700 --- libhttp-dav-perl-0.44.orig/debian/control +++ libhttp-dav-perl-0.44/debian/control @@ -0,0 +1,26 @@ +Source: libhttp-dav-perl +Maintainer: Steinar H. Gunderson +Section: web +Priority: optional +Standards-Version: 3.9.4 +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.6.1), libxml-dom-perl + +Package: libhttp-dav-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libwww-perl, libxml-dom-perl +Recommends: libdigest-md5-perl +Suggests: libcrypt-ssleay-perl +Description: WebDAV client library for Perl, and "dave" CLI client + HTTP::DAV provides client-side access to a DAV server. DAV is a + protocol for remote web-site authoring and management. Now you can + LOCK, DELETE and PUT files and much more on a DAV-enabled webserver. + . + The PerlDAV library consists of: + . + * HTTP::DAV - an object-oriented Web-DAV client API. + * dave - the DAV Explorer, an end-user Unix console program for + interacting with WebDAV servers. dave looks and feels like a + standard Unix ftp program. + . + Learn more about WebDAV at http://www.webdav.org/