From owner-svn-ports-all@freebsd.org Tue May 3 22:09:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87EC0B2C538; Tue, 3 May 2016 22:09:22 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B7BF1497; Tue, 3 May 2016 22:09:22 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u43M9Lqc005251; Tue, 3 May 2016 22:09:21 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u43M9LmH005249; Tue, 3 May 2016 22:09:21 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201605032209.u43M9LmH005249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 3 May 2016 22:09:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414564 - in head: . Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2016 22:09:22 -0000 Author: brnrd Date: Tue May 3 22:09:21 2016 New Revision: 414564 URL: https://svnweb.freebsd.org/changeset/ports/414564 Log: security/libressl: Add UPDATING entry and bump SHLIB in bsd.openssl.mk - Add UPDATING entry, users must recompile all ports that depend - Bump SHLIBVER in Mk/bsd.openssl.mk PR: 209252 Modified: head/Mk/bsd.openssl.mk head/UPDATING Modified: head/Mk/bsd.openssl.mk ============================================================================== --- head/Mk/bsd.openssl.mk Tue May 3 21:55:09 2016 (r414563) +++ head/Mk/bsd.openssl.mk Tue May 3 22:09:21 2016 (r414564) @@ -102,11 +102,13 @@ OPENSSL_SHLIBVER?= ${OPENSSL_SHLIBFILE:E .endif .endif -# LibreSSL specific SHLIBVER +# LibreSSL and OpenSSL-BETA specific SHLIBVER .if defined(OPENSSL_PORT) && ${OPENSSL_PORT} == security/libressl -OPENSSL_SHLIBVER?= 35 +OPENSSL_SHLIBVER?= 37 .elif defined(OPENSSL_PORT) && ${OPENSSL_PORT} == security/libressl-devel OPENSSL_SHLIBVER?= 37 +.elif defined(OPENSSL_PORT) && ${OPENSSL_PORT} == security/openssl-devel +OPENSSL_SHLIBVER?= 9 .endif # default Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue May 3 21:55:09 2016 (r414563) +++ head/UPDATING Tue May 3 22:09:21 2016 (r414564) @@ -5,6 +5,32 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20160503: + AFFECTS: users of security/libressl + AUTHOR: brnrd@FreeBSD.org + + LibreSSL 2.3 has removed SSLv3 support completely which leads to issues + with a number of ports. Patches for many of these issues can be found + on https://wiki.freebsd.org/OpenSSL/No-SSLv3 + + After upgrading to 2.3.4, manually update all packages that depend on + any of the libraries provided by LibreSSL (libssl, libcrypto and + libtls) since the versions of these libraries have changed. Normally, + you can obtain the list of dependent software by running the following + command: + + # pkg info -r libressl + + Then you should rebuild all ports depending on libressl to avoid dangling + shared library dependencies. Poudriere and pkg handle this correctly, + portmaster and portupgrade users can use the following to rebuild all + dependent ports. + + Portmaster users: + portmaster -r libressl + Portupgrade users: + portupgrade -fr security/libressl + 20160501: AFFECTS: Users of mail/dspam AUTHOR: junovitch@FreeBSD.org