pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mail
Module Name: pkgsrc
Committed By: triaxx
Date: Wed Feb 19 16:48:02 UTC 2020
Modified Files:
pkgsrc/mail/fetchmail: Makefile distinfo
pkgsrc/mail/fetchmailconf: Makefile
Log Message:
fetchmail: update to 6.4.2
upstream changes:
-----------------
fetchmail-6.4.2 (released 2020-02-14, 27473 LoC):
## BREAKING CHANGES:
* fetchmailconf now supports Python 3 and currently requires the "future"
package, see https://pypi.org/project/future/.
* fetchmailconf: The minimum supported version is now Python 2.7.13, but it is
recommended to use at least 2.7.16 (due to its massive SSL updates).
Older Python versions may check SSL certificates not strictly enough,
which may cause fetchmail to complain later, if the certificate verify fails.
* fetchmailconf now autoprobes SSL-wrapped connections (ports 993 and 995 for
IMAP and POP3) as well and by preference.
* fetchmailconf now defaults newly created users to "ssl" if either of the
existing users sets ssl, or if the server has freshly been probed and
found supporting ssl.
There is a caveat: adding a user to an existing server without probing it
again may skip adding ssl. (This does not prevent STARTTLS.)
## BUG FIXES:
* Fix three bugs in fetchmail.man (one unterminated string to .IP macro, one
line that ran into a .PP macro, .TH date format), and remove one .br request
from inside the table, which is unsupported by FreeBSD 12's mandoc(1)
formatter. FreeBSD Bug#241032, reported by Helge Oldach.
* Further man page fixes and additions by Chris Mayo and Gregor Zattler.
* When evaluating the need for STARTTLS in non-default configurations (SSL
certificate validation turned off), fetchmail would only consider --sslproto
tls1 as requiring STARTTLS, now all non-empty protocol versions do.
* fetchmailconf now properly writes "no sslcertck" if sslcertck is disabled.
* fetchmailconf now catches and reports OS errors (including DNS errors) when
autoprobing. Reported as Gitlab issue #12 by Sergey Alirzaev.
* fetchmailconf received a host of other bugfixes, see the Git commit log.
## CHANGES:
* Make t.smoke more robust and use temporary directory as FETCHMAILHOME, to make
sure that the home directory resolves for the user running the test suite
even if the environment isn't perfect. Reported by Konstantin Belousov,
analysed by Corey Halpin, FreeBSD Bug#240914.
## UPDATED TRANSLATION - THANKS TO:
* zh_CN: Boyuan Yang [Chinese (simplified)]
To generate a diff of this commit:
cvs rdiff -u -r1.192 -r1.193 pkgsrc/mail/fetchmail/Makefile
cvs rdiff -u -r1.52 -r1.53 pkgsrc/mail/fetchmail/distinfo
cvs rdiff -u -r1.104 -r1.105 pkgsrc/mail/fetchmailconf/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/mail/fetchmail/Makefile
diff -u pkgsrc/mail/fetchmail/Makefile:1.192 pkgsrc/mail/fetchmail/Makefile:1.193
--- pkgsrc/mail/fetchmail/Makefile:1.192 Sat Jan 18 21:49:49 2020
+++ pkgsrc/mail/fetchmail/Makefile Wed Feb 19 16:48:02 2020
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.192 2020/01/18 21:49:49 jperkin Exp $
+# $NetBSD: Makefile,v 1.193 2020/02/19 16:48:02 triaxx Exp $
# Note to updaters: mail/fetchmailconf reaches over here, make sure it builds.
-DISTNAME= fetchmail-6.4.1
-PKGREVISION= 1
+DISTNAME= fetchmail-6.4.2
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fetchmail/}
EXTRACT_SUFX= .tar.xz
Index: pkgsrc/mail/fetchmail/distinfo
diff -u pkgsrc/mail/fetchmail/distinfo:1.52 pkgsrc/mail/fetchmail/distinfo:1.53
--- pkgsrc/mail/fetchmail/distinfo:1.52 Wed Jan 1 20:36:53 2020
+++ pkgsrc/mail/fetchmail/distinfo Wed Feb 19 16:48:02 2020
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.52 2020/01/01 20:36:53 triaxx Exp $
+$NetBSD: distinfo,v 1.53 2020/02/19 16:48:02 triaxx Exp $
-SHA1 (fetchmail-6.4.1.tar.xz) = 1aadf078ed8fb1b6c93e9126cc0375b1f740301a
-RMD160 (fetchmail-6.4.1.tar.xz) = 753d982f132cd5dcedb261631b5bee653410fef9
-SHA512 (fetchmail-6.4.1.tar.xz) = 940b8df52f963f71537962ebe2b2cb88298fd2b54ca79932e5c974abe850f0b59cdc4919d606ee4f210e82d1e0a6f090ea87f1d3bdea18b531d4fbb36f7f9ea0
-Size (fetchmail-6.4.1.tar.xz) = 1257488 bytes
+SHA1 (fetchmail-6.4.2.tar.xz) = cdd6f0f4c8b99be3d3950763c53472c4ad764312
+RMD160 (fetchmail-6.4.2.tar.xz) = 16faf2d06aa568f14f334b6c616d6ac1a34983d2
+SHA512 (fetchmail-6.4.2.tar.xz) = 8ec62a5df81b9b8c5e5479d35a10aded22aca74f671cded339dc7ae1c78d8a8638dfe4f04be35334184b5b27f3fb857402dc5b587cca8ede3f5b9b268b37edc1
+Size (fetchmail-6.4.2.tar.xz) = 1261472 bytes
SHA1 (patch-Makefile.in) = 9cd2053a7c8bbbf6f71fcee03e33c0d29d235c4e
Index: pkgsrc/mail/fetchmailconf/Makefile
diff -u pkgsrc/mail/fetchmailconf/Makefile:1.104 pkgsrc/mail/fetchmailconf/Makefile:1.105
--- pkgsrc/mail/fetchmailconf/Makefile:1.104 Thu Jan 2 23:17:34 2020
+++ pkgsrc/mail/fetchmailconf/Makefile Wed Feb 19 16:48:02 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.104 2020/01/02 23:17:34 wiz Exp $
+# $NetBSD: Makefile,v 1.105 2020/02/19 16:48:02 triaxx Exp $
-DISTNAME= fetchmail-6.4.1
+DISTNAME= fetchmail-6.4.2
PKGNAME= ${DISTNAME:S/fetchmail/fetchmailconf/}
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fetchmail/}
Home |
Main Index |
Thread Index |
Old Index