--- libcrypt-des-ede3-perl-0.01.orig/debian/compat +++ libcrypt-des-ede3-perl-0.01/debian/compat @@ -0,0 +1 @@ +5 --- libcrypt-des-ede3-perl-0.01.orig/debian/changelog +++ libcrypt-des-ede3-perl-0.01/debian/changelog @@ -0,0 +1,13 @@ +libcrypt-des-ede3-perl (0.01-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with Perl 5.10. Closes: #467704 + + -- Mark Hymers Sat, 05 Apr 2008 21:08:53 +0100 + +libcrypt-des-ede3-perl (0.01-1) unstable; urgency=low + + * Initial release. + + -- Pierre-Matthieu Alamy Tue, 4 Apr 2006 16:01:02 +0000 + --- libcrypt-des-ede3-perl-0.01.orig/debian/watch +++ libcrypt-des-ede3-perl-0.01/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.cpan.org/modules/by-module/Crypt/Crypt-DES_EDE3-(.*)\.tar\.gz debian uscan --- libcrypt-des-ede3-perl-0.01.orig/debian/copyright +++ libcrypt-des-ede3-perl-0.01/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by Pierre-Matthieu Alamy on +Tue, 4 Apr 2006 16:01:02 +0000. + +It was downloaded from CPAN, http://search.cpan.org/~btrott/Crypt-DES_EDE3/ + +Upstream Author: Benjamin Trott + +Copyright 2001 Benjamin Trott. All rights reserved. + +License: +Crypt::DES_EDE3 is free software; you may redistribute it and/or modify +it under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. --- libcrypt-des-ede3-perl-0.01.orig/debian/control +++ libcrypt-des-ede3-perl-0.01/debian/control @@ -0,0 +1,24 @@ +Source: libcrypt-des-ede3-perl +Section: perl +Priority: optional +Maintainer: Pierre-Matthieu Alamy +Uploaders: Florian Ragwitz +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>=5.8.8-3), libcrypt-des-perl +Standards-Version: 3.6.2 + +Package: libcrypt-des-ede3-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libcrypt-des-perl +Description: Triple-DES EDE encryption/decryption for perl + Crypt::DES_EDE3 implements DES-EDE3 encryption. This is triple-DES + encryption where an encrypt operation is encrypt-decrypt-encrypt, and + decrypt is decrypt-encrypt-decrypt. This implementation uses Crypt::DES + to do its dirty DES work, and simply provides a wrapper around that + module: setting up the individual DES ciphers, initializing the keys, + and performing the encryption/decryption steps. + . + You're probably best off not using this module directly, as the encrypt + and decrypt methods expect 8-octet blocks. You might want to use the + module in conjunction with Crypt::CBC, for example. This would be + DES-EDE3-CBC, or triple-DES in outer CBC mode. --- libcrypt-des-ede3-perl-0.01.orig/debian/rules +++ libcrypt-des-ede3-perl-0.01/debian/rules @@ -0,0 +1,57 @@ +#!/usr/bin/make -f + +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 + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-Wall -O2 -g" + touch build-stamp + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + 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