--- libauthen-smb-perl-0.91.orig/debian/changelog +++ libauthen-smb-perl-0.91/debian/changelog @@ -0,0 +1,69 @@ +libauthen-smb-perl (0.91-4build2) precise; urgency=low + + * Rebuild for Perl 5.14. + + -- Colin Watson Tue, 15 Nov 2011 17:14:29 +0000 + +libauthen-smb-perl (0.91-4build1) oneiric; urgency=low + + * Rebuild for Perl 5.12. + + -- Colin Watson Sun, 08 May 2011 07:17:02 +0100 + +libauthen-smb-perl (0.91-4) unstable; urgency=low + + [ Xavier Oswald ] + * New maintainer is Debian Perl Group (closes: #466487) + * Add compat file + * Add watch file + * debian/rules + - removal of empty /usr/share/perl5 + - removal of upstream README, no relevant informations + * debian/control: + - add conflicts to libapache2-authenntlm-perl (cf. #432809) + - add Vcs-Svn field (source stanza) + - add Vcs-Browser field (source stanza) + - add Homepage field (source stanza) + - add XS-DM-Upload-Allowed: yes + - add myself as uploader + - change Section from web to perl + - update Standards-Version to 3.8.0 + + [ gregor herrmann ] + * Split changes in smbval/smblib.c out into a separate patch; add quilt + framework. + * Refresh debian/rules; now uses build-arch for creating the package. + * Add debian/README.source for policy compliance. + * debian/copyright: + - use specific upstream source location + - add copyright and license information for files under smbval/. + * debian/control: change XS-DM-Upload-Allowed to DM-Upload-Allowed. + + -- Xavier Oswald Thu, 21 Feb 2008 14:09:32 +0100 + +libauthen-smb-perl (0.91-3) unstable; urgency=low + + * #include in smblib.c to fix 64-bit arches, Closes: #226525 + * Standards-Version: 3.6.1 (no changes) + + -- Will Lowe Wed, 7 Jan 2004 10:42:35 -0800 + +libauthen-smb-perl (0.91-2.1) unstable; urgency=low + + * Non-maintainer upload (BSP) + * Rebuilt for perl 5.8. + + -- Bas Zoetekouw Sat, 31 Aug 2002 20:46:56 +0000 + +libauthen-smb-perl (0.91-2) unstable; urgency=low + + * no longer install .packlist + + -- Will Lowe Tue, 26 Jun 2001 16:35:12 -0700 + +libauthen-smb-perl (0.91-1) unstable; urgency=low + + * first Debian package. + + -- Will Lowe Tue, 26 Jun 2001 16:32:27 -0700 + --- libauthen-smb-perl-0.91.orig/debian/rules +++ libauthen-smb-perl-0.91/debian/rules @@ -0,0 +1,75 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# 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 + +include /usr/share/quilt/quilt.make + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +# Allow disabling build optimisation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH="" + $(MAKE) test + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/share/perl5 ] || \ + rmdir --ignore-fail-on-non-empty --parents --verbose \ + $(TMP)/usr/share/perl5 + touch $@ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do here for an architecture-dependent package + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_shlibdeps + dh_strip + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libauthen-smb-perl-0.91.orig/debian/watch +++ libauthen-smb-perl-0.91/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Authen-Smb/ .*/Authen-Smb-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libauthen-smb-perl-0.91.orig/debian/README.source +++ libauthen-smb-perl-0.91/debian/README.source @@ -0,0 +1,4 @@ +This package uses quilt to manage patches against the upstream source. + +You might want to refer to /usr/share/doc/quilt/README.source if you are not +familiar with quilt. --- libauthen-smb-perl-0.91.orig/debian/compat +++ libauthen-smb-perl-0.91/debian/compat @@ -0,0 +1 @@ +5 --- libauthen-smb-perl-0.91.orig/debian/control +++ libauthen-smb-perl-0.91/debian/control @@ -0,0 +1,19 @@ +Source: libauthen-smb-perl +Section: perl +Build-Depends: debhelper (>= 5), perl (>= 5.8), quilt (>= 0.40) +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Xavier Oswald +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Authen-Smb/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libauthen-smb-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-smb-perl/ +DM-Upload-Allowed: yes + +Package: libauthen-smb-perl +Architecture: any +Conflicts: libapache2-authenntlm-perl (<= 0.02) +Depends: ${perl:Depends}, ${shlibs:Depends} +Description: SMB authentication module for Perl + This package supplies a perl module for authenticating against + an SMB password server. --- libauthen-smb-perl-0.91.orig/debian/copyright +++ libauthen-smb-perl-0.91/debian/copyright @@ -0,0 +1,48 @@ +This is the Debian package of the Authen::Smb perl module. + +Upstream source location: http://search.cpan.org/dist/Authen-Smb/ + +The upstream author is: +Patrick Michael Kane + +Copyright: Copyright © 1998-1999 Patrick Michael Kane + +License: + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. + + THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +smbval/rfcnb-util.h, smbval/rfcnb.h, smbval/std-defines.h, + smbval/smblib-common.h, smbval/session.c, smbval/std-includes.h, + smbval/smblib.c, smbval/rfcnb-io.h, smbval/rfcnb-io.c, smbval/smblib-priv.h, + smbval/rfcnb-priv.h, smbval/smblib-util.c, smbval/rfcnb-util.c, + smbval/rfcnb-common.h, smbval/smblib.h, smbval/rfcnb-error.h: + +Copyright (C) Richard Sharpe 1996 + 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. + + +smbval/smbdes.c, smbval/smbencrypt.c, smbval/md4.c, smbval/byteorder.h: + +Copyright (C) Andrew Tridgell 1992-1997 + 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. + + +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 © 2008, Xavier Oswald and +is licensed under the GPL, see above. --- libauthen-smb-perl-0.91.orig/debian/patches/include_string.patch +++ libauthen-smb-perl-0.91/debian/patches/include_string.patch @@ -0,0 +1,13 @@ +Author: Will Lowe +Bug: #226525 + +--- libauthen-smb-perl.orig/smbval/smblib.c ++++ libauthen-smb-perl/smbval/smblib.c +@@ -25,6 +25,7 @@ + + #include "config.h" + #include ++#include + + int SMBlib_errno; + int SMBlib_SMB_Error; --- libauthen-smb-perl-0.91.orig/debian/patches/series +++ libauthen-smb-perl-0.91/debian/patches/series @@ -0,0 +1 @@ +include_string.patch