r49850 - in /trunk/libclass-gomor-perl/debian: ./ changelog compat control copyright libclass-gomor-perl.docs rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Jan 1 23:13:29 UTC 2010


Author: jawnsy-guest
Date: Fri Jan  1 23:13:23 2010
New Revision: 49850

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

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

Added: trunk/libclass-gomor-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-gomor-perl/debian/changelog?rev=49850&op=file
==============================================================================
--- trunk/libclass-gomor-perl/debian/changelog (added)
+++ trunk/libclass-gomor-perl/debian/changelog Fri Jan  1 23:13:23 2010
@@ -1,0 +1,5 @@
+libclass-gomor-perl (1.02-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Fri, 1 Jan 2010 18:14:42 -0500

Added: trunk/libclass-gomor-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-gomor-perl/debian/compat?rev=49850&op=file
==============================================================================
--- trunk/libclass-gomor-perl/debian/compat (added)
+++ trunk/libclass-gomor-perl/debian/compat Fri Jan  1 23:13:23 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libclass-gomor-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-gomor-perl/debian/control?rev=49850&op=file
==============================================================================
--- trunk/libclass-gomor-perl/debian/control (added)
+++ trunk/libclass-gomor-perl/debian/control Fri Jan  1 23:13:23 2010
@@ -1,0 +1,37 @@
+Source: libclass-gomor-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.8.3
+Homepage: http://search.cpan.org/dist/Class-Gomor/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-gomor-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libclass-gomor-perl/
+
+Package: libclass-gomor-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: another class and object builder
+ Class::Gomor is yet another class builder. This one adds parameter checking
+ in new constructor, that is to check for attributes existence, and
+ definedness.
+ .
+ In order to validate parameters, the module needs to find attributes, and
+ that is the reason for declaring attributes in global variables named @AS,
+ @AA, @AO. They respectively state for Attributes Scalar, Attributes Array and
+ Attributes Other. The last one is used to avoid autocreation of accessors,
+ that is to let you declare your own ones.
+ .
+ Attribute validation is performed by looking at classes hierarchy, by
+ following @ISA tree inheritance.
+ .
+ The loss in speed by validating all attributes is quite negligeable on a
+ decent machine (Pentium IV, 2.4 GHz) with Perl 5.8.x. But if you want to
+ avoid checking, you can do it, see below.
+ .
+ This class is the base class for Class::Gomor::Array and Class::Gomor::Hash,
+ so they will inherite the following methods.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libclass-gomor-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-gomor-perl/debian/copyright?rev=49850&op=file
==============================================================================
--- trunk/libclass-gomor-perl/debian/copyright (added)
+++ trunk/libclass-gomor-perl/debian/copyright Fri Jan  1 23:13:23 2010
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59
+Maintainer: GomoR <gomor-cpan_at_gomor.org>
+Source: http://search.cpan.org/dist/Class-Gomor/
+Name: Class-Gomor
+Disclaimer: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: GomoR <gomor-cpan_at_gomor.org>
+License: Artistic
+
+Files: debian/*
+Copyright: 2010, Jonathan Yu <jawnsy at cpan.org>
+License: GPL-1+ or Artistic
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'

Added: trunk/libclass-gomor-perl/debian/libclass-gomor-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-gomor-perl/debian/libclass-gomor-perl.docs?rev=49850&op=file
==============================================================================
--- trunk/libclass-gomor-perl/debian/libclass-gomor-perl.docs (added)
+++ trunk/libclass-gomor-perl/debian/libclass-gomor-perl.docs Fri Jan  1 23:13:23 2010
@@ -1,0 +1,1 @@
+README

Added: trunk/libclass-gomor-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-gomor-perl/debian/rules?rev=49850&op=file
==============================================================================
--- trunk/libclass-gomor-perl/debian/rules (added)
+++ trunk/libclass-gomor-perl/debian/rules Fri Jan  1 23:13:23 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

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

Added: trunk/libclass-gomor-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-gomor-perl/debian/watch?rev=49850&op=file
==============================================================================
--- trunk/libclass-gomor-perl/debian/watch (added)
+++ trunk/libclass-gomor-perl/debian/watch Fri Jan  1 23:13:23 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Class-Gomor/   .*/Class-Gomor-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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