r9592 - in /trunk/liblocale-us-perl/debian: ./ changelog compat control copyright rules watch

emhn-guest at users.alioth.debian.org emhn-guest at users.alioth.debian.org
Mon Nov 19 11:39:54 UTC 2007


Author: emhn-guest
Date: Mon Nov 19 11:39:54 2007
New Revision: 9592

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

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

Added: trunk/liblocale-us-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/liblocale-us-perl/debian/changelog?rev=9592&op=file
==============================================================================
--- trunk/liblocale-us-perl/debian/changelog (added)
+++ trunk/liblocale-us-perl/debian/changelog Mon Nov 19 11:39:54 2007
@@ -1,0 +1,8 @@
+liblocale-us-perl (1.2-1) unstable; urgency=low
+
+  * Initial Release (Closes: #451627).
+  * Moved package into Debian Pkg Perl Project SVN.
+  * Fixed copyright file with a better URL.
+  * Fixed watch file.
+
+ -- Ernesto Hernández-Novich (USB) <emhn at usb.ve>  Mon, 19 Nov 2007 07:29:59 -0400

Added: trunk/liblocale-us-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/liblocale-us-perl/debian/compat?rev=9592&op=file
==============================================================================
--- trunk/liblocale-us-perl/debian/compat (added)
+++ trunk/liblocale-us-perl/debian/compat Mon Nov 19 11:39:54 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/liblocale-us-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/liblocale-us-perl/debian/control?rev=9592&op=file
==============================================================================
--- trunk/liblocale-us-perl/debian/control (added)
+++ trunk/liblocale-us-perl/debian/control Mon Nov 19 11:39:54 2007
@@ -1,0 +1,19 @@
+Source: liblocale-us-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.0)
+Maintainer: Debian Pkg Perl <pkg-perl at lists.alioth.debian.org>
+Uploaders: Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+Homepage: http://search.cpan.org/dist/Locale-US/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/liblocale-us-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/liblocale-us-perl/
+Standards-Version: 3.7.2
+
+Package: liblocale-us-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description:  Module for United States state identification
+ This Perl module provides methods allowing United States' two-letter
+ state identification parsing from state code to state name
+ and vice versa.

Added: trunk/liblocale-us-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/liblocale-us-perl/debian/copyright?rev=9592&op=file
==============================================================================
--- trunk/liblocale-us-perl/debian/copyright (added)
+++ trunk/liblocale-us-perl/debian/copyright Mon Nov 19 11:39:54 2007
@@ -1,0 +1,22 @@
+This package was debianized by Ernesto Hernández-Novich (USB <emhn at usb.ve>
+on Sat, 17 Nov 2007 11:37:57 -0400
+
+It was downloaded from http://search.cpan.org/dist/Locale-US/
+
+Upstream Author: 
+
+T. M. Brannon, <tbone at cpan.org>
+
+Copyright:
+
+Copyright (c) 2002-2007 Terrence Brannon. 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.
+
+The complete text of the GNU General Public License can be found in
+/usr/share/common-licenses/GPL and the Artistic License can be found
+in /usr/share/common-licenses/Artistic.

Added: trunk/liblocale-us-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/liblocale-us-perl/debian/rules?rev=9592&op=file
==============================================================================
--- trunk/liblocale-us-perl/debian/rules (added)
+++ trunk/liblocale-us-perl/debian/rules Mon Nov 19 11:39:54 2007
@@ -1,0 +1,65 @@
+#!/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)
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp install-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	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 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

Propchange: trunk/liblocale-us-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/liblocale-us-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/liblocale-us-perl/debian/watch?rev=9592&op=file
==============================================================================
--- trunk/liblocale-us-perl/debian/watch (added)
+++ trunk/liblocale-us-perl/debian/watch Mon Nov 19 11:39:54 2007
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/modules/by-module/Locale/Locale-US-([\d\.]+)\.(?:tar\.gz|tar|tgz)




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