[libregexp-shellish-perl] 01/11: Imported Debian patch 0.93-1.1
gregor herrmann
gregoa at debian.org
Fri Sep 13 14:55:39 UTC 2013
This is an automated email from the git hooks/post-receive script.
gregoa pushed a commit to branch master
in repository libregexp-shellish-perl.
commit e8a2895fd50370ff464dc59e2cb57d4af2976d6a
Author: Mark Hymers <mhy at debian.org>
Date: Sat Apr 5 21:09:05 2008 +0100
Imported Debian patch 0.93-1.1
---
debian/changelog | 13 ++++++++++
debian/compat | 1 +
debian/control | 15 ++++++++++++
debian/copyright | 12 ++++++++++
debian/rules | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
5 files changed, 111 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8e19e36
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,13 @@
+libregexp-shellish-perl (0.93-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fix FTBFS with Perl 5.10. Closes: #467845
+
+ -- Mark Hymers <mhy at debian.org> Sat, 05 Apr 2008 21:09:05 +0100
+
+libregexp-shellish-perl (0.93-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Bastian Blank <waldi at debian.org> Sun, 4 Apr 2004 00:03:59 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..d69390f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,15 @@
+Source: libregexp-shellish-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Bastian Blank <waldi at debian.org>
+Standards-Version: 3.6.1
+
+Package: libregexp-shellish-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends},
+Description: Shell-like regular expressions
+ Provides shell-like regular expressions. The wildcards provided
+ are ?, * and **, where ** is like * but matches /. See
+ /compile_shellish for details.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..40a6e3b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,12 @@
+This is the debian package for the Regexp::Shellish module.
+
+The upstream author is:
+
+Barrie Slaymaker <barries at slaysys.com>.
+
+You may distribute under the terms of either the GNU General Public
+License or the Artistic License.
+
+On Debian GNU/Linux systems, the complete text of the GNU General Public
+License can be found in `/usr/share/common-licenses/GPL' and the Artistic
+Licence in `/usr/share/common-licenses/Artistic'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a60af95
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,70 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE = $(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP = $(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE)
+
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ -$(MAKE) distclean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ $(MAKE) test
+ $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+ [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+# dh_installcron
+# dh_installmenu
+# dh_installexamples
+ dh_installdocs
+ dh_installchangelogs
+ dh_perl
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libregexp-shellish-perl.git
More information about the Pkg-perl-cvs-commits
mailing list