Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libqalculate/
Date: Tue, 04 May 2021 22:06:33
Message-Id: 1620165977.7f25716278c46ccca164c35b8ae47eac980f7540.sam@gentoo
1 commit: 7f25716278c46ccca164c35b8ae47eac980f7540
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Tue May 4 11:41:14 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue May 4 22:06:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f257162
7
8 sci-libs/libqalculate: Bump to 3.18.0
9
10 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sci-libs/libqalculate/Manifest | 1 +
14 sci-libs/libqalculate/libqalculate-3.18.0.ebuild | 65 ++++++++++++++++++++++++
15 2 files changed, 66 insertions(+)
16
17 diff --git a/sci-libs/libqalculate/Manifest b/sci-libs/libqalculate/Manifest
18 index c00897dc4e1..fc34a848ba5 100644
19 --- a/sci-libs/libqalculate/Manifest
20 +++ b/sci-libs/libqalculate/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libqalculate-3.16.1.tar.gz 1756176 BLAKE2B b09e06a4d89249bb3e38a47ed47acc7598bc62e966673a1eb175641b1018021199dbbcd38266301ec8b2d3c55747378adfde3db4e25e58771be162905cb493dc SHA512 3cc7ba66493252015b9d33835188c236b10afdce5f23021a5e686609609265aed81d592815ee6a172c269a0f144a3203c954435fea8ddb82637453d5c98cd05a
23 DIST libqalculate-3.17.0.tar.gz 1770500 BLAKE2B 247c74db32e63437c556dd60f00f56acf53d9ba90ea1027b34b98b455215e6c03e3ee34116b6d3989fa43b449e18b6f2ebaed67f9dff36f08dd8b38c685c6586 SHA512 b204dc44b6fdb2b72d3c85840fee38482db071f0f8241420ea24093dcdcc377c66f516c571827fbede40237618a53153a75bb7afee7f3bee7a1a71aedd779a11
24 +DIST libqalculate-3.18.0.tar.gz 1788899 BLAKE2B 7701dab4d11c9d54f95454cd7be530cfa9f5a8dbe438dac6d734c294ce1eb5be1f4fdb30ef6d041d19f389df88dce4fa7dea68d555ad441992498685bfb3b919 SHA512 37d870f6fd147745747ac971758a512e85e33c42605b99ac4ba68b53ca42a6f0da7ede3869fe3ea4e47d77961e826ad999e0f0c0d87039042563f124bea1250e
25
26 diff --git a/sci-libs/libqalculate/libqalculate-3.18.0.ebuild b/sci-libs/libqalculate/libqalculate-3.18.0.ebuild
27 new file mode 100644
28 index 00000000000..94aa33f3f88
29 --- /dev/null
30 +++ b/sci-libs/libqalculate/libqalculate-3.18.0.ebuild
31 @@ -0,0 +1,65 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DESCRIPTION="A modern multi-purpose calculator library"
38 +HOMEPAGE="https://qalculate.github.io/"
39 +SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0/21"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
44 +IUSE="curl icu gnuplot readline"
45 +
46 +DEPEND="
47 + dev-libs/gmp:0=
48 + dev-libs/libxml2:2
49 + dev-libs/mpfr:0=
50 + virtual/libiconv
51 + curl? ( net-misc/curl )
52 + icu? ( dev-libs/icu:= )
53 + readline? ( sys-libs/readline:0= )"
54 +RDEPEND="${DEPEND}
55 + gnuplot? ( >=sci-visualization/gnuplot-3.7 )"
56 +BDEPEND="
57 + dev-util/intltool
58 + sys-devel/gettext
59 + virtual/pkgconfig"
60 +
61 +src_prepare() {
62 + default
63 +
64 + cat >po/POTFILES.skip <<-EOF || die
65 + # Required by make check
66 + data/currencies.xml.in
67 + data/datasets.xml.in
68 + data/elements.xml.in
69 + data/functions.xml.in
70 + data/planets.xml.in
71 + data/prefixes.xml.in
72 + data/units.xml.in
73 + data/variables.xml.in
74 + src/defs2doc.cc
75 + EOF
76 +}
77 +
78 +src_configure() {
79 + econf \
80 + --disable-static \
81 + $(use_with curl libcurl) \
82 + $(use_with gnuplot gnuplot-call) \
83 + $(use_with icu) \
84 + $(use_with readline)
85 +}
86 +
87 +src_install() {
88 + # docs/reference/Makefile.am -> referencedir=
89 + emake \
90 + DESTDIR="${D}" \
91 + referencedir="${EPREFIX}/usr/share/doc/${PF}/html" \
92 + install
93 + einstalldocs
94 +
95 + find "${ED}" -name '*.la' -delete || die
96 +}