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 8DDFE138334 for ; Thu, 6 Jun 2019 16:34:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A25CE0883; Thu, 6 Jun 2019 16:34:40 +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 6B833E0883 for ; Thu, 6 Jun 2019 16:34:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C4BAE345842 for ; Thu, 6 Jun 2019 16:34:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D5D9605 for ; Thu, 6 Jun 2019 16:34:36 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1559838868.f2ef4de57eec87cee0eef3b7289b341a84bcf29d.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libb2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libb2/libb2-0.98.1-r1.ebuild app-crypt/libb2/libb2-0.98.1.ebuild X-VCS-Directories: app-crypt/libb2/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: f2ef4de57eec87cee0eef3b7289b341a84bcf29d X-VCS-Branch: master Date: Thu, 6 Jun 2019 16:34:36 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d9490d15-7ff2-40ae-a08e-8fcae26387d4 X-Archives-Hash: 74490c5da7c0ebc3c4b5be6a5fc4af10 commit: f2ef4de57eec87cee0eef3b7289b341a84bcf29d Author: Fabian Groffen gentoo org> AuthorDate: Thu Jun 6 16:26:51 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Jun 6 16:34:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ef4de5 app-crypt/libb2: USE=static -> USE=static-libs Signed-off-by: Fabian Groffen gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 app-crypt/libb2/{libb2-0.98.1.ebuild => libb2-0.98.1-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-crypt/libb2/libb2-0.98.1.ebuild b/app-crypt/libb2/libb2-0.98.1-r1.ebuild similarity index 91% rename from app-crypt/libb2/libb2-0.98.1.ebuild rename to app-crypt/libb2/libb2-0.98.1-r1.ebuild index 29d440d64d0..2925f4c30b4 100644 --- a/app-crypt/libb2/libb2-0.98.1.ebuild +++ b/app-crypt/libb2/libb2-0.98.1-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/BLAKE2/libb2/archive/${GITHASH}.tar.gz -> ${P}.tar.g LICENSE="CC0-1.0" SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc64 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x64-solaris" -IUSE="static native-cflags openmp" +IUSE="static-libs native-cflags openmp" DEPEND=" openmp? ( @@ -42,7 +42,7 @@ src_prepare() { src_configure() { econf \ - $(use_enable static) \ + $(use_enable static-libs static) \ $(use_enable native-cflags native) \ $(use_enable openmp) } @@ -63,5 +63,5 @@ src_test() { src_install() { default - use static || find "${ED}" -name '*.la' -type f -delete || die + use static-libs || find "${ED}" -name '*.la' -type f -delete || die }