r17915 - in /trunk/liburi-query-perl/debian: ./ changelog compat control copyright rules watch

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Fri Mar 21 11:21:51 UTC 2008


Author: eloy
Date: Fri Mar 21 11:21:50 2008
New Revision: 17915

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=17915
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/liburi-query-perl/debian/
    trunk/liburi-query-perl/debian/changelog
    trunk/liburi-query-perl/debian/compat
    trunk/liburi-query-perl/debian/control
    trunk/liburi-query-perl/debian/copyright
    trunk/liburi-query-perl/debian/rules   (with props)
    trunk/liburi-query-perl/debian/watch

Added: trunk/liburi-query-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liburi-query-perl/debian/changelog?rev=17915&op=file
==============================================================================
--- trunk/liburi-query-perl/debian/changelog (added)
+++ trunk/liburi-query-perl/debian/changelog Fri Mar 21 11:21:50 2008
@@ -1,0 +1,18 @@
+liburi-query-perl (0.06-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Fri, 21 Sep 2007 17:34:32 +0200
+
+liburi-query-perl (0.05-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Fri, 28 Oct 2005 12:33:47 +0200
+
+liburi-query-perl (0.04-1) unstable; urgency=low
+
+  * Initial Release (closes: #333526)
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Wed, 12 Oct 2005 12:27:10 +0200
+

Added: trunk/liburi-query-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liburi-query-perl/debian/compat?rev=17915&op=file
==============================================================================
--- trunk/liburi-query-perl/debian/compat (added)
+++ trunk/liburi-query-perl/debian/compat Fri Mar 21 11:21:50 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/liburi-query-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liburi-query-perl/debian/control?rev=17915&op=file
==============================================================================
--- trunk/liburi-query-perl/debian/control (added)
+++ trunk/liburi-query-perl/debian/control Fri Mar 21 11:21:50 2008
@@ -1,0 +1,20 @@
+Source: liburi-query-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5),
+Build-Depends-Indep:  perl (>= 5.8.0-7), liburi-perl, libyaml-perl
+Maintainer: Debian Catalyst Maintainers <pkg-catalyst-maintainers at lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Standards-Version: 3.7.2.1
+
+Package: liburi-query-perl
+Architecture: all
+Depends: ${perl:Depends}, liburi-perl
+Description: class providing URI query string manipulation
+ URI::Query provides simple URI query string manipulation, allowing you
+ to create and manipulate URI query strings from GET and POST requests in
+ web applications. This is primarily useful for creating links where you 
+ wish to preserve some subset of the parameters to the current request,
+ and potentially add or replace others. Given a query string this is 
+ doable with regexes, of course, but making sure you get the anchoring 
+ and escaping right is tedious and error-prone - this module is simpler.

Added: trunk/liburi-query-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liburi-query-perl/debian/copyright?rev=17915&op=file
==============================================================================
--- trunk/liburi-query-perl/debian/copyright (added)
+++ trunk/liburi-query-perl/debian/copyright Fri Mar 21 11:21:50 2008
@@ -1,0 +1,24 @@
+This is the debian package for the URI::Query module.
+It was created by Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+
+It was downloaded from:
+http://search.cpan.org/~gavinc/URI-Query-0.04/
+
+The upstream author is: Gavin Carr <gavin at openfusion.com.au>
+
+Copyright 2004-2005, Gavin Carr. 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 licenses:
+
+    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'.

Added: trunk/liburi-query-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liburi-query-perl/debian/rules?rev=17915&op=file
==============================================================================
--- trunk/liburi-query-perl/debian/rules (added)
+++ trunk/liburi-query-perl/debian/rules Fri Mar 21 11:21:50 2008
@@ -1,0 +1,72 @@
+#!/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)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	#-cp -f t/t05/explicit t/t05/default
+	-$(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_installdocs README
+	dh_installchangelogs 
+	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

Propchange: trunk/liburi-query-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/liburi-query-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liburi-query-perl/debian/watch?rev=17915&op=file
==============================================================================
--- trunk/liburi-query-perl/debian/watch (added)
+++ trunk/liburi-query-perl/debian/watch Fri Mar 21 11:21:50 2008
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/URI/URI-Query-(.*).(tar.gz|tar|tgz)




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