r19800 - in /trunk/libdevel-leak-perl/debian: changelog control copyright rules watch

efaistos-guest at users.alioth.debian.org efaistos-guest at users.alioth.debian.org
Fri May 9 17:48:36 UTC 2008


Author: efaistos-guest
Date: Fri May  9 17:48:35 2008
New Revision: 19800

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=19800
Log:
Initial Release. (Closes: #480383)

Modified:
    trunk/libdevel-leak-perl/debian/changelog
    trunk/libdevel-leak-perl/debian/control
    trunk/libdevel-leak-perl/debian/copyright
    trunk/libdevel-leak-perl/debian/rules
    trunk/libdevel-leak-perl/debian/watch

Modified: trunk/libdevel-leak-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-leak-perl/debian/changelog?rev=19800&op=diff
==============================================================================
--- trunk/libdevel-leak-perl/debian/changelog (original)
+++ trunk/libdevel-leak-perl/debian/changelog Fri May  9 17:48:35 2008
@@ -1,5 +1,5 @@
 libdevel-leak-perl (0.03-1) unstable; urgency=low
 
-  * Initial Release.
+  * Initial Release. (Closes: #480383)
 
  -- Edi Stojicevic <estojicevic at debianworld.org>  Fri, 09 May 2008 15:49:19 +0100

Modified: trunk/libdevel-leak-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-leak-perl/debian/control?rev=19800&op=diff
==============================================================================
--- trunk/libdevel-leak-perl/debian/control (original)
+++ trunk/libdevel-leak-perl/debian/control Fri May  9 17:48:35 2008
@@ -3,15 +3,17 @@
 Priority: optional
 Build-Depends: debhelper (>= 5)
 Build-Depends-Indep: perl (>= 5.6.10-12)
-Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debia.org>
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Edi Stojicevic <estojicevic at debianworld.org>
 Standards-Version: 3.7.3
-Homepage: http://search.cpan.org/dist/Devel::Leak/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdevel-leak-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-leak-perl/
+Homepage: http://search.cpan.org/dist/Devel-Leak/
 
 Package: libdevel-leak-perl
-Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}
-Description:  Utility for looking for perl objects that are not reclaimed.
+Architecture: any
+Depends: ${perl:Depends}, ${misc:Depends}, ${shlibs:Depends}
+Description:  Utility for looking for perl objects that are not reclaimed
  Devel::Leak has two functions NoteSV and CheckSV.
  .
  NoteSV walks the perl internal table of allocated SVs (scalar values) - (which
@@ -23,5 +25,3 @@
  NoteSV. It re-walks the perl-internals and calls sv_dump() for any "things"
  which did not exist when NoteSV was called. It returns a count of the number
  of "things" now allocated.
- .
- This description was automagically extracted from the module by dh-make-perl.

Modified: trunk/libdevel-leak-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-leak-perl/debian/copyright?rev=19800&op=diff
==============================================================================
--- trunk/libdevel-leak-perl/debian/copyright (original)
+++ trunk/libdevel-leak-perl/debian/copyright Fri May  9 17:48:35 2008
@@ -1,11 +1,11 @@
 This is the debian package for the Devel::Leak module.
 
 Upstream author : Nick Ing-Simmons <nick at ni-s.u-net.com>.
-Upstream source location : http://search.cpan.org/dist/Devel::Leak/
+Upstream source location : http://search.cpan.org/dist/Devel-Leak/
 
 Licence and copyright:
 
-Copyright Nick Ing-Simmons <nick at ni-s.u-net.com>, all rights reserved.
+Copyright (c) 1997-1998 Nick Ing-Simmons <nick at ni-s.u-net.com>, all rights reserved.
 
 This module is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself. 

Modified: trunk/libdevel-leak-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-leak-perl/debian/rules?rev=19800&op=diff
==============================================================================
--- trunk/libdevel-leak-perl/debian/rules (original)
+++ trunk/libdevel-leak-perl/debian/rules Fri May  9 17:48:35 2008
@@ -15,11 +15,21 @@
 PACKAGE = $(shell dh_listpackages)
 TMP     = $(CURDIR)/debian/$(PACKAGE)
 
+# Allow disabling build optimisation 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)
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
 	$(MAKE) test
 	touch $@
 
@@ -27,6 +37,7 @@
 	dh_testdir
 	dh_testroot
 	dh_clean build-stamp install-stamp
+	# Add commands to clean up after the build process here
 	[ ! -f Makefile ] || $(MAKE) realclean
 
 install: install-stamp
@@ -34,20 +45,25 @@
 	dh_testdir
 	dh_testroot
 	dh_clean -k
+	# Add commands to install the package into $(TMP)
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+	[ ! -d $(TMP)/usr/share/perl5 ] || \
 		rmdir --ignore-fail-on-non-empty --parents --verbose \
-		$(TMP)/usr/lib/perl5
+		$(TMP)/usr/share/perl5
 	touch $@
 
-binary-arch:
-# We have nothing to do here for an architecture-independent package
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do here for an architecture-dependent package
 
-binary-indep: build install
+# Build architecture-dependent files here.
+binary-arch: build install
 	dh_testdir
 	dh_testroot
-	dh_installdocs README
-	dh_installchangelogs 
+	dh_installdocs 
+	dh_installchangelogs debian/changelog
+	dh_shlibdeps
+	dh_strip
 	dh_perl
 	dh_compress
 	dh_fixperms

Modified: trunk/libdevel-leak-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-leak-perl/debian/watch?rev=19800&op=diff
==============================================================================
--- trunk/libdevel-leak-perl/debian/watch (original)
+++ trunk/libdevel-leak-perl/debian/watch Fri May  9 17:48:35 2008
@@ -1,4 +1,4 @@
 # format version number, currently 3; this line is compulsory!
 version=3
 # URL to the package page followed by a regex to search
-http://search.cpan.org/dist/Devel::Leak/   .*/Devel::Leak-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
+http://search.cpan.org/dist/Devel-Leak/   .*/Devel-Leak-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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