r16936 - in /trunk/libfile-flock-perl/debian: ./ changelog compat control copyright rules watch

azatoth-guest at users.alioth.debian.org azatoth-guest at users.alioth.debian.org
Sat Mar 8 19:50:12 UTC 2008


Author: azatoth-guest
Date: Sat Mar  8 19:50:11 2008
New Revision: 16936

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

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

Added: trunk/libfile-flock-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libfile-flock-perl/debian/changelog?rev=16936&op=file
==============================================================================
--- trunk/libfile-flock-perl/debian/changelog (added)
+++ trunk/libfile-flock-perl/debian/changelog Sat Mar  8 19:50:11 2008
@@ -1,0 +1,5 @@
+libfile-flock-perl (104.111901-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Carl Fürstenberg <azatoth at gmail.com>  Sat, 08 Mar 2008 20:40:25 +0100

Added: trunk/libfile-flock-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libfile-flock-perl/debian/compat?rev=16936&op=file
==============================================================================
--- trunk/libfile-flock-perl/debian/compat (added)
+++ trunk/libfile-flock-perl/debian/compat Sat Mar  8 19:50:11 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libfile-flock-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libfile-flock-perl/debian/control?rev=16936&op=file
==============================================================================
--- trunk/libfile-flock-perl/debian/control (added)
+++ trunk/libfile-flock-perl/debian/control Sat Mar  8 19:50:11 2008
@@ -1,0 +1,28 @@
+Source: libfile-flock-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Carl Fürstenberg <azatoth at gmail.com>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/File-Flock/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-flock-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-flock-perl/
+
+Package: libfile-flock-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description:  file locking with flock
+ Lock files using the flock() call.  If the file to be locked does not
+ exist, then the file is created.  If the file was created then it will
+ be removed when it is unlocked assuming it's still an empty file.
+ .
+ Locks can be created by new'ing a File::Flock object.  Such locks
+ are automatically removed when the object goes out of scope.  The
+ unlock() method may also be used.
+ .
+ lock_rename() is used to tell File::Flock when a file has been
+ renamed (and thus the internal locking data that is stored based
+ on the filename should be moved to a new name).  unlock() the
+ new name rather than the original name.

Added: trunk/libfile-flock-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libfile-flock-perl/debian/copyright?rev=16936&op=file
==============================================================================
--- trunk/libfile-flock-perl/debian/copyright (added)
+++ trunk/libfile-flock-perl/debian/copyright Sat Mar  8 19:50:11 2008
@@ -1,0 +1,14 @@
+This is the debian package for the File-Flock module.
+It was created by Carl Fürstenberg <azatoth at gmail.com> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/File-Flock/
+
+The upstream author is: 
+
+David Muir Sharnoff, <muir at idiom.com>
+
+Copyright (C) 1996, 1998 David Muir Sharnoff
+<license missing atm>
+
+The Debian packaging is (C) 2008, Carl Fürstenberg <azatoth at gmail.com> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libfile-flock-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libfile-flock-perl/debian/rules?rev=16936&op=file
==============================================================================
--- trunk/libfile-flock-perl/debian/rules (added)
+++ trunk/libfile-flock-perl/debian/rules Sat Mar  8 19:50:11 2008
@@ -1,0 +1,81 @@
+#!/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
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we prevent this by setting the INSTALLVENDORARCH
+	# and VENDORARCHEXP environment variables.
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor \
+		INSTALLVENDORARCH=/usr/share/perl5/ \
+		VENDORARCHEXP=/usr/share/perl5/
+	$(MAKE)
+	$(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 debian/$PACKAGE_NAME here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs CHANGELOG
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

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

Added: trunk/libfile-flock-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libfile-flock-perl/debian/watch?rev=16936&op=file
==============================================================================
--- trunk/libfile-flock-perl/debian/watch (added)
+++ trunk/libfile-flock-perl/debian/watch Sat Mar  8 19:50:11 2008
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/File-Flock/ .*/File-Flock-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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