r2493 - in packages/libmodule-pluggable-perl/trunk: . debian

Niko Tyni ntyni-guest at costa.debian.org
Fri Mar 31 18:00:44 UTC 2006


Author: ntyni-guest
Date: 2006-03-31 18:00:43 +0000 (Fri, 31 Mar 2006)
New Revision: 2493

Added:
   packages/libmodule-pluggable-perl/trunk/debian/
   packages/libmodule-pluggable-perl/trunk/debian/changelog
   packages/libmodule-pluggable-perl/trunk/debian/control
   packages/libmodule-pluggable-perl/trunk/debian/copyright
   packages/libmodule-pluggable-perl/trunk/debian/docs
   packages/libmodule-pluggable-perl/trunk/debian/rules
   packages/libmodule-pluggable-perl/trunk/debian/watch
Log:
Load libmodule-pluggable-perl-2.6 into
packages/libmodule-pluggable-perl/trunk.


Added: packages/libmodule-pluggable-perl/trunk/debian/changelog
===================================================================
--- packages/libmodule-pluggable-perl/trunk/debian/changelog	2006-03-31 18:00:28 UTC (rev 2492)
+++ packages/libmodule-pluggable-perl/trunk/debian/changelog	2006-03-31 18:00:43 UTC (rev 2493)
@@ -0,0 +1,31 @@
+libmodule-pluggable-perl (2.6-1) unstable; urgency=low
+
+  * New upstream release
+  * remove dependencies on MODULE::Universal and File::Find::Rule
+  * change to my shiny new @debian.org address
+
+ -- S. Zachariah Sprackett <zacs at debian.org>  Thu, 17 Feb 2005 18:14:13 -0500
+
+libmodule-pluggable-perl (2.0-1) unstable; urgency=low
+
+  * New upstream release which adds proper support for inner packages 
+  * Added watch file now that we're into version 2.0
+    - hopefully upstream won't break this by releasing a 2.11 which comes
+      before 2.2 again
+  * Minor text change in the package description
+
+ -- S. Zachariah Sprackett <zac at sprackett.com>  Fri, 20 Aug 2004 13:46:17 -0400
+
+libmodule-pluggable-perl (1.9-1) unstable; urgency=low
+
+  * New upstream release.
+  * Allows install of a method in another package's namespace
+
+ -- S. Zachariah Sprackett <zac at sprackett.com>  Tue, 10 Aug 2004 21:44:36 -0400
+
+libmodule-pluggable-perl (1.8-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- S. Zachariah Sprackett <zac at sprackett.com>  Thu, 15 Jul 2004 20:43:25 -0400
+

Added: packages/libmodule-pluggable-perl/trunk/debian/control
===================================================================
--- packages/libmodule-pluggable-perl/trunk/debian/control	2006-03-31 18:00:28 UTC (rev 2492)
+++ packages/libmodule-pluggable-perl/trunk/debian/control	2006-03-31 18:00:43 UTC (rev 2493)
@@ -0,0 +1,14 @@
+Source: libmodule-pluggable-perl
+Section: perl
+Priority: optional
+Maintainer: S. Zachariah Sprackett <zacs at debian.org>
+Build-Depends-Indep: debhelper (>> 3.0.0), perl (>= 5.6.0-16), perl-modules
+Standards-Version: 3.6.1
+
+Package: libmodule-pluggable-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Automatically provide your module the ability to accept plugins
+ Provides a simple yet extensible way of supporting 'plugins' for your
+ module.  It exports a method into your namespace that looks through a search
+ path for .pm files and turns those into class names.

Added: packages/libmodule-pluggable-perl/trunk/debian/copyright
===================================================================
--- packages/libmodule-pluggable-perl/trunk/debian/copyright	2006-03-31 18:00:28 UTC (rev 2492)
+++ packages/libmodule-pluggable-perl/trunk/debian/copyright	2006-03-31 18:00:43 UTC (rev 2493)
@@ -0,0 +1,19 @@
+This package was debianized by S. Zachariah Sprackett <zac at sprackett.com> on
+Thu, 15 Jul 2004 20:43:25 -0400
+
+It was downloaded from http://www.perl.com/CPAN/modules/by-module/Module/
+
+Upstream Author: Simon Wistow <simon at thegestalt.org>
+
+Copyright:
+
+    This program is free software; you can redistribute it and/or modify it
+    under the terms of the "Artistic License" which comes with Debian.
+
+    THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED 
+    WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES 
+    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+On Debian GNU/Linux systems, the complete text of the Artistic License 
+can be found in `/usr/share/common-licenses/Artistic'.
+

Added: packages/libmodule-pluggable-perl/trunk/debian/docs
===================================================================
--- packages/libmodule-pluggable-perl/trunk/debian/docs	2006-03-31 18:00:28 UTC (rev 2492)
+++ packages/libmodule-pluggable-perl/trunk/debian/docs	2006-03-31 18:00:43 UTC (rev 2493)
@@ -0,0 +1 @@
+README

Added: packages/libmodule-pluggable-perl/trunk/debian/rules
===================================================================
--- packages/libmodule-pluggable-perl/trunk/debian/rules	2006-03-31 18:00:28 UTC (rev 2492)
+++ packages/libmodule-pluggable-perl/trunk/debian/rules	2006-03-31 18:00:43 UTC (rev 2493)
@@ -0,0 +1,66 @@
+#!/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 compatability version to use.
+export DH_COMPAT=3
+
+ifndef PERL
+	PERL = /usr/bin/perl
+endif
+
+package = libmodule-pluggable-perl
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	perl Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(CURDIR)/debian/$(package)/usr
+
+	-rmdir -p debian/$(package)/usr/lib/perl5
+
+
+binary-arch: build install
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installdebconf
+	dh_installdocs
+#	dh_installman
+#	dh_installinfo
+	dh_installchangelogs Changes
+	dh_link
+	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


Property changes on: packages/libmodule-pluggable-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libmodule-pluggable-perl/trunk/debian/watch
===================================================================
--- packages/libmodule-pluggable-perl/trunk/debian/watch	2006-03-31 18:00:28 UTC (rev 2492)
+++ packages/libmodule-pluggable-perl/trunk/debian/watch	2006-03-31 18:00:43 UTC (rev 2493)
@@ -0,0 +1,3 @@
+version=2
+
+http://www.perl.com/CPAN/modules/by-module/Module/Module-Pluggable-([\d\.]*)\.tar\.gz




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