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 D56AB138334 for ; Sat, 6 Apr 2019 12:54:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C63FCE0872; Sat, 6 Apr 2019 12:54:15 +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 A0944E0872 for ; Sat, 6 Apr 2019 12:54:15 +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 5498F335CFB for ; Sat, 6 Apr 2019 12:54:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E4D2576 for ; Sat, 6 Apr 2019 12:54:12 +0000 (UTC) From: "David Seifert" 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" Message-ID: <1554555233.816535e88e38b049df6358aae11968e0d64ded51.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mpfi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/mpfi/Manifest sci-libs/mpfi/mpfi-1.5.3.ebuild X-VCS-Directories: sci-libs/mpfi/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 816535e88e38b049df6358aae11968e0d64ded51 X-VCS-Branch: master Date: Sat, 6 Apr 2019 12:54:12 +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: 77a4271e-20f8-42fa-b34a-ae380bdf4581 X-Archives-Hash: f9dc7f504f9da34deaf9f93e09208220 commit: 816535e88e38b049df6358aae11968e0d64ded51 Author: David Seifert gentoo org> AuthorDate: Sat Apr 6 12:53:53 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Apr 6 12:53:53 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=816535e8 sci-libs/mpfi: Version bump to 1.5.3 Closes: https://bugs.gentoo.org/659168 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: David Seifert gentoo.org> sci-libs/mpfi/Manifest | 1 + sci-libs/mpfi/mpfi-1.5.3.ebuild | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/sci-libs/mpfi/Manifest b/sci-libs/mpfi/Manifest index 2924f27c731..8a40087aecb 100644 --- a/sci-libs/mpfi/Manifest +++ b/sci-libs/mpfi/Manifest @@ -1 +1,2 @@ DIST mpfi-1.5.1.tar.bz2 365467 BLAKE2B 9f9a74f44ef9738f875faff7885da6404752d4687a19a85e877195fe2955e27a96192849b6c8ff190c29b7535b72027151cb98f46edf3871c9bb3f4694360fe1 SHA512 498f8b2e114e71c0600f601e4bfef21011e46434d6795e3cd999d38ea9a3d4c66cad2d27e7899629ae422a91b6a776dad2fdbd7c93d51a56f5cfc4ab0e3aeca1 +DIST mpfi-1.5.3.tar.bz2 447256 BLAKE2B 67bb9af362ec96c015571cbdaba09befc2241e0113b6177dd76eec97b619bbf9c924ba4d16583df664cafdb1a78c8700712e30633e91e5ae6f1d5e084c3ede5c SHA512 9c3cdf665fccff8b383c96827f4acb7aa62efdf7854cff271455273f00f8e7ecf84fbe191b02e5f51fe067aaae564fd2a0add062070ff5c1f542d61a021f967d diff --git a/sci-libs/mpfi/mpfi-1.5.3.ebuild b/sci-libs/mpfi/mpfi-1.5.3.ebuild new file mode 100644 index 00000000000..f3981fb6316 --- /dev/null +++ b/sci-libs/mpfi/mpfi-1.5.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit out-of-source + +DESCRIPTION="Multiple precision interval arithmetic library based on MPFR" +HOMEPAGE="http://perso.ens-lyon.fr/nathalie.revol/software.html" +SRC_URI="https://gforge.inria.fr/frs/download.php/37331/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +DEPEND=" + >=dev-libs/gmp-4.1.2:0= + >=dev-libs/mpfr-2.4:0=" +RDEPEND="${DEPEND}" + +my_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable static-libs static) +} + +my_src_install() { + default + + if ! use static-libs; then + find "${D}" -name '*.la' -delete || die + fi +}