[libclass-delegator-perl] 01/01: Imported Debian patch 0.09-2

gregor herrmann gregoa at debian.org
Sun Jan 12 15:45:40 UTC 2014


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libclass-delegator-perl.

commit 4cd6b7fd82f01630f611ff7dc7f3125ac6585093
Author: Nacho Barrientos Arias <nacho at debian.org>
Date:   Sun Dec 29 21:44:36 2013 +0000

    Imported Debian patch 0.09-2
---
 debian/changelog | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/compat    |  1 +
 debian/control   | 19 +++++++++++++++++++
 debian/copyright | 19 +++++++++++++++++++
 debian/docs      |  1 +
 debian/rules     | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch     |  2 ++
 7 files changed, 138 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5199097
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,42 @@
+libclass-delegator-perl (0.09-2) unstable; urgency=low
+
+  * Orphaned. Set maintainer to Debian QA Group.
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Sun, 29 Dec 2013 21:44:36 +0000
+
+libclass-delegator-perl (0.09-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control
+   + Set Standards-Version to 3.8.0 (no changes).
+  * debian/rules
+   + Prevent packlist creation.
+  * Add watch file.
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Wed, 23 Jul 2008 12:12:57 +0200
+
+libclass-delegator-perl (0.06-3) unstable; urgency=low
+
+  * debian/rules
+  - Rewritten from scratch.
+  - Fixed manpage installation directory (Closes: #450526).
+  * debian/control
+  - New maintainer's email address.
+  - Homepage moved to the native field.
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Fri, 09 Nov 2007 16:39:23 +0100
+
+libclass-delegator-perl (0.06-2) unstable; urgency=low
+
+  * debian/control
+  - Fixed buggy phrase on package description (Closes: #372600)
+  - Updated standards version to 3.7.2 
+
+ -- Nacho Barrientos Arias <chipi at criptonita.com>  Mon, 12 Jun 2006 21:08:44 +0200
+
+libclass-delegator-perl (0.06-1) unstable; urgency=low
+
+  * Initial release (Closes: #364266)
+
+ -- Nacho Barrientos Arias <chipi at criptonita.com>  Sat, 22 Apr 2006 11:55:24 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..4202591
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: libclass-delegator-perl
+Section: perl
+Priority: optional
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.8), libmodule-build-perl
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/Class-Delegator/
+
+Package: libclass-delegator-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Perl module for a simple and fast object-oriented delegation
+ This module provides a subset of the functionality of Damian Conway's lovely 
+ Class::Delegation module. 
+ .
+ However the specification semantics of Class::Delegator differ slightly
+ from those of Class::Delegation, so this module isn't a drop-in
+ replacement for Class::Delegation.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..feeb822
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,19 @@
+This package was debianized by Nacho Barrientos Arias <chipi at criptonita.com> on
+Sat, 22 Apr 2006 11:55:24 +0200.
+
+Copyright (C) 2005, 2006 David Wheeler
+
+It was downloaded from the Comprehensive Perl Archive Network (CPAN).
+Visit <http://www.perl.com/CPAN/> to find a CPAN site near you.
+
+Upstream Author: David Wheeler <david at justatheory.com>
+
+License: This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+See http://www.perl.com/perl/misc/Artistic.html
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  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'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..38e8394
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,54 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+PACKAGE = $(shell dh_listpackages)
+
+ifndef PERL
+PERL = $(shell which perl)
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor DESTDIR=$(CURDIR)/debian/$(PACKAGE) create_packlist=0
+	touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	[ ! -f Build ] || $(MAKE) realclean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	$(MAKE) install
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changes
+	dh_installdocs
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..7cc2768
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://www.cpan.org/modules/by-module/Class/Class-Delegator-([\d\.]*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libclass-delegator-perl.git



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