r17862 - in /trunk/liblog-handler-perl/debian: ./ changelog compat control copyright rules

roberto at users.alioth.debian.org roberto at users.alioth.debian.org
Wed Mar 19 03:49:02 UTC 2008


Author: roberto
Date: Wed Mar 19 03:49:01 2008
New Revision: 17862

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

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

Added: trunk/liblog-handler-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblog-handler-perl/debian/changelog?rev=17862&op=file
==============================================================================
--- trunk/liblog-handler-perl/debian/changelog (added)
+++ trunk/liblog-handler-perl/debian/changelog Wed Mar 19 03:49:01 2008
@@ -1,0 +1,5 @@
+liblog-handler-perl (0.38-1) unstable; urgency=low
+
+  * Initial Release (Closes: #471575).
+
+ -- Roberto C. Sanchez <roberto at connexer.com>  Tue, 18 Mar 2008 20:30:54 -0400

Added: trunk/liblog-handler-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblog-handler-perl/debian/compat?rev=17862&op=file
==============================================================================
--- trunk/liblog-handler-perl/debian/compat (added)
+++ trunk/liblog-handler-perl/debian/compat Wed Mar 19 03:49:01 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/liblog-handler-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblog-handler-perl/debian/control?rev=17862&op=file
==============================================================================
--- trunk/liblog-handler-perl/debian/control (added)
+++ trunk/liblog-handler-perl/debian/control Wed Mar 19 03:49:01 2008
@@ -1,0 +1,26 @@
+Source: liblog-handler-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.8.7), libmodule-build-perl,
+ libtest-pod-perl, libtest-pod-coverage-perl, libparams-validate-perl,
+ libdevel-backtrace-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Roberto C. Sanchez <roberto at connexer.com>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Log-Handler/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/liblog-handler-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/liblog-handler-perl/
+
+Package: liblog-handler-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libparams-validate-perl,
+ libdevel-backtrace-perl
+Description: A simple handler to log messages to a log file
+ This module is just a simple object oriented log file handler and very easy to use.
+ It's possible to define a log level for your programs and control the amount of
+ informations that will be logged to the log file. In addition it's possible to configure
+ how you wish to open the log file - transient or permanent - and lock and unlock the
+ log file by each write operation. If you wish you can assign the handler to check the
+ inode of the log file (not on Windows). That could be very useful if a rotate
+ mechanism moves and zip the log file.

Added: trunk/liblog-handler-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblog-handler-perl/debian/copyright?rev=17862&op=file
==============================================================================
--- trunk/liblog-handler-perl/debian/copyright (added)
+++ trunk/liblog-handler-perl/debian/copyright Wed Mar 19 03:49:01 2008
@@ -1,0 +1,19 @@
+Upstream source location: http://search.cpan.org/dist/Log-Handler/
+
+Files: *
+Copyright: (c) 2007, Jonny Schulz <jschulz.cpan at bloonix.de>
+License: GPL-1+ | Artistic
+ You may redistribute them [the files in this directory] 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'.
+
+Files: debian/*
+Copyright: (c) 2008, Roberto C. Sanchez <roberto at connexer.com>
+License: GPL-1+ | Artistic
+ It is assumed that all contributors release their packaging works under the
+ same term as the module itself.
+

Added: trunk/liblog-handler-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblog-handler-perl/debian/rules?rev=17862&op=file
==============================================================================
--- trunk/liblog-handler-perl/debian/rules (added)
+++ trunk/liblog-handler-perl/debian/rules Wed Mar 19 03:49:01 2008
@@ -1,0 +1,67 @@
+#!/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.
+#
+# It was later modified by Jason Kohles <email at jasonkohles.com>
+# http://www.jasonkohles.com/ to support Module::Build installed modules
+
+# 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)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	$(PERL) Build
+	$(PERL) Build test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp install-stamp
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build distclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	# Add commands to install the package into $(TMP) here
+	$(PERL) Build install destdir=$(TMP) create_packlist=0
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installexamples examples/*
+	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 install source diff

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




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