[Pkg-logwatch-general] r71 - in trunk: . debian patches

willi-guest at alioth.debian.org willi-guest at alioth.debian.org
Fri Jul 4 15:29:49 UTC 2008


Author: willi-guest
Date: 2008-07-04 15:29:48 +0000 (Fri, 04 Jul 2008)
New Revision: 71

Added:
   trunk/patches/01-cron-assignment-instead-of-regex.diff
Removed:
   trunk/patches/01-logwatch-mailto-cron.diff
Modified:
   trunk/buildversion.sh
   trunk/debian/changelog
Log:

Prepare for cvs20080702


Modified: trunk/buildversion.sh
===================================================================
--- trunk/buildversion.sh	2008-02-21 18:16:11 UTC (rev 70)
+++ trunk/buildversion.sh	2008-07-04 15:29:48 UTC (rev 71)
@@ -4,7 +4,7 @@
 #TODO: Get version from debian changelog
 VERSION=$1
 if [ -z "$VERSION" ]; then
-	VERSION=7.3.6
+	VERSION=7.3.6.cvs20080702
 fi
 
 TARBALL=logwatch-$VERSION.tar.gz

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-02-21 18:16:11 UTC (rev 70)
+++ trunk/debian/changelog	2008-07-04 15:29:48 UTC (rev 71)
@@ -1,3 +1,16 @@
+logwatch (7.3.6.cvs20080702-1) unstable; urgency=high
+
+  * New upstream CVS snapshot
+    - Fixes issue of unknown copyright holders
+    - fixes postfix warnings, closes: #461227
+    - fixes a typo inservices/secure script, closes: #432118
+    - print arguments in case of failure executing cat (logwatch.pl), 
+      closes: #428183
+  * add patch by Justin Pryzby to fix an assignment instead of an regex 
+    in the services/cron script, closes: #488737
+
+ -- Willi Mann <willi at wm1.at>  Fri, 04 Jul 2008 16:51:36 +0200
+
 logwatch (7.3.6-1) unstable; urgency=low
 
   * New upstream version:

Added: trunk/patches/01-cron-assignment-instead-of-regex.diff
===================================================================
--- trunk/patches/01-cron-assignment-instead-of-regex.diff	                        (rev 0)
+++ trunk/patches/01-cron-assignment-instead-of-regex.diff	2008-07-04 15:29:48 UTC (rev 71)
@@ -0,0 +1,13 @@
+diff -uNr logwatch-7.3.6.cvs20080702.b/scripts/services/cron logwatch-7.3.6.cvs20080702/scripts/services/cron
+--- logwatch-7.3.6.cvs20080702.b/scripts/services/cron	2008-03-25 08:57:04.000000000 +0100
++++ logwatch-7.3.6.cvs20080702/scripts/services/cron	2008-07-04 16:59:57.000000000 +0200
+@@ -163,7 +163,7 @@
+          $Errors{$Reason}++;
+       } elsif ( ($FileName) = ($ThisLine =~ /BAD FILE MODE \((.+)\)/) ) {
+          $BFMFile{$FileName}++; 
+-      } elsif ( ($FileName) = ($ThisLine = /WRONG FILE OWNER \((.+)\)/) ) {
++      } elsif ( ($FileName) = ($ThisLine =~ /WRONG FILE OWNER \((.+)\)/) ) {
+          $WFO{$FileName}++;
+       } else {
+          # Report any unmatched entries...
+Binärdateien logwatch-7.3.6.cvs20080702.b/scripts/services/.cron.swp and logwatch-7.3.6.cvs20080702/scripts/services/.cron.swp sind verschieden.

Deleted: trunk/patches/01-logwatch-mailto-cron.diff
===================================================================
--- trunk/patches/01-logwatch-mailto-cron.diff	2008-02-21 18:16:11 UTC (rev 70)
+++ trunk/patches/01-logwatch-mailto-cron.diff	2008-07-04 15:29:48 UTC (rev 71)
@@ -1,26 +0,0 @@
-diff -ur logwatch-7.3.6.b/scripts/logwatch.pl logwatch-7.3.6/scripts/logwatch.pl
---- logwatch-7.3.6.b/scripts/logwatch.pl	2007-05-20 02:24:20.000000000 +0200
-+++ logwatch-7.3.6/scripts/logwatch.pl	2007-05-27 15:35:04.000000000 +0200
-@@ -327,7 +327,7 @@
-              "logdir=s"     => \$Config{'logdir'},
-              "s|service=s@" => \@TempServiceList,
-              "p|print"      => \$Config{'print'},
--             "m|mailto=s"   => \$tmp_mailto,
-+             "m|mailto:s"   => \$tmp_mailto,
-              "save=s"       => \$Config{'save'},
-              "a|archives"   => \$Config{'archives'},
-              "debug=s"      => \$Config{'debug'},
-@@ -355,8 +355,10 @@
-    exit 0;
- }
- 
--if ($tmp_mailto) {
--   $Config{'mailto'} = $tmp_mailto;
-+if (defined $tmp_mailto) {
-+   if ($tmp_mailto ne "") {
-+      $Config{'mailto'} = $tmp_mailto;
-+   }
-    $Config{'print'} = 0;
- }
- 
-Nur in logwatch-7.3.6/scripts: .logwatch.pl.swp.




More information about the Pkg-logwatch-general mailing list