From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1135178-garchives=archives.gentoo.org@lists.gentoo.org> 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 0BF85138334 for <garchives@archives.gentoo.org>; Wed, 1 Jan 2020 10:14:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38CCBE09CA; Wed, 1 Jan 2020 10:14:27 +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 206C3E09CA for <gentoo-commits@lists.gentoo.org>; Wed, 1 Jan 2020 10:14:27 +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 8E39534DD8B for <gentoo-commits@lists.gentoo.org>; Wed, 1 Jan 2020 10:14:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DFDF74 for <gentoo-commits@lists.gentoo.org>; Wed, 1 Jan 2020 10:14:24 +0000 (UTC) From: "David Seifert" <soap@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" <soap@gentoo.org> Message-ID: <1577873655.762ae8c32889f933907bfbacbafd201cb33c9304.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/double-conversion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/double-conversion/double-conversion-3.1.5.ebuild X-VCS-Directories: dev-libs/double-conversion/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 762ae8c32889f933907bfbacbafd201cb33c9304 X-VCS-Branch: master Date: Wed, 1 Jan 2020 10:14:24 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fc0a1556-7faa-4cf6-baeb-d4bb7929c41d X-Archives-Hash: f4829353f4f2d2f543d45545cbebf253 commit: 762ae8c32889f933907bfbacbafd201cb33c9304 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Wed Jan 1 10:14:15 2020 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Wed Jan 1 10:14:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=762ae8c3 dev-libs/double-conversion: Remove USE="static-libs" Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: David Seifert <soap <AT> gentoo.org> .../double-conversion-3.1.5.ebuild | 44 +--------------------- 1 file changed, 2 insertions(+), 42 deletions(-) diff --git a/dev-libs/double-conversion/double-conversion-3.1.5.ebuild b/dev-libs/double-conversion/double-conversion-3.1.5.ebuild index a5d39a82e10..f1eee185336 100644 --- a/dev-libs/double-conversion/double-conversion-3.1.5.ebuild +++ b/dev-libs/double-conversion/double-conversion-3.1.5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake multibuild +inherit cmake DESCRIPTION="Binary-decimal and decimal-binary conversion routines for IEEE doubles" HOMEPAGE="https://github.com/google/double-conversion" @@ -12,43 +12,3 @@ SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0/3" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="static-libs test" - -RESTRICT="!test? ( test )" - -pkg_setup() { - MULTIBUILD_VARIANTS=( shared $(usev static-libs) ) -} - -src_configure() { - myconfigure() { - local mycmakeargs=( - -DBUILD_TESTING=$(usex test) - ) - if [[ ${MULTIBUILD_VARIANT} = static-libs ]]; then - mycmakeargs+=( -DBUILD_SHARED_LIBS=OFF ) - fi - - cmake_src_configure - } - - multibuild_foreach_variant myconfigure -} - -src_compile() { - multibuild_foreach_variant cmake_src_compile -} - -src_test() { - [[ ${MULTIBUILD_VARIANT} = shared ]] && cmake_src_test -} - -src_install() { - myinstall() { - [[ ${MULTIBUILD_VARIANT} = shared ]] && cmake_src_install - [[ ${MULTIBUILD_VARIANT} = static-libs ]] && \ - dolib.a ${BUILD_DIR}/libdouble-conversion.a - } - - multibuild_foreach_variant myinstall -}