r19469 - in /trunk/libclass-std-perl/debian: ./ changelog compat control copyright rules watch

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Tue May 6 07:06:05 UTC 2008


Author: dmn
Date: Tue May  6 07:06:05 2008
New Revision: 19469

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

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

Added: trunk/libclass-std-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-std-perl/debian/changelog?rev=19469&op=file
==============================================================================
--- trunk/libclass-std-perl/debian/changelog (added)
+++ trunk/libclass-std-perl/debian/changelog Tue May  6 07:06:05 2008
@@ -1,0 +1,19 @@
+libclass-std-perl (0.0.8-3) unstable; urgency=low
+
+  * Really add libversion-perl to Depends and Build-Depends, doh!
+    (closes: Bug#423791)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Tue, 12 Jun 2007 10:30:07 -0700
+
+libclass-std-perl (0.0.8-2) unstable; urgency=low
+
+  * Added libversion-perl to Depends and Build-Depends (closes: Bug#423791)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Mon, 14 May 2007 11:27:39 -0700
+
+libclass-std-perl (0.0.8-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#419966).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Wed, 18 Apr 2007 19:52:26 -0700
+

Added: trunk/libclass-std-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-std-perl/debian/compat?rev=19469&op=file
==============================================================================
--- trunk/libclass-std-perl/debian/compat (added)
+++ trunk/libclass-std-perl/debian/compat Tue May  6 07:06:05 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libclass-std-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-std-perl/debian/control?rev=19469&op=file
==============================================================================
--- trunk/libclass-std-perl/debian/control (added)
+++ trunk/libclass-std-perl/debian/control Tue May  6 07:06:05 2008
@@ -1,0 +1,14 @@
+Source: libclass-std-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), libmodule-build-perl, libversion-perl
+Build-Depends-Indep: perl (>= 5.8.8-7)
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.7.2
+
+Package: libclass-std-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libversion-perl
+Description:  Support for creating standard "inside-out" classes
+ This module provides tools that help to implement the "inside out object"
+ class structure in a convenient and standard way.

Added: trunk/libclass-std-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-std-perl/debian/copyright?rev=19469&op=file
==============================================================================
--- trunk/libclass-std-perl/debian/copyright (added)
+++ trunk/libclass-std-perl/debian/copyright Tue May  6 07:06:05 2008
@@ -1,0 +1,20 @@
+This is the debian package for the Class-Std module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+The upstream author is: 
+
+Damian Conway  <DCONWAY at cpan.org>
+
+Copyright (c) 2005, Damian Conway <DCONWAY at cpan.org>.  All rights reserved.
+
+Portions of the documentation from "Perl Best Practices" copyright (c)
+2005 by O'Reilly Media, Inc. and reprinted with permission.
+
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+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'.
+

Added: trunk/libclass-std-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-std-perl/debian/rules?rev=19469&op=file
==============================================================================
--- trunk/libclass-std-perl/debian/rules (added)
+++ trunk/libclass-std-perl/debian/rules Tue May  6 07:06:05 2008
@@ -1,0 +1,81 @@
+#!/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
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+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
+
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	OPTIMIZE="-Wall -O2 -g" $(PERL) Build
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build distclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(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_installcron
+#	dh_installmenu
+#	dh_installexamples
+	dh_installdocs README
+	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: trunk/libclass-std-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libclass-std-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-std-perl/debian/watch?rev=19469&op=file
==============================================================================
--- trunk/libclass-std-perl/debian/watch (added)
+++ trunk/libclass-std-perl/debian/watch Tue May  6 07:06:05 2008
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/Class/Class-Std-(.*).(tar.gz|tar|tgz)




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