--- libalgorithm-checkdigits-perl-0.50.orig/CheckDigits/M97_002.pm +++ libalgorithm-checkdigits-perl-0.50/CheckDigits/M97_002.pm @@ -222,6 +222,7 @@ L, L, F, -F. +F. =cut --- libalgorithm-checkdigits-perl-0.50.orig/debian/changelog +++ libalgorithm-checkdigits-perl-0.50/debian/changelog @@ -0,0 +1,18 @@ +libalgorithm-checkdigits-perl (0.50-1.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Sun, 03 Jan 2021 12:58:23 +0100 + +libalgorithm-checkdigits-perl (0.50-1) unstable; urgency=low + + * New upstream version (Closes: #495190) + + -- Jose Parrella Sun, 30 Nov 2008 21:00:18 -0430 + +libalgorithm-checkdigits-perl (0.48-1) unstable; urgency=low + + * Initial Release. (Closes: #461628) + + -- Jose Parrella Wed, 19 Mar 2008 21:01:49 -0430 --- libalgorithm-checkdigits-perl-0.50.orig/debian/compat +++ libalgorithm-checkdigits-perl-0.50/debian/compat @@ -0,0 +1 @@ +5 --- libalgorithm-checkdigits-perl-0.50.orig/debian/control +++ libalgorithm-checkdigits-perl-0.50/debian/control @@ -0,0 +1,20 @@ +Source: libalgorithm-checkdigits-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-12) +Maintainer: Jose Parrella +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Algorithm-CheckDigits/ + +Package: libalgorithm-checkdigits-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Perl extension to generate and test check digits + This module provides a number of methods to test and generate checksum + digits such as carrier trackers, ISBNs, banknotes, credit cards and a + lot of other identification numbers. + . + It will check validity, complete partial numbers, provide base check + numbers and extract check digits from several sequence of numbers. + --- libalgorithm-checkdigits-perl-0.50.orig/debian/copyright +++ libalgorithm-checkdigits-perl-0.50/debian/copyright @@ -0,0 +1,20 @@ +This is the debian package for the Algorithm-CheckDigits module. +It was created by Jose Parrella using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Algorithm-CheckDigits/ + +The upstream author is: + Mathias Weidner, . + +Copyright: + (C) 2004-2006 Mathias Weidner + + This library is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL', the complete text of +the Artistic License can be found in `/usr/share/common-licenses/Artistic'. + +The Debian packaging is (C) 2008, Jose Parrella and +is licensed under the same terms as the software itself (see above). --- libalgorithm-checkdigits-perl-0.50.orig/debian/rules +++ libalgorithm-checkdigits-perl-0.50/debian/rules @@ -0,0 +1,69 @@ +#!/usr/bin/make -f + +# 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) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + # Add commands to install the package into $(TMP) here + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installexamples + dh_installdocs README + dh_installchangelogs Changes + dh_perl + 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