Merge commit 'upstream/0.14.01'
authorIan Beckwith <ianb@erislabs.net>
Thu, 26 Feb 2009 03:12:58 +0000 (03:12 +0000)
committerIan Beckwith <ianb@erislabs.net>
Thu, 26 Feb 2009 03:12:58 +0000 (03:12 +0000)
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/watch [new file with mode: 0644]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..32a8afb
--- /dev/null
@@ -0,0 +1,25 @@
+liburi-template-perl (0.13-1) unstable; urgency=low
+
+  * New upstream version.
+  * debian/rules:
+    + Use rules.MakeMaker.noxs to match new build system.
+    + Removed call to dh_installexamples.
+  * debian/control:
+    + Added DM-Upload-Allowed: yes.
+    + Build-Depends: Dropped libmodule-build-perl.
+    + Build-Depends-Indep: Added libjson-perl for test suite.
+    + Standards-Version: 3.7.3 (no changes).
+    + Maintainer: Updated email address.
+  * debian/copyright:
+    + Add license for files in inc/.
+    + Use machine-interpretable format.
+  * Bump debhelper compat level to 6.
+  * Removed lintian override, lintian is fixed.
+
+ -- Ian Beckwith <ianb@erislabs.net>  Tue, 04 Mar 2008 17:27:06 +0000
+
+liburi-template-perl (0.06-1) unstable; urgency=low
+
+  * Initial Release (Closes: #420648).
+
+ -- Ian Beckwith <ianb@nessie.mcc.ac.uk>  Mon, 23 Apr 2007 20:53:24 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..1e8b314
--- /dev/null
@@ -0,0 +1 @@
+6
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..373191c
--- /dev/null
@@ -0,0 +1,15 @@
+Source: liburi-template-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 6)
+Build-Depends-Indep: perl (>= 5.8.8-7), liburi-perl, libjson-perl
+Maintainer: Ian Beckwith <ianb@erislabs.net>
+Standards-Version: 3.7.3
+XS-DM-Upload-Allowed: yes
+
+Package: liburi-template-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, liburi-perl
+Description: handle URI templates in perl
+ This is an initial attempt to provide a wrapper around URI templates as
+ described at http://bitworking.org/news/URI_Templates
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..1f7c1fd
--- /dev/null
@@ -0,0 +1,30 @@
+This package was downloaded from http://search.cpan.org/dist/URI-Template/
+
+Files: *
+Copyright: Copyright 2007, 2008 by Brian Cassidy
+License: GPL-1+ | Artistic
+   This library is free software; you can redistribute it and/or
+   modify it under the same terms as Perl itself.
+
+Files: inc/*
+Copyright: Copyright 2002, 2003, 2004, 2005, 2006 by
+    Audrey Tang <autrijus@autrijus.org>
+    Brian Ingerson <ingy@cpan.org>
+    Adam Kennedy <adamk@cpan.org>
+License: Artistic | GPL-1+
+ All rights reserved.  You can redistribute and/or modify
+ this bundle under the same terms as Perl itself.
+ .
+ [These files are from the Module::Install module; although they lack
+  explicit copyright and license notices, it is assumed that the license
+  and copyright of that package applies to them.]
+
+Files: debian/*
+Copyright: Copyright 2007, 2008 Ian Beckwith <ianb@erislabs.net>
+License: GPL-1+ | Artistic
+   This library is free software; you can redistribute it and/or
+   modify it under the same terms as Perl itself.
+
+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 (executable)
index 0000000..22152d9
--- /dev/null
@@ -0,0 +1,75 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc@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)
+
+build: build-stamp
+build-stamp:
+       dh_testdir
+
+       # Add commands to compile the package here
+       $(PERL) Makefile.PL INSTALLDIRS=vendor
+       $(MAKE)
+       $(MAKE) test
+
+       touch $@
+
+clean:
+       dh_testdir
+       dh_testroot
+
+       dh_clean build-stamp install-stamp
+
+       # Add commands to clean up after the build process here
+       [ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+       dh_testdir
+       dh_testroot
+       dh_clean -k
+
+       # Add commands to install the package into $(TMP) here
+       $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+       [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+
+       touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+       dh_testdir
+       dh_testroot
+       dh_installdocs README
+       dh_installchangelogs Changes
+       dh_perl
+       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
diff --git a/debian/watch b/debian/watch
new file mode 100644 (file)
index 0000000..56ce91b
--- /dev/null
@@ -0,0 +1,3 @@
+version=3
+
+http://www.cpan.org/modules/by-module/URI/URI-Template-(.*)\.tar\.gz