Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/double-conversion/
Date: Mon, 04 Feb 2019 00:48:51
Message-Id: 1549240997.402fb92fcb1eaf9cb5e76d3834621451b3637e84.asturm@gentoo
1 commit: 402fb92fcb1eaf9cb5e76d3834621451b3637e84
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 3 23:26:17 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 4 00:43:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=402fb92f
7
8 dev-libs/double-conversion: Drop 3.0.0-r1
9
10 Package-Manager: Portage-2.3.59, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 .../double-conversion-3.0.0-r1.ebuild | 53 ----------------------
14 1 file changed, 53 deletions(-)
15
16 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
17 deleted file mode 100644
18 index 786bdf2fd13..00000000000
19 --- a/dev-libs/double-conversion/double-conversion-3.0.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,53 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit cmake-utils multibuild
28 -
29 -DESCRIPTION="Binary-decimal and decimal-binary conversion routines for IEEE doubles"
30 -HOMEPAGE="https://github.com/google/double-conversion"
31 -SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="BSD"
34 -SLOT="0/1"
35 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
36 -IUSE="static-libs test"
37 -
38 -pkg_setup() {
39 - MULTIBUILD_VARIANTS=( shared $(usev static-libs) )
40 -}
41 -
42 -src_configure() {
43 - myconfigure() {
44 - local mycmakeargs=( -DBUILD_TESTING=$(usex test) )
45 - if [[ ${MULTIBUILD_VARIANT} = shared ]]; then
46 - mycmakeargs+=( -DBUILD_SHARED_LIBS=ON )
47 - fi
48 - if [[ ${MULTIBUILD_VARIANT} = static-libs ]]; then
49 - mycmakeargs+=( -DBUILD_SHARED_LIBS=OFF )
50 - fi
51 -
52 - cmake-utils_src_configure
53 - }
54 -
55 - multibuild_foreach_variant myconfigure
56 -}
57 -
58 -src_compile() {
59 - multibuild_foreach_variant cmake-utils_src_compile
60 -}
61 -
62 -src_test() {
63 - [[ ${MULTIBUILD_VARIANT} = shared ]] && cmake-utils_src_test
64 -}
65 -
66 -src_install() {
67 - myinstall() {
68 - [[ ${MULTIBUILD_VARIANT} = shared ]] && cmake-utils_src_install
69 - [[ ${MULTIBUILD_VARIANT} = static-libs ]] && \
70 - dolib ${BUILD_DIR}/double-conversion/libdouble-conversion.a
71 - }
72 -
73 - multibuild_foreach_variant myinstall
74 -}