--- libdigest-perl-1.08.orig/debian/watch +++ libdigest-perl-1.08/debian/watch @@ -0,0 +1,2 @@ +version=1 +http://www.cpan.org/modules/by-module/Digest/Digest-(.*)\.tar\.gz --- libdigest-perl-1.08.orig/debian/changelog +++ libdigest-perl-1.08/debian/changelog @@ -0,0 +1,34 @@ +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.08.orig/debian/rules +++ libdigest-perl-1.08/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 --- libdigest-perl-1.08.orig/debian/compat +++ libdigest-perl-1.08/debian/compat @@ -0,0 +1 @@ +4 --- libdigest-perl-1.08.orig/debian/copyright +++ libdigest-perl-1.08/debian/copyright @@ -0,0 +1,25 @@ +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 . +It is now maintained by Matthias Urlichs . + +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.08.orig/debian/control +++ libdigest-perl-1.08/debian/control @@ -0,0 +1,16 @@ +Source: libdigest-perl +Maintainer: Matthias Urlichs +Section: perl +Priority: optional +Build-Depends-Indep: debhelper (>= 4.0), perl (>= 5.6.0-17), libdigest-md5-perl | perl (>= 5.8) +Standards-Version: 3.6.1 + +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.