Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/arb/
Date: Wed, 02 Feb 2022 11:30:54
Message-Id: 1643801434.160e3b15690cd14bfa268eced01a75f3a8062463.grozin@gentoo
1 commit: 160e3b15690cd14bfa268eced01a75f3a8062463
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 2 11:30:34 2022 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 2 11:30:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160e3b15
7
8 sci-mathematics/arb: bump to 2.22.1
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 sci-mathematics/arb/Manifest | 1 +
14 sci-mathematics/arb/arb-2.22.1.ebuild | 33 +++++++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/sci-mathematics/arb/Manifest b/sci-mathematics/arb/Manifest
18 index 35013f249603..0e420ec7abec 100644
19 --- a/sci-mathematics/arb/Manifest
20 +++ b/sci-mathematics/arb/Manifest
21 @@ -1,2 +1,3 @@
22 DIST arb-2.19.0.tar.gz 1606463 BLAKE2B 85d832113ae42737a460198cbf485f825a9435963a888c0d0ab87b7ed7277d158480b573fd8ace42484dd4767bf4f1a372f637cfff01f18c105fd2b62d0d019e SHA512 199d1a26edd01e3b30f7aef69a9ae29456e3db384037744a1e073007ddb93a248873dfe83f3e48f9de58a9d17ebd7dc9a22a058f4adf766599d01d7eb17db204
23 DIST arb-2.21.0.tar.gz 1842021 BLAKE2B 1ab3c4d18eb1918eaee9ea9aff68d82fc33a136ff5612e5173bf0cc29e5753f2c002256d68ae7983b5677d5082ab6849c68755e7544cee24144ca4e84e4d8411 SHA512 e441f8325d3095f1d568ebf9018520aedb25b6a066678e870942efcc8ac005dbf10cdffe42bc4fdbce3ba3ac397241c1d92fb54556e444243bd56dd3d5d72664
24 +DIST arb-2.22.1.tar.gz 1906319 BLAKE2B a302fe35ce5820f8cd7f98831906e9a114e120e6cfd24f42c9d76c9cb67cb232bf9b6b369801d201536552daa8cb7310bbabb7f8924a67d416ada4d37d1fcee1 SHA512 e5092b1b3f828d21a5e18722004aac5af4268b4bdce1d2a7e858485ca59ed77b32661678e229e7a44ebd29678aebe9e6b591f0dd3e1a9751460fc5d72980d0c4
25
26 diff --git a/sci-mathematics/arb/arb-2.22.1.ebuild b/sci-mathematics/arb/arb-2.22.1.ebuild
27 new file mode 100644
28 index 000000000000..0c54365c8935
29 --- /dev/null
30 +++ b/sci-mathematics/arb/arb-2.22.1.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +CMAKE_BUILD_TYPE=Release
38 +inherit cmake
39 +
40 +DESCRIPTION="C library for arbitrary-precision interval arithmetic"
41 +HOMEPAGE="https://fredrikj.net/arb/"
42 +SRC_URI="https://github.com/fredrik-johansson/arb/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +IUSE="test"
44 +
45 +RESTRICT="!test? ( test )"
46 +
47 +LICENSE="GPL-2+"
48 +SLOT="0/3"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
50 +
51 +RDEPEND="
52 + dev-libs/gmp:0=
53 + dev-libs/mpfr:0=
54 + sci-mathematics/flint:="
55 +
56 +DEPEND="${RDEPEND}"
57 +
58 +src_configure() {
59 + local mycmakeargs=(
60 + -DBUILD_TESTING="$(usex test)"
61 + )
62 +
63 + cmake_src_configure
64 +}