commit mailman for openSUSE:Factory
Hello community, here is the log from the commit of package mailman for openSUSE:Factory checked in at Fri Apr 22 22:53:56 CEST 2011. -------- --- mailman/mailman.changes 2011-02-23 19:43:22.000000000 +0100 +++ /mounts/work_src_done/STABLE/mailman/mailman.changes 2011-04-22 14:22:30.000000000 +0200 @@ -1,0 +2,6 @@ +Wed Apr 20 14:30:24 UTC 2011 - jmatejek@novell.com + +- fixed bug where it is impossible to edit archives (updated + patch 2.1.14-editarch.patch) + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- mailman-2.1.3-editarch.patch minmem New: ---- mailman-2.1.14-editarch.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mailman.spec ++++++ --- /var/tmp/diff_new_pack.A593GI/_old 2011-04-22 22:53:34.000000000 +0200 +++ /var/tmp/diff_new_pack.A593GI/_new 2011-04-22 22:53:34.000000000 +0200 @@ -31,7 +31,7 @@ PreReq: permissions Summary: The GNU Mailing List Manager Version: 2.1.14 -Release: 6 +Release: 7 Source: %{name}-%{version}.tgz Source1: README.SuSE Source2: mailman-2.1-manpages.tgz @@ -53,7 +53,7 @@ Patch2: mailman-SuSE.patch %endif Patch3: mailman-2.1.14-python.dif -Patch5: mailman-2.1.3-editarch.patch +Patch5: mailman-2.1.14-editarch.patch Patch6: mailman-2.1.14-misc-PACKAGES.diff Patch7: mailman-2.1.2-list_lists.patch Patch10: mailman-2.1.4-dirmode.patch ++++++ mailman-2.1.3-editarch.patch -> mailman-2.1.14-editarch.patch ++++++ --- mailman/mailman-2.1.3-editarch.patch 2008-08-28 02:12:14.000000000 +0200 +++ /mounts/work_src_done/STABLE/mailman/mailman-2.1.14-editarch.patch 2011-04-22 14:22:27.000000000 +0200 @@ -1,6 +1,8 @@ ---- mailman-2.1.11/Mailman/Cgi/admin.py -+++ mailman-2.1.11/Mailman/Cgi/admin.py -@@ -414,6 +414,8 @@ +Index: mailman-2.1.14/Mailman/Cgi/admin.py +=================================================================== +--- mailman-2.1.14.orig/Mailman/Cgi/admin.py ++++ mailman-2.1.14/Mailman/Cgi/admin.py +@@ -416,6 +416,8 @@ def show_results(mlist, doc, category, s _('Go to the general list information page'))) otherlinks.AddItem(Link(mlist.GetScriptURL('edithtml'), _('Edit the public HTML pages and text files'))) @@ -9,8 +11,10 @@ otherlinks.AddItem(Link(mlist.GetBaseArchiveURL(), _('Go to list archives')).Format() + '<br> <br>') ---- mailman-2.1.11/Mailman/Cgi/editarch.py -+++ mailman-2.1.11/Mailman/Cgi/editarch.py +Index: mailman-2.1.14/Mailman/Cgi/editarch.py +=================================================================== +--- /dev/null ++++ mailman-2.1.14/Mailman/Cgi/editarch.py @@ -0,0 +1,509 @@ +# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc. +# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc. @@ -288,7 +292,7 @@ + l = Link(mlist.GetScriptURL('editarch'), _('Back to main overview')) + doc.AddItem(l) + -+# Display list of months containing messages in the archive ++# Display list of months containing messages in the archive +def DisplayMonthOverview(mlist, mbox, doc): + counter = 1 + inc = 100 @@ -383,7 +387,7 @@ + for l in m.headers: + warchfile.write(l) + warchfile.write('\n') -+ warchfile.write(m.fp.read()) ++ warchfile.write(m.fp.read()) + counter += 1 + + if lock_file: @@ -444,7 +448,7 @@ +# Make a human-readable Month YYYY from month and year numbers +def MakeDateString(year, month): + try: -+ date = time.strptime(str(year) + str(month), "%Y %m") ++ date = time.strptime(str(year) + " " + str(month), "%Y %m") + datestr = _(time.strftime("%B %Y", date)) + return datestr + except ValueError: @@ -521,9 +525,11 @@ + for thing, repl in repls: + s = s.replace(thing, repl) + return Utils.uncanonstr(s, lang) ---- mailman-2.1.11/Mailman/Defaults.py.in -+++ mailman-2.1.11/Mailman/Defaults.py.in -@@ -1352,6 +1352,10 @@ +Index: mailman-2.1.14/Mailman/Defaults.py.in +=================================================================== +--- mailman-2.1.14.orig/Mailman/Defaults.py.in ++++ mailman-2.1.14/Mailman/Defaults.py.in +@@ -1390,6 +1390,10 @@ PIDFILE = os.path.join(DATA_DIR, 'master SITE_PW_FILE = os.path.join(DATA_DIR, 'adm.pw') LISTCREATOR_PW_FILE = os.path.join(DATA_DIR, 'creator.pw') @@ -534,9 +540,11 @@ # Import a bunch of version numbers from Version import * ---- mailman-2.1.11/configure -+++ mailman-2.1.11/configure -@@ -4254,6 +4254,7 @@ +Index: mailman-2.1.14/configure +=================================================================== +--- mailman-2.1.14.orig/configure ++++ mailman-2.1.14/configure +@@ -5029,6 +5029,7 @@ build/cron/cull_bad_shunt:cron/cull_bad_ build/cron/disabled:cron/disabled \ build/cron/gate_news:cron/gate_news \ build/cron/mailpasswds:cron/mailpasswds \ @@ -544,9 +552,11 @@ build/cron/nightly_gzip:cron/nightly_gzip \ build/cron/senddigests:cron/senddigests \ " ---- mailman-2.1.11/configure.in -+++ mailman-2.1.11/configure.in -@@ -597,6 +597,7 @@ +Index: mailman-2.1.14/configure.in +=================================================================== +--- mailman-2.1.14.orig/configure.in ++++ mailman-2.1.14/configure.in +@@ -688,6 +688,7 @@ cron/cull_bad_shunt \ cron/disabled \ cron/gate_news \ cron/mailpasswds \ @@ -554,9 +564,11 @@ cron/nightly_gzip \ cron/senddigests \ ]) ---- mailman-2.1.11/cron/Makefile.in -+++ mailman-2.1.11/cron/Makefile.in -@@ -42,7 +42,7 @@ +Index: mailman-2.1.14/cron/Makefile.in +=================================================================== +--- mailman-2.1.14.orig/cron/Makefile.in ++++ mailman-2.1.14/cron/Makefile.in +@@ -42,7 +42,7 @@ CRONDIR= $(prefix)/cron SHELL= /bin/sh PROGRAMS= checkdbs mailpasswds senddigests gate_news \ @@ -565,8 +577,10 @@ FILES= crontab.in BUILDDIR= ../build/cron ---- mailman-2.1.11/cron/crontab.in.in -+++ mailman-2.1.11/cron/crontab.in.in +Index: mailman-2.1.14/cron/crontab.in.in +=================================================================== +--- mailman-2.1.14.orig/cron/crontab.in.in ++++ mailman-2.1.14/cron/crontab.in.in @@ -25,3 +25,7 @@ # # At 4:30AM daily, cull old entries from the 'bad' and 'shunt' queues. @@ -575,8 +589,10 @@ +# At 3:57am every night, reprocess archives that have been edited. +57 3 * * * @PYTHON@ -S @prefix@/cron/nightly_archives + ---- mailman-2.1.11/cron/nightly_archives -+++ mailman-2.1.11/cron/nightly_archives +Index: mailman-2.1.14/cron/nightly_archives +=================================================================== +--- /dev/null ++++ mailman-2.1.14/cron/nightly_archives @@ -0,0 +1,126 @@ +#! @PYTHON@ +# @@ -704,9 +720,11 @@ + +if __name__ == '__main__': + main() ---- mailman-2.1.11/src/Makefile.in -+++ mailman-2.1.11/src/Makefile.in -@@ -70,7 +70,7 @@ +Index: mailman-2.1.14/src/Makefile.in +=================================================================== +--- mailman-2.1.14.orig/src/Makefile.in ++++ mailman-2.1.14/src/Makefile.in +@@ -70,7 +70,7 @@ DIRSETGID= chmod g+s # Fixed definitions ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de