r25615 - in /trunk/libdevel-globaldestruction-perl/debian: ./ changelog compat control copyright rules watch

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


Author: eloy
Date: Fri Sep 26 10:26:51 2008
New Revision: 25615

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

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

Added: trunk/libdevel-globaldestruction-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/changelog?rev=25615&op=file
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/changelog (added)
+++ trunk/libdevel-globaldestruction-perl/debian/changelog Fri Sep 26 10:26:51 2008
@@ -1,0 +1,5 @@
+libdevel-globaldestruction-perl (0.02-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Krzysztof Krzyżaniak (eloy) <eloy at debian.org>  Fri, 26 Sep 2008 12:12:49 +0200

Added: trunk/libdevel-globaldestruction-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/compat?rev=25615&op=file
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/compat (added)
+++ trunk/libdevel-globaldestruction-perl/debian/compat Fri Sep 26 10:26:51 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libdevel-globaldestruction-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/control?rev=25615&op=file
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/control (added)
+++ trunk/libdevel-globaldestruction-perl/debian/control Fri Sep 26 10:26:51 2008
@@ -1,0 +1,23 @@
+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>
+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
+ Perl's global destruction is a little tricky to deal with WRT finalizers
+ because it's not ordered and objects can sometimes disappear.
+ .
+ Writing defensive destructors is hard and annoying, and usually if global
+ destruction is happenning you only need the destructors that free up non
+ process local resources to actually execute.
+ .
+ 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.

Added: trunk/libdevel-globaldestruction-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/copyright?rev=25615&op=file
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/copyright (added)
+++ trunk/libdevel-globaldestruction-perl/debian/copyright Fri Sep 26 10:26:51 2008
@@ -1,0 +1,26 @@
+This is the debian package for the Devel-GlobalDestruction module.
+It was created by Krzysztof Krzyżaniak (eloy) <eloy at debian.org> using dh-make-perl.
+
+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>.
+
+
+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.
+
+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'.
+
+
+The Debian packaging is (C) 2008, Krzysztof Krzyżaniak (eloy) <eloy at debian.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libdevel-globaldestruction-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/rules?rev=25615&op=file
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/rules (added)
+++ trunk/libdevel-globaldestruction-perl/debian/rules Fri Sep 26 10:26:51 2008
@@ -1,0 +1,76 @@
+#!/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
+	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
+
+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
+	touch $@
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do here for an architecture-dependent package
+
+# 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: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

Propchange: trunk/libdevel-globaldestruction-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libdevel-globaldestruction-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-globaldestruction-perl/debian/watch?rev=25615&op=file
==============================================================================
--- trunk/libdevel-globaldestruction-perl/debian/watch (added)
+++ trunk/libdevel-globaldestruction-perl/debian/watch Fri Sep 26 10:26:51 2008
@@ -1,0 +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-GlobalDestruction/   .*/Devel-GlobalDestruction-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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