r7719 - in /trunk/liblog-trace-perl/debian: ./ changelog compat control copyright rules watch

hanska-guest at users.alioth.debian.org hanska-guest at users.alioth.debian.org
Tue Sep 18 10:55:38 UTC 2007


Author: hanska-guest
Date: Tue Sep 18 10:55:37 2007
New Revision: 7719

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

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

Added: trunk/liblog-trace-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/liblog-trace-perl/debian/changelog?rev=7719&op=file
==============================================================================
--- trunk/liblog-trace-perl/debian/changelog (added)
+++ trunk/liblog-trace-perl/debian/changelog Tue Sep 18 10:55:37 2007
@@ -1,0 +1,5 @@
+liblog-trace-perl (1.070-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- David Paleino <d.paleino at gmail.com>  Tue, 18 Sep 2007 12:28:14 +0200

Added: trunk/liblog-trace-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/liblog-trace-perl/debian/compat?rev=7719&op=file
==============================================================================
--- trunk/liblog-trace-perl/debian/compat (added)
+++ trunk/liblog-trace-perl/debian/compat Tue Sep 18 10:55:37 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/liblog-trace-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/liblog-trace-perl/debian/control?rev=7719&op=file
==============================================================================
--- trunk/liblog-trace-perl/debian/control (added)
+++ trunk/liblog-trace-perl/debian/control Tue Sep 18 10:55:37 2007
@@ -1,0 +1,19 @@
+Source: liblog-trace-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-8), libdata-serializer-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: David Paleino <d.paleino at gmail.com>
+Standards-Version: 3.7.2
+XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/liblog-trace-perl/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/liblog-trace-perl/
+
+Package: liblog-trace-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: provides a unified approach to tracing
+ A module to provide a unified approach to tracing. A script can use Log::Trace
+ qw( < mode > ) to set the behaviour of the TRACE function.
+ .
+  Homepage: http://search.cpan.org/dist/Log-Trace/

Added: trunk/liblog-trace-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/liblog-trace-perl/debian/copyright?rev=7719&op=file
==============================================================================
--- trunk/liblog-trace-perl/debian/copyright (added)
+++ trunk/liblog-trace-perl/debian/copyright Tue Sep 18 10:55:37 2007
@@ -1,0 +1,20 @@
+This is the debian package for the Log-Trace module.
+It was created by David Paleino <d.paleino at gmail.com> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Log-Trace/
+
+The upstream author is: 
+
+John Alden and Simon Flack with some additions by Piers Kent and Wayne Myers 
+<cpan at bbc.co.uk>.
+
+(c) BBC 2005. This program is free software; you can redistribute it and/or
+modify it under the GNU GPL.
+
+See the file COPYING in this distribution, or http://www.gnu.org/licenses/gpl.txt
+
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL
+
+The Debian packaging is (C) 2007, David Paleino <d.paleino at gmail.com> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/liblog-trace-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/liblog-trace-perl/debian/rules?rev=7719&op=file
==============================================================================
--- trunk/liblog-trace-perl/debian/rules (added)
+++ trunk/liblog-trace-perl/debian/rules Tue Sep 18 10:55:37 2007
@@ -1,0 +1,77 @@
+#!/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
+
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+binary-arch:
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	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/liblog-trace-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/liblog-trace-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/liblog-trace-perl/debian/watch?rev=7719&op=file
==============================================================================
--- trunk/liblog-trace-perl/debian/watch (added)
+++ trunk/liblog-trace-perl/debian/watch Tue Sep 18 10:55:37 2007
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/Log-Trace/ .*/Log-Trace-([\.\d]+)\.(?:tar\.gz|tar|tgz)$




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