r13918 - in /trunk/libuuid-perl/debian: ./ changelog control copyright rules watch

schizo at users.alioth.debian.org schizo at users.alioth.debian.org
Thu Jan 31 19:12:17 UTC 2008


Author: schizo
Date: Thu Jan 31 19:12:17 2008
New Revision: 13918

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

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

Added: trunk/libuuid-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libuuid-perl/debian/changelog?rev=13918&op=file
==============================================================================
--- trunk/libuuid-perl/debian/changelog (added)
+++ trunk/libuuid-perl/debian/changelog Thu Jan 31 19:12:17 2008
@@ -1,0 +1,14 @@
+libuuid-perl (0.02-2) unstable; urgency=low
+
+  * Fix FTBFS with perl 5.10 (rules could not cope with a non-broken
+    MakeMaker).  closes: #463440.
+  * Bump to Standards-Version 3.7.3.
+  * Set maintainer to Debian Perl Group.
+
+ -- Clint Adams <schizo at debian.org>  Thu, 31 Jan 2008 13:58:45 -0500
+
+libuuid-perl (0.02-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Clint Adams <schizo at debian.org>  Thu,  4 Jan 2007 13:39:39 -0500

Added: trunk/libuuid-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libuuid-perl/debian/control?rev=13918&op=file
==============================================================================
--- trunk/libuuid-perl/debian/control (added)
+++ trunk/libuuid-perl/debian/control Thu Jan 31 19:12:17 2008
@@ -1,0 +1,14 @@
+Source: libuuid-perl
+Section: perl
+Priority: optional
+Build-Depends: perl (>= 5.8.0-1), uuid-dev
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <schizo at debian.org>
+Standards-Version: 3.7.3
+
+Package: libuuid-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}
+Description: Perl extension for using UUID interfaces as defined in e2fsprogs
+ This is a Perl interface to libuuid from e2fsprogs.  It allows generation,
+ parsing, and unparsing of UUIDs.

Added: trunk/libuuid-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libuuid-perl/debian/copyright?rev=13918&op=file
==============================================================================
--- trunk/libuuid-perl/debian/copyright (added)
+++ trunk/libuuid-perl/debian/copyright Thu Jan 31 19:12:17 2008
@@ -1,0 +1,28 @@
+The upstream author is: 
+
+Peter J. Braam <braam at clusterfs.com>
+
+The software is licensed under the terms of the Perl Artistic
+License.  See /usr/share/common-licenses/Artistic .
+See below for declaration of license.
+
+The upstream sources can be obtained at:
+
+http://www.cpan.org/modules/by-module/UUID/BRAAM/
+
+The Debian packaging was carried out by Clint Adams <schizo at debian.org>.
+
+
+Date: Thu, 04 Jan 2007 15:09:45 -0700
+From: Peter Braam <braam at clusterfs.com>
+To: Clint Adams <schizo at debian.org>
+Subject: Re: UUID license
+
+Hi,
+
+I haven't worked on this for a while.  i am quite happy to give it the
+Perl Artistic License, but remember that it links with libext2 which
+might be GPL.
+
+- Peter -
+

Added: trunk/libuuid-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libuuid-perl/debian/rules?rev=13918&op=file
==============================================================================
--- trunk/libuuid-perl/debian/rules (added)
+++ trunk/libuuid-perl/debian/rules Thu Jan 31 19:12:17 2008
@@ -1,0 +1,81 @@
+#!/usr/bin/make -f
+INSTALL = install
+INSTALL_FILE    = $(INSTALL) -p    -o root -g root  -m  644
+INSTALL_PROGRAM = $(INSTALL) -p    -o root -g root  -m  755
+INSTALL_SCRIPT  = $(INSTALL) -p    -o root -g root  -m  755
+INSTALL_DIR     = $(INSTALL) -p -d -o root -g root  -m  755
+
+package=libuuid-perl
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+CFLAGS += -O0
+else
+CFLAGS += -O2
+endif
+
+PERL = /usr/bin/perl
+
+define checkdir
+	test -f debian/rules
+endef
+
+build: build-stamp
+build-stamp:
+	$(checkdir)
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+	touch build-stamp
+
+clean:	checkroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	rm -f debian/*.substvars *-stamp debian/files
+	rm -rf debian/$(package)
+
+install: build install-stamp
+install-stamp: checkroot
+	rm -f debian/*.substvars
+	rm -rf debian/$(package)
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/$(package) PREFIX=/usr
+	test -d $(CURDIR)/debian/$(package)/usr/share/perl5 && rmdir --ignore-fail-on-non-empty --parents $(CURDIR)/debian/$(package)/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 checkroot
+	$(INSTALL_DIR) debian/$(package)/usr/share/doc/$(package) \
+		       debian/$(package)/DEBIAN
+	$(INSTALL_FILE) debian/copyright debian/$(package)/usr/share/doc/$(package)/copyright
+	$(INSTALL_FILE) debian/changelog debian/$(package)/usr/share/doc/$(package)/changelog.Debian
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/$(package)/usr/lib/perl5/auto/UUID/UUID.so
+endif
+	chmod 644 $(CURDIR)/debian/$(package)/usr/share/man/man3/UUID.3pm \
+		$(CURDIR)/debian/$(package)/usr/share/doc/$(package)/changelog.Debian
+	gzip -9f $(CURDIR)/debian/$(package)/usr/share/man/man3/UUID.3pm \
+		$(CURDIR)/debian/$(package)/usr/share/doc/$(package)/changelog.Debian
+	echo $$(perl -MConfig -e 'printf "perl:Depends=perlapi-%s", $$Config{version}'), perl '(>=' $$(dpkg -s perl | awk '/^Version:/ {print $$2}')')' > debian/$(package).substvars
+	dpkg-shlibdeps -Tdebian/$(package).substvars debian/$(package)/usr/lib/perl5/auto/UUID/UUID.so
+
+	dpkg-gencontrol -ldebian/changelog -isp -Tdebian/$(package).substvars -Pdebian/$(package)
+	cd debian/$(package) && find . -type f ! -regex '.*/DEBIAN/.*' -printf '%P\0' | xargs -r0 md5sum > DEBIAN/md5sums
+	chmod -R u=rwX,go=rX debian/$(package)
+	chown -R 0:0 debian/$(package)
+	dpkg-deb --build debian/$(package) ..
+
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+
+checkroot:
+	$(checkdir)
+	test root = "`whoami`"
+
+.PHONY: binary binary-arch binary-indep clean checkroot

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

Added: trunk/libuuid-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libuuid-perl/debian/watch?rev=13918&op=file
==============================================================================
--- trunk/libuuid-perl/debian/watch (added)
+++ trunk/libuuid-perl/debian/watch Thu Jan 31 19:12:17 2008
@@ -1,0 +1,3 @@
+version=3
+
+http://www.cpan.org/pub/CPAN/modules/by-module/UUID/BRAAM/UUID-([-0-9\.]*).tar.gz




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