--- libnet-amazon-s3-tools-perl-0.08.orig/debian/control +++ libnet-amazon-s3-tools-perl-0.08/debian/control @@ -0,0 +1,23 @@ +Source: libnet-amazon-s3-tools-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), quilt +Build-Depends-Indep: perl (>= 5.6.10-12) +Maintainer: Debian Perl Group +Uploaders: Charles Plessy , Ryan Niebur +Standards-Version: 3.8.0 +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-amazon-s3-tools-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-amazon-s3-tools-perl/ +Homepage: http://search.cpan.org/dist/Net-Amazon-S3-Tools/ + +Package: libnet-amazon-s3-tools-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libxml-writer-perl, libnet-amazon-s3-perl, libfile-homedir-perl, libgetopt-argvfile-perl, libnet-amazon-s3-perl +Description: Command line tools for Amazon AWS S3 + These S3 command line tools allow you to manipulate and populate an S3 + account. Refer to the documentation (pod and man) for each of the + tools. + . + This Net::Amazon::S3::Tools module is mostly just a stub, to hoist + the bundling and installation of the executable scripts that make up + the actual tools. --- libnet-amazon-s3-tools-perl-0.08.orig/debian/changelog +++ libnet-amazon-s3-tools-perl-0.08/debian/changelog @@ -0,0 +1,28 @@ +libnet-amazon-s3-tools-perl (0.08-1) unstable; urgency=low + + * New upstream release adding a new executable, `s3rm'. + + [ Ryan Niebur ] + * update the source package to upstream version 0.08. + * add patch to use /usr/bin/env perl instead of /usr/local/bin/perl + * add myself to uploaders + * remove /usr/share/doc/README as it doesn't contain anything that + isn't already in the packaging + * fix pod2man errors + + [ Charles Plessy ] + * debian/copyright: + - Updated years and version number. + - Removed vanity statements about debianization. + - Added Ryan to the Hall of Fame. + - Point precisely to GPL-2 and LGPL-2.1. + * Refreshed build system using dh-make-perl 0.52. + (debian/rules, debian/docs) + + -- Charles Plessy Sun, 08 Mar 2009 15:45:14 +0900 + +libnet-amazon-s3-tools-perl (0.07-1) unstable; urgency=low + + * Initial Release (Closes: #505251). + + -- Charles Plessy Tue, 11 Nov 2008 10:23:28 +0900 --- libnet-amazon-s3-tools-perl-0.08.orig/debian/rules +++ libnet-amazon-s3-tools-perl-0.08/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +include /usr/share/quilt/quilt.make + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) + dh build + touch $@ + +clean: unpatch + 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 --- libnet-amazon-s3-tools-perl-0.08.orig/debian/copyright +++ libnet-amazon-s3-tools-perl-0.08/debian/copyright @@ -0,0 +1,38 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=322 +Upstream-Name: Net-Amazon-S3-Tools +Upstream-Maintainer: Mark Atwood +Upstream-Source: http://search.cpan.org/CPAN/authors/id/M/MR/MRA/Net-Amazon-S3-Tools-0.08.tar.gz + +Files: * +Copyright: © 2007,2008,2009 by Mark Atwood +License: LGPL-2.1+ + Many thanks to Wotan LLC , + for supporting the development of these S3 tools. + . + This module is not an official Amazon product or service. Information + used to create this module was obtained only from publicly available + information, mainly from the published Amazon documentation. + . + This module is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation, either version 2.1 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + and the GNU Lesser General Public License along with this program. + If not, see . +X-Debian-Comment: + On Debian systems, the complete text of the GNU General Public License version + 2 and the GNU Lesser General Public License version 2.1 can be found in + `/usr/share/common-licenses/GPL-2' and `/usr/share/common-licenses/LGPL-2.1' + +Files: debian/* +Copyright: © 2008,2009 Charles Plessy + © 2009 Ryan Niebur +License: Same as Net-Amazon-S3-Tools + (See above.) --- libnet-amazon-s3-tools-perl-0.08.orig/debian/watch +++ libnet-amazon-s3-tools-perl-0.08/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/Net-Amazon-S3-Tools/ .*/Net-Amazon-S3-Tools-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libnet-amazon-s3-tools-perl-0.08.orig/debian/compat +++ libnet-amazon-s3-tools-perl-0.08/debian/compat @@ -0,0 +1 @@ +7 --- libnet-amazon-s3-tools-perl-0.08.orig/debian/patches/fix-shebang +++ libnet-amazon-s3-tools-perl-0.08/debian/patches/fix-shebang @@ -0,0 +1,60 @@ +Description: make it work :) +Author: Ryan Niebur +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=43929 + +--- a/s3acl ++++ b/s3acl +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/env perl + + # Copyright (C) 2007,2008 by Mark Atwood . + # +--- a/s3get ++++ b/s3get +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/env perl + + # Copyright (C) 2007 by Mark Atwood . + # +--- a/s3ls ++++ b/s3ls +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/env perl + + # Copyright (C) 2007 by Mark Atwood . + # +--- a/s3mkbucket ++++ b/s3mkbucket +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/env perl + + # Copyright (C) 2007 by Mark Atwood . + # +--- a/s3put ++++ b/s3put +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/env perl + + # Copyright (C) 2007 by Mark Atwood . + # +--- a/s3rm ++++ b/s3rm +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/env perl + + # Copyright (C) 2009 by Mark Atwood . + # +--- a/s3rmbucket ++++ b/s3rmbucket +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/env perl + + # Copyright (C) 2007 by Mark Atwood . + # --- libnet-amazon-s3-tools-perl-0.08.orig/debian/patches/fix-pod2man-errors +++ libnet-amazon-s3-tools-perl-0.08/debian/patches/fix-pod2man-errors @@ -0,0 +1,24 @@ +Description: there were pod2man errors due to mistakes in the POD syntax +Author: Ryan Niebur +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=43936 + +--- a/lib/Net/Amazon/S3/Tools.pm ++++ b/lib/Net/Amazon/S3/Tools.pm +@@ -53,6 +53,8 @@ + but the also all share some common command line options, + which are described here. + ++=over ++ + =item B<--help> + + Print a brief help message and exits. +@@ -84,6 +86,8 @@ + Uses SSL/TLS HTTPS to communicate with the AWS service, instead of + HTTP. + ++=back ++ + =head1 DESCRIPTION + + These S3 command line tools allow you to manipulate and populate an S3 --- libnet-amazon-s3-tools-perl-0.08.orig/debian/patches/series +++ libnet-amazon-s3-tools-perl-0.08/debian/patches/series @@ -0,0 +1,2 @@ +fix-pod2man-errors +fix-shebang