r12456 - in /trunk/libfile-spec-perl/debian: ./ changelog compat control copyright rules watch

bremner-guest at users.alioth.debian.org bremner-guest at users.alioth.debian.org
Thu Jan 10 18:21:01 UTC 2008


Author: bremner-guest
Date: Thu Jan 10 18:21:01 2008
New Revision: 12456

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

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

Added: trunk/libfile-spec-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libfile-spec-perl/debian/changelog?rev=12456&op=file
==============================================================================
--- trunk/libfile-spec-perl/debian/changelog (added)
+++ trunk/libfile-spec-perl/debian/changelog Thu Jan 10 18:21:01 2008
@@ -1,0 +1,12 @@
+libfile-spec-perl (3.24-2) unstable; urgency=low
+
+  * Build packages correctly in binary-arch.
+
+ -- Bastian Blank <waldi at debian.org>  Mon,  7 May 2007 14:22:15 +0000
+
+libfile-spec-perl (3.24-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Bastian Blank <waldi at debian.org>  Sat, 21 Apr 2007 06:40:22 +0000
+

Added: trunk/libfile-spec-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libfile-spec-perl/debian/compat?rev=12456&op=file
==============================================================================
--- trunk/libfile-spec-perl/debian/compat (added)
+++ trunk/libfile-spec-perl/debian/compat Thu Jan 10 18:21:01 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libfile-spec-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libfile-spec-perl/debian/control?rev=12456&op=file
==============================================================================
--- trunk/libfile-spec-perl/debian/control (added)
+++ trunk/libfile-spec-perl/debian/control Thu Jan 10 18:21:01 2008
@@ -1,0 +1,17 @@
+Source: libfile-spec-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>> 5)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Bastian Blank <waldi at debian.org>
+Standards-Version: 3.7.2
+
+Package: libfile-spec-perl
+Architecture: any
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: provides functions for generating temporary files
+ This module can be used to generate temporary files (providing a filename and
+ filehandle) or directories. Possible race conditions are avoided and some
+ security checks are performed (eg making sure the sticky bit is set on world
+ writeable temp directories).
+

Added: trunk/libfile-spec-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libfile-spec-perl/debian/copyright?rev=12456&op=file
==============================================================================
--- trunk/libfile-spec-perl/debian/copyright (added)
+++ trunk/libfile-spec-perl/debian/copyright Thu Jan 10 18:21:01 2008
@@ -1,0 +1,20 @@
+This is the debian package for the File::Spec module.
+
+It was downloaded from the Comprehensive Perl Archive Network (CPAN).
+Visit <http://www.perl.com/CPAN/> to find a CPAN site near you.
+
+The upstream author is: 
+
+Ken Williams <KWILLIAMS at cpan.org>
+
+Copyright (c) 2004 by the Perl 5 Porters.  All rights reserved.
+
+This program is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+See http://www.perl.com/perl/misc/Artistic.html
+
+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/libfile-spec-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libfile-spec-perl/debian/rules?rev=12456&op=file
==============================================================================
--- trunk/libfile-spec-perl/debian/rules (added)
+++ trunk/libfile-spec-perl/debian/rules Thu Jan 10 18:21:01 2008
@@ -1,0 +1,66 @@
+#!/usr/bin/make -f
+
+# 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
+
+PACKAGE = $(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP = $(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	
+	touch $@
+
+clean:
+	dh_testdir
+	rm -f build-stamp
+
+	-$(MAKE) distclean
+	
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+#	dh_installcron
+#	dh_installmenu
+#	dh_installexamples
+	dh_installdocs
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-indep: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

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

Added: trunk/libfile-spec-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libfile-spec-perl/debian/watch?rev=12456&op=file
==============================================================================
--- trunk/libfile-spec-perl/debian/watch (added)
+++ trunk/libfile-spec-perl/debian/watch Thu Jan 10 18:21:01 2008
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/pub/CPAN/authors/id/K/KW/KWILLIAMS/PathTools-(.*)\.tar.gz




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