r17111 - in /trunk/libwant-perl/debian: ./ changelog compat control copyright rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Mar 9 21:13:25 UTC 2008


Author: gregoa-guest
Date: Sun Mar  9 21:13:25 2008
New Revision: 17111

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

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

Added: trunk/libwant-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libwant-perl/debian/changelog?rev=17111&op=file
==============================================================================
--- trunk/libwant-perl/debian/changelog (added)
+++ trunk/libwant-perl/debian/changelog Sun Mar  9 21:13:25 2008
@@ -1,0 +1,31 @@
+libwant-perl (0.18-1) unstable; urgency=low
+
+  * New upstream version.
+  * Support building with MakeMaker from perl5.10.  Closes: #463558.
+
+ -- Florian Weimer <fw at deneb.enyo.de>  Wed, 27 Feb 2008 20:36:32 +0100
+
+libwant-perl (0.09-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Florian Weimer <fw at deneb.enyo.de>  Tue,  8 Nov 2005 15:53:09 +0100
+
+libwant-perl (0.08-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Florian Weimer <fw at deneb.enyo.de>  Sun, 26 Dec 2004 16:44:59 +0100
+
+libwant-perl (0.07-2) unstable; urgency=low
+
+  * Fix build dependencies.  Closes: #263765.
+
+ -- Florian Weimer <fw at deneb.enyo.de>  Thu,  5 Aug 2004 20:30:33 +0200
+
+libwant-perl (0.07-1) unstable; urgency=low
+
+  * Initial Release.  Closes: #259153.
+
+ -- Florian Weimer <fw at deneb.enyo.de>  Tue, 13 Jul 2004 10:04:38 +0200
+

Added: trunk/libwant-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libwant-perl/debian/compat?rev=17111&op=file
==============================================================================
--- trunk/libwant-perl/debian/compat (added)
+++ trunk/libwant-perl/debian/compat Sun Mar  9 21:13:25 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libwant-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libwant-perl/debian/control?rev=17111&op=file
==============================================================================
--- trunk/libwant-perl/debian/control (added)
+++ trunk/libwant-perl/debian/control Sun Mar  9 21:13:25 2008
@@ -1,0 +1,14 @@
+Source: libwant-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), perl (>= 5.8.0-7)
+Maintainer: Florian Weimer <fw at deneb.enyo.de>
+Standards-Version: 3.6.1
+
+Package: libwant-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, 
+Description:  A generalisation of wantarray
+ This module generalises the mechanism of the wantarray function,
+ allowing a function to determine in some detail how its return value
+ is going to be immediately used.

Added: trunk/libwant-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libwant-perl/debian/copyright?rev=17111&op=file
==============================================================================
--- trunk/libwant-perl/debian/copyright (added)
+++ trunk/libwant-perl/debian/copyright Sun Mar  9 21:13:25 2008
@@ -1,0 +1,13 @@
+This is the debian package for the Want module.
+It was created by Florian Weimer <fw at deneb.eny.de>.
+
+The upstream author is: Robin Houston <robin at cpan.org>
+
+Copyright (c) 2001-2003, Robin Houston. All Rights Reserved.
+This module is free software. It may be used, redistributed
+and/or modified 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/libwant-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libwant-perl/debian/rules?rev=17111&op=file
==============================================================================
--- trunk/libwant-perl/debian/rules (added)
+++ trunk/libwant-perl/debian/rules Sun Mar  9 21:13:25 2008
@@ -1,0 +1,99 @@
+#!/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)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	-$(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	# As this is a architecture dependent package, we are not supposed to install
+	# stuff to /usr/share/perl5. MakeMaker creates the dirs, we delete them from 
+	# the deb:
+	[ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/share/perl5
+	
+	touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README TODO
+	dh_installexamples 
+#	dh_installmenu
+#	dh_installcron
+#	dh_installman
+	dh_installchangelogs Changes
+	dh_link
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	     dh_strip
+endif
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	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/libwant-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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