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 E5417138335 for ; Mon, 4 Feb 2019 00:48:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 116BEE0A7C; Mon, 4 Feb 2019 00:48:51 +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 DF28AE0A4A for ; Mon, 4 Feb 2019 00:48:50 +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 E6E8433BE3E for ; Mon, 4 Feb 2019 00:48:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FD3352C for ; Mon, 4 Feb 2019 00:48:47 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1549240997.402fb92fcb1eaf9cb5e76d3834621451b3637e84.asturm@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.0.0-r1.ebuild X-VCS-Directories: dev-libs/double-conversion/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 402fb92fcb1eaf9cb5e76d3834621451b3637e84 X-VCS-Branch: master Date: Mon, 4 Feb 2019 00:48:47 +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: dd5f708a-4b2c-489d-8c0e-019582bdb213 X-Archives-Hash: 6a81a7652134b3c74eceb9b2f55a6b07 commit: 402fb92fcb1eaf9cb5e76d3834621451b3637e84 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 3 23:26:17 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 4 00:43:17 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=402fb92f dev-libs/double-conversion: Drop 3.0.0-r1 Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> .../double-conversion-3.0.0-r1.ebuild | 53 ---------------------- 1 file changed, 53 deletions(-) diff --git a/dev-libs/double-conversion/double-conversion-3.0.0-r1.ebuild b/dev-libs/double-conversion/double-conversion-3.0.0-r1.ebuild deleted file mode 100644 index 786bdf2fd13..00000000000 --- a/dev-libs/double-conversion/double-conversion-3.0.0-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils multibuild - -DESCRIPTION="Binary-decimal and decimal-binary conversion routines for IEEE doubles" -HOMEPAGE="https://github.com/google/double-conversion" -SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0/1" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux" -IUSE="static-libs test" - -pkg_setup() { - MULTIBUILD_VARIANTS=( shared $(usev static-libs) ) -} - -src_configure() { - myconfigure() { - local mycmakeargs=( -DBUILD_TESTING=$(usex test) ) - if [[ ${MULTIBUILD_VARIANT} = shared ]]; then - mycmakeargs+=( -DBUILD_SHARED_LIBS=ON ) - fi - if [[ ${MULTIBUILD_VARIANT} = static-libs ]]; then - mycmakeargs+=( -DBUILD_SHARED_LIBS=OFF ) - fi - - cmake-utils_src_configure - } - - multibuild_foreach_variant myconfigure -} - -src_compile() { - multibuild_foreach_variant cmake-utils_src_compile -} - -src_test() { - [[ ${MULTIBUILD_VARIANT} = shared ]] && cmake-utils_src_test -} - -src_install() { - myinstall() { - [[ ${MULTIBUILD_VARIANT} = shared ]] && cmake-utils_src_install - [[ ${MULTIBUILD_VARIANT} = static-libs ]] && \ - dolib ${BUILD_DIR}/double-conversion/libdouble-conversion.a - } - - multibuild_foreach_variant myinstall -}