From 1b350f7b046bbc833e37a9fba91fc808c0fed41a Mon Sep 17 00:00:00 2001 From: Ian Beckwith Date: Thu, 26 Feb 2009 03:14:25 +0000 Subject: [PATCH] Imported Upstream version 0.15 --- Changes | 3 +++ META.yml | 2 +- README | 2 +- debian/changelog~ | 19 -------------- debian/compat~ | 1 - debian/control~ | 15 ----------- debian/copyright~ | 32 ---------------------- debian/rules~ | 76 ----------------------------------------------------- lib/URI/Template.pm | 4 +-- 9 files changed, 7 insertions(+), 147 deletions(-) delete mode 100644 debian/changelog~ delete mode 100644 debian/compat~ delete mode 100644 debian/control~ delete mode 100644 debian/copyright~ delete mode 100755 debian/rules~ diff --git a/Changes b/Changes index e483fac..e99df17 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension URI::Template +0.15 Mon Jan 19 2009 + - Promote dev release to stable + 0.14_01 Tue Sep 09 2008 - Conform to latest spec (draft 03) (Ricardo SIGNES) Due to the new spec, the following are no longer applicable: diff --git a/META.yml b/META.yml index 5ecddad..06f643e 100644 --- a/META.yml +++ b/META.yml @@ -22,4 +22,4 @@ requires: perl: 5.6.0 resources: license: http://dev.perl.org/licenses/ -version: 0.14_01 +version: 0.15 diff --git a/README b/README index 5c56f21..f621fca 100644 --- a/README +++ b/README @@ -50,7 +50,7 @@ AUTHOR Ricardo SIGNES COPYRIGHT AND LICENSE - Copyright 2008 by Brian Cassidy + Copyright 2007-2009 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/debian/changelog~ b/debian/changelog~ deleted file mode 100644 index 223e418..0000000 --- a/debian/changelog~ +++ /dev/null @@ -1,19 +0,0 @@ -liburi-template-perl (0.13-1) unstable; urgency=low - - * New upstream version. - * debian/rules: use rules.MakeMaker.noxs to match new build system. - * 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. - * Removed lintian override, lintian is fixed. - - -- Ian Beckwith Sat, 01 Mar 2008 01:54:13 +0000 - -liburi-template-perl (0.06-1) unstable; urgency=low - - * Initial Release (Closes: #420648). - - -- Ian Beckwith Mon, 23 Apr 2007 20:53:24 +0100 diff --git a/debian/compat~ b/debian/compat~ deleted file mode 100644 index 7ed6ff8..0000000 --- a/debian/compat~ +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control~ b/debian/control~ deleted file mode 100644 index 74d6ff2..0000000 --- a/debian/control~ +++ /dev/null @@ -1,15 +0,0 @@ -Source: liburi-template-perl -Section: perl -Priority: optional -Build-Depends: debhelper (>= 5) -Build-Depends-Indep: perl (>= 5.8.8-7), liburi-perl, libjson-perl -Maintainer: Ian Beckwith -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~ deleted file mode 100644 index f89b392..0000000 --- a/debian/copyright~ +++ /dev/null @@ -1,32 +0,0 @@ -This package was debianized by Ian Beckwith on -Mon, 23 Apr 2007 20:53:24 +0100. - -It was downloaded from -. - -Upstream Author: Brian Cassidy . - -License: - - Copyright 2007 by Brian Cassidy - - This library is free software; you can redistribute it and/or modify it - under the same terms as Perl itself. - - Those terms are (from /usr/share/doc/perl/copyright): - - 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 Perl. - -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'. - -The Debian packaging is (C) 2004-2007, Ian Beckwith and -is licensed under the same terms as Perl itself (see above). diff --git a/debian/rules~ b/debian/rules~ deleted file mode 100755 index 0db9c08..0000000 --- a/debian/rules~ +++ /dev/null @@ -1,76 +0,0 @@ -#!/usr/bin/make -f -# This debian/rules file is provided as a template for normal perl -# packages. It was created by Marc Brockschmidt 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_installexamples - 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/lib/URI/Template.pm b/lib/URI/Template.pm index f031df4..d4831b8 100644 --- a/lib/URI/Template.pm +++ b/lib/URI/Template.pm @@ -3,7 +3,7 @@ package URI::Template; use strict; use warnings; -our $VERSION = '0.14_01'; +our $VERSION = '0.15'; use URI; use URI::Escape qw(uri_escape_utf8); @@ -285,7 +285,7 @@ Ricardo SIGNES Erjbs@cpan.orgE =head1 COPYRIGHT AND LICENSE -Copyright 2008 by Brian Cassidy +Copyright 2007-2009 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. -- 2.11.0