--- libcrypt-smbhash-perl-0.12.orig/debian/changelog +++ libcrypt-smbhash-perl-0.12/debian/changelog @@ -0,0 +1,72 @@ +libcrypt-smbhash-perl (0.12-4.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 Fri, 01 Jan 2021 16:42:55 +0100 + +libcrypt-smbhash-perl (0.12-4) unstable; urgency=low + + * lifted standards version, debhelper compat level + * updated long description to include module name + + -- Alexander Zangerl Tue, 24 Sep 2013 12:21:40 +1000 + +libcrypt-smbhash-perl (0.12-3) unstable; urgency=low + + * lifted standards version + * cleared some lintian warnings + * fixed makemaker DESTDIR/PREFIX issue with perl 5.10.1 + + -- Alexander Zangerl Wed, 16 Sep 2009 10:36:35 +1000 + +libcrypt-smbhash-perl (0.12-2) unstable; urgency=low + + * lifted standards version + + -- Alexander Zangerl Tue, 10 Apr 2007 18:04:48 +1000 + +libcrypt-smbhash-perl (0.12-1) unstable; urgency=low + + * New upstream release (closes: #329523) + * updated watch file, lifted standards version + + -- Alexander Zangerl Sat, 24 Sep 2005 12:54:23 +1000 + +libcrypt-smbhash-perl (0.02-6) unstable; urgency=low + + * lifted standards version, added homepage to description + * applied patch to fix 8-bit passwords (for perl 5.8+) (closes: #211127) + + -- Alexander Zangerl Thu, 11 Dec 2003 13:03:08 +1000 + +libcrypt-smbhash-perl (0.02-5) unstable; urgency=low + + * standards version lifted, section changed + + -- Alexander Zangerl Tue, 1 Apr 2003 21:18:35 +1000 + +libcrypt-smbhash-perl (0.02-4) unstable; urgency=low + + * standards version lifted, some debhelper cleanup. + + -- Alexander Zangerl Sun, 9 Mar 2003 11:09:41 +1000 + +libcrypt-smbhash-perl (0.02-3) unstable; urgency=low + + * /usr/doc transition stuff disabled. + + -- Alexander Zangerl Fri, 3 Jan 2003 15:49:47 +1000 + +libcrypt-smbhash-perl (0.02-2) unstable; urgency=low + + * include pointer to GPL (Closes: Bug#157561) + + -- Alexander Zangerl Wed, 21 Aug 2002 09:39:41 +1000 + +libcrypt-smbhash-perl (0.02-1) unstable; urgency=low + + * Initial Release (Closes: Bug#146458) + + -- Alexander Zangerl Fri, 10 May 2002 16:46:39 +1000 + --- libcrypt-smbhash-perl-0.12.orig/debian/compat +++ libcrypt-smbhash-perl-0.12/debian/compat @@ -0,0 +1 @@ +8 --- libcrypt-smbhash-perl-0.12.orig/debian/control +++ libcrypt-smbhash-perl-0.12/debian/control @@ -0,0 +1,19 @@ +Source: libcrypt-smbhash-perl +Section: perl +Priority: extra +Maintainer: Alexander Zangerl +Build-Depends: debhelper (>= 8.0.0) +Build-Depends-Indep: perl, libdigest-md4-perl +Standards-Version: 3.9.4 + +Package: libcrypt-smbhash-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libdigest-md4-perl +Homepage: http://www.cpan.org/authors/id/B/BJ/BJKUIT/ +Description: generate LM/NT hash of a password for samba + Crypt::SmbHash provides functions to generate LM/NT hashes + used in Samba's 'smbpasswd' file. + . + The module is a direct port of code from Samba and is written + entirely in perl, so it is slower than a C implementation but it + is easily ported and installed. --- libcrypt-smbhash-perl-0.12.orig/debian/copyright +++ libcrypt-smbhash-perl-0.12/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Alexander Zangerl on +Fri, 10 May 2002 16:28:18 +1000. + +It was downloaded from http://www.cpan.org/authors/id/B/BJ/BJKUIT/. + +Upstream Author: Benjamin Kuit + +Copyright: + +Ported from Samba by Benjamin Kuit . + +Samba is Copyright(C) Andrew Tridgell 1997-1998 + +Because this module is a direct port of code within the Samba +distribution, it follows the same license, that is: + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + +On Debian systems the GPL and similar licenses can be found in +/usr/share/common-licenses/. + --- libcrypt-smbhash-perl-0.12.orig/debian/docs +++ libcrypt-smbhash-perl-0.12/debian/docs @@ -0,0 +1 @@ +README --- libcrypt-smbhash-perl-0.12.orig/debian/libcrypt-smbhash-perl.docs +++ libcrypt-smbhash-perl-0.12/debian/libcrypt-smbhash-perl.docs @@ -0,0 +1,2 @@ +README + --- libcrypt-smbhash-perl-0.12.orig/debian/rules +++ libcrypt-smbhash-perl-0.12/debian/rules @@ -0,0 +1,52 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +BUILDDIR=$(CURDIR)/debian/libcrypt-smbhash-perl + +configure: Makefile +Makefile: Makefile.PL + dh_testdir + perl Makefile.PL INSTALLDIRS=vendor + +build-arch: build +build-indep: build + +build: build-stamp + +build-stamp: configure + dh_testdir + $(MAKE) OPTIMIZE="-O2 -g -Wall" + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) clean + rm -f Makefile Makefile.old + dh_clean + +# Build architecture-independent files here. +binary-indep: build + dh_testdir + dh_testroot + dh_clean + dh_installdirs + $(MAKE) test + $(MAKE) install DESTDIR=$(BUILDDIR) + dh_installdocs -n + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary configure --- libcrypt-smbhash-perl-0.12.orig/debian/watch +++ libcrypt-smbhash-perl-0.12/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://cpan.org/authors/id/B/BJ/BJKUIT/Crypt-SmbHash-(.*).tar.gz debian