Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libqalculate/
Date: Mon, 28 Dec 2020 18:22:33
Message-Id: 1609179742.44d6221cbfc85b3b31d877885281ad2131e4477e.soap@gentoo
1 commit: 44d6221cbfc85b3b31d877885281ad2131e4477e
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 18:22:22 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 18:22:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d6221c
7
8 sci-libs/libqalculate: [QA] Fix subslot
9
10 * Add missing || die too
11
12 Closes: https://bugs.gentoo.org/689194
13 Package-Manager: Portage-3.0.12, Repoman-3.0.2
14 Signed-off-by: David Seifert <soap <AT> gentoo.org>
15
16 ...3.15.0.ebuild => libqalculate-3.15.0-r1.ebuild} | 29 +++++++++++-----------
17 1 file changed, 14 insertions(+), 15 deletions(-)
18
19 diff --git a/sci-libs/libqalculate/libqalculate-3.15.0.ebuild b/sci-libs/libqalculate/libqalculate-3.15.0-r1.ebuild
20 similarity index 76%
21 rename from sci-libs/libqalculate/libqalculate-3.15.0.ebuild
22 rename to sci-libs/libqalculate/libqalculate-3.15.0-r1.ebuild
23 index 52575b8238b..822797484de 100644
24 --- a/sci-libs/libqalculate/libqalculate-3.15.0.ebuild
25 +++ b/sci-libs/libqalculate/libqalculate-3.15.0-r1.ebuild
26 @@ -1,4 +1,4 @@
27 -# Copyright 1999-2019 Gentoo Authors
28 +# Copyright 1999-2020 Gentoo Authors
29 # Distributed under the terms of the GNU General Public License v2
30
31 EAPI=7
32 @@ -8,7 +8,7 @@ HOMEPAGE="https://qalculate.github.io/"
33 SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz"
34
35 LICENSE="GPL-2"
36 -SLOT="0/22"
37 +SLOT="0/21"
38 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
39 IUSE="curl icu gnuplot readline"
40
41 @@ -30,17 +30,17 @@ BDEPEND="
42 src_prepare() {
43 default
44
45 - cat >po/POTFILES.skip <<-EOF
46 - # Required by make check
47 - data/currencies.xml.in
48 - data/datasets.xml.in
49 - data/elements.xml.in
50 - data/functions.xml.in
51 - data/planets.xml.in
52 - data/prefixes.xml.in
53 - data/units.xml.in
54 - data/variables.xml.in
55 - src/defs2doc.cc
56 + cat >po/POTFILES.skip <<-EOF || die
57 + # Required by make check
58 + data/currencies.xml.in
59 + data/datasets.xml.in
60 + data/elements.xml.in
61 + data/functions.xml.in
62 + data/planets.xml.in
63 + data/prefixes.xml.in
64 + data/units.xml.in
65 + data/variables.xml.in
66 + src/defs2doc.cc
67 EOF
68 }
69
70 @@ -59,8 +59,7 @@ src_install() {
71 DESTDIR="${D}" \
72 referencedir="${EPREFIX}/usr/share/doc/${PF}/html" \
73 install
74 -
75 - dodoc AUTHORS ChangeLog NEWS README* TODO
76 + einstalldocs
77
78 find "${ED}" -name '*.la' -delete || die
79 }