r4545 - in /packages/libclass-returnvalue-perl/trunk/debian: ./ changelog compat control copyright rules watch

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Mon Dec 4 22:21:31 CET 2006


Author: ntyni-guest
Date: Mon Dec  4 22:21:30 2006
New Revision: 4545

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4545
Log:
Load libclass-returnvalue-perl-0.53 into
packages/libclass-returnvalue-perl/trunk.

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

Added: packages/libclass-returnvalue-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-returnvalue-perl/trunk/debian/changelog?rev=4545&op=file
==============================================================================
--- packages/libclass-returnvalue-perl/trunk/debian/changelog (added)
+++ packages/libclass-returnvalue-perl/trunk/debian/changelog Mon Dec  4 22:21:30 2006
@@ -1,0 +1,27 @@
+libclass-returnvalue-perl (0.53-1) unstable; urgency=low
+
+  * New upstream release, closes: #329513.
+  * New maintainer, thanks to Ivan Kohler for his work as the previous
+    maintainer of the package.
+  * debian/rules - Altered to fit my preferred methods.
+  * debian/watch - Added
+  * debian/copyright - Updated statement
+  * debian/control - Moved perl and libtest-inline-perl build dependencies
+    to Build-Depends-Indep.
+
+ -- Stephen Quinney <sjq at debian.org>  Thu, 22 Sep 2005 13:54:26 +0100
+
+libclass-returnvalue-perl (0.52-1) unstable; urgency=low
+
+  * New upstream release.
+  * Change Section: from interpreters to perl
+  * debhelper compat v4
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat,  7 Aug 2004 20:08:53 -0700
+
+libclass-returnvalue-perl (0.40-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#179016).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Wed, 29 Jan 2003 19:46:37 -0800
+

Added: packages/libclass-returnvalue-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-returnvalue-perl/trunk/debian/compat?rev=4545&op=file
==============================================================================
--- packages/libclass-returnvalue-perl/trunk/debian/compat (added)
+++ packages/libclass-returnvalue-perl/trunk/debian/compat Mon Dec  4 22:21:30 2006
@@ -1,0 +1,1 @@
+4

Added: packages/libclass-returnvalue-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-returnvalue-perl/trunk/debian/control?rev=4545&op=file
==============================================================================
--- packages/libclass-returnvalue-perl/trunk/debian/control (added)
+++ packages/libclass-returnvalue-perl/trunk/debian/control Mon Dec  4 22:21:30 2006
@@ -1,0 +1,16 @@
+Source: libclass-returnvalue-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4)
+Build-Depends-Indep: perl (>= 5.8.0-7), libtest-inline-perl, libdevel-stacktrace-perl
+Maintainer: Stephen Quinney <sjq at debian.org>
+Standards-Version: 3.6.2
+
+Package: libclass-returnvalue-perl
+Architecture: all
+Depends: ${perl:Depends}, libdevel-stacktrace-perl
+Description:  A return-value object that lets you treat it as a boolean, array or object
+ Class::ReturnValue is a "clever" return value object that can allow
+ code calling your routine to expect:
+ a boolean value (did it fail)
+ or a list (what are the return values)

Added: packages/libclass-returnvalue-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-returnvalue-perl/trunk/debian/copyright?rev=4545&op=file
==============================================================================
--- packages/libclass-returnvalue-perl/trunk/debian/copyright (added)
+++ packages/libclass-returnvalue-perl/trunk/debian/copyright Mon Dec  4 22:21:30 2006
@@ -1,0 +1,13 @@
+This is the debian package for the Class::ReturnValue module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+The upstream author is: Jesse Vincent <jesse at bestpractical.com>.
+
+Copyright (c) 2002,2003,2005 Jesse Vincent <jesse at bestpractical.com>
+    You may use, modify, fold, spindle or mutilate this module under
+    the same terms as perl itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  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: packages/libclass-returnvalue-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-returnvalue-perl/trunk/debian/rules?rev=4545&op=file
==============================================================================
--- packages/libclass-returnvalue-perl/trunk/debian/rules (added)
+++ packages/libclass-returnvalue-perl/trunk/debian/rules Mon Dec  4 22:21:30 2006
@@ -1,0 +1,81 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	perl Makefile.PL verbose INSTALLDIRS=vendor
+
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp
+	dh_testdir
+
+	$(MAKE)
+	$(MAKE) test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	[ ! -e Makefile ] || $(MAKE) distclean
+
+	dh_clean build-stamp configure-stamp
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+	# Remove any empty directories
+
+	find $(TMP) -type d -empty -print0 | xargs --null --no-run-if-empty rmdir -p --ignore-fail-on-non-empty
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installman
+	dh_installchangelogs Changes
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl 
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+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: packages/libclass-returnvalue-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libclass-returnvalue-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libclass-returnvalue-perl/trunk/debian/watch?rev=4545&op=file
==============================================================================
--- packages/libclass-returnvalue-perl/trunk/debian/watch (added)
+++ packages/libclass-returnvalue-perl/trunk/debian/watch Mon Dec  4 22:21:30 2006
@@ -1,0 +1,4 @@
+version=2
+http://www.cpan.org/authors/id/J/JE/JESSE/Class-ReturnValue-(\d+\.\d+)\.tar\.gz debian uupdate
+
+




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