r58062 - in /trunk/libclass-container-perl/debian: ./ changelog compat control copyright rules watch

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Wed May 19 12:33:38 UTC 2010


Author: ansgar-guest
Date: Wed May 19 12:33:14 2010
New Revision: 58062

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

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

Added: trunk/libclass-container-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-container-perl/debian/changelog?rev=58062&op=file
==============================================================================
--- trunk/libclass-container-perl/debian/changelog (added)
+++ trunk/libclass-container-perl/debian/changelog Wed May 19 12:33:14 2010
@@ -1,0 +1,44 @@
+libclass-container-perl (0.12-2) unstable; urgency=low
+
+  * Moved to CDBS
+  * Update to standards version 3.7.2
+  * New maintainer email address
+
+ -- Charles Fry <cfry at debian.org>  Wed,  5 Jul 2006 12:54:37 -0400
+
+libclass-container-perl (0.12-1) unstable; urgency=low
+
+  * New maintainer. (Closes: #329626)
+  * New upstream release. (Closes: #329510)
+
+ -- Charles Fry <debian at frogcircus.org>  Thu, 22 Sep 2005 10:01:26 -0400
+
+libclass-container-perl (0.11-0.1) unstable; urgency=low
+
+  * Non-maintainer upload to fix an upstream bug in the last NMU.
+  * New upstream release
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Thu,  4 Mar 2004 08:30:17 -0500
+
+libclass-container-perl (0.10-0.1) unstable; urgency=low
+
+  * Non-maintainer upload with maintainer agreement
+  * New upstream release (closes: bug#229082)
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Tue, 10 Feb 2004 12:41:24 -0500
+
+libclass-container-perl (0.07-1) unstable; urgency=low
+
+  * New upstream release (closes: Bug#156459)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Mon, 12 Aug 2002 12:25:55 -0700
+
+libclass-container-perl (0.05-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#152856).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat, 13 Jul 2002 07:34:34 -0700
+
+Local variables:
+mode: debian-changelog
+End:

Added: trunk/libclass-container-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-container-perl/debian/compat?rev=58062&op=file
==============================================================================
--- trunk/libclass-container-perl/debian/compat (added)
+++ trunk/libclass-container-perl/debian/compat Wed May 19 12:33:14 2010
@@ -1,0 +1,1 @@
+4

Added: trunk/libclass-container-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-container-perl/debian/control?rev=58062&op=file
==============================================================================
--- trunk/libclass-container-perl/debian/control (added)
+++ trunk/libclass-container-perl/debian/control Wed May 19 12:33:14 2010
@@ -1,0 +1,29 @@
+Source: libclass-container-perl
+Section: perl
+Priority: optional
+Build-Depends: cdbs, debhelper (>= 4.1.0)
+Build-Depends-Indep: perl (>= 5.6.0-17), libparams-validate-perl (>= 0.23)
+Maintainer: Charles Fry <cfry at debian.org>
+Standards-Version: 3.7.2
+
+Package: libclass-container-perl
+Architecture: all
+Depends: ${perl:Depends}, libparams-validate-perl (>= 0.23)
+Suggests: perl (>= 5.8.2) | libscalar-util-perl
+Description:  Glues object frameworks together transparently
+ This class facilitates building frameworks of several classes that
+ inter-operate.  It was first designed and built for HTML::Mason, in
+ which the Compiler, Lexer, Interpreter, Resolver, Component, Buffer,
+ and several other objects must create each other transparently,
+ passing the appropriate parameters to the right class, possibly
+ substituting their own subclass for any of these objects.
+ .
+  The main features of Class::Container are:
+ .
+  * Declaration of parameters used by each member in a class framework
+ .
+  * Transparent passing of constructor parameters to the class that
+    needs them
+ .
+  * Ability to create one (automatic) or many (manual) contained
+    objects automatically and transparently

Added: trunk/libclass-container-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-container-perl/debian/copyright?rev=58062&op=file
==============================================================================
--- trunk/libclass-container-perl/debian/copyright (added)
+++ trunk/libclass-container-perl/debian/copyright Wed May 19 12:33:14 2010
@@ -1,0 +1,12 @@
+The upstream author is: 
+
+Ken Williams <ken at mathforum.org>, based extremely heavily on
+collaborative work with Dave Rolsky <autarch at urth.org> and Jonathan
+Swartz <swartz at pobox.com> on the HTML::Mason project..
+
+This program is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+Larry Wall's "Artistic License" for perl can be found in
+/usr/share/common-licenses/Artistic, and the GPL can be found in
+/usr/share/common-licenses/GPL-2.

Added: trunk/libclass-container-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-container-perl/debian/rules?rev=58062&op=file
==============================================================================
--- trunk/libclass-container-perl/debian/rules (added)
+++ trunk/libclass-container-perl/debian/rules Wed May 19 12:33:14 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/perlmodule.mk

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

Added: trunk/libclass-container-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-container-perl/debian/watch?rev=58062&op=file
==============================================================================
--- trunk/libclass-container-perl/debian/watch (added)
+++ trunk/libclass-container-perl/debian/watch Wed May 19 12:33:14 2010
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/modules/by-module/Class/Class-Container-([\d\.]+)\.tar\.gz debian svn-upgrade




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