summaryrefslogtreecommitdiff
path: root/mail/sympa/patches
diff options
context:
space:
mode:
authormanu <manu@pkgsrc.org>2003-01-22 15:56:30 +0000
committermanu <manu@pkgsrc.org>2003-01-22 15:56:30 +0000
commit087c2ce3a7c3016ee52539deb660759137a9d110 (patch)
tree0082aa84ea9eb7a48b4d254de4a7d8741942b266 /mail/sympa/patches
parent0fed42c6e384a01a6ca8833fc422ca79b3341f68 (diff)
downloadpkgsrc-087c2ce3a7c3016ee52539deb660759137a9d110.tar.gz
Sympa is a mailing list manager with a web interface for users and admins
Diffstat (limited to 'mail/sympa/patches')
-rw-r--r--mail/sympa/patches/patch-aa14
-rw-r--r--mail/sympa/patches/patch-ab13
-rw-r--r--mail/sympa/patches/patch-ac14
-rw-r--r--mail/sympa/patches/patch-ad16
4 files changed, 57 insertions, 0 deletions
diff --git a/mail/sympa/patches/patch-aa b/mail/sympa/patches/patch-aa
new file mode 100644
index 00000000000..036e3f45380
--- /dev/null
+++ b/mail/sympa/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1.1.1 2003/01/22 15:56:33 manu Exp $
+--- check_perl_modules.pl.orig Mon Jan 13 14:33:06 2003
++++ check_perl_modules.pl Mon Jan 13 14:34:01 2003
+@@ -159,9 +159,9 @@
+ }
+
+ printf "Description: %s\n", $opt_features{$module};
+ print "Install module $module ? [$default]";
+- my $answer = <STDIN>; chomp $answer;
++ $answer = "";
+ $answer ||= $default;
+ next unless ($answer =~ /^y$/i);
+ CPAN::Shell->conf('inactivity_timeout', 4);
+ CPAN::Shell->install($module);
diff --git a/mail/sympa/patches/patch-ab b/mail/sympa/patches/patch-ab
new file mode 100644
index 00000000000..e1ba1a2feaa
--- /dev/null
+++ b/mail/sympa/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 2003/01/22 15:56:33 manu Exp $
+--- Makefile.in.orig Mon Jan 13 15:05:58 2003
++++ Makefile.in Mon Jan 13 15:06:08 2003
+@@ -545,9 +545,8 @@
+ echo "Installing sample config file $$cfile..."; \
+ $(PERL) -I $(DESTDIR)$(SBINDIR) $(DESTDIR)$(SBINDIR)/sympa_wizard.pl -c $$cfile; \
+ chown $(USER) $(DESTDIR)$(CONFDIR)/$$cfile; \
+ chgrp $(GROUP) $(DESTDIR)$(CONFDIR)/$$cfile; \
+- INITCONF='1'; \
+ fi \
+ done; \
+ if [ "$$INITCONF" ] ; then \
+ echo "###############################################"; \
diff --git a/mail/sympa/patches/patch-ac b/mail/sympa/patches/patch-ac
new file mode 100644
index 00000000000..da36f03d5ae
--- /dev/null
+++ b/mail/sympa/patches/patch-ac
@@ -0,0 +1,14 @@
+$NetBSD: patch-ac,v 1.1.1.1 2003/01/22 15:56:33 manu Exp $
+--- src/List.pm.orig Wed Jan 22 16:18:15 2003
++++ src/List.pm Wed Jan 22 16:19:50 2003
+@@ -208,9 +208,9 @@
+ 'Oracle' => '((to_number(to_char(%s,\'J\')) - to_number(to_char(to_date(\'01/01/1970\',\'dd/mm/yyyy\'), \'J\'))) * 86400) +to_number(to_char(%s,\'SSSSS\'))',
+ 'Sybase' => 'datediff(second, "01/01/1970",%s)'
+ },
+ 'write' => {
+- 'Pg' => '\'epoch\'::datetime + \'%d sec\'',
++ 'Pg' => '\'epoch\'::timestamp with time zone + \'%d sec\'',
+ 'mysql' => 'FROM_UNIXTIME(%d)',
+ 'Oracle' => 'to_date(to_char(round(%s/86400) + to_number(to_char(to_date(\'01/01/1970\',\'dd/mm/yyyy\'), \'J\'))) || \':\' ||to_char(mod(%s,86400)), \'J:SSSSS\')',
+ 'Sybase' => 'dateadd(second,%s,"01/01/1970")'
+ }
diff --git a/mail/sympa/patches/patch-ad b/mail/sympa/patches/patch-ad
new file mode 100644
index 00000000000..6c75199ba11
--- /dev/null
+++ b/mail/sympa/patches/patch-ad
@@ -0,0 +1,16 @@
+$NetBSD: patch-ad,v 1.1.1.1 2003/01/22 15:56:33 manu Exp $
+--- src/etc/script/create_db.Pg.orig Wed Jan 22 16:09:38 2003
++++ src/etc/script/create_db.Pg Wed Jan 22 16:17:33 2003
+@@ -18,10 +18,10 @@
+ DROP TABLE subscriber_table;
+ CREATE TABLE subscriber_table (
+ list_subscriber varchar (50) NOT NULL,
+ user_subscriber varchar (100) NOT NULL,
+- date_subscriber datetime NOT NULL,
+- update_subscriber datetime,
++ date_subscriber timestamp with time zone NOT NULL,
++ update_subscriber timestamp with time zone,
+ visibility_subscriber varchar (20),
+ reception_subscriber varchar (20),
+ bounce_subscriber varchar (35),
+ comment_subscriber varchar (150),