From: "Matthias Maier" <tamiko@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libqalculate/
Date: Sun, 30 Jun 2019 18:20:17 +0000 (UTC) [thread overview]
Message-ID: <1561918766.4ec4eb3c96861cfc89b7884bc9ec13b2bd1d4410.tamiko@gentoo> (raw)
commit: 4ec4eb3c96861cfc89b7884bc9ec13b2bd1d4410
Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 30 16:48:17 2019 +0000
Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Sun Jun 30 18:19:26 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ec4eb3c
sci-libs/libqalculate: version bump to 3.2.0
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
sci-libs/libqalculate/Manifest | 1 +
sci-libs/libqalculate/libqalculate-3.2.0.ebuild | 64 +++++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/sci-libs/libqalculate/Manifest b/sci-libs/libqalculate/Manifest
index e9ceef9c316..969f811ebeb 100644
--- a/sci-libs/libqalculate/Manifest
+++ b/sci-libs/libqalculate/Manifest
@@ -1,3 +1,4 @@
DIST libqalculate-0.9.9.tar.gz 1509180 BLAKE2B 3f309add80ddb6b21730eab25d37c2d8fee163a79768a09ec5e7e5d329aa11ed9dafbf77f4ce194a96c2ac6a3b55a9c0d16755d5e106123cc2a5f931f6872d91 SHA512 c7692dcd91e0a7aea8184ca5366a3caf704b6e716c9e8552f4214ce7fc3157cf127daf7a063196383e4d5a99f8703486f2282c7fb01acafee5e1b3d8993de384
DIST libqalculate-2.2.0.tar.gz 1717207 BLAKE2B 020ca544683ff140ab5f8256a5a955c895a6ea09a581e9e75ab6c0a0657886c352a1ec2d34400057fe80004481d3198998613113ca40fb4feebfca010445dced SHA512 e6f3693e4dba2beffca300b673657b90037a6b7acc5bbd4e659863f4f5aec148d6d385fc3c666b16b2be713d0a8ad1b4d7fda557cef0e2be340ca2435f62aae7
DIST libqalculate-2.8.1.tar.gz 1961535 BLAKE2B 074d83a44cbc6cb5d8afe5121e4c34cec46f2f6fecf046f6b4e67c6ebc612030ccbd0f42c303cc675267374502ecb3e831c9bbfca0f13d339e31fb8933a99b7a SHA512 a258bf4f67db70263626ac77822afc75fd7a9e5af2feb1930314daff219865b28c43e82fef6ceae4f3f23957447d6eaebdc709e606d28457bca0f47eefb9274a
+DIST libqalculate-3.2.0.tar.gz 2035352 BLAKE2B 4ad9f1acaaa34693e3167514d16193b06af5a2d441946e636439cd9374c0061e0f20e72126a2cb020fed2e7c82e7144636a7eb545196bd6879af5a09320c3245 SHA512 6d0e1bbc1c9e4436208cd0ea855cc1d90b8a6d0525cd25bc9414db6e610e1e48aa84a9b552248926bd3c6f91db4997afb60658a5579502bac7194178e36fb857
diff --git a/sci-libs/libqalculate/libqalculate-3.2.0.ebuild b/sci-libs/libqalculate/libqalculate-3.2.0.ebuild
new file mode 100644
index 00000000000..807b7bed7d0
--- /dev/null
+++ b/sci-libs/libqalculate/libqalculate-3.2.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A modern multi-purpose calculator library"
+HOMEPAGE="https://qalculate.github.io/"
+SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0/20"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="curl icu gnuplot readline static-libs"
+
+COMMON_DEPEND="
+ dev-libs/gmp:0=
+ dev-libs/libxml2:2
+ dev-libs/mpfr:0=
+ virtual/libiconv
+ curl? ( net-misc/curl )
+ icu? ( dev-libs/icu:= )
+ readline? ( sys-libs/readline:0= )"
+DEPEND="${COMMON_DEPEND}
+ dev-util/intltool
+ sys-devel/gettext
+ virtual/pkgconfig"
+RDEPEND="${COMMON_DEPEND}
+ gnuplot? ( >=sci-visualization/gnuplot-3.7 )"
+
+src_prepare() {
+ default
+
+ cat >po/POTFILES.skip <<-EOF
+ # Required by make check
+ data/currencies.xml.in
+ data/datasets.xml.in
+ data/elements.xml.in
+ data/functions.xml.in
+ data/planets.xml.in
+ data/units.xml.in
+ data/variables.xml.in
+ src/defs2doc.cc
+ EOF
+}
+
+src_configure() {
+ econf \
+ $(use_enable static-libs static) \
+ $(use_with curl libcurl) \
+ $(use_with icu) \
+ $(use_with readline)
+}
+
+src_install() {
+ # docs/reference/Makefile.am -> referencedir=
+ emake \
+ DESTDIR="${D}" \
+ referencedir="${EPREFIX}/usr/share/doc/${PF}/html" \
+ install
+
+ dodoc AUTHORS ChangeLog NEWS README* TODO
+
+ find "${ED}" -name '*.la' -delete || die
+}
next reply other threads:[~2019-06-30 18:20 UTC|newest]
Thread overview: 128+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-30 18:20 Matthias Maier [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-14 3:29 [gentoo-commits] repo/gentoo:master commit in: sci-libs/libqalculate/ Sam James
2024-11-28 15:16 Sam James
2024-11-28 14:50 Jakov Smolić
2024-11-27 15:30 Nowa Ammerlaan
2024-10-15 6:19 Sam James
2024-10-14 0:16 Sam James
2024-09-24 16:15 Arthur Zamarin
2024-09-23 9:13 Arthur Zamarin
2024-09-23 9:13 Arthur Zamarin
2024-09-23 9:13 Arthur Zamarin
2024-09-23 9:13 Arthur Zamarin
2024-09-23 8:26 Arthur Zamarin
2024-08-28 7:53 Andrew Ammerlaan
2024-06-05 19:59 Arthur Zamarin
2024-04-16 23:38 Sam James
2024-04-16 22:28 Sam James
2024-04-12 11:46 Andrew Ammerlaan
2024-01-06 18:46 Michał Górny
2023-12-17 0:05 Sam James
2023-12-16 16:17 Arthur Zamarin
2023-12-16 16:17 Arthur Zamarin
2023-12-16 16:17 Arthur Zamarin
2023-10-14 10:30 Sam James
2023-09-18 11:19 Sam James
2023-09-18 11:14 Sam James
2023-09-05 11:15 Andrew Ammerlaan
2023-09-05 11:15 Andrew Ammerlaan
2023-06-09 16:35 Arthur Zamarin
2023-06-09 16:35 Arthur Zamarin
2023-06-09 16:13 Arthur Zamarin
2023-06-09 15:27 Arthur Zamarin
2023-06-09 14:24 Arthur Zamarin
2023-05-06 10:21 Sam James
2023-04-25 11:09 Andrew Ammerlaan
2023-03-04 9:05 Arthur Zamarin
2023-03-04 8:18 Arthur Zamarin
2023-03-04 7:17 Arthur Zamarin
2023-03-04 6:26 Arthur Zamarin
2023-03-04 6:21 Arthur Zamarin
2023-01-13 18:20 Arthur Zamarin
2022-12-29 23:01 Sam James
2022-12-29 23:01 Sam James
2022-12-29 23:01 Sam James
2022-12-29 23:01 Sam James
2022-08-24 2:18 Sam James
2022-05-28 6:09 Sam James
2022-04-05 2:36 Sam James
2022-04-05 2:32 Sam James
2022-01-10 10:54 Arthur Zamarin
2022-01-09 21:01 Jakov Smolić
2022-01-09 20:44 Jakov Smolić
2022-01-09 1:11 Sam James
2022-01-08 12:21 Jakov Smolić
2022-01-08 12:21 Jakov Smolić
2021-12-16 17:02 Jakov Smolić
2021-12-16 7:45 Sam James
2021-12-13 7:08 Agostino Sarubbo
2021-12-13 6:57 Agostino Sarubbo
2021-12-13 5:42 Sam James
2021-12-12 14:35 Jakov Smolić
2021-12-04 1:30 Sam James
2021-12-04 1:26 Sam James
2021-10-14 9:18 Jakov Smolić
2021-09-30 18:45 Jakov Smolić
2021-09-30 18:19 Sam James
2021-09-18 19:51 Sam James
2021-09-14 6:29 Agostino Sarubbo
2021-09-14 6:29 Agostino Sarubbo
2021-09-14 6:28 Agostino Sarubbo
2021-08-03 11:03 Sam James
2021-07-30 15:17 Agostino Sarubbo
2021-07-30 15:14 Agostino Sarubbo
2021-07-29 18:47 Sam James
2021-07-29 17:05 Sam James
2021-07-29 17:05 Sam James
2021-07-29 7:08 Agostino Sarubbo
2021-07-29 6:45 Agostino Sarubbo
2021-07-29 6:40 Agostino Sarubbo
2021-07-29 0:46 Sam James
2021-07-05 22:35 Sam James
2021-05-28 19:39 Agostino Sarubbo
2021-05-28 19:37 Agostino Sarubbo
2021-05-27 16:51 Sergei Trofimovich
2021-05-26 13:03 Sam James
2021-05-26 8:11 Sam James
2021-05-26 6:49 Agostino Sarubbo
2021-05-25 12:33 Sam James
2021-05-04 22:06 Sam James
2021-05-04 22:06 Sam James
2021-05-01 14:06 Sam James
2021-05-01 7:57 Sergei Trofimovich
2021-04-30 23:39 Sam James
2021-04-30 23:37 Sam James
2021-04-30 23:29 Sam James
2021-04-30 15:23 Agostino Sarubbo
2021-03-26 11:30 David Seifert
2021-02-27 16:54 Sam James
2021-02-27 16:16 Sam James
2021-02-26 13:55 Sam James
2021-02-25 13:17 Sam James
2021-02-25 8:20 Sam James
2021-02-24 20:44 Sam James
2021-02-24 20:25 Sam James
2021-01-24 20:06 Sam James
2021-01-24 15:42 Sam James
2021-01-24 13:35 Sam James
2021-01-24 12:10 Agostino Sarubbo
2021-01-24 3:48 Sam James
2021-01-24 0:37 Sam James
2021-01-23 10:43 David Seifert
2020-12-28 18:22 David Seifert
2020-12-28 15:50 David Seifert
2020-12-28 15:50 David Seifert
2019-07-03 10:35 Matthias Maier
2019-07-03 6:35 Agostino Sarubbo
2019-07-02 12:14 Agostino Sarubbo
2019-07-02 10:33 Agostino Sarubbo
2019-07-02 8:24 Sergei Trofimovich
2019-05-28 2:35 Aaron Bauman
2018-11-11 3:52 Michael Palimaka
2018-02-07 0:54 Matthias Maier
2018-02-07 0:54 Matthias Maier
2017-07-29 20:36 Alexis Ballier
2017-02-02 6:18 Jeroen Roovers
2016-12-30 16:47 Agostino Sarubbo
2016-12-05 22:54 Tobias Klausmann
2016-08-03 4:13 Matthias Maier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1561918766.4ec4eb3c96861cfc89b7884bc9ec13b2bd1d4410.tamiko@gentoo \
--to=tamiko@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox