summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarNoèl Köthe <noel@debian.org>2010-04-09 23:55:09 +0200
committerLibravatarUnit 193 <unit193@ubuntu.com>2019-12-05 16:35:24 -0500
commit33671ec25d42d5ffe26707ce45779ae87dcb0ca2 (patch)
tree59c3a0a8e3bd099f373afc4cd621d4ebc9c2dcee
parent4c4e2901326f831cf2e3c72d1a25276f705464ca (diff)
downloadlistadmin-debian/2.40-4.tar.bz2
listadmin-debian/2.40-4.tar.xz
listadmin-debian/2.40-4.tar.zst
Import Debian changes 2.40-4debian/2.40-4
listadmin (2.40-4) unstable; urgency=low * updated Standards-Version to 3.8.4 without changes * Do not try to write bogus log file if none is defined (Closes: #461210) Thanks Joachim "nomeata" Breitner for the patch/work.
-rw-r--r--debian/changelog8
-rw-r--r--debian/patches/dont-write-logfile.patch15
-rw-r--r--debian/patches/series1
3 files changed, 24 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index a067c0f..6b5522f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+listadmin (2.40-4) unstable; urgency=low
+
+ * updated Standards-Version to 3.8.4 without changes
+ * Do not try to write bogus log file if none is defined (Closes: #461210)
+ Thanks Joachim "nomeata" Breitner for the patch/work.
+
+ -- Noèl Köthe <noel@debian.org> Fri, 09 Apr 2010 23:55:09 +0200
+
listadmin (2.40-3) unstable; urgency=low
* updated Standards-Version (no changes needed)
diff --git a/debian/patches/dont-write-logfile.patch b/debian/patches/dont-write-logfile.patch
new file mode 100644
index 0000000..677733d
--- /dev/null
+++ b/debian/patches/dont-write-logfile.patch
@@ -0,0 +1,15 @@
+Index: listadmin-2.40/listadmin.pl
+===================================================================
+--- listadmin-2.40.orig/listadmin.pl 2010-03-25 22:32:48.000000000 +0100
++++ listadmin-2.40/listadmin.pl 2010-03-25 22:32:52.000000000 +0100
+@@ -1635,8 +1635,8 @@
+ my $params = mailman_params ($user, $pw);
+
+ my $log = log_timestamp ($list);
+- # Expand {list}, {subdomain} and {domain}
+- $logfile = mailman_url($list, $logfile);
++ # Expand {list}, {subdomain} and {domain}, if there is something to expand
++ $logfile = mailman_url($list, $logfile) if $logfile;
+
+ for my $id (sort { $a <=> $b } keys %{$change}) {
+ my ($what, $text) = @{$change->{$id}};
diff --git a/debian/patches/series b/debian/patches/series
index c7b2de6..8879e22 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
listadmin-discard.patch
+dont-write-logfile.patch