[liburi-find-perl] 01/09: Imported Debian patch 0.14-3

gregor herrmann gregoa at debian.org
Sat Jul 25 17:30:50 UTC 2015


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository liburi-find-perl.

commit a165e9c5b336b75ee711cf9f4471ab1aa377abe0
Author: Dominic Hargreaves <dom at earth.li>
Date:   Mon Nov 15 00:21:47 2004 +0000

    Imported Debian patch 0.14-3
---
 debian/changelog | 49 ++++++++++++++++++++++++++++++
 debian/compat    |  1 +
 debian/control   | 17 +++++++++++
 debian/copyright | 20 +++++++++++++
 debian/rules     | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 177 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..734e4dc
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,49 @@
+liburi-find-perl (0.14-3) unstable; urgency=low
+
+  * Add missing dependency on liburi-perl.
+
+ -- Dominic Hargreaves <dom at earth.li>  Mon, 15 Nov 2004 00:21:47 +0000
+
+liburi-find-perl (0.14-2) unstable; urgency=low
+
+  * Further clarify debian/copyright.
+
+ -- Dominic Hargreaves <dom at earth.li>  Fri, 12 Nov 2004 18:36:37 +0000
+
+liburi-find-perl (0.14-1) unstable; urgency=low
+
+  * New upstream release (clarifies licence)
+
+ -- Dominic Hargreaves <dom at earth.li>  Mon, 11 Oct 2004 22:32:31 +0100
+
+liburi-find-perl (0.13-5) unstable; urgency=low
+
+  * Clarify licence in debian/copyright.
+
+ -- Dominic Hargreaves <dom at earth.li>  Sun, 10 Oct 2004 23:01:03 +0100
+
+liburi-find-perl (0.13-4) unstable; urgency=low
+
+  * Make linda happy.
+
+ -- Dominic Hargreaves <dom at earth.li>  Sat,  2 Oct 2004 20:02:57 +0100
+
+liburi-find-perl (0.13-3) unstable; urgency=low
+
+  * Remove auto-generation comment in description and fix minor bug in
+    control file
+
+ -- Dominic Hargreaves <dom at earth.li>  Wed, 22 Sep 2004 00:25:33 +0100
+
+liburi-find-perl (0.13-2) unstable; urgency=low
+
+  * Enable test suite
+
+ -- Dominic Hargreaves <dom at earth.li>  Tue, 21 Sep 2004 19:35:10 +0100
+
+liburi-find-perl (0.13-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Dominic Hargreaves <dom at earth.li>  Mon, 20 Sep 2004 00:52:54 +0100
+
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..6cf4f8a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: liburi-find-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), liburi-perl
+Maintainer: Dominic Hargreaves <dom at earth.li>
+Standards-Version: 3.6.1
+
+Package: liburi-find-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, liburi-perl
+Description:  Find URIs in arbitrary text
+ This module does one thing: Finds URIs and URLs in plain text.  It finds
+ them quickly and it finds them all (or what URI::URL considers a URI
+ to be.)  It only finds URIs which include a scheme (http:// or the
+ like), for something a bit less strict have a look at
+ URI::Find::Schemeless|URI::Find::Schemeless.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f58d3a1
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,20 @@
+This package was debianized by Dominic Hargreaves <dom at earth.li> on
+Mon, 20 Sep 2004 00:52:54 +0100.
+
+It was downloaded from CPAN <http://search.cpan.org/dist/URI-Find/>.
+
+The upstream author is: 
+
+Michael G Schwern <schwern at pobox.com> with insight from Uri Gutman,
+Greg Bacon, Jeff Pinyan, Roderick Schertler and others.
+
+Currently maintained by Roderick Schertler <roderick at argon.org>.
+
+Copyright (c) 2000 Michael G. Schwern.  All rights reserved.  This
+program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+Perl is distributed under your choice of 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..3332492
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,90 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# 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)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)"
+	
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	-$(MAKE) distclean
+	
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	# As this is a architecture independent package, we are not supposed to install
+	# stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installcron
+#	dh_installmenu
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+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/liburi-find-perl.git



More information about the Pkg-perl-cvs-commits mailing list