public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-mta/exim: ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild
@ 2009-07-02 20:16 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2009-07-02 20:16 UTC (permalink / raw
  To: gentoo-commits

grobian     09/07/02 20:16:06

  Modified:             ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild
  Log:
  Don't use hardcoded gcc, bug #244150, drop doins for auth_conf.sub, it's nowhere to be found.
  (Portage version: 2.2.00.13755-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.135                mail-mta/exim/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?rev=1.135&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?rev=1.135&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?r1=1.134&r2=1.135

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog	2 Jul 2009 19:58:07 -0000	1.134
+++ ChangeLog	2 Jul 2009 20:16:06 -0000	1.135
@@ -1,6 +1,11 @@
 # ChangeLog for mail-mta/exim
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.134 2009/07/02 19:58:07 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.135 2009/07/02 20:16:06 grobian Exp $
+
+  02 Jul 2009; Fabian Groffen <grobian@gentoo.org> exim-4.69.ebuild,
+  exim-4.69-r2.ebuild:
+  Don't use hardcoded gcc, bug #244150, drop doins for auth_conf.sub, it's
+  nowhere to be found.
 
   02 Jul 2009; Fabian Groffen <grobian@gentoo.org> exim-4.69.ebuild,
   -exim-4.69-r1.ebuild, exim-4.69-r2.ebuild, metadata.xml:



1.3                  mail-mta/exim/exim-4.69-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?r1=1.2&r2=1.3

Index: exim-4.69-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- exim-4.69-r2.ebuild	2 Jul 2009 19:58:07 -0000	1.2
+++ exim-4.69-r2.ebuild	2 Jul 2009 20:16:06 -0000	1.3
@@ -1,8 +1,8 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v 1.2 2009/07/02 19:58:07 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v 1.3 2009/07/02 20:16:06 grobian Exp $
 
-inherit eutils
+inherit eutils toolchain-funcs
 
 IUSE="tcpd ssl postgres mysql ldap pam exiscan-acl mailwrapper lmtp ipv6 sasl dnsdb perl mbx X exiscan nis syslog spf srs gnutls sqlite dovecot-sasl radius domainkeys maildir logrotate"
 
@@ -236,7 +236,8 @@
 }
 
 src_compile() {
-	make || die "make failed"
+	# build system not parallel-safe at all
+	emake -j1 CC="$(tc-getCC)" || die "make failed"
 }
 
 src_install () {
@@ -286,7 +287,6 @@
 		newins "${S}"/src/configure.default exim.conf.exiscan-acl
 	fi
 	doins "$WORKDIR"/system_filter.exim
-	doins "$DISTDIR"/auth_conf.sub
 	if use exiscan; then
 		newins "${S}"/src/configure.default exim.conf.exiscan
 		doins "${DISTDIR}"/exiscan.conf
@@ -315,7 +315,6 @@
 
 pkg_postinst() {
 	einfo "/etc/exim/system_filter.exim is a sample system_filter."
-	einfo "/etc/exim/auth_conf.sub contains the configuration sub for using smtp auth."
 	einfo "Please create /etc/exim/exim.conf from /etc/exim/exim.conf.dist."
 
 	if ! use mailwrapper && [[ -e /etc/mailer.conf ]]



1.12                 mail-mta/exim/exim-4.69.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?r1=1.11&r2=1.12

Index: exim-4.69.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- exim-4.69.ebuild	2 Jul 2009 19:58:07 -0000	1.11
+++ exim-4.69.ebuild	2 Jul 2009 20:16:06 -0000	1.12
@@ -1,8 +1,8 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v 1.11 2009/07/02 19:58:07 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v 1.12 2009/07/02 20:16:06 grobian Exp $
 
-inherit eutils
+inherit eutils toolchain-funcs
 
 IUSE="tcpd ssl postgres mysql ldap pam exiscan-acl mailwrapper lmtp ipv6 sasl dnsdb perl mbx mbox X exiscan nis syslog spf srs gnutls sqlite dovecot-sasl radius domainkeys"
 
@@ -231,7 +231,7 @@
 }
 
 src_compile() {
-	make || die "make failed"
+	emake -j1 CC="$(tc-getCC)" || die "make failed"
 }
 
 src_install () {
@@ -281,7 +281,6 @@
 		newins "${S}"/src/configure.default exim.conf.exiscan-acl
 	fi
 	doins "${FILESDIR}"/system_filter.exim
-	doins "${FILESDIR}"/auth_conf.sub
 	if use exiscan; then
 		newins "${S}"/src/configure.default exim.conf.exiscan
 		doins "${FILESDIR}"/exiscan.conf
@@ -304,7 +303,6 @@
 
 pkg_postinst() {
 	einfo "/etc/exim/system_filter.exim is a sample system_filter."
-	einfo "/etc/exim/auth_conf.sub contains the configuration sub for using smtp auth."
 	einfo "Please create /etc/exim/exim.conf from /etc/exim/exim.conf.dist."
 
 	if ! use mailwrapper && [[ -e /etc/mailer.conf ]]






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in mail-mta/exim: ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild
@ 2009-07-02 20:45 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2009-07-02 20:45 UTC (permalink / raw
  To: gentoo-commits

grobian     09/07/02 20:45:12

  Modified:             ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild
  Log:
  Restore auth_conf.sub support, instead of blindly nuking it, just find that's in FILESDIR
  (Portage version: 2.2.00.13755-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.138                mail-mta/exim/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?rev=1.138&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?rev=1.138&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?r1=1.137&r2=1.138

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- ChangeLog	2 Jul 2009 20:32:24 -0000	1.137
+++ ChangeLog	2 Jul 2009 20:45:12 -0000	1.138
@@ -1,6 +1,11 @@
 # ChangeLog for mail-mta/exim
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.137 2009/07/02 20:32:24 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.138 2009/07/02 20:45:12 grobian Exp $
+
+  02 Jul 2009; Fabian Groffen <grobian@gentoo.org> exim-4.69.ebuild,
+  exim-4.69-r2.ebuild:
+  Restore auth_conf.sub support, instead of blindly nuking it, just find
+  that's in FILESDIR
 
   02 Jul 2009; Fabian Groffen <grobian@gentoo.org>
   files/exim-4.69-r1.27021.patch:



1.5                  mail-mta/exim/exim-4.69-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?r1=1.4&r2=1.5

Index: exim-4.69-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- exim-4.69-r2.ebuild	2 Jul 2009 20:29:38 -0000	1.4
+++ exim-4.69-r2.ebuild	2 Jul 2009 20:45:12 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v 1.4 2009/07/02 20:29:38 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v 1.5 2009/07/02 20:45:12 grobian Exp $
 
 inherit eutils toolchain-funcs
 
@@ -286,7 +286,8 @@
 	if use exiscan-acl; then
 		newins "${S}"/src/configure.default exim.conf.exiscan-acl
 	fi
-	doins "$WORKDIR"/system_filter.exim
+	doins "${WORKDIR}"/system_filter.exim
+	doins "${FILESDIR}"/auth_conf.sub
 	if use exiscan; then
 		newins "${S}"/src/configure.default exim.conf.exiscan
 		doins "${DISTDIR}"/exiscan.conf
@@ -315,6 +316,7 @@
 
 pkg_postinst() {
 	einfo "/etc/exim/system_filter.exim is a sample system_filter."
+	einfo "/etc/exim/auth_conf.sub contains the configuration sub for using smtp auth."
 	einfo "Please create /etc/exim/exim.conf from /etc/exim/exim.conf.dist."
 
 	if ! use mailwrapper && [[ -e /etc/mailer.conf ]]



1.13                 mail-mta/exim/exim-4.69.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?r1=1.12&r2=1.13

Index: exim-4.69.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- exim-4.69.ebuild	2 Jul 2009 20:16:06 -0000	1.12
+++ exim-4.69.ebuild	2 Jul 2009 20:45:12 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v 1.12 2009/07/02 20:16:06 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v 1.13 2009/07/02 20:45:12 grobian Exp $
 
 inherit eutils toolchain-funcs
 
@@ -281,6 +281,7 @@
 		newins "${S}"/src/configure.default exim.conf.exiscan-acl
 	fi
 	doins "${FILESDIR}"/system_filter.exim
+	doins "${FILESDIR}"/auth_conf.sub
 	if use exiscan; then
 		newins "${S}"/src/configure.default exim.conf.exiscan
 		doins "${FILESDIR}"/exiscan.conf
@@ -303,6 +304,7 @@
 
 pkg_postinst() {
 	einfo "/etc/exim/system_filter.exim is a sample system_filter."
+	einfo "/etc/exim/auth_conf.sub contains the configuration sub for using smtp auth."
 	einfo "Please create /etc/exim/exim.conf from /etc/exim/exim.conf.dist."
 
 	if ! use mailwrapper && [[ -e /etc/mailer.conf ]]






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in mail-mta/exim: ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild
@ 2009-07-02 20:53 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2009-07-02 20:53 UTC (permalink / raw
  To: gentoo-commits

grobian     09/07/02 20:53:49

  Modified:             ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild
  Log:
  exiscan.conf file is no longer in FILESDIR, remove system_filter from FILESDIR, since we have it on the mirrors also, should make people more happy on bug #120459
  (Portage version: 2.2.00.13755-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.139                mail-mta/exim/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?rev=1.139&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?rev=1.139&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?r1=1.138&r2=1.139

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog	2 Jul 2009 20:45:12 -0000	1.138
+++ ChangeLog	2 Jul 2009 20:53:49 -0000	1.139
@@ -1,6 +1,12 @@
 # ChangeLog for mail-mta/exim
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.138 2009/07/02 20:45:12 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.139 2009/07/02 20:53:49 grobian Exp $
+
+  02 Jul 2009; Fabian Groffen <grobian@gentoo.org> exim-4.69.ebuild,
+  exim-4.69-r2.ebuild, -files/system_filter.exim:
+  exiscan.conf file is no longer in FILESDIR, remove system_filter from
+  FILESDIR, since we have it on the mirrors also, should make people more
+  happy on bug #120459
 
   02 Jul 2009; Fabian Groffen <grobian@gentoo.org> exim-4.69.ebuild,
   exim-4.69-r2.ebuild:



1.6                  mail-mta/exim/exim-4.69-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?r1=1.5&r2=1.6

Index: exim-4.69-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- exim-4.69-r2.ebuild	2 Jul 2009 20:45:12 -0000	1.5
+++ exim-4.69-r2.ebuild	2 Jul 2009 20:53:49 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v 1.5 2009/07/02 20:45:12 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v 1.6 2009/07/02 20:53:49 grobian Exp $
 
 inherit eutils toolchain-funcs
 
@@ -8,8 +8,8 @@
 
 DESCRIPTION="A highly configurable, drop-in replacement for sendmail"
 SRC_URI="ftp://ftp.exim.org/pub/exim/exim4/${P}.tar.bz2
-mirror://gentoo/exiscan.conf
-mirror://gentoo/system_filter.exim.gz"
+	mirror://gentoo/exiscan.conf
+	mirror://gentoo/system_filter.exim.gz"
 HOMEPAGE="http://www.exim.org/"
 
 SLOT="0"
@@ -251,7 +251,7 @@
 	fperms 4755 /usr/sbin/exim
 
 	dodir /usr/bin /usr/sbin /usr/lib
-	if [ ! -e /usr/lib/sendmail ];
+	if [[ ! -e /usr/lib/sendmail ]];
 	then
 		dosym /usr/sbin/sendmail /usr/lib/sendmail
 	fi



1.14                 mail-mta/exim/exim-4.69.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?r1=1.13&r2=1.14

Index: exim-4.69.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- exim-4.69.ebuild	2 Jul 2009 20:45:12 -0000	1.13
+++ exim-4.69.ebuild	2 Jul 2009 20:53:49 -0000	1.14
@@ -1,13 +1,15 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v 1.13 2009/07/02 20:45:12 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v 1.14 2009/07/02 20:53:49 grobian Exp $
 
 inherit eutils toolchain-funcs
 
 IUSE="tcpd ssl postgres mysql ldap pam exiscan-acl mailwrapper lmtp ipv6 sasl dnsdb perl mbx mbox X exiscan nis syslog spf srs gnutls sqlite dovecot-sasl radius domainkeys"
 
 DESCRIPTION="A highly configurable, drop-in replacement for sendmail"
-SRC_URI="ftp://ftp.exim.org/pub/exim/exim4/${P}.tar.bz2 mirror://gentoo/exiscan.conf"
+SRC_URI="ftp://ftp.exim.org/pub/exim/exim4/${P}.tar.bz2
+	mirror://gentoo/exiscan.conf
+	mirror://gentoo/system_filter.exim.gz"
 HOMEPAGE="http://www.exim.org/"
 
 SLOT="0"
@@ -231,6 +233,7 @@
 }
 
 src_compile() {
+	# build system not parallel-safe at all
 	emake -j1 CC="$(tc-getCC)" || die "make failed"
 }
 
@@ -245,7 +248,7 @@
 	fperms 4755 /usr/sbin/exim
 
 	dodir /usr/bin /usr/sbin /usr/lib
-	if \[ ! -e /usr/lib/sendmail \];
+	if [[ ! -e /usr/lib/sendmail ]];
 	then
 		dosym /usr/sbin/sendmail /usr/lib/sendmail
 	fi
@@ -280,11 +283,11 @@
 	if use exiscan-acl; then
 		newins "${S}"/src/configure.default exim.conf.exiscan-acl
 	fi
-	doins "${FILESDIR}"/system_filter.exim
+	doins "${WORKDIR}"/system_filter.exim
 	doins "${FILESDIR}"/auth_conf.sub
 	if use exiscan; then
 		newins "${S}"/src/configure.default exim.conf.exiscan
-		doins "${FILESDIR}"/exiscan.conf
+		doins "${DISTDIR}"/exiscan.conf
 	fi
 
 	if use pam






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-07-02 20:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-02 20:53 [gentoo-commits] gentoo-x86 commit in mail-mta/exim: ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2009-07-02 20:45 Fabian Groffen (grobian)
2009-07-02 20:16 Fabian Groffen (grobian)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox