[libstring-shellquote-perl] 01/06: Import Debian changes 1.00-2
gregor herrmann
gregoa at debian.org
Fri Aug 4 16:07:10 UTC 2017
This is an automated email from the git hooks/post-receive script.
gregoa pushed a commit to branch master
in repository libstring-shellquote-perl.
commit 065b01692ad305e0ff32794673da91260ed0c968
Author: Roderick Schertler <roderick at argon.org>
Date: Wed Jul 14 15:03:00 1999 -0400
Import Debian changes 1.00-2
libstring-shellquote-perl (1.00-2) unstable; urgency=low
* Simple updates for 3.0.0 standards.
* Simple updates for new Perl policy.
libstring-shellquote-perl (1.00-1) unstable; urgency=low
* Initial version.
---
debian/changelog | 14 ++++++++++
debian/control | 12 +++++++++
debian/copyright | 36 +++++++++++++++++++++++++
debian/rules | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 142 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..74e9a0c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,14 @@
+libstring-shellquote-perl (1.00-2) unstable; urgency=low
+
+ * Simple updates for 3.0.0 standards.
+ * Simple updates for new Perl policy.
+
+ -- Roderick Schertler <roderick at argon.org> Wed, 14 Jul 1999 15:03:00 -0400
+
+libstring-shellquote-perl (1.00-1) unstable; urgency=low
+
+ * Initial version.
+
+ -- Roderick Schertler <roderick at argon.org> Mon, 28 Dec 1998 22:50:19 -0500
+
+$Id: changelog,v 1.2 1999/07/14 19:06:14 roderick Exp $
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..d7d41c2
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,12 @@
+Source: libstring-shellquote-perl
+Section: interpreters
+Priority: optional
+Maintainer: Roderick Schertler <roderick at argon.org>
+Standards-Version: 3.0.0
+
+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.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..cd02e44
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+$Id: copyright,v 1.2 1999/07/14 19:06:14 roderick Exp $
+
+This is a Debian prepackaged version of the String::ShellQuote
+Perl module. It was put together by Roderick Schertler
+<roderick at argon.org> with sources obtained from
+<URL:http://www.perl.com/CPAN/authors/id/ROSCH/>.
+
+The source has not been modified.
+
+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'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..9f4898b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,80 @@
+#!/usr/bin/make -f
+
+# $Id: rules,v 1.2 1999/07/14 19:06:14 roderick Exp $
+
+dt := debian/tmp
+prefix = `pwd`/$(dt)
+stamp_build := debian/stamp.build
+stamp_install := debian/stamp.install
+clean := $(stamp_build) $(stamp_install)
+
+ifndef PERL
+ PERL := perl
+endif
+
+# Setting PREFIX at Makefile generation time loses because it might or
+# might not match *perl*. If it does the resulting hierarchy is wrong.
+# So, set it at install time, after the structure of the hierarchy has
+# been determined. Since I have to add variables at install time anyway
+# I set them all there.
+
+build: $(stamp_build)
+$(stamp_build):
+ dh_testdir
+ $(PERL) Makefile.PL
+ $(MAKE)
+ $(MAKE) test
+ touch $@
+
+install: $(stamp_install)
+$(stamp_install): $(stamp_build)
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ # XXX remove INSTALLPRIVLIB when the Perl packages are fixed
+ $(MAKE) \
+ PREFIX=$(prefix)/usr \
+ INSTALLPRIVLIB=$(prefix)/usr/lib/perl5 \
+ INSTALLMAN1DIR=$(prefix)/usr/man/man1 \
+ INSTALLMAN3DIR=$(prefix)/usr/man/man3 \
+ pure_perl_install
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f $(clean)
+ [ ! -f Makefile ] || $(MAKE) realclean
+ dh_clean
+
+binary-indep: $(stamp_install)
+
+binary-arch: $(stamp_install)
+# dh_testversion
+ dh_testdir
+ dh_testroot
+ dh_installdocs README
+ dh_installexamples
+ dh_installmenu
+# dh_installemacsen
+# dh_installinit
+ dh_installcron
+ dh_installmanpages
+# dh_undocumented
+ dh_installchangelogs Changes
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_suidregister
+ dh_installdeb
+ dh_perl
+ dh_shlibdeps
+ dh_gencontrol -u -isp
+# dh_makeshlibs
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+
+.PHONY: build install clean binary-indep binary-arch binary
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libstring-shellquote-perl.git
More information about the Pkg-perl-cvs-commits
mailing list