r2184 - in packages/libgetopt-euclid-perl/trunk: . debian

Niko Tyni ntyni-guest at costa.debian.org
Thu Feb 23 19:56:27 UTC 2006


Author: ntyni-guest
Date: 2006-02-23 19:56:27 +0000 (Thu, 23 Feb 2006)
New Revision: 2184

Added:
   packages/libgetopt-euclid-perl/trunk/debian/
   packages/libgetopt-euclid-perl/trunk/debian/changelog
   packages/libgetopt-euclid-perl/trunk/debian/compat
   packages/libgetopt-euclid-perl/trunk/debian/control
   packages/libgetopt-euclid-perl/trunk/debian/copyright
   packages/libgetopt-euclid-perl/trunk/debian/rules
   packages/libgetopt-euclid-perl/trunk/debian/watch
Log:
Load libgetopt-euclid-perl-0.0.5 into
packages/libgetopt-euclid-perl/trunk.


Added: packages/libgetopt-euclid-perl/trunk/debian/changelog
===================================================================
--- packages/libgetopt-euclid-perl/trunk/debian/changelog	2006-02-23 19:56:00 UTC (rev 2183)
+++ packages/libgetopt-euclid-perl/trunk/debian/changelog	2006-02-23 19:56:27 UTC (rev 2184)
@@ -0,0 +1,6 @@
+libgetopt-euclid-perl (0.0.5-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Niko Tyni <ntyni at iki.fi>  Thu, 23 Feb 2006 21:17:30 +0200
+

Added: packages/libgetopt-euclid-perl/trunk/debian/compat
===================================================================
--- packages/libgetopt-euclid-perl/trunk/debian/compat	2006-02-23 19:56:00 UTC (rev 2183)
+++ packages/libgetopt-euclid-perl/trunk/debian/compat	2006-02-23 19:56:27 UTC (rev 2184)
@@ -0,0 +1 @@
+5

Added: packages/libgetopt-euclid-perl/trunk/debian/control
===================================================================
--- packages/libgetopt-euclid-perl/trunk/debian/control	2006-02-23 19:56:00 UTC (rev 2183)
+++ packages/libgetopt-euclid-perl/trunk/debian/control	2006-02-23 19:56:27 UTC (rev 2184)
@@ -0,0 +1,16 @@
+Source: libgetopt-euclid-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.0-7), libversion-perl, libtest-pod-perl, libtest-pod-coverage-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Niko Tyni <ntyni at iki.fi>
+Standards-Version: 3.6.2
+
+Package: libgetopt-euclid-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libversion-perl
+Description:  Executable Uniform Command-Line Interface Descriptions
+ Getopt::Euclid uses your program's own documentation to create a command-line
+ argument parser. This ensures that your program's documented interface and
+ its actual interface always agree.

Added: packages/libgetopt-euclid-perl/trunk/debian/copyright
===================================================================
--- packages/libgetopt-euclid-perl/trunk/debian/copyright	2006-02-23 19:56:00 UTC (rev 2183)
+++ packages/libgetopt-euclid-perl/trunk/debian/copyright	2006-02-23 19:56:27 UTC (rev 2184)
@@ -0,0 +1,24 @@
+This is the debian package for the Getopt-Euclid module.
+It was created by Niko Tyni <ntyni at iki.fi> using dh-make-perl on 
+Thu, 23 Feb 2006 21:41:26 +0200 .
+
+It was downloaded from
+http://mirrors.kernel.org/CPAN/modules/by-module/Getopt/Getopt-Euclid-v0.0.5.tar.gz
+
+Upstream author: Damian Conway <DCONWAY at cpan.org>
+
+Copyright:
+
+ Copyright (c) 2005, Damian Conway. All rights reserved.
+
+ This module is free software; you can redistribute it and/or
+ modify it under the same terms as Perl itself.
+
+Perl is distributed under either the Artistic licence or the GPL.
+
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL .
+
+The full text of the Artistic Licence is available on Debian systems in
+/usr/share/common-licenses/Artistic .
+

Added: packages/libgetopt-euclid-perl/trunk/debian/rules
===================================================================
--- packages/libgetopt-euclid-perl/trunk/debian/rules	2006-02-23 19:56:00 UTC (rev 2183)
+++ packages/libgetopt-euclid-perl/trunk/debian/rules	2006-02-23 19:56:27 UTC (rev 2184)
@@ -0,0 +1,87 @@
+#!/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)
+
+	# don't install the demo module
+	$(RM) $(TMP)/usr/share/perl5/Getopt/Euclid/HierDemo.pm \
+	      $(TMP)/usr/share/man/man3/Getopt::Euclid::HierDemo.3pm
+	rmdir $(TMP)/usr/share/perl5/Getopt/Euclid
+
+	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 lib/Getopt/Euclid/HierDemo.pm
+
+	dh_installdocs
+	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


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

Added: packages/libgetopt-euclid-perl/trunk/debian/watch
===================================================================
--- packages/libgetopt-euclid-perl/trunk/debian/watch	2006-02-23 19:56:00 UTC (rev 2183)
+++ packages/libgetopt-euclid-perl/trunk/debian/watch	2006-02-23 19:56:27 UTC (rev 2184)
@@ -0,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://mirrors.kernel.org/CPAN/modules/by-module/Getopt/Getopt-Euclid-v?(\d.*)\.(?:tar\.gz|tar|tgz)




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