--- libdigest-perl-1.00.orig/debian/changelog +++ libdigest-perl-1.00/debian/changelog @@ -0,0 +1,18 @@ +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.00.orig/debian/control +++ libdigest-perl-1.00/debian/control @@ -0,0 +1,16 @@ +Source: libdigest-perl +Maintainer: Michael Alan Dorman +Section: perl +Priority: optional +Build-Depends-Indep: debhelper (>= 3.0.5), perl (>= 5.6.0-17), libdigest-md5-perl +Standards-Version: 3.5.8.0 + +Package: libdigest-perl +Section: interpreters +Priority: optional +Architecture: all +Depends: ${perl:Depends}, libdigest-md5-perl +Description: generic interface to message digest modules + This is just a simple frontend module for autoloading of various + Digest:: modules. It also provide documentation of the interface + that all Digest:: modules should provide. --- libdigest-perl-1.00.orig/debian/copyright +++ libdigest-perl-1.00/debian/copyright @@ -0,0 +1,23 @@ +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 . +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.00.orig/debian/rules +++ libdigest-perl-1.00/debian/rules @@ -0,0 +1,64 @@ +#!/usr/bin/make -f +# -*- Makefile -*- + +# Use debhelper V. 4 +export DH_COMPAT := 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