--- libstring-shellquote-perl-1.03.orig/debian/changelog +++ libstring-shellquote-perl-1.03/debian/changelog @@ -0,0 +1,41 @@ +libstring-shellquote-perl (1.03-1) unstable; urgency=low + + * New upstream release (only change is addition of shell-quote script). + + -- Roderick Schertler Tue, 3 May 2005 07:04:13 -0400 + +libstring-shellquote-perl (1.02-1) unstable; urgency=low + + * New upstream release. + * Change section to "perl". + * Bump Standards-Version to 3.6.1 (no changes). + + -- Roderick Schertler Tue, 8 Apr 2003 09:08:22 -0400 + +libstring-shellquote-perl (1.00-4) unstable; urgency=low + + * Don't install extraneous empty directories. + + -- Roderick Schertler Tue, 31 Jul 2001 10:37:13 -0400 + +libstring-shellquote-perl (1.00-3) unstable; urgency=low + + * Update to policy 3.5.2 (closes: #91196, #91561). + * Update to latest Perl policy. + + -- Roderick Schertler Mon, 9 Apr 2001 08:10:41 -0400 + +libstring-shellquote-perl (1.00-2) unstable; urgency=low + + * Simple updates for 3.0.0 standards. + * Simple updates for new Perl policy. + + -- Roderick Schertler Wed, 14 Jul 1999 15:03:00 -0400 + +libstring-shellquote-perl (1.00-1) unstable; urgency=low + + * Initial version. + + -- Roderick Schertler Mon, 28 Dec 1998 22:50:19 -0500 + +$Id: changelog,v 1.6 2005/05/03 11:05:03 roderick Exp $ --- libstring-shellquote-perl-1.03.orig/debian/control +++ libstring-shellquote-perl-1.03/debian/control @@ -0,0 +1,16 @@ +Source: libstring-shellquote-perl +Section: perl +Priority: optional +Maintainer: Roderick Schertler +Standards-Version: 3.6.1 +Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-16) + +Package: libstring-shellquote-perl +Architecture: all +Depends: ${perl:Depends} +Description: quote strings for passing through the shell + This Perl module contains some functions which are useful for quoting + strings which are going to pass through the shell or a shell-like + object, plus a command-line interface to it. It is useful for doing + robust tool programming, particularly when dealing with files whose + names contain white space or shell globbing characters. --- libstring-shellquote-perl-1.03.orig/debian/copyright +++ libstring-shellquote-perl-1.03/debian/copyright @@ -0,0 +1,34 @@ +$Id: copyright,v 1.3 2005/02/10 02:24:09 roderick Exp $ + +This is a Debian prepackaged version of the String::ShellQuote +Perl module. It was put together by Roderick Schertler + with sources obtained from +. + +The module is Copyright (c) 1997 Roderick Schertler. All rights reserved. +It may be distributed under the same terms as Perl. These are: + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free + Software Foundation; either version 1, or (at your option) any + later version, or + + b) the "Artistic License" which comes with this Kit. + + 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 either + the GNU General Public License or the Artistic License for more details. + + You should have received a copy of the Artistic License with this + Kit, in the file named "Artistic". If not, I'll be glad to provide one. + + You should also have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + +On Debian systems, the complete text of the GNU General Public License can +be found in `/usr/share/common-licenses/GPL', and the complete text of the +Artistic License can be found in `/usr/share/common-licenses/Artistic'. --- libstring-shellquote-perl-1.03.orig/debian/rules +++ libstring-shellquote-perl-1.03/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f + +# $Id: rules,v 1.5 2001/07/31 14:37:35 roderick Exp $ + +dt := debian/libstring-shellquote-perl +prefix = `pwd`/$(dt) +stamp_build := debian/stamp.build +stamp_install := debian/stamp.install +clean := $(stamp_build) $(stamp_install) + +ifneq "" "$(findstring debug,$(DEB_BUILD_OPTIONS))" + CFLAGS += -g +endif +export DH_COMPAT := 3 +PERL ?= perl + +build: $(stamp_build) +$(stamp_build): + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -Wall $(CFLAGS)" + $(MAKE) test + touch $@ + +install: $(stamp_install) +$(stamp_install): $(stamp_build) + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install PREFIX=$(prefix)/usr + find $(prefix) -depth -type d -print0 | \ + xargs -0r rmdir --ignore-fail-on-non-empty + touch $@ + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean $(clean) + +binary: binary-indep binary-arch +binary-arch: +binary-indep: $(stamp_install) + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs README + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs Changes + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol -u -isp + dh_md5sums + dh_builddeb + +.PHONY: build install clean binary-indep binary-arch binary --- libstring-shellquote-perl-1.03.orig/debian/watch +++ libstring-shellquote-perl-1.03/debian/watch @@ -0,0 +1,5 @@ +# $Id: watch,v 1.1 2005/02/10 02:24:09 roderick Exp $ + +version=2 + +http://www.cpan.org/modules/by-module/String/String-ShellQuote-(\d.*)\.tar\.gz