summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTuan Van <langthang@gentoo.org>2004-07-22 00:31:23 +0000
committerTuan Van <langthang@gentoo.org>2004-07-22 00:31:23 +0000
commit4f834a7eee7214ab39c020afee511fb03fe9dc5e (patch)
tree5543fe46e4f81023c9188400522a90be97095ee7 /net-mail/mailman/files
parentInitial import of x11-plugins/wmsound-data, version 1.0.0, needed by x11-plug... (diff)
downloadgentoo-2-4f834a7eee7214ab39c020afee511fb03fe9dc5e.tar.gz
gentoo-2-4f834a7eee7214ab39c020afee511fb03fe9dc5e.tar.bz2
gentoo-2-4f834a7eee7214ab39c020afee511fb03fe9dc5e.zip
Revision bump to resolve bug #53533, #56250. Thanks to Jim Ramsay <i.am@jimramsay.com> and Brian Harring <ferringb@gentoo.org>.
Diffstat (limited to 'net-mail/mailman/files')
-rw-r--r--net-mail/mailman/files/digest-mailman-2.1.5-r11
-rw-r--r--net-mail/mailman/files/mailman-2.1.5-directory-check.patch12
2 files changed, 13 insertions, 0 deletions
diff --git a/net-mail/mailman/files/digest-mailman-2.1.5-r1 b/net-mail/mailman/files/digest-mailman-2.1.5-r1
new file mode 100644
index 000000000000..1e43ecb04e52
--- /dev/null
+++ b/net-mail/mailman/files/digest-mailman-2.1.5-r1
@@ -0,0 +1 @@
+MD5 f5f56f04747cd4aff67427e7a45631af mailman-2.1.5.tgz 5745912
diff --git a/net-mail/mailman/files/mailman-2.1.5-directory-check.patch b/net-mail/mailman/files/mailman-2.1.5-directory-check.patch
new file mode 100644
index 000000000000..3a3cae800d3e
--- /dev/null
+++ b/net-mail/mailman/files/mailman-2.1.5-directory-check.patch
@@ -0,0 +1,12 @@
+diff -urN mailman-2.1.5-orig/bin/check_perms mailman-2.1.5/bin/check_perms
+--- mailman-2.1.5-orig/bin/check_perms 2003-03-31 14:07:55.000000000 -0600
++++ mailman-2.1.5/bin/check_perms 2004-07-21 17:24:34.810274976 -0500
+@@ -313,6 +313,8 @@
+ print _('checking permissions on list data')
+ # BAW: This needs to be converted to the Site module abstraction
+ for dir in os.listdir(mm_cfg.LIST_DATA_DIR):
++ if not S_ISDIR(statmode(os.path.join(mm_cfg.LIST_DATA_DIR,dir))):
++ continue
+ for file in checkfiles:
+ path = os.path.join(mm_cfg.LIST_DATA_DIR, dir, file)
+ if STATE.VERBOSE: