--- libjifty-plugin-authentication-bitcard-perl-0.053.orig/debian/control +++ libjifty-plugin-authentication-bitcard-perl-0.053/debian/control @@ -0,0 +1,24 @@ +Source: libjifty-plugin-authentication-bitcard-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), libmodule-build-perl +Build-Depends-Indep: perl (>= 5.6.10-12), libjifty-perl, libauthen-bitcard-perl +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves , + gregor herrmann +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Jifty-Plugin-Authentication-Bitcard/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libjifty-plugin-authentication-bitcard-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libjifty-plugin-authentication-bitcard-perl/ + +Package: libjifty-plugin-authentication-bitcard-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libjifty-perl, libauthen-bitcard-perl +Description: Bitcard authentication plugin + Jifty::Plugin::Authentication::Bitcard replaces Jifty::Plugin::User, and + Jifty::Plugin::Authentication::Password, since Bitcard handles all the heavy + lifting for us. + . + User logins are handled through Bitcard. + . + CAUTION: This plugin has not been thoroughly tested in the wild. --- libjifty-plugin-authentication-bitcard-perl-0.053.orig/debian/copyright +++ libjifty-plugin-authentication-bitcard-perl-0.053/debian/copyright @@ -0,0 +1,33 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat rev=102 +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Jacob Helwig +Upstream-Source: http://search.cpan.org/dist// + +Files: * +Copyright: Copyright 2008 Jacob Helwig +License: GPL-1+ | Artistic + Copyright notice deduced from Changes and module files + . + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + +Files: debian/* +Copyright: 2008-2009, various members of the Debian Perl Group, + cf. debian/changelog +License: GPL-1+ | Artistic + The Debian packaging is put under the same terms as the module itself. + +License: GPL-1+ + 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 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' --- libjifty-plugin-authentication-bitcard-perl-0.053.orig/debian/watch +++ libjifty-plugin-authentication-bitcard-perl-0.053/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/Jifty-Plugin-Authentication-Bitcard/ .*/Jifty-Plugin-Authentication-Bitcard-v?(\d[\w_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libjifty-plugin-authentication-bitcard-perl-0.053.orig/debian/compat +++ libjifty-plugin-authentication-bitcard-perl-0.053/debian/compat @@ -0,0 +1 @@ +7 --- libjifty-plugin-authentication-bitcard-perl-0.053.orig/debian/changelog +++ libjifty-plugin-authentication-bitcard-perl-0.053/debian/changelog @@ -0,0 +1,23 @@ +libjifty-plugin-authentication-bitcard-perl (0.053-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + + [ Martín Ferrari ] + * debian/watch: Fix watch file regex. + + [ gregor herrmann ] + * New upstream release. + * Add /me to Uploaders. + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: update formatting. + + -- gregor herrmann Thu, 01 Jan 2009 20:47:55 +0100 + +libjifty-plugin-authentication-bitcard-perl (0.052a-1) unstable; urgency=low + + * Initial Release. (Closes: #491051) + + -- AGOSTINI Yves Wed, 16 Jul 2008 10:40:54 +0200 --- libjifty-plugin-authentication-bitcard-perl-0.053.orig/debian/rules +++ libjifty-plugin-authentication-bitcard-perl-0.053/debian/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f + +PERL ?= /usr/bin/perl + +build: build-stamp +build-stamp: + # run perl Build.PL manually, + # otherwise we get Makefile.PL -> Makefile -> Build and a mess ... + dh build --before dh_auto_configure + $(PERL) Build.PL installdirs=vendor + dh build --after dh_auto_configure + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build