summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoritojun <itojun>2001-06-15 11:42:18 +0000
committeritojun <itojun>2001-06-15 11:42:18 +0000
commit860e8af4f59883e8f5a3772a998497746ac869f0 (patch)
tree83b627fda3ced84246304c2ffed458666978dee2
parent16c9af2b89c9bc40059088e67bf8e16fcebb85b8 (diff)
downloadpkgsrc-860e8af4f59883e8f5a3772a998497746ac869f0.tar.gz
upgrade to 5.8.6.
fetchmail-5.8.6 (Tue Jun 12 08:16:54 EDT 2001), 20676 lines: * Reject candidate headers for the MAIL FROM address that have \n in them. * Add capability to insert poll trace data in the Received line. * HMH's patch to prevent buffer overflow due to long headers. Addresses Debian bug #100394. * Brendan Kehoe's patch to avoid doing DNS lookups on skip entries. There are 347 people on fetchmail-friends and 592 on fetchmail-announce. fetchmail-5.8.5 (Tue May 29 20:01:39 EDT 2001), 20650 lines: * Interface option fix from Alexander Kourakos. * Fixes for i18n glitches and new Danish translation from Byrial Jensen. * Attempted fix for Harry McGavran's problems with the Kerberos V build. * Added fetchmailnochda.pl to the contrib directory. * Sunil Shetye's patches for the seen count on IMAP and auto protocol. There are 337 people on fetchmail-friends and 583 on fetchmail-announce. fetchmail-5.8.4 (Mon May 21 15:08:03 EDT 2001), 20636 lines: * SSL certificate options from Thomas Moestl <tmoestl@gmx.net>. * Frantisek Brabec's patch for better UIDL error recovery. * Another zombie-leak patch from HMH. * Jorg de Jong's patch attempts to handle spaces in the ID part of UIDLs. * Eliminate use of -C in Makefile. There are 334 people on fetchmail-friends and 583 on fetchmail-announce.
-rw-r--r--mail/fetchmail/Makefile4
-rw-r--r--mail/fetchmail/distinfo8
-rw-r--r--mail/fetchmail/patches/patch-ab10
-rw-r--r--mail/fetchmailconf/Makefile4
-rw-r--r--mail/fetchmailconf/distinfo6
5 files changed, 16 insertions, 16 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile
index 89aacc432fb..5eb2cfb6f3a 100644
--- a/mail/fetchmail/Makefile
+++ b/mail/fetchmail/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.94 2001/05/14 12:12:47 tron Exp $
+# $NetBSD: Makefile,v 1.95 2001/06/15 11:42:18 itojun Exp $
#
-DISTNAME= fetchmail-5.8.3
+DISTNAME= fetchmail-5.8.6
CATEGORIES= mail
MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ \
http://www.tuxedo.org/~esr/fetchmail/ \
diff --git a/mail/fetchmail/distinfo b/mail/fetchmail/distinfo
index a4940d5638c..1a9430be71c 100644
--- a/mail/fetchmail/distinfo
+++ b/mail/fetchmail/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.4 2001/05/14 12:12:47 tron Exp $
+$NetBSD: distinfo,v 1.5 2001/06/15 11:42:18 itojun Exp $
-SHA1 (fetchmail-5.8.3.tar.gz) = 111777a3ed38f9f000fadd0ea505fe8dead46dc4
-Size (fetchmail-5.8.3.tar.gz) = 830441 bytes
+SHA1 (fetchmail-5.8.6.tar.gz) = 4ea77798a977181ffa488ec81a80bced3c4d880e
+Size (fetchmail-5.8.6.tar.gz) = 840711 bytes
SHA1 (patch-aa) = 3c8aaac5d53c1069995ab74ad99bc5e64843a507
-SHA1 (patch-ab) = 4b9d66cff6ecb565f0aa15243f3fe4aad2c3f2fe
+SHA1 (patch-ab) = 009a97639502365f8b6ec4e854622620391a812f
SHA1 (patch-ac) = ef0e651807bb0942ca79ed3b10ffc000f71bd330
SHA1 (patch-ad) = b6bffc59f28992fa0d3de0f9dad250c73bbeffc6
diff --git a/mail/fetchmail/patches/patch-ab b/mail/fetchmail/patches/patch-ab
index fd225274c3f..a10364e9a6c 100644
--- a/mail/fetchmail/patches/patch-ab
+++ b/mail/fetchmail/patches/patch-ab
@@ -1,7 +1,7 @@
-$NetBSD: patch-ab,v 1.14 2001/03/30 15:08:43 mycroft Exp $
+$NetBSD: patch-ab,v 1.15 2001/06/15 11:42:18 itojun Exp $
---- Makefile.in.orig Thu Mar 29 03:10:31 2001
-+++ Makefile.in Fri Mar 30 14:50:50 2001
+--- Makefile.in.orig Tue Jun 12 21:12:15 2001
++++ Makefile.in Fri Jun 15 20:38:12 2001
@@ -166,12 +166,12 @@
$(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)
@echo "Installing fetchmail binary..."
@@ -17,5 +17,5 @@ $NetBSD: patch-ab,v 1.14 2001/03/30 15:08:43 mycroft Exp $
+# rm -f $(DESTDIR)$(mandir)/fetchmailconf.$(manext)
+# cd $(DESTDIR)$(mandir) && ln -s fetchmail.$(manext) fetchmailconf.$(manext)
@echo "Installing language catalogs..."
- -$(MAKE) -C intl install
- $(MAKE) -C po install
+ -cd intl; $(MAKE) install
+ cd po; $(MAKE) install
diff --git a/mail/fetchmailconf/Makefile b/mail/fetchmailconf/Makefile
index c3b22cd385e..7c41de72c1d 100644
--- a/mail/fetchmailconf/Makefile
+++ b/mail/fetchmailconf/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2001/05/14 12:12:47 tron Exp $
+# $NetBSD: Makefile,v 1.22 2001/06/15 11:42:19 itojun Exp $
-DISTNAME= fetchmail-5.8.3
+DISTNAME= fetchmail-5.8.6
PKGNAME= ${DISTNAME:S/fetchmail/fetchmailconf/}
CATEGORIES= mail
MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ \
diff --git a/mail/fetchmailconf/distinfo b/mail/fetchmailconf/distinfo
index 32504b1c859..1d43e37e1b6 100644
--- a/mail/fetchmailconf/distinfo
+++ b/mail/fetchmailconf/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2001/05/29 12:26:18 wiz Exp $
+$NetBSD: distinfo,v 1.6 2001/06/15 11:42:19 itojun Exp $
-SHA1 (fetchmail-5.8.3.tar.gz) = 111777a3ed38f9f000fadd0ea505fe8dead46dc4
-Size (fetchmail-5.8.3.tar.gz) = 830441 bytes
+SHA1 (fetchmail-5.8.6.tar.gz) = 4ea77798a977181ffa488ec81a80bced3c4d880e
+Size (fetchmail-5.8.6.tar.gz) = 840711 bytes