r3744 - in /packages/libend-perl/trunk/debian: ./ changelog compat control copyright rules

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Thu Sep 14 17:37:36 UTC 2006


Author: gwolf
Date: Thu Sep 14 17:37:36 2006
New Revision: 3744

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3744
Log:
Load libend-perl-1.2 into packages/libend-perl/trunk.

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

Added: packages/libend-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libend-perl/trunk/debian/changelog?rev=3744&op=file
==============================================================================
--- packages/libend-perl/trunk/debian/changelog (added)
+++ packages/libend-perl/trunk/debian/changelog Thu Sep 14 17:37:36 2006
@@ -1,0 +1,24 @@
+libend-perl (1.2-4) unstable; urgency=low
+
+  * Adopting the package (Closes: #333186).
+
+ -- David Moreno Garza <damog at debian.org>  Thu, 16 Mar 2006 18:52:07 -0400
+
+libend-perl (1.2-3) unstable; urgency=low
+
+  * QA Group upload orphaning this package
+
+ -- Andrew Pollock <apollock at debian.org>  Thu, 27 Oct 2005 16:26:21 +1000
+
+libend-perl (1.2-2) unstable; urgency=low
+
+  * debian/control: I'm a DD.
+
+ -- Marc 'HE' Brockschmidt <he at debian.org>  Thu, 15 Jul 2004 19:01:43 +0200
+
+libend-perl (1.2-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #207568)
+
+ -- Marc Brockschmidt <marc at dch-faq.de>  Wed,  3 Sep 2003 15:56:23 +0200
+

Added: packages/libend-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libend-perl/trunk/debian/compat?rev=3744&op=file
==============================================================================
--- packages/libend-perl/trunk/debian/compat (added)
+++ packages/libend-perl/trunk/debian/compat Thu Sep 14 17:37:36 2006
@@ -1,0 +1,1 @@
+4

Added: packages/libend-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libend-perl/trunk/debian/control?rev=3744&op=file
==============================================================================
--- packages/libend-perl/trunk/debian/control (added)
+++ packages/libend-perl/trunk/debian/control Thu Sep 14 17:37:36 2006
@@ -1,0 +1,15 @@
+Source: libend-perl
+Section: perl
+Priority: optional
+Build-Depends-Indep: debhelper (>= 4.0.2), perl (>= 5.8.0-7)
+Maintainer: David Moreno Garza <damog at debian.org>
+Standards-Version: 3.6.2.1
+
+Package: libend-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Generalized END {}
+ The module End exports a single subroutine end, which allows
+ you to set up some code that is run whenever the current block is exited,
+ regardless whether that is due to a return, next, last, redo,
+ exit, die, goto or just reaching the end of the block.

Added: packages/libend-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libend-perl/trunk/debian/copyright?rev=3744&op=file
==============================================================================
--- packages/libend-perl/trunk/debian/copyright (added)
+++ packages/libend-perl/trunk/debian/copyright Thu Sep 14 17:37:36 2006
@@ -1,0 +1,27 @@
+This is the debian package for the End module.
+It was created by Marc Brockschmidt <marc at dch-faq.de> using dh-make-perl.
+
+The sources were downloaded from CPAN.
+
+The upstream author is: Abigail <abigail at delanet.com>
+
+This program is copyright 2000 by Abigail.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the "Software"),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
+OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+

Added: packages/libend-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libend-perl/trunk/debian/rules?rev=3744&op=file
==============================================================================
--- packages/libend-perl/trunk/debian/rules (added)
+++ packages/libend-perl/trunk/debian/rules Thu Sep 14 17:37:36 2006
@@ -1,0 +1,75 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) install DESTDIR=`pwd`/debian/tmp
+	$(MAKE) install PREFIX=$(TMP)/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_installchangelogs
+	dh_installdocs
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+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: packages/libend-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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