--- libauthen-simple-kerberos-perl-0.1.orig/debian/control +++ libauthen-simple-kerberos-perl-0.1/debian/control @@ -0,0 +1,21 @@ +Source: libauthen-simple-kerberos-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Xavier Oswald +Build-Depends: debhelper (>= 6) +Build-Depends-Indep: perl (>= 5.6.0-16), libauthen-simple-perl (>= 0.4), libtest-pod-perl, libtest-pod-coverage-perl, libauthen-krb5-simple-perl +Recommends: krb5-config +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Authen-Simple-Kerberos/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libauthen-simple-kerberos-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-simple-kerberos-perl/ +XS-DM-Upload-Allowed: yes + +Package: libauthen-simple-kerberos-perl +Architecture: all +Depends: ${perl:Depends}, libauthen-krb5-simple-perl, libauthen-simple-perl +Description: Simple Kerberos authentication + This package allow to use Kerberos authentication methods. + . + It uses the libauthen-simple-perl framework. --- libauthen-simple-kerberos-perl-0.1.orig/debian/README.Debian +++ libauthen-simple-kerberos-perl-0.1/debian/README.Debian @@ -0,0 +1,10 @@ +When you have lots of connections using libauthen-simple-kerberos-perl, most of +them end up in TIME_WAIT after short time. Authentication does work but could +be very slow. + +When /etc/krb5.conf is present with the right settings, everything should just +work fine and this module shouldn't open that much connections. Setting up the +right default_realm and its corresponding kdc server in the /etc/krb5.conf do +the job. + +/etc/krb5.conf is part of the krb5-config package. --- libauthen-simple-kerberos-perl-0.1.orig/debian/rules +++ libauthen-simple-kerberos-perl-0.1/debian/rules @@ -0,0 +1,51 @@ +#!/usr/bin/make -f + +PACKAGE=$(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +ifndef PERL +PERL = /usr/bin/perl +endif + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + touch $@ + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + TEST_POD=1 $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + touch $@ + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean build-stamp install-stamp + +binary-arch: build install + +binary: binary-indep binary-arch + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_strip + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: binary clean ibinary-indep binary-arch build clean install --- libauthen-simple-kerberos-perl-0.1.orig/debian/watch +++ libauthen-simple-kerberos-perl-0.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Authen-Simple-Kerberos/ .*/Authen-Simple-Kerberos-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libauthen-simple-kerberos-perl-0.1.orig/debian/copyright +++ libauthen-simple-kerberos-perl-0.1/debian/copyright @@ -0,0 +1,23 @@ +This package was debianized by Xavier Oswald on +Thu, 8 Feb 2007 20:20:07 +0100 + +It was downloaded from: http://search.cpan.org/~chansen/Authen-Simple-Kerberos-0.1/ + +Upstream Author: Christian Hansen + +Copyright: Copyright (c) 2006 Christian Hansen, ch@ngmedia.com + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +License: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + + 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'. --- libauthen-simple-kerberos-perl-0.1.orig/debian/compat +++ libauthen-simple-kerberos-perl-0.1/debian/compat @@ -0,0 +1 @@ +6 --- libauthen-simple-kerberos-perl-0.1.orig/debian/changelog +++ libauthen-simple-kerberos-perl-0.1/debian/changelog @@ -0,0 +1,31 @@ +libauthen-simple-kerberos-perl (0.1-3) unstable; urgency=low + + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. Add XS-DM-Upload-Allowed: yes. + * debian/rules: + - delete /usr/lib/perl5 only if it exists (Closes: #467676). + - swap binary-arch and binary-indep, this package is arch:all + - remove OPTIMIZE, this package is still arch:all + - let install-stamp depend on build-stamp + - install upstream changelog + - don't install README anymore, it's just the text version of the POD + documentation + * debian/watch: use dist-based URL. + * Set Standards-Version to 3.7.3 (no changes). + * Set debhelper compatibility level to 6. + + -- Xavier Oswald Tue, 26 Feb 2008 23:23:03 +0100 + +libauthen-simple-kerberos-perl (0.1-2) unstable; urgency=low + + * Add README.Debian, /etc/krb5.conf file need to be installed and configured + * Add krb5-config to Recommends (Closes: #434772) + + -- Xavier Oswald Tue, 31 Jul 2007 00:49:58 +0200 + +libauthen-simple-kerberos-perl (0.1-1) unstable; urgency=low + + * Initial release (Closes: #410237) + + -- Xavier Oswald Fri, 9 Feb 2007 16:31:43 +0100