--- libdigest-perl-1.15.orig/debian/changelog +++ libdigest-perl-1.15/debian/changelog @@ -0,0 +1,66 @@ +libdigest-perl (1.15-2) unstable; urgency=low + + * Fixed debian/watch, as it was too ambitious + + -- Gunnar Wolf Thu, 21 Sep 2006 19:39:31 -0500 + +libdigest-perl (1.15-1) unstable; urgency=low + + * New upstream release (Closes: #329531) + * New maintainer (in response to Matthias' mail, see + http://lists.debian.org/debian-devel/2006/05/msg02947.html) + Debian Perl Group + via Zak B. Elep + * debian/control: + + Bump Standards-Version . + + Move debhelper to Build-Depends and bump version to (> 5.0) . + Update debian/compat accordingly. + * debian/copyright: + + Update maintenance notes. + * debian/watch: + + Tighten watch regex, as previous regex inadvertently matches + Digest::Whirlpool tarball :/ + + -- Zak B. Elep Thu, 29 Jun 2006 13:26:33 +0800 + +libdigest-perl (1.10-1) unstable; urgency=low + + * New Upstream version. Closes: #303593. + * Updated watch file. + + -- Matthias Urlichs Thu, 14 Apr 2005 19:58:54 +0200 + +libdigest-perl (1.08-2) unstable; urgency=low + + * New maintainer. Closes: #274128. + * Fixed spelling errors in the description. + * Fixed dependency on debhelper (>=4.0). + * Added debian/watch file. + + -- Matthias Urlichs Sat, 2 Oct 2004 13:47:57 +0200 + +libdigest-perl (1.08-1) unstable; urgency=low + + * New upstream version. + * Update for later standards. + + -- Michael Alan Dorman Mon, 2 Aug 2004 16:16:24 -0400 + +libdigest-perl (1.00-3) unstable; urgency=low + + * Fix override disparity. + + -- Michael Alan Dorman Fri, 15 Aug 2003 18:47:01 -0400 + +libdigest-perl (1.00-2) unstable; urgency=low + + * Correct lack of references to licenses. (closes: bug#157576) + + -- Michael Alan Dorman Fri, 15 Aug 2003 15:42:23 -0400 + +libdigest-perl (1.00-1) unstable; urgency=low + + * Initial debianization. + + -- Michael Alan Dorman Wed, 18 Apr 2001 21:34:50 -0400 + --- libdigest-perl-1.15.orig/debian/control +++ libdigest-perl-1.15/debian/control @@ -0,0 +1,18 @@ +Source: libdigest-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Zak B. Elep , Carlo Segre , Gunnar Wolf +Build-Depends: debhelper (>= 5.0) +Build-Depends-Indep: perl (>= 5.6.0-17), libdigest-md5-perl | perl (>= 5.8) +Standards-Version: 3.7.2 + +Package: libdigest-perl +Section: perl +Priority: optional +Architecture: all +Depends: ${perl:Depends}, libdigest-md5-perl | perl (>= 5.8) +Description: generic interface to message digest modules + This is a simple frontend module for autoloading various Digest::* + modules. It also provides documentation of the interface that all + Digest::* modules should provide. --- libdigest-perl-1.15.orig/debian/compat +++ libdigest-perl-1.15/debian/compat @@ -0,0 +1 @@ +5 --- libdigest-perl-1.15.orig/debian/watch +++ libdigest-perl-1.15/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://www.cpan.org/modules/by-module/Digest/Digest-(\d.*)\.tar\.gz --- libdigest-perl-1.15.orig/debian/copyright +++ libdigest-perl-1.15/debian/copyright @@ -0,0 +1,28 @@ +This is Debian GNU/Linux's prepackaged version of Digest. This is a +perl library implementing a generic interface to message-digest +algorithms. + +This package was put together by Michael Alan Dorman . +Matthias Urlichs took over maintenance upon the +release of version 1.08-2 . However, due to his heavy workload, he +opted to put this package up for adoption. +Zak B. Elep now maintains this package. + +The original sources should always be available from the Comprehensive Perl +Archive Network (CPAN). Visit to find a CPAN +site near you. + +The only change for the Debian package was the addition of the debian/ +files. + +The Digest copright is as follows: + +Copyright 1998-2001 Gisle Aas. +Copyright 1995-1996 Neil Winton. + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +Larry Wall's "Artistic License" for perl can be found in +/usr/share/common-licenses/Artistic, and the GPL can be found in +/usr/share/common-licenses/GPL-2. --- libdigest-perl-1.15.orig/debian/rules +++ libdigest-perl-1.15/debian/rules @@ -0,0 +1,63 @@ +#!/usr/bin/make -f +# -*- Makefile -*- + +# Use debhelper V. 4 + +PERL ?= /usr/bin/perl + +b := $(shell pwd)/debian/libdigest-perl + +arrange: arrange-stamp +arrange-stamp: install + dh_testdir + dh_installdirs + touch arrange-stamp + +binary: binary-stamp +binary-stamp: binary-indep binary-arch + dh_testdir + touch binary-stamp + +binary-arch: binary-arch-stamp +binary-arch-stamp: arrange + dh_testdir + touch binary-arch-stamp + +binary-indep: binary-indep-stamp +binary-indep-stamp: arrange + dh_testdir + dh_testroot + dh_installdocs -n README + dh_installexamples + dh_installchangelogs Changes + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb + touch binary-indep-stamp + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch build-stamp + +clean: + dh_testdir + dh_testroot + if [ -e Makefile ]; then $(MAKE) -i distclean; fi + dh_clean arrange-stamp binary-stamp binary-arch-stamp binary-indep-stamp build-stamp install-stamp + +install: install-stamp +install-stamp: build + dh_testdir + $(MAKE) install PREFIX=$(b)/usr + touch install-stamp + +.PHONY: arrange binary binary-arch binary-indep build clean install