r53803 - in /trunk/libstring-format-perl/debian: ./ changelog compat control copyright rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Mar 7 01:39:57 UTC 2010


Author: jawnsy-guest
Date: Sun Mar  7 01:39:49 2010
New Revision: 53803

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

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

Added: trunk/libstring-format-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-format-perl/debian/changelog?rev=53803&op=file
==============================================================================
--- trunk/libstring-format-perl/debian/changelog (added)
+++ trunk/libstring-format-perl/debian/changelog Sun Mar  7 01:39:49 2010
@@ -1,0 +1,12 @@
+libstring-format-perl (1.14-2) unstable; urgency=low
+
+  * debian/rules: Fixed removal of /usr/lib/perl5, closes: #468019
+
+ -- Stephen Quinney <sjq at debian.org>  Wed, 27 Feb 2008 20:05:59 +0000
+
+libstring-format-perl (1.14-1) unstable; urgency=low
+
+  * Initial Release, closes: #385627.
+
+ -- Stephen Quinney <sjq at debian.org>  Fri,  1 Sep 2006 21:30:06 +0100
+

Added: trunk/libstring-format-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-format-perl/debian/compat?rev=53803&op=file
==============================================================================
--- trunk/libstring-format-perl/debian/compat (added)
+++ trunk/libstring-format-perl/debian/compat Sun Mar  7 01:39:49 2010
@@ -1,0 +1,1 @@
+4

Added: trunk/libstring-format-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-format-perl/debian/control?rev=53803&op=file
==============================================================================
--- trunk/libstring-format-perl/debian/control (added)
+++ trunk/libstring-format-perl/debian/control Sun Mar  7 01:39:49 2010
@@ -1,0 +1,18 @@
+Source: libstring-format-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4)
+Build-Depends-Indep: perl (>= 5.6.0-16)
+Maintainer: Stephen Quinney <sjq at debian.org>
+Standards-Version: 3.7.3
+
+Package: libstring-format-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description: sprintf-like string formatting with arbitrary format definitions
+ String::Format lets you define arbitrary printf-like format sequences
+ to be expanded.  This module would be most useful in configuration
+ files and reporting tools, where the results of a query need to be
+ formatted in a particular way.  It was inspired by mutt's index_format
+ and related directives.
+

Added: trunk/libstring-format-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-format-perl/debian/copyright?rev=53803&op=file
==============================================================================
--- trunk/libstring-format-perl/debian/copyright (added)
+++ trunk/libstring-format-perl/debian/copyright Sun Mar  7 01:39:49 2010
@@ -1,0 +1,21 @@
+This is the debian package for the String-Format module.
+It was created by Stephen Quinney <sjq at debian.org> using dh-make-perl.
+
+The upstream author is: darren chamberlain <darren at cpan.org>.
+
+Copyright:
+
+        Copyright (C) 2002 darren chamberlain <darren at cpan.org>
+
+        This program is free software; you can redistribute it and/or
+        modify it under the terms of the GNU General Public License as
+        published by the Free Software Foundation; version 2.
+
+        This program is distributed in the hope that it will be useful, but
+        WITHOUT ANY WARRANTY; without even the implied warranty of
+        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+        General Public License for more details.
+
+        On Debian GNU/Linux systems, the complete text of the GNU General
+        Public License, version 2, can be found in the file
+        `/usr/share/common-licenses/GPL-2'

Added: trunk/libstring-format-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-format-perl/debian/rules?rev=53803&op=file
==============================================================================
--- trunk/libstring-format-perl/debian/rules (added)
+++ trunk/libstring-format-perl/debian/rules Sun Mar  7 01:39:49 2010
@@ -1,0 +1,84 @@
+#!/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)
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	touch configure-stamp
+
+build: configure build-stamp
+build-stamp:
+	dh_testdir
+
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	$(MAKE) test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	[ ! -f Makefile ] || $(MAKE) distclean
+
+	dh_clean build-stamp configure-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(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:
+
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(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 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 configure binary-indep binary-arch binary

Propchange: trunk/libstring-format-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libstring-format-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-format-perl/debian/watch?rev=53803&op=file
==============================================================================
--- trunk/libstring-format-perl/debian/watch (added)
+++ trunk/libstring-format-perl/debian/watch Sun Mar  7 01:39:49 2010
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/String/String-Format-(.*).(tar.gz|tar|tgz)




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