r25616 - in /trunk/libdevel-globaldestruction-perl/debian: control copyright rules

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Fri Sep 26 10:45:36 UTC 2008


Author: eloy
Date: Fri Sep 26 10:45:31 2008
New Revision: 25616

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25616
Log:
working on debian/* files

Modified:
    trunk/libdevel-globaldestruction-perl/debian/control
    trunk/libdevel-globaldestruction-perl/debian/copyright
    trunk/libdevel-globaldestruction-perl/debian/rules

Modified: trunk/libdevel-globaldestruction-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/control?rev=25616&op=diff
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/control (original)
+++ trunk/libdevel-globaldestruction-perl/debian/control Fri Sep 26 10:45:31 2008
@@ -1,15 +1,16 @@
 Source: libdevel-globaldestruction-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5), perl (>= 5.6.10-12)
-Maintainer: Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
+Build-Depends: debhelper (>= 7), perl (>= 5.6.10-12), libscope-guard-perl, libsub-exporter-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
 Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/Devel-GlobalDestruction/
 
 Package: libdevel-globaldestruction-perl
 Architecture: any
 Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, libscope-guard-perl, libsub-exporter-perl
-Description:  Expose PL_dirty, the flag which marks global
+Description:  Expose PL_dirty, the flag which marks global destruction
  Perl's global destruction is a little tricky to deal with WRT finalizers
  because it's not ordered and objects can sometimes disappear.
  .
@@ -19,5 +20,3 @@
  .
  For these constructors you can avoid the mess by simply bailing out if global
  destruction is in effect.
- .
- This description was automagically extracted from the module by dh-make-perl.

Modified: trunk/libdevel-globaldestruction-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/copyright?rev=25616&op=diff
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/copyright (original)
+++ trunk/libdevel-globaldestruction-perl/debian/copyright Fri Sep 26 10:45:31 2008
@@ -3,18 +3,25 @@
 
 It was downloaded from http://search.cpan.org/dist/Devel-GlobalDestruction/
 
-This copyright info was automatically extracted from the perl module.
-It may not be accurate, so you better check the module sources
-if you don't want to get into legal troubles.
-
-The upstream author is: 
-
-Yuval Kogman <nothingmuch at woobling.org>.
-
+The upstream author is: Yuval Kogman <nothingmuch at woobling.org>.
 
 Copyright (c) 2008 Yuval Kogman. All rights reserved
 	This program is free software; you can redistribute
 	it and/or modify it under the same terms as Perl itself.
+
+~~~~~
+
+ppport.h:
+
+COPYRIGHT
+Version 3.x, Copyright (c) 2004-2008, Marcus Holland-Moritz.
+Version 2.x, Copyright (C) 2001, Paul Marquess.
+Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
+
+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

Modified: trunk/libdevel-globaldestruction-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/rules?rev=25616&op=diff
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/rules (original)
+++ trunk/libdevel-globaldestruction-perl/debian/rules Fri Sep 26 10:45:31 2008
@@ -1,76 +1,23 @@
 #!/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
-
-PERL   ?= /usr/bin/perl
-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) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
-	$(MAKE) test
+	dh build
 	touch $@
 
 clean:
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	# Add commands to clean up after the build process here
-	[ ! -f Makefile ] || $(MAKE) realclean
+	dh $@
 
 install: install-stamp
 install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	# Add commands to install the package into $(TMP)
-	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/share/perl5 ] || \
-		rmdir --ignore-fail-on-non-empty --parents --verbose \
-		$(TMP)/usr/share/perl5
+	dh install
 	touch $@
 
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do here for an architecture-dependent package
+binary-arch: install
+	dh $@
 
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs 
-	dh_installchangelogs 
-	dh_shlibdeps
-	dh_strip
-	dh_perl
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
+binary-indep:
 
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build




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