r1801 - in packages/libmodule-install-perl/trunk: . debian

Krzysztof Krzyzaniak eloy at costa.debian.org
Fri Dec 30 11:08:19 UTC 2005


Author: eloy
Date: 2005-12-30 11:08:18 +0000 (Fri, 30 Dec 2005)
New Revision: 1801

Added:
   packages/libmodule-install-perl/trunk/debian/
   packages/libmodule-install-perl/trunk/debian/changelog
   packages/libmodule-install-perl/trunk/debian/compat
   packages/libmodule-install-perl/trunk/debian/control
   packages/libmodule-install-perl/trunk/debian/copyright
   packages/libmodule-install-perl/trunk/debian/rules
Log:
Load libmodule-install-perl-0.34 into
packages/libmodule-install-perl/trunk.


Added: packages/libmodule-install-perl/trunk/debian/changelog
===================================================================
--- packages/libmodule-install-perl/trunk/debian/changelog	2005-12-30 11:08:00 UTC (rev 1800)
+++ packages/libmodule-install-perl/trunk/debian/changelog	2005-12-30 11:08:18 UTC (rev 1801)
@@ -0,0 +1,18 @@
+libmodule-install-perl (0.34-2) unstable; urgency=low
+
+  * Fix copyright file. (closes: #257421)
+
+ -- Bastian Blank <waldi at debian.org>  Sat, 10 Jul 2004 17:05:48 +0200
+
+libmodule-install-perl (0.34-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Bastian Blank <waldi at debian.org>  Fri, 02 Jul 2004 18:04:43 +0200
+
+libmodule-install-perl (0.33-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Bastian Blank <waldi at debian.org>  Sat,  3 Apr 2004 23:07:38 +0200
+

Added: packages/libmodule-install-perl/trunk/debian/compat
===================================================================
--- packages/libmodule-install-perl/trunk/debian/compat	2005-12-30 11:08:00 UTC (rev 1800)
+++ packages/libmodule-install-perl/trunk/debian/compat	2005-12-30 11:08:18 UTC (rev 1801)
@@ -0,0 +1 @@
+4

Added: packages/libmodule-install-perl/trunk/debian/control
===================================================================
--- packages/libmodule-install-perl/trunk/debian/control	2005-12-30 11:08:00 UTC (rev 1800)
+++ packages/libmodule-install-perl/trunk/debian/control	2005-12-30 11:08:18 UTC (rev 1801)
@@ -0,0 +1,17 @@
+Source: libmodule-install-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Bastian Blank <waldi at debian.org>
+Standards-Version: 3.6.1
+
+Package: libmodule-install-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description:  A Cornucopiaelig of Module::Install Recipes
+ It's a lot easier for most of us to cook a meal from a recipe, rather
+ than just throwing things into a pot until something edible forms.  So
+ it is with programming as well.  Module::Install makes writing Perl
+ module installers as easy as possible.  Having a set of easy to
+ understand samples, makes it simpler yet.

Added: packages/libmodule-install-perl/trunk/debian/copyright
===================================================================
--- packages/libmodule-install-perl/trunk/debian/copyright	2005-12-30 11:08:00 UTC (rev 1800)
+++ packages/libmodule-install-perl/trunk/debian/copyright	2005-12-30 11:08:18 UTC (rev 1801)
@@ -0,0 +1,26 @@
+This is the debian package for the Module-Install module.
+
+It was downloaded from the Comprehensive Perl Archive Network (CPAN).
+Visit <http://www.perl.com/CPAN/> to find a CPAN site near you.
+
+The upstream author is: 
+
+Autrijus Tang <autrijus at autrijus.org>
+
+Structure based on Inline::C-Cookbook by Brian Ingerson
+<INGY at cpan.org>.
+
+
+Copyright 2003, 2004 by Autrijus Tang <autrijus at autrijus.org>.
+
+Copyright 2002 by Brian Ingerson <INGY at cpan.org>.
+
+This document is free documentation; 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'.

Added: packages/libmodule-install-perl/trunk/debian/rules
===================================================================
--- packages/libmodule-install-perl/trunk/debian/rules	2005-12-30 11:08:00 UTC (rev 1800)
+++ packages/libmodule-install-perl/trunk/debian/rules	2005-12-30 11:08:18 UTC (rev 1801)
@@ -0,0 +1,70 @@
+#!/usr/bin/make -f
+
+# 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
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	-$(MAKE) distclean
+	
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+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
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary


Property changes on: packages/libmodule-install-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




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