r13760 - in /trunk/liblogger-syslog-perl/debian: changelog compat control copyright rules watch
rmayorga-guest at users.alioth.debian.org
rmayorga-guest at users.alioth.debian.org
Mon Jan 28 05:45:40 UTC 2008
Author: rmayorga-guest
Date: Mon Jan 28 05:45:40 2008
New Revision: 13760
URL: http://svn.debian.org/wsvn/?sc=1&rev=13760
Log:
* Make package ready for perl 5.10 update
* debian/control
+ Set standards-version to 3.7.3 ( no changes needed )
+ Raise debhelper version to 6
+ Wrap uploaders field
* debian/rules
+ remove OPTIMIZE var, we are not using it
+ use $@ when touching -stamp files
+ move test suite from install to build target
+ Don't install README file
+ remove un-ussed dh_ calls
* improve debian/watch
Modified:
trunk/liblogger-syslog-perl/debian/changelog
trunk/liblogger-syslog-perl/debian/compat
trunk/liblogger-syslog-perl/debian/control
trunk/liblogger-syslog-perl/debian/copyright
trunk/liblogger-syslog-perl/debian/rules
trunk/liblogger-syslog-perl/debian/watch
Modified: trunk/liblogger-syslog-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/liblogger-syslog-perl/debian/changelog?rev=13760&op=diff
==============================================================================
--- trunk/liblogger-syslog-perl/debian/changelog (original)
+++ trunk/liblogger-syslog-perl/debian/changelog Mon Jan 28 05:45:40 2008
@@ -1,11 +1,26 @@
-liblogger-syslog-perl (1.1-2) UNRELEASED; urgency=low
+liblogger-syslog-perl (1.1-2) unstable; urgency=low
+ [ gregor herrmann ]
* debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
field (source stanza); Homepage field (source stanza). Removed: XS-
Vcs-Svn fields.
* debian/rules: delete /usr/lib/perl5 only if it exists.
- -- gregor herrmann <gregor+debian at comodo.priv.at> Tue, 09 Oct 2007 22:30:11 +0200
+ [ Rene Mayorga ]
+ * Make package ready for perl 5.10 update
+ * debian/control
+ + Set standards-version to 3.7.3 ( no changes needed )
+ + Raise debhelper version to 6
+ + Wrap uploaders field
+ * debian/rules
+ + remove OPTIMIZE var, we are not using it
+ + use $@ when touching -stamp files
+ + move test suite from install to build target
+ + Don't install README file
+ + remove un-ussed dh_ calls
+ * improve debian/watch
+
+ -- Rene Mayorga <rmayorga at debian.org.sv> Sun, 27 Jan 2008 23:32:33 -0600
liblogger-syslog-perl (1.1-1) unstable; urgency=low
Modified: trunk/liblogger-syslog-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/liblogger-syslog-perl/debian/compat?rev=13760&op=diff
==============================================================================
--- trunk/liblogger-syslog-perl/debian/compat (original)
+++ trunk/liblogger-syslog-perl/debian/compat Mon Jan 28 05:45:40 2008
@@ -1,1 +1,1 @@
-5
+6
Modified: trunk/liblogger-syslog-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/liblogger-syslog-perl/debian/control?rev=13760&op=diff
==============================================================================
--- trunk/liblogger-syslog-perl/debian/control (original)
+++ trunk/liblogger-syslog-perl/debian/control Mon Jan 28 05:45:40 2008
@@ -1,11 +1,12 @@
Source: liblogger-syslog-perl
Section: perl
Priority: optional
-Build-Depends: debhelper (>= 5.0.0)
+Build-Depends: debhelper (>= 6)
Build-Depends-Indep: perl (>= 5.6.0)
Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Alexis Sukrieh <sukria at debian.org>, gregor herrmann <gregor+debian at comodo.priv.at>
-Standards-Version: 3.7.2
+Uploaders: Alexis Sukrieh <sukria at debian.org>,
+ gregor herrmann <gregor+debian at comodo.priv.at>
+Standards-Version: 3.7.3
Homepage: http://search.cpan.org/dist/Logger-Syslog/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/liblogger-syslog-perl/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/liblogger-syslog-perl/
Modified: trunk/liblogger-syslog-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/liblogger-syslog-perl/debian/copyright?rev=13760&op=diff
==============================================================================
--- trunk/liblogger-syslog-perl/debian/copyright (original)
+++ trunk/liblogger-syslog-perl/debian/copyright Mon Jan 28 05:45:40 2008
@@ -8,7 +8,7 @@
Very first versions were made at Cegetel (2004-2005) ; Thomas Parmelan gave a
hand for the mod_perl support.
-This library is copyright © 2004-2006 Alexis Sukrieh
+This library is copyright © 2004-2006 Alexis Sukrieh
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.4 or,
Modified: trunk/liblogger-syslog-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/liblogger-syslog-perl/debian/rules?rev=13760&op=diff
==============================================================================
--- trunk/liblogger-syslog-perl/debian/rules (original)
+++ trunk/liblogger-syslog-perl/debian/rules Mon Jan 28 05:45:40 2008
@@ -18,21 +18,17 @@
build: build-stamp
build-stamp:
dh_testdir
-
# Add commands to compile the package here
$(PERL) Makefile.PL INSTALLDIRS=vendor
- $(MAKE) OPTIMIZE="-Wall -O2 -g"
-
- touch build-stamp
+ $(MAKE)
+ $(MAKE) test
+ touch $@
clean:
dh_testdir
dh_testroot
-
- # Add commands to clean up after the build process here
+ dh_clean build-stamp install-stamp
[ ! -f Makefile ] || $(MAKE) realclean
-
- dh_clean build-stamp install-stamp
install: build install-stamp
install-stamp:
@@ -48,7 +44,7 @@
# the dirs, we delete them from the deb:
[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
- touch install-stamp
+ touch $@
binary-arch:
# We have nothing to do by default.
@@ -56,11 +52,9 @@
binary-indep: build install
dh_testdir
dh_testroot
- dh_installdocs README
+ dh_installdocs
dh_installchangelogs
dh_perl
- dh_link
- dh_strip
dh_compress
dh_fixperms
dh_installdeb
Modified: trunk/liblogger-syslog-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/liblogger-syslog-perl/debian/watch?rev=13760&op=diff
==============================================================================
--- trunk/liblogger-syslog-perl/debian/watch (original)
+++ trunk/liblogger-syslog-perl/debian/watch Mon Jan 28 05:45:40 2008
@@ -1,2 +1,2 @@
version=3
-http://www.cpan.org/modules/by-module/Logger/Logger-Syslog-([\d\.]+)\.tar\.gz
+http://search.cpan.org/dist/Logger-Syslog/ .+/Logger-Syslog-v?(\d[\d._]*)\.(?:tar\.gz|tar\.bz2|tgz|\.zip)
More information about the Pkg-perl-cvs-commits
mailing list