r2652 - in /packages/libuniversal-isa-perl/trunk/debian: ./ changelog compat control copyright rules watch

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Fri Apr 28 14:15:30 UTC 2006


Author: eloy
Date: Fri Apr 28 14:15:30 2006
New Revision: 2652

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=2652
Log:
Load libuniversal-isa-perl-0.06 into
packages/libuniversal-isa-perl/trunk.

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

Added: packages/libuniversal-isa-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libuniversal-isa-perl/trunk/debian/changelog?rev=2652&op=file
==============================================================================
--- packages/libuniversal-isa-perl/trunk/debian/changelog (added)
+++ packages/libuniversal-isa-perl/trunk/debian/changelog Fri Apr 28 14:15:30 2006
@@ -1,0 +1,6 @@
+libuniversal-isa-perl (0.06-1) unstable; urgency=low
+
+  * Initial Release (closes: #365142).
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Thu, 27 Apr 2006 15:52:30 +0200
+

Added: packages/libuniversal-isa-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libuniversal-isa-perl/trunk/debian/compat?rev=2652&op=file
==============================================================================
--- packages/libuniversal-isa-perl/trunk/debian/compat (added)
+++ packages/libuniversal-isa-perl/trunk/debian/compat Fri Apr 28 14:15:30 2006
@@ -1,0 +1,1 @@
+5

Added: packages/libuniversal-isa-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libuniversal-isa-perl/trunk/debian/control?rev=2652&op=file
==============================================================================
--- packages/libuniversal-isa-perl/trunk/debian/control (added)
+++ packages/libuniversal-isa-perl/trunk/debian/control Fri Apr 28 14:15:30 2006
@@ -1,0 +1,22 @@
+Source: libuniversal-isa-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Standards-Version: 3.6.2
+
+Package: libuniversal-isa-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description: Safer version of UNIVERSAL::isa.
+ UNIVERSAL is base class for ALL classes in Object Oriented Perl.
+ UNIVERSAL::isa (isa stands for "is a") is method which can tell 
+ You if object is blessed in package or inherits from package.
+ .
+ This module overloads UNIVERSAL::isa with a version that makes sure
+ that, when called as a function on objects which override isa, isa will
+ call the appropriate method on those objects
+ .
+ In all other cases, the real UNIVERSAL::isa gets called directly.

Added: packages/libuniversal-isa-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libuniversal-isa-perl/trunk/debian/copyright?rev=2652&op=file
==============================================================================
--- packages/libuniversal-isa-perl/trunk/debian/copyright (added)
+++ packages/libuniversal-isa-perl/trunk/debian/copyright Fri Apr 28 14:15:30 2006
@@ -1,0 +1,24 @@
+This is the debian package for the UNIVERSAL-isa module.
+It was created by Krzysztof Krzyzaniak (eloy) <eloy at debian.org> using dh-make-perl.
+
+It was downloaded from: http://search.cpan.org/~chromatic/UNIVERSAL-isa/
+
+The upstream authors are: 
+ - Autrijus Tang <autrijus at autrijus.org>
+ - chromatic <chromatic at wgz.org>
+ - Yuval Kogman <nothingmuch at woobling.org>.
+
+This program is free software, you can redistribute it and/or modify it under
+the same terms as Perl itself.
+
+Perl is distributed under licenses:
+
+    a) the GNU General Public License as published by the Free Software
+       Foundation; either version 1, or (at your option) any later
+       version, or
+  
+    b) the "Artistic License" which comes with Perl.
+  
+    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/libuniversal-isa-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libuniversal-isa-perl/trunk/debian/rules?rev=2652&op=file
==============================================================================
--- packages/libuniversal-isa-perl/trunk/debian/rules (added)
+++ packages/libuniversal-isa-perl/trunk/debian/rules Fri Apr 28 14:15:30 2006
@@ -1,0 +1,64 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+#
+# It was later modified by Jason Kohles <email at jasonkohles.com>
+# http://www.jasonkohles.com/ to support Module::Build installed modules
+
+export PERL_MM_USE_DEFAULT=1
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Build.PL installdirs=vendor
+	OPTIMIZE="-Wall -O2 -g" $(PERL) Build
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Build ] || $(PERL) Build distclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(PERL) Build test
+	$(PERL) Build install destdir=$(TMP)
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installexamples
+	dh_installdocs README t/bugs.t
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+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/libuniversal-isa-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libuniversal-isa-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libuniversal-isa-perl/trunk/debian/watch?rev=2652&op=file
==============================================================================
--- packages/libuniversal-isa-perl/trunk/debian/watch (added)
+++ packages/libuniversal-isa-perl/trunk/debian/watch Fri Apr 28 14:15:30 2006
@@ -1,0 +1,2 @@
+version=3
+http://mirrors.kernel.org/cpan/modules/by-module/UNIVERSAL/UNIVERSAL-isa-([\d\.]+)\.tar\.gz




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