aboutsummaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authorKevin Bowling <kbowling@FreeBSD.org>2021-01-29 20:00:08 +0000
committerKevin Bowling <kbowling@FreeBSD.org>2021-01-29 20:00:08 +0000
commite84c9290e1e0064f4a9e5648a0df521cc8ec411a (patch)
tree6bbb0497e27ebbf3e565812bc051feea1b3b7956 /news
parente82a74356c3fda4bdfa68f563a953cd6ebb15f5f (diff)
downloadports-e84c9290e1e0064f4a9e5648a0df521cc8ec411a.tar.gz
ports-e84c9290e1e0064f4a9e5648a0df521cc8ec411a.zip
news/inn: Update to 2.6.4
Sponsored by: BBOX.io
Notes
Notes: svn path=/head/; revision=563244
Diffstat (limited to 'news')
-rw-r--r--news/inn/Makefile7
-rw-r--r--news/inn/distinfo6
-rw-r--r--news/inn/files/patch-nnrpd_tls.c20
3 files changed, 6 insertions, 27 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile
index a98a1836cf35..eeb0aa385093 100644
--- a/news/inn/Makefile
+++ b/news/inn/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= inn
-PORTVERSION= 2.6.3
-PORTREVISION= 1
+PORTVERSION= 2.6.4
CATEGORIES= news
MASTER_SITES= ISC/${PORTNAME}
@@ -62,8 +61,8 @@ CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \
UUCP_RNEWS_RUN_DEPENDS= uucp:net/freebsd-uucp
-INNLIB_LONG= 6.0.0
-LIBVER_LONG= 3.0.3
+INNLIB_LONG= 6.0.1
+LIBVER_LONG= 3.0.4
PLIST_SUB+= LIBVER=${LIBVER_LONG:R:R} LIBVER_LONG=${LIBVER_LONG} \
INNLIB=${INNLIB_LONG:R:R} INNLIB_LONG=${INNLIB_LONG}
diff --git a/news/inn/distinfo b/news/inn/distinfo
index c2df87820986..f4f8f5e82bfe 100644
--- a/news/inn/distinfo
+++ b/news/inn/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1572998169
-SHA256 (inn-2.6.3.tar.gz) = bd914ac421f8e71a36dc95cef0655a05dd162eb68f5893cc4028642209015256
-SIZE (inn-2.6.3.tar.gz) = 2586168
+TIMESTAMP = 1611943855
+SHA256 (inn-2.6.4.tar.gz) = f05e803e0b3772b235bfb11b688f1def3d422dbf30ccbbce973f7fe518ac7518
+SIZE (inn-2.6.4.tar.gz) = 2610659
diff --git a/news/inn/files/patch-nnrpd_tls.c b/news/inn/files/patch-nnrpd_tls.c
deleted file mode 100644
index 7a69f991b9f1..000000000000
--- a/news/inn/files/patch-nnrpd_tls.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- nnrpd/tls.c.orig 2017-09-12 18:17:21 UTC
-+++ nnrpd/tls.c
-@@ -495,7 +495,7 @@ tls_init_serverengine(int verifydepth, int askcert, in
- syslog(L_NOTICE, "starting TLS engine");
-
- /* New functions have been introduced in OpenSSL 1.1.0. */
--#if OPENSSL_VERSION_NUMBER < 0x010100000L
-+#if OPENSSL_VERSION_NUMBER < 0x010100000L || defined(LIBRESSL_VERSION_NUMBER)
- SSL_load_error_strings();
- SSLeay_add_ssl_algorithms();
- CTX = SSL_CTX_new(SSLv23_server_method());
-@@ -652,7 +652,7 @@ tls_init_serverengine(int verifydepth, int askcert, in
- }
- }
-
--#if OPENSSL_VERSION_NUMBER >= 0x01010100fL
-+#if OPENSSL_VERSION_NUMBER >= 0x01010100fL && !defined(LIBRESSL_VERSION_NUMBER)
- /* New API added in OpenSSL 1.1.1 for TLSv1.3 cipher suites. */
- if (tls_ciphers13 != NULL) {
- if (SSL_CTX_set_ciphersuites(CTX, tls_ciphers13) == 0) {