r36371 - in /trunk/libapp-cli-perl/debian: ./ changelog compat control copyright rules watch

yvesago-guest at users.alioth.debian.org yvesago-guest at users.alioth.debian.org
Mon May 25 07:41:00 UTC 2009


Author: yvesago-guest
Date: Mon May 25 07:40:55 2009
New Revision: 36371

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

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

Added: trunk/libapp-cli-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapp-cli-perl/debian/changelog?rev=36371&op=file
==============================================================================
--- trunk/libapp-cli-perl/debian/changelog (added)
+++ trunk/libapp-cli-perl/debian/changelog Mon May 25 07:40:55 2009
@@ -1,0 +1,12 @@
+libapp-cli-perl (0.07-2) unstable; urgency=low
+
+  * Fix build depends.
+
+ -- Bastian Blank <waldi at debian.org>  Sat, 19 May 2007 20:00:07 +0000
+
+libapp-cli-perl (0.07-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Bastian Blank <waldi at debian.org>  Tue, 27 Mar 2007 20:47:49 +0000
+

Added: trunk/libapp-cli-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapp-cli-perl/debian/compat?rev=36371&op=file
==============================================================================
--- trunk/libapp-cli-perl/debian/compat (added)
+++ trunk/libapp-cli-perl/debian/compat Mon May 25 07:40:55 2009
@@ -1,0 +1,1 @@
+4

Added: trunk/libapp-cli-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapp-cli-perl/debian/control?rev=36371&op=file
==============================================================================
--- trunk/libapp-cli-perl/debian/control (added)
+++ trunk/libapp-cli-perl/debian/control Mon May 25 07:40:55 2009
@@ -1,0 +1,15 @@
+Source: libapp-cli-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), liblocale-maketext-simple-perl, libpod-simple-perl
+Maintainer: Bastian Blank <waldi at debian.org>
+Standards-Version: 3.7.2
+
+Package: libapp-cli-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Dispatcher module for command line interface programs
+ App::CLI dispatches CLI (command line interface) based commands
+ into command classes.  It also supports subcommand and per-command
+ options.

Added: trunk/libapp-cli-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapp-cli-perl/debian/copyright?rev=36371&op=file
==============================================================================
--- trunk/libapp-cli-perl/debian/copyright (added)
+++ trunk/libapp-cli-perl/debian/copyright Mon May 25 07:40:55 2009
@@ -1,0 +1,21 @@
+This is the debian package for the App::CLI 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: 
+
+Chia-liang Kao <clkao at clkao.org>.
+
+
+Copyright 2005-2006 by Chia-liang Kao <clkao at clkao.org>.
+
+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'.

Added: trunk/libapp-cli-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapp-cli-perl/debian/rules?rev=36371&op=file
==============================================================================
--- trunk/libapp-cli-perl/debian/rules (added)
+++ trunk/libapp-cli-perl/debian/rules Mon May 25 07:40:55 2009
@@ -1,0 +1,66 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PERL_EXTUTILS_AUTOINSTALL = --skip
+
+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)
+	$(MAKE) test
+	
+	touch $@
+
+clean:
+	dh_testdir
+	rm -f build-stamp
+
+	-$(MAKE) distclean
+	rm -rf t/repos
+	
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+# 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
+	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

Propchange: trunk/libapp-cli-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libapp-cli-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapp-cli-perl/debian/watch?rev=36371&op=file
==============================================================================
--- trunk/libapp-cli-perl/debian/watch (added)
+++ trunk/libapp-cli-perl/debian/watch Mon May 25 07:40:55 2009
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/pub/CPAN/authors/id/C/CL/CLKAO/App-CLI-(.*)\.tar.gz




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