--- libcrypt-unixcrypt-perl-1.0.orig/debian/changelog +++ libcrypt-unixcrypt-perl-1.0/debian/changelog @@ -0,0 +1,19 @@ +libcrypt-unixcrypt-perl (1.0-3) unstable; urgency=low + + * Orphaning, maintainer set to QA Group + + -- Brian Nelson Mon, 4 Jul 2005 17:52:51 -0700 + +libcrypt-unixcrypt-perl (1.0-2) unstable; urgency=low + + * Updated maintainer email address. + * Bumped up standards version to 3.5.8. + * Removed period at the end of the short description. + + -- Brian Nelson Thu, 27 Feb 2003 17:39:48 -0800 + +libcrypt-unixcrypt-perl (1.0-1) unstable; urgency=low + + * Initial Release (Closes: #169655) + + -- Brian Nelson Wed, 27 Nov 2002 23:38:03 -0800 --- libcrypt-unixcrypt-perl-1.0.orig/debian/control +++ libcrypt-unixcrypt-perl-1.0/debian/control @@ -0,0 +1,17 @@ +Source: libcrypt-unixcrypt-perl +Section: interpreters +Priority: optional +Build-Depends-Indep: debhelper (>= 3.0.5), perl (>= 5.8.0-7) +Maintainer: Debian QA Group +Standards-Version: 3.5.8 + +Package: libcrypt-unixcrypt-perl +Architecture: all +Depends: ${perl:Depends} +Description: Perl-only implementation of the crypt(3) function + The Crypt::UnixCrypt module is a portable implementation of the Unix + library function crypt(). It is especially useful on systems whose + perl does not implement the built-in crypt() function. + . + This module won't overload a built-in crypt() unless forced by a true + value of the variable $Crypt::UnixCrypt::OVERRIDE_BUILTIN. --- libcrypt-unixcrypt-perl-1.0.orig/debian/copyright +++ libcrypt-unixcrypt-perl-1.0/debian/copyright @@ -0,0 +1,22 @@ +This is the debian package for the Crypt::UnixCrypt module created by +Brian Nelson . + +The original sources should always be available from the Comprehensive +Perl Archive Network (CPAN). Visit http://www.perl.com/CPAN/ to find a +CPAN site near you. + +The upstream author is: + +Martin Vorlaender + +Based upon Java source code written by jdumas@zgs.com, which in turn is +based upon C source code written by Eric Young, eay@psych.uq.oz.au.. + + +This module is free software; you may redistribute it and/or modify it +under the same terms as Perl itself. + +This module is free software; you can redistribute it and/or modify it +under the term of the Perl Artistic License. On a Debian system a copy +of the Perl Artistic License can be found in the file +'/usr/share/common-licenses/Artistic'. --- libcrypt-unixcrypt-perl-1.0.orig/debian/rules +++ libcrypt-unixcrypt-perl-1.0/debian/rules @@ -0,0 +1,79 @@ +#!/usr/bin/make -f +#-*- makefile -*- +# Made with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Some lines taken from debmake, by Christoph Lameter. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 +export DH_COMPAT=3 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +ifndef DESTDIR +DESTDIR=.. +endif +TMP =`pwd`/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) realclean + + dh_clean + +install: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install PREFIX=$(TMP)/usr + + # Remove unnecessary directories + rmdir $(TMP)/usr/lib/perl5 $(TMP)/usr/lib + + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_installman + dh_installchangelogs CHANGES + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb --destdir=$(DESTDIR) + +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