Follow a patch with files needed to create deb package.
-- Joenio Costa Colivre - Cooperativa de Tecnologias Livres Tel: (71) 3011-2199 | 8182-5123 http://www.colivre.coop.br GNU/Linux User #431067 http://counter.li.org
>From c3b3160cf66855e39b6931b1712dcd69e206611f Mon Sep 17 00:00:00 2001 From: Joenio Costa <joe...@colivre.coop.br> Date: Tue, 26 Jun 2012 18:07:37 -0300 Subject: [PATCH] Adding files to make debian package Also fixing a litle POD error syntax on file lib/VUser/Google/ApiProtocol.pm --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 13 +++++++++++++ debian/copyright | 29 +++++++++++++++++++++++++++++ debian/rules | 7 +++++++ lib/VUser/Google/ApiProtocol.pm | 1 + 6 files changed, 56 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..dbfbab5 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +libvuser-google-api-perl (1.0.1-1) unstable; urgency=low + + * Initial Release. (Closes: #679161) + + -- Joenio Costa <joe...@colivre.coop.br> Tue, 19 Jun 2012 16:33:46 -0300 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3c00df7 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: libvuser-google-api-perl +Section: perl +Priority: optional +Maintainer: Joenio Costa <joe...@colivre.coop.br> +Build-Depends: debhelper (>= 8) +Build-Depends-Indep: perl, libtest-most-perl, libmoose-perl +Standards-Version: 3.9.3 +Homepage: http://search.cpan.org/dist/VUser-Google-Api/ + +Package: libvuser-google-api-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl module that implements the Google Apps for Your Domain Provisioning API diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..aa2356f --- /dev/null +++ b/debian/copyright @@ -0,0 +1,29 @@ +Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 +Maintainer: Joenio Costa <joe...@colivre.coop.br> +Source: http://search.cpan.org/dist/VUser-Google-Api/ +Name: VUser-Google-Api + +Files: * +Copyright: 2006, Johan Reinalda <jo...@reinalda.net> + 2007, Randy Smith <perlstal...@vuser.org> +License: Artistic + +Files: debian/* +Copyright: 2012, Joenio Costa <joe...@colivre.coop.br +License: GPL-2+ + +License: GPL-2+ + 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; version 2 dated June, 1991, or (at your + option) any later version. + . + On Debian systems, the complete text of version 2 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2'. + +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 systems, the complete text of the Artistic License can be + found in `/usr/share/common-licenses/Artistic'. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..bb42040 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_auto_test: + /bin/echo "skinpig tests..." diff --git a/lib/VUser/Google/ApiProtocol.pm b/lib/VUser/Google/ApiProtocol.pm index 59f1a7e..4d27614 100644 --- a/lib/VUser/Google/ApiProtocol.pm +++ b/lib/VUser/Google/ApiProtocol.pm @@ -199,6 +199,7 @@ The plain text password of the admin user. If set to a true value, C<Login()> will refresh the authentication token even if it's not necessary. + =back =head2 Read-only members -- 1.7.10