From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5E7EE13832E for ; Tue, 9 Aug 2016 15:08:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8635C21C028; Tue, 9 Aug 2016 15:08:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1BDC21C028 for ; Tue, 9 Aug 2016 15:08:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC111340C50 for ; Tue, 9 Aug 2016 15:07:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7688E2450 for ; Tue, 9 Aug 2016 15:07:57 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1470755134.a5bca1e5bc0a70d6acb0a0887bf914bda80cd743.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gnutls/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gnutls/gnutls-3.4.14.ebuild net-libs/gnutls/gnutls-3.5.3.ebuild net-libs/gnutls/metadata.xml X-VCS-Directories: net-libs/gnutls/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: a5bca1e5bc0a70d6acb0a0887bf914bda80cd743 X-VCS-Branch: master Date: Tue, 9 Aug 2016 15:07:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d4308d4f-1525-429c-9586-d7b2b2884568 X-Archives-Hash: cecde4473a79c116f805d10e374983bc commit: a5bca1e5bc0a70d6acb0a0887bf914bda80cd743 Author: Alon Bar-Lev gentoo org> AuthorDate: Tue Aug 9 15:04:53 2016 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Tue Aug 9 15:05:34 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5bca1e5 net-libs/gnutls: add tls-heartbeat, sslv2, sslv3 USE flags Bug: 590856 Package-Manager: portage-2.2.28 net-libs/gnutls/gnutls-3.4.14.ebuild | 9 +++------ net-libs/gnutls/gnutls-3.5.3.ebuild | 11 +++++------ net-libs/gnutls/metadata.xml | 9 +++++++++ 3 files changed, 17 insertions(+), 12 deletions(-) diff --git a/net-libs/gnutls/gnutls-3.4.14.ebuild b/net-libs/gnutls/gnutls-3.4.14.ebuild index ed0dc89..d6af315 100644 --- a/net-libs/gnutls/gnutls-3.4.14.ebuild +++ b/net-libs/gnutls/gnutls-3.4.14.ebuild @@ -10,14 +10,11 @@ DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project" HOMEPAGE="http://www.gnutls.org/" SRC_URI="mirror://gnupg/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz" -# LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library. -# soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled. -LICENSE="GPL-3 LGPL-3" +LICENSE="GPL-3 LGPL-2.1" SLOT="0/30" # libgnutls.so number KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE_LINGUAS=" en cs de fi fr it ms nl pl sv uk vi zh_CN" -IUSE="+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs test +tools zlib ${IUSE_LINGUAS// / linguas_}" -# heartbeat support is not disabled until re-licensing happens fullyf +IUSE="+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs test +tls-heartbeat +tools zlib ${IUSE_LINGUAS// / linguas_}" # NOTICE: sys-devel/autogen is required at runtime as we # use system libopts @@ -96,7 +93,6 @@ multilib_src_configure() { econf \ --disable-valgrind-tests \ --without-included-libtasn1 \ - --enable-heartbeat-support \ $(use_enable cxx) \ $(use_enable dane libdane) \ $(multilib_native_enable manpages) \ @@ -108,6 +104,7 @@ multilib_src_configure() { $(multilib_native_use_enable test tests) \ $(use_enable nls) \ $(use_enable openssl openssl-compatibility) \ + $(use_enable tls-heartbeat heartbeat-support) \ $(use_enable static-libs static) \ $(use_with pkcs11 p11-kit) \ $(use_with zlib) \ diff --git a/net-libs/gnutls/gnutls-3.5.3.ebuild b/net-libs/gnutls/gnutls-3.5.3.ebuild index efe6884..117fc94 100644 --- a/net-libs/gnutls/gnutls-3.5.3.ebuild +++ b/net-libs/gnutls/gnutls-3.5.3.ebuild @@ -10,14 +10,11 @@ DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project" HOMEPAGE="http://www.gnutls.org/" SRC_URI="mirror://gnupg/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz" -# LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library. -# soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled. -LICENSE="GPL-3 LGPL-3" +LICENSE="GPL-3 LGPL-2.1" SLOT="0/30" # libgnutls.so number KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE_LINGUAS=" en cs de fi fr it ms nl pl sv uk vi zh_CN" -IUSE="+cxx dane doc examples guile nls +openssl pkcs11 static-libs test +tools zlib ${IUSE_LINGUAS// / linguas_}" -# heartbeat support is not disabled until re-licensing happens fullyf +IUSE="+cxx dane doc examples guile nls +openssl pkcs11 sslv2 +sslv3 static-libs test +tls-heartbeat +tools zlib ${IUSE_LINGUAS// / linguas_}" # NOTICE: sys-devel/autogen is required at runtime as we # use system libopts @@ -89,7 +86,6 @@ multilib_src_configure() { econf \ --disable-valgrind-tests \ --without-included-libtasn1 \ - --enable-heartbeat-support \ $(use_enable cxx) \ $(use_enable dane libdane) \ $(multilib_native_enable manpages) \ @@ -100,6 +96,9 @@ multilib_src_configure() { $(multilib_native_use_enable test tests) \ $(use_enable nls) \ $(use_enable openssl openssl-compatibility) \ + $(use_enable tls-heartbeat heartbeat-support) \ + $(use_enable sslv2 ssl2-support) \ + $(use_enable sslv3 ssl3-support) \ $(use_enable static-libs static) \ $(use_with pkcs11 p11-kit) \ $(use_with zlib) \ diff --git a/net-libs/gnutls/metadata.xml b/net-libs/gnutls/metadata.xml index 615fc41..7abdcd0 100644 --- a/net-libs/gnutls/metadata.xml +++ b/net-libs/gnutls/metadata.xml @@ -22,6 +22,15 @@ Build extra tools + + Enable the Heartbeat Extension in TLS and DTLS + + + Support for the old/insecure SSLv2 protocol + + + Support for the old/insecure SSLv3 protocol + Reflect ABI compatibility of libgnutls.so