--- libapache2-authcassimple-perl-0.10.orig/debian/control +++ libapache2-authcassimple-perl-0.10/debian/control @@ -0,0 +1,28 @@ +Source: libapache2-authcassimple-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7.0.50) +Build-Depends-Indep: perl (>= 5.8.0), libauthen-cas-client-perl, + libapache-session-wrapper-perl, libapache2-mod-perl2, + libtest-pod-coverage-perl, libtest-pod-perl, liburi-perl +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves , + Damyan Ivanov +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Apache2-AuthCASSimple/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libapache2-authcassimple-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libapache2-authcassimple-perl/ + +Package: libapache2-authcassimple-perl +Architecture: all +Depends: ${perl:Depends} , ${misc:Depends}, libapache-session-wrapper-perl, + libapache2-mod-perl2, libauthen-cas-client-perl, libapache2-request-perl, + libcrypt-ssleay-perl, liburi-perl +Description: Apache2 module to authentificate trough a CAS server + Apache2::AuthCASSimple is an authentication module for Apache2/mod_perl2. + . + It allows you to authenticate users through a Yale CAS server. It means you + don't need to give login/password if you've already be authenticate by the + CAS server, only tickets are exchanged between Web client, Apache2 server and + CAS server. If you are not authenticated yet, you will be redirected on the + CAS server login form. --- libapache2-authcassimple-perl-0.10.orig/debian/copyright +++ libapache2-authcassimple-perl-0.10/debian/copyright @@ -0,0 +1,32 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Yves Agostini +Upstream-Source: http://search.cpan.org/dist/Apache2-AuthCASSimple/ +Upstream-Name: Apache2-AuthCASSimple + +Files: * +Copyright: 2008-2009, Yves Agostini +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: inc/* +Copyright: Copyright 2002 - 2008 by Brian Ingerson, Audrey Tang and Adam Kennedy. +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2008-2009, AGOSTINI Yves +License: Artistic | GPL-1+ + +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 + +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' --- libapache2-authcassimple-perl-0.10.orig/debian/watch +++ libapache2-authcassimple-perl-0.10/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/Apache2-AuthCASSimple/ .*/Apache2-AuthCASSimple-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libapache2-authcassimple-perl-0.10.orig/debian/compat +++ libapache2-authcassimple-perl-0.10/debian/compat @@ -0,0 +1 @@ +7 --- libapache2-authcassimple-perl-0.10.orig/debian/libapache2-authcassimple-perl.examples +++ libapache2-authcassimple-perl-0.10/debian/libapache2-authcassimple-perl.examples @@ -0,0 +1 @@ +examples/delete_session_data.pl --- libapache2-authcassimple-perl-0.10.orig/debian/changelog +++ libapache2-authcassimple-perl-0.10/debian/changelog @@ -0,0 +1,59 @@ +libapache2-authcassimple-perl (0.10-1) unstable; urgency=low + + [ AGOSTINI Yves ] + * New upstream release, real full fix for #525097 and #521059 + * Add libcrypt-ssleay-perl, liburi-perl in Depends, + * Add liburi-perl in Build-Depends + * only examples/delete_session_data.pl in examples others are only test + cases for dev + + [ gregor herrmann ] + * debian/rules: call dh_auto_configure with "--skipdeps" to keep + Module::Install from loading CPAN.pm; bump debhelper dependency in + debian/control. + + -- AGOSTINI Yves Mon, 11 May 2009 08:54:54 +0200 + +libapache2-authcassimple-perl (0.09-1) unstable; urgency=low + + * New upstream release + + Closes: #525097: REMOTE_USER not set in ENV + * use three-line dh7-style debian/rules + * add myself to Uploaders + + -- Damyan Ivanov Fri, 24 Apr 2009 09:46:03 +0300 + +libapache2-authcassimple-perl (0.07-1) unstable; urgency=low + + [ AGOSTINI Yves ] + * New upstream release (Closes: #521059) + * Bump to Standards-Version: 3.8.1 + + [ gregor herrmann ] + * debian/copyright: update years of copyright. + * debian/control: fix 2 minor errors in long description. + + -- AGOSTINI Yves Fri, 03 Apr 2009 08:56:52 +0200 + +libapache2-authcassimple-perl (0.06-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + + [ AGOSTINI Yves ] + * New release + * bump to dh 7 + * update copyright format, add inc/ copyright + * remove pod-coverage patch and quilt + * add dep on libapache2-request-perl + * remove useless docs + * add script example + + -- AGOSTINI Yves Fri, 12 Dec 2008 10:00:29 +0100 + +libapache2-authcassimple-perl (0.05-1) unstable; urgency=low + + * Initial Release. (Closes: #479558) + + -- AGOSTINI Yves Tue, 13 May 2008 14:10:23 +0200 --- libapache2-authcassimple-perl-0.10.orig/debian/rules +++ libapache2-authcassimple-perl-0.10/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_auto_configure: + dh_auto_configure -- --skipdeps