diff options
author | David Seifert <soap@gentoo.org> | 2020-12-28 19:22:22 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-12-28 19:22:22 +0100 |
commit | 44d6221cbfc85b3b31d877885281ad2131e4477e (patch) | |
tree | 2555f4f94daf4a3dc3315698abf8c21833b1807d /sci-libs | |
parent | app-admin/ps_mem: drop old (diff) | |
download | gentoo-44d6221cbfc85b3b31d877885281ad2131e4477e.tar.gz gentoo-44d6221cbfc85b3b31d877885281ad2131e4477e.tar.bz2 gentoo-44d6221cbfc85b3b31d877885281ad2131e4477e.zip |
sci-libs/libqalculate: [QA] Fix subslot
* Add missing || die too
Closes: https://bugs.gentoo.org/689194
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/libqalculate/libqalculate-3.15.0-r1.ebuild (renamed from sci-libs/libqalculate/libqalculate-3.15.0.ebuild) | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/sci-libs/libqalculate/libqalculate-3.15.0.ebuild b/sci-libs/libqalculate/libqalculate-3.15.0-r1.ebuild index 52575b8238bd..822797484de7 100644 --- a/sci-libs/libqalculate/libqalculate-3.15.0.ebuild +++ b/sci-libs/libqalculate/libqalculate-3.15.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -8,7 +8,7 @@ HOMEPAGE="https://qalculate.github.io/" SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz" LICENSE="GPL-2" -SLOT="0/22" +SLOT="0/21" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="curl icu gnuplot readline" @@ -30,17 +30,17 @@ BDEPEND=" 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/prefixes.xml.in - data/units.xml.in - data/variables.xml.in - src/defs2doc.cc + cat >po/POTFILES.skip <<-EOF || die + # 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/prefixes.xml.in + data/units.xml.in + data/variables.xml.in + src/defs2doc.cc EOF } @@ -59,8 +59,7 @@ src_install() { DESTDIR="${D}" \ referencedir="${EPREFIX}/usr/share/doc/${PF}/html" \ install - - dodoc AUTHORS ChangeLog NEWS README* TODO + einstalldocs find "${ED}" -name '*.la' -delete || die } |