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 95BBC138331 for ; Tue, 27 Feb 2018 09:03:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BFA4E092D; Tue, 27 Feb 2018 09:03:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7946BE092D for ; Tue, 27 Feb 2018 09:03:05 +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 86034335C38 for ; Tue, 27 Feb 2018 09:03:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEB981D8 for ; Tue, 27 Feb 2018 09:03:00 +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: <1519722159.1b0935708a2570228ba651a8f3b9d5697b6c0c24.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/Manifest dev-libs/double-conversion/double-conversion-3.0.0.ebuild X-VCS-Directories: dev-libs/double-conversion/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1b0935708a2570228ba651a8f3b9d5697b6c0c24 X-VCS-Branch: master Date: Tue, 27 Feb 2018 09:03:00 +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: 80f9910b-daf5-4ac7-a4e1-8f0c8792815f X-Archives-Hash: 51ce0ab82577f3d8c171c13093c20db8 commit: 1b0935708a2570228ba651a8f3b9d5697b6c0c24 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Feb 26 23:49:21 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Feb 27 09:02:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b093570 dev-libs/double-conversion: 3.0.0 version bump, switch to cmake Closes: https://bugs.gentoo.org/631962 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-libs/double-conversion/Manifest | 1 + .../double-conversion-3.0.0.ebuild | 23 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-libs/double-conversion/Manifest b/dev-libs/double-conversion/Manifest index 9884bad306d..658674a41ba 100644 --- a/dev-libs/double-conversion/Manifest +++ b/dev-libs/double-conversion/Manifest @@ -1 +1,2 @@ DIST double-conversion-2.0.1.tar.gz 7014148 BLAKE2B df8df63f601076bd827ef95b2a2cde8bec6a85fb6ee81a879556481a168c2a101b3ca130ed6f45ca515281ea139e4a607a03934b05fc0a2fe5bacdf56033f2b3 SHA512 a4773dc95e9267d8426dda976586aa1ba968ead28b118caae9b1b7c123d1eea4aba5b588fde9a109a99a068a79a3a2426f12d6caadea8c548d4250e56eff33a4 +DIST double-conversion-3.0.0.tar.gz 7019526 BLAKE2B 631973dadefa8bbf7e4acffd44968dfbf6b7dbeeb045fbbe0df7824a890991f510131647a52646fcd2b069b8b886a7b66a82434b829bdcb58bd8f503fecc7d18 SHA512 5057af6e72f2aaace56ebdd9a0ddfa34318cbdfeabec5c361b60e6c92f160c8999c046c50f8c6f8d590eb8e97aa70bb6e97ba8148f0dc95dbc42f204fcdc1abf diff --git a/dev-libs/double-conversion/double-conversion-3.0.0.ebuild b/dev-libs/double-conversion/double-conversion-3.0.0.ebuild new file mode 100644 index 00000000000..e9bdb9b20d5 --- /dev/null +++ b/dev-libs/double-conversion/double-conversion-3.0.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +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-linux ~x86-linux" +IUSE="test" + +src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=ON + -DBUILD_TESTING=$(usex test) + ) + cmake-utils_src_configure +}