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

dom at users.alioth.debian.org dom at users.alioth.debian.org
Mon May 3 12:24:21 UTC 2010


Author: dom
Date: Mon May  3 12:24:07 2010
New Revision: 57360

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

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

Added: trunk/libclass-isa-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-isa-perl/debian/changelog?rev=57360&op=file
==============================================================================
--- trunk/libclass-isa-perl/debian/changelog (added)
+++ trunk/libclass-isa-perl/debian/changelog Mon May  3 12:24:07 2010
@@ -1,0 +1,5 @@
+libclass-isa-perl (0.36-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Dominic Hargreaves <dom at earth.li>  Mon, 3 May 2010 12:12:07 +0000

Added: trunk/libclass-isa-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-isa-perl/debian/compat?rev=57360&op=file
==============================================================================
--- trunk/libclass-isa-perl/debian/compat (added)
+++ trunk/libclass-isa-perl/debian/compat Mon May  3 12:24:07 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libclass-isa-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-isa-perl/debian/control?rev=57360&op=file
==============================================================================
--- trunk/libclass-isa-perl/debian/control (added)
+++ trunk/libclass-isa-perl/debian/control Mon May  3 12:24:07 2010
@@ -1,0 +1,32 @@
+Source: libclass-isa-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: Dominic Hargreaves <dom at earth.li>
+Standards-Version: 3.8.4
+Homepage: http://search.cpan.org/dist/Class-ISA/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-isa-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libclass-isa-perl/
+
+Package: libclass-isa-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: report the search path for a class's ISA tree
+ Suppose you have a class (like Food::Fish::Fishstick) that is derived, via
+ its @ISA, from one or more superclasses (as Food::Fish::Fishstick is from
+ Food::Fish, Life::Fungus, and Chemicals), and some of those superclasses may
+ themselves each be derived, via its @ISA, from one or more superclasses (as
+ above).
+ .
+ When, then, you call a method in that class ($fishstick->calories), Perl
+ first searches there for that method, but if it's not there, it goes
+ searching in its superclasses, and so on, in a depth-first (or maybe
+ "height-first" is the word) search. In the above example, it'd first look in
+ Food::Fish, then Food, then Matter, then Life::Fungus, then Life, then
+ Chemicals.
+ .
+ This library, Class::ISA, provides functions that return that list -- the
+ list (in order) of names of classes Perl would search to find a method, with
+ no duplicates.

Added: trunk/libclass-isa-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-isa-perl/debian/copyright?rev=57360&op=file
==============================================================================
--- trunk/libclass-isa-perl/debian/copyright (added)
+++ trunk/libclass-isa-perl/debian/copyright Mon May  3 12:24:07 2010
@@ -1,0 +1,28 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: 
+Source: http://search.cpan.org/dist/Class-ISA/
+Name: Class-ISA
+
+Files: *
+Copyright: 1999-2009 Sean M. Burke
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2010, Dominic Hargreaves <dom at earth.li>
+License: Artistic or GPL-1+
+
+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'
+
+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'

Added: trunk/libclass-isa-perl/debian/libclass-isa-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-isa-perl/debian/libclass-isa-perl.docs?rev=57360&op=file
==============================================================================
--- trunk/libclass-isa-perl/debian/libclass-isa-perl.docs (added)
+++ trunk/libclass-isa-perl/debian/libclass-isa-perl.docs Mon May  3 12:24:07 2010
@@ -1,0 +1,1 @@
+README

Added: trunk/libclass-isa-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-isa-perl/debian/rules?rev=57360&op=file
==============================================================================
--- trunk/libclass-isa-perl/debian/rules (added)
+++ trunk/libclass-isa-perl/debian/rules Mon May  3 12:24:07 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

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

Added: trunk/libclass-isa-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-isa-perl/debian/watch?rev=57360&op=file
==============================================================================
--- trunk/libclass-isa-perl/debian/watch (added)
+++ trunk/libclass-isa-perl/debian/watch Mon May  3 12:24:07 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Class-ISA/   .*/Class-ISA-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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