r21634 - in /trunk/libpadwalker-perl/debian: ./ changelog compat control copyright rules watch

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 16:58:43 UTC 2008


Author: gregoa
Date: Sun Jun 15 16:58:43 2008
New Revision: 21634

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

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

Added: trunk/libpadwalker-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpadwalker-perl/debian/changelog?rev=21634&op=file
==============================================================================
--- trunk/libpadwalker-perl/debian/changelog (added)
+++ trunk/libpadwalker-perl/debian/changelog Sun Jun 15 16:58:43 2008
@@ -1,0 +1,35 @@
+libpadwalker-perl (1.6-0.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * New upstream release.
+    + the only change fixes pointer truncation on 64-bit architectures.
+      (Closes: #458195)
+  * Fix build failure with Perl 5.10: don't try to remove /usr/share/perl5 if
+    it does not exist. (Closes: #463546)
+  * Update debian/watch. (Closes: #450230)
+
+ -- Niko Tyni <ntyni at debian.org>  Tue, 18 Mar 2008 20:43:45 +0200
+
+libpadwalker-perl (1.5-1) unstable; urgency=low
+
+  * New upstream release (Closes: #438569).
+  * Bump up Standards-Version to 3.7.2 (no changes).
+  * Don't ignore make realclean errors.
+
+ -- Florian Ragwitz <rafl at debian.org>  Sat, 18 Aug 2007 18:23:08 +0200
+
+libpadwalker-perl (1.0-1) unstable; urgency=low
+
+  * New Maintainer with acknowledgement from the former one.
+  * New upstream release (Closes: #329650).
+  * Bumped up Standards-Version to 3.6.2 (no changes).
+  * Moved perl build-dep-indep to build-dep as this package isn't arch-indep.
+
+ -- Florian Ragwitz <rafl at debian.org>  Thu,  9 Feb 2006 22:53:53 +0100
+
+libpadwalker-perl (0.10-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Chip Salzenberg <chip at debian.org>  Thu,  7 Apr 2005 17:39:13 -0400
+

Added: trunk/libpadwalker-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpadwalker-perl/debian/compat?rev=21634&op=file
==============================================================================
--- trunk/libpadwalker-perl/debian/compat (added)
+++ trunk/libpadwalker-perl/debian/compat Sun Jun 15 16:58:43 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libpadwalker-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpadwalker-perl/debian/control?rev=21634&op=file
==============================================================================
--- trunk/libpadwalker-perl/debian/control (added)
+++ trunk/libpadwalker-perl/debian/control Sun Jun 15 16:58:43 2008
@@ -1,0 +1,14 @@
+Source: libpadwalker-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), perl (>= 5.8.0-7)
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.7.2
+
+Package: libpadwalker-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Description: Play with other peoples' lexical variables
+ PadWalker is a module which allows you to inspect (and even change!)
+ lexical variables in any subroutine which called you. It will only
+ show those variables which are in scope at the point of the call.

Added: trunk/libpadwalker-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpadwalker-perl/debian/copyright?rev=21634&op=file
==============================================================================
--- trunk/libpadwalker-perl/debian/copyright (added)
+++ trunk/libpadwalker-perl/debian/copyright Sun Jun 15 16:58:43 2008
@@ -1,0 +1,14 @@
+This is the debian package for the PadWalker module.
+It was created by Chip Salzenberg <chip at debian.org> using dh-make-perl.
+
+The upstream author is Robin Houston <robin at cpan.org>, with contributions
+from Richard Soberberg and bug-spotting from Peter Scott.
+
+Copyright (c) 2000-2002, 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/libpadwalker-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpadwalker-perl/debian/rules?rev=21634&op=file
==============================================================================
--- trunk/libpadwalker-perl/debian/rules (added)
+++ trunk/libpadwalker-perl/debian/rules Sun Jun 15 16:58:43 2008
@@ -1,0 +1,67 @@
+#!/usr/bin/make -f
+
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(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
+	dh_installchangelogs Changes
+	dh_strip
+	dh_compress
+	dh_fixperms
+	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/libpadwalker-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libpadwalker-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpadwalker-perl/debian/watch?rev=21634&op=file
==============================================================================
--- trunk/libpadwalker-perl/debian/watch (added)
+++ trunk/libpadwalker-perl/debian/watch Sun Jun 15 16:58:43 2008
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/PadWalker/ .*/PadWalker-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)




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