From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 69AAE13888F for ; Thu, 22 Oct 2015 13:03:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DA3521C012; Thu, 22 Oct 2015 13:03:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0406E21C012 for ; Thu, 22 Oct 2015 13:03:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5BE6340834 for ; Thu, 22 Oct 2015 13:03:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CCCB1264 for ; Thu, 22 Oct 2015 13:03:05 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1445518869.c9611fab7b30402b3f9cc9803324b9d3184b5d3d.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wget/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/wget/wget-1.16.3-r2.ebuild X-VCS-Directories: net-misc/wget/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: c9611fab7b30402b3f9cc9803324b9d3184b5d3d X-VCS-Branch: master Date: Thu, 22 Oct 2015 13:03:05 +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: 78b0bef5-2b6f-46d1-809b-31ca9df7ac1c X-Archives-Hash: 04d089a6ba62d87f5f511b17b950a666 commit: c9611fab7b30402b3f9cc9803324b9d3184b5d3d Author: Julian Ospald gentoo org> AuthorDate: Thu Oct 22 13:01:09 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Thu Oct 22 13:01:09 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9611fab net-misc/wget: lift the REQUIRED_USE constraints for libressl 'libressl' USE flag is only for switching the openssl-provider and shouldn't introduce additional REQUIRED_USE complexity. net-misc/wget/wget-1.16.3-r2.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/net-misc/wget/wget-1.16.3-r2.ebuild b/net-misc/wget/wget-1.16.3-r2.ebuild index 26d60ba..a44cd52 100644 --- a/net-misc/wget/wget-1.16.3-r2.ebuild +++ b/net-misc/wget/wget-1.16.3-r2.ebuild @@ -15,18 +15,16 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib" -REQUIRED_USE=" - ntlm? ( !gnutls ssl ) - libressl? ( !gnutls ssl ) - gnutls? ( !libressl ssl ) -" +REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )" LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] ) pcre? ( dev-libs/libpcre[static-libs(+)] ) ssl? ( gnutls? ( net-libs/gnutls[static-libs(+)] ) - libressl? ( dev-libs/libressl[static-libs(+)] ) - !gnutls? ( !libressl? ( dev-libs/openssl:0[static-libs(+)] ) ) + !gnutls? ( + !libressl? ( dev-libs/openssl:0[static-libs(+)] ) + libressl? ( dev-libs/libressl[static-libs(+)] ) + ) ) uuid? ( sys-apps/util-linux[static-libs(+)] ) zlib? ( sys-libs/zlib[static-libs(+)] )"