--- libnet-google-authsub-perl-0.4.orig/debian/control +++ libnet-google-authsub-perl-0.4/debian/control @@ -0,0 +1,20 @@ +Source: libnet-google-authsub-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), libmodule-build-perl +Build-Depends-Indep: liburi-perl, libwww-perl, libtest-pod-perl, libtest-pod-coverage-perl, perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: Alejandro Garrido Mota +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Net-Google-AuthSub/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-google-authsub-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-google-authsub-perl/ + +Package: libnet-google-authsub-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, liburi-perl, libwww-perl +Description: module to interact with sites that implement Google style AuthSub + Net::Google::AuthSub allows you to interact with sites that implement Google + style AuthSub. The module is an API for the Authentication Service of Google. + It can be used to access both regular Google accounts and hosted Google + accounts (Google Apps). --- libnet-google-authsub-perl-0.4.orig/debian/copyright +++ libnet-google-authsub-perl-0.4/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Simon Wistow +Upstream-Source: http://search.cpan.org/dist/Net-Google-AuthSub/ +Upstream-Name: Net-Google-AuthSub + +Files: * +Copyright: 2007 - Simon Wistow +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Alejandro Garrido Mota +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' --- libnet-google-authsub-perl-0.4.orig/debian/watch +++ libnet-google-authsub-perl-0.4/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Net-Google-AuthSub/ .*/Net-Google-AuthSub-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libnet-google-authsub-perl-0.4.orig/debian/compat +++ libnet-google-authsub-perl-0.4/debian/compat @@ -0,0 +1 @@ +7 --- libnet-google-authsub-perl-0.4.orig/debian/changelog +++ libnet-google-authsub-perl-0.4/debian/changelog @@ -0,0 +1,5 @@ +libnet-google-authsub-perl (0.4-1) unstable; urgency=low + + * Initial Release (Closes: #526869). + + -- Alejandro Garrido Mota Mon, 04 May 2009 01:40:21 -0430 --- libnet-google-authsub-perl-0.4.orig/debian/rules +++ libnet-google-authsub-perl-0.4/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + 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