r13895 - in /trunk/libmodule-find-perl/debian: ./ changelog compat control copyright rules watch

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Thu Jan 31 13:27:20 UTC 2008


Author: eloy
Date: Thu Jan 31 13:27:20 2008
New Revision: 13895

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

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

Added: trunk/libmodule-find-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libmodule-find-perl/debian/changelog?rev=13895&op=file
==============================================================================
--- trunk/libmodule-find-perl/debian/changelog (added)
+++ trunk/libmodule-find-perl/debian/changelog Thu Jan 31 13:27:20 2008
@@ -1,0 +1,18 @@
+libmodule-find-perl (0.06-1) UNRELEASED; urgency=low
+
+  * (NOT RELEASED YET) New upstream release
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Thu, 31 Jan 2008 14:13:20 +0100
+
+libmodule-find-perl (0.05-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Mon,  5 Dec 2005 09:47:31 +0100
+
+libmodule-find-perl (0.04-1) unstable; urgency=low
+
+  * Initial Release (closes: #322615)
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Tue,  9 Aug 2005 21:48:46 +0200
+

Added: trunk/libmodule-find-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libmodule-find-perl/debian/compat?rev=13895&op=file
==============================================================================
--- trunk/libmodule-find-perl/debian/compat (added)
+++ trunk/libmodule-find-perl/debian/compat Thu Jan 31 13:27:20 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libmodule-find-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libmodule-find-perl/debian/control?rev=13895&op=file
==============================================================================
--- trunk/libmodule-find-perl/debian/control (added)
+++ trunk/libmodule-find-perl/debian/control Thu Jan 31 13:27:20 2008
@@ -1,0 +1,20 @@
+Source: libmodule-find-perl
+Section: perl
+Priority: optional
+Build-Depends: 
+Build-Depends-Indep: perl (>= 5.8.0-7), debhelper (>= 4.0.2)
+Maintainer: Debian Catalyst Maintainers <pkg-catalyst-maintainers at lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Standards-Version: 3.6.2
+
+Package: libmodule-find-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description:  Find and use installed modules in a (sub)category
+ Module::Find lets you find and use modules in categories. This can be very 
+ useful for auto-detecting driver or plugin modules. You can differentiate
+ between looking in the category itself or in all subcategories.
+ .
+ If you want Module::Find to search in a certain directory on your 
+ harddisk (such as the plugins directory of your software installation),
+ make sure you modify @INC before you call the Module::Find functions.

Added: trunk/libmodule-find-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libmodule-find-perl/debian/copyright?rev=13895&op=file
==============================================================================
--- trunk/libmodule-find-perl/debian/copyright (added)
+++ trunk/libmodule-find-perl/debian/copyright Thu Jan 31 13:27:20 2008
@@ -1,0 +1,13 @@
+This is the debian package for the Module-Find module.
+It was created by Krzysztof Krzyzaniak (eloy) <eloy at debian.org>.
+
+The upstream author is: Christian Renz, <crenz at web42.com>.
+
+
+This program 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/libmodule-find-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libmodule-find-perl/debian/rules?rev=13895&op=file
==============================================================================
--- trunk/libmodule-find-perl/debian/rules (added)
+++ trunk/libmodule-find-perl/debian/rules Thu Jan 31 13:27:20 2008
@@ -1,0 +1,83 @@
+#!/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.
+
+# 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) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	-$(MAKE) 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
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we delete them from the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+	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 test/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/libmodule-find-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libmodule-find-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libmodule-find-perl/debian/watch?rev=13895&op=file
==============================================================================
--- trunk/libmodule-find-perl/debian/watch (added)
+++ trunk/libmodule-find-perl/debian/watch Thu Jan 31 13:27:20 2008
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Module-Find/ .*/Module-Find-([[:digit:]].*)\.tar\.gz




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