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 AA9F21382C5 for ; Tue, 17 Apr 2018 01:32:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA0E1E09F8; Tue, 17 Apr 2018 01:32:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 866CFE09F8 for ; Tue, 17 Apr 2018 01:32:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 60AC3335C2E for ; Tue, 17 Apr 2018 01:32:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCD3D282 for ; Tue, 17 Apr 2018 01:32:50 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1523928669.ccbc8eb528dabbf77dacba34e5ea545231a55b90.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libressl/libressl-2.6.0.ebuild dev-libs/libressl/libressl-2.6.4.ebuild dev-libs/libressl/libressl-2.7.2.ebuild X-VCS-Directories: dev-libs/libressl/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: ccbc8eb528dabbf77dacba34e5ea545231a55b90 X-VCS-Branch: master Date: Tue, 17 Apr 2018 01:32:50 +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: 06f4d386-7024-4838-924f-4550b0ee09bc X-Archives-Hash: c6b24cab9cc5018b5523a4d8111e142a commit: ccbc8eb528dabbf77dacba34e5ea545231a55b90 Author: Aaron Bauman gentoo org> AuthorDate: Tue Apr 17 01:31:09 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue Apr 17 01:31:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccbc8eb5 dev-libs/libressl: enable REQUIRED_USE for tests and drop eutils Upstream has noted that tests require static-libs. As such, require that static-libs USE flag is set. Additionally, drop eutils eclass in favor of ltprune as the only function called is prune_libtool_files. Closes: https://bugs.gentoo.org/625266 Closes: https://bugs.gentoo.org/607960 Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-libs/libressl/libressl-2.6.0.ebuild | 7 +++---- dev-libs/libressl/libressl-2.6.4.ebuild | 5 +++-- dev-libs/libressl/libressl-2.7.2.ebuild | 5 +++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/dev-libs/libressl/libressl-2.6.0.ebuild b/dev-libs/libressl/libressl-2.6.0.ebuild index 44ecf27ddcb..2613eb39b53 100644 --- a/dev-libs/libressl/libressl-2.6.0.ebuild +++ b/dev-libs/libressl/libressl-2.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit eutils multilib-minimal +inherit ltprune multilib-minimal DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" HOMEPAGE="https://www.libressl.org/" @@ -15,14 +15,13 @@ LICENSE="ISC openssl" # versions, we have to change the subslot to trigger rebuild of consumers. SLOT="0/43" KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86" -IUSE="+asm static-libs" +IUSE="+asm static-libs test" +REQUIRED_USE="test? ( static-libs )" RDEPEND="!dev-libs/openssl:0" DEPEND="${RDEPEND}" PDEPEND="app-misc/ca-certificates" -RESTRICT="test" # bug #625266 - src_prepare() { touch crypto/Makefile.in diff --git a/dev-libs/libressl/libressl-2.6.4.ebuild b/dev-libs/libressl/libressl-2.6.4.ebuild index b4987334136..d8f2130d4b1 100644 --- a/dev-libs/libressl/libressl-2.6.4.ebuild +++ b/dev-libs/libressl/libressl-2.6.4.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit eutils multilib-minimal +inherit ltprune multilib-minimal DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" HOMEPAGE="https://www.libressl.org/" @@ -15,7 +15,8 @@ LICENSE="ISC openssl" # versions, we have to change the subslot to trigger rebuild of consumers. SLOT="0/44" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86" -IUSE="+asm static-libs" +IUSE="+asm static-libs test" +REQUIRED_USE="test? ( static-libs )" RDEPEND="!dev-libs/openssl:0" DEPEND="${RDEPEND}" diff --git a/dev-libs/libressl/libressl-2.7.2.ebuild b/dev-libs/libressl/libressl-2.7.2.ebuild index af207c40014..d988e0c8f01 100644 --- a/dev-libs/libressl/libressl-2.7.2.ebuild +++ b/dev-libs/libressl/libressl-2.7.2.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit eutils multilib-minimal +inherit ltprune multilib-minimal DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" HOMEPAGE="https://www.libressl.org/" @@ -16,7 +16,8 @@ LICENSE="ISC openssl" SLOT="0/45" #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" KEYWORDS="" -IUSE="+asm static-libs" +IUSE="+asm static-libs test" +REQUIRED_USE="test? ( static-libs )" RDEPEND="!dev-libs/openssl:0" DEPEND="${RDEPEND}"