r10129 - in /trunk/libclass-factory-util-perl/debian: ./ changelog compat control copyright rules watch

vdanjean at users.alioth.debian.org vdanjean at users.alioth.debian.org
Sat Dec 1 11:52:50 UTC 2007


Author: vdanjean
Date: Sat Dec  1 11:52:50 2007
New Revision: 10129

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

Added:
    trunk/libclass-factory-util-perl/debian/
    trunk/libclass-factory-util-perl/debian/changelog
    trunk/libclass-factory-util-perl/debian/compat
    trunk/libclass-factory-util-perl/debian/control
    trunk/libclass-factory-util-perl/debian/copyright
    trunk/libclass-factory-util-perl/debian/rules   (with props)
    trunk/libclass-factory-util-perl/debian/watch

Added: trunk/libclass-factory-util-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libclass-factory-util-perl/debian/changelog?rev=10129&op=file
==============================================================================
--- trunk/libclass-factory-util-perl/debian/changelog (added)
+++ trunk/libclass-factory-util-perl/debian/changelog Sat Dec  1 11:52:50 2007
@@ -1,0 +1,35 @@
+libclass-factory-util-perl (1.7-1) unstable; urgency=low
+
+  * New upstream release
+  * Fix for lintian warnings on ignored make clean target
+  * Fix for Build-Depends vs. Build-Depends-Indep
+  * Policy-version bump to 3.7.2.2 (No other changes)
+  * Update debian/watch so uupdate will work
+  * Declared Build-Depends on libmodule-build-perl
+  * Rearranged build process to use Module::Build
+
+ -- Jay Bonci <jaybonci at debian.org>  Sat, 07 Jul 2007 15:43:22 -0400
+
+libclass-factory-util-perl (1.6-2) unstable; urgency=low
+
+  * Adds debian/watch file so uscan actually works
+
+ -- Jay Bonci <jaybonci at debian.org>  Sun, 12 Sep 2004 02:15:20 -0400
+
+libclass-factory-util-perl (1.6-1) unstable; urgency=low
+
+  * New upstream version
+  * Added watch file
+  * Switched to my new binary-indep rules file template
+  * Changed URL in copyright to be non-versioned on CPAN (dist/)
+  * Bumped policy version to 3.6.1.0
+  * Updated maintainer address
+
+ -- Jay Bonci <jaybonci at debian.org>  Fri, 19 Sep 2003 23:03:32 -0400
+
+libclass-factory-util-perl (1.5-1) unstable; urgency=low
+
+  * Initial Release. Closes: #203565
+
+ -- Jay Bonci <jay at bonci.com>  Thu, 31 Jul 2003 04:19:06 -0400
+

Added: trunk/libclass-factory-util-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libclass-factory-util-perl/debian/compat?rev=10129&op=file
==============================================================================
--- trunk/libclass-factory-util-perl/debian/compat (added)
+++ trunk/libclass-factory-util-perl/debian/compat Sat Dec  1 11:52:50 2007
@@ -1,0 +1,1 @@
+4

Added: trunk/libclass-factory-util-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libclass-factory-util-perl/debian/control?rev=10129&op=file
==============================================================================
--- trunk/libclass-factory-util-perl/debian/control (added)
+++ trunk/libclass-factory-util-perl/debian/control Sat Dec  1 11:52:50 2007
@@ -1,0 +1,15 @@
+Source: libclass-factory-util-perl
+Section: perl
+Priority: optional
+Maintainer: Jay Bonci <jaybonci at debian.org>
+Build-Depends: debhelper (>> 4.0.0), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.6.0-16)
+Standards-Version: 3.7.2.2
+
+Package: libclass-factory-util-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Utility method for factory classes
+ When this module is loaded, it creates a method in its caller named 
+ subclasses(). This method returns a list of the available subclasses for the 
+ package.

Added: trunk/libclass-factory-util-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libclass-factory-util-perl/debian/copyright?rev=10129&op=file
==============================================================================
--- trunk/libclass-factory-util-perl/debian/copyright (added)
+++ trunk/libclass-factory-util-perl/debian/copyright Sat Dec  1 11:52:50 2007
@@ -1,0 +1,25 @@
+This package was debianized by Jay Bonci <jay at bonci.com> on
+Thu, 31 Jul 2003 04:19:06 -0400.
+
+It was downloaded from http://search.cpan.org/dist/Class-Factory-Util
+
+Upstream Author: Dave Rolsky <autarch at urth.org>
+
+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"
+
+        See:
+
+        /usr/share/common-licenses/Artistic
+        /usr/share/common-licenses/GPL
+
+        For more information regarding these licensing options
+

Added: trunk/libclass-factory-util-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libclass-factory-util-perl/debian/rules?rev=10129&op=file
==============================================================================
--- trunk/libclass-factory-util-perl/debian/rules (added)
+++ trunk/libclass-factory-util-perl/debian/rules Sat Dec  1 11:52:50 2007
@@ -1,0 +1,55 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+#export DH_COMPAT=4
+
+PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
+
+
+build:
+	dh_testdir
+	# Add here commands to compile the package.
+	perl Build.PL installdirs=vendor
+clean:
+	dh_testdir
+	dh_testroot
+
+	[ ! -f Build ] || ./Build clean
+	rm -rf ./Build _build
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	
+	./Build test
+	./Build install destdir=$(CURDIR)/debian/$(PACKAGE)
+	-find $(CURDIR)/debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
+
+binary-indep:;
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installman
+	dh_installchangelogs Changes
+	dh_installexamples
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: trunk/libclass-factory-util-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libclass-factory-util-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libclass-factory-util-perl/debian/watch?rev=10129&op=file
==============================================================================
--- trunk/libclass-factory-util-perl/debian/watch (added)
+++ trunk/libclass-factory-util-perl/debian/watch Sat Dec  1 11:52:50 2007
@@ -1,0 +1,3 @@
+version=2
+http://www.cpan.org/modules/by-module/Class/Class-Factory-Util-([0-9].*)\.tar.gz \
+ debian uupdate




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