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