[Pkg-logwatch-general] r74 - in trunk: . debian
willi-guest at alioth.debian.org
willi-guest at alioth.debian.org
Fri Jul 4 17:45:28 UTC 2008
Author: willi-guest
Date: 2008-07-04 17:45:28 +0000 (Fri, 04 Jul 2008)
New Revision: 74
Added:
trunk/create_patch.sh
trunk/prepare_for_patch.sh
trunk/version.sh
Modified:
trunk/buildversion.sh
trunk/debian/changelog
Log:
Another bug (480761) fixed upstream
add some handy scripts for patch maintainance
Modified: trunk/buildversion.sh
===================================================================
--- trunk/buildversion.sh 2008-07-04 17:32:54 UTC (rev 73)
+++ trunk/buildversion.sh 2008-07-04 17:45:28 UTC (rev 74)
@@ -4,7 +4,7 @@
#TODO: Get version from debian changelog
VERSION=$1
if [ -z "$VERSION" ]; then
- VERSION=7.3.6.cvs20080702
+ . version.sh
fi
TARBALL=logwatch-$VERSION.tar.gz
Added: trunk/create_patch.sh
===================================================================
--- trunk/create_patch.sh (rev 0)
+++ trunk/create_patch.sh 2008-07-04 17:45:28 UTC (rev 74)
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+. version.sh
+
+DIR=logwatch-$VERSION
+
+diff -uNr $DIR.b $DIR
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2008-07-04 17:32:54 UTC (rev 73)
+++ trunk/debian/changelog 2008-07-04 17:45:28 UTC (rev 74)
@@ -1,4 +1,4 @@
-logwatch (7.3.6.cvs20080702-1) unstable; urgency=high
+logwatch (7.3.6.cvs20080702-1) unstable; urgency=medium
* New upstream CVS snapshot
- Fixes issue of unknown copyright holders
@@ -6,6 +6,7 @@
- fixes a typo inservices/secure script, closes: #432118
- print arguments in case of failure executing cat (logwatch.pl),
closes: #428183
+ - ignore some more pam_unix lines in proftpd-messages, closes: #480761
* add patch by Justin Pryzby to fix an assignment instead of an regex
in the services/cron script, closes: #488737
Added: trunk/prepare_for_patch.sh
===================================================================
--- trunk/prepare_for_patch.sh (rev 0)
+++ trunk/prepare_for_patch.sh 2008-07-04 17:45:28 UTC (rev 74)
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+. version.sh
+
+DIR=logwatch-$VERSION
+
+./buildversion.sh
+mv $DIR $DIR.b
+./buildversion.sh
Added: trunk/version.sh
===================================================================
--- trunk/version.sh (rev 0)
+++ trunk/version.sh 2008-07-04 17:45:28 UTC (rev 74)
@@ -0,0 +1,2 @@
+
+VERSION=7.3.6.cvs20080702
More information about the Pkg-logwatch-general
mailing list