From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6DE2E1382C5 for ; Mon, 28 Dec 2020 18:22:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83698E0A97; Mon, 28 Dec 2020 18:22:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6743AE0A97 for ; Mon, 28 Dec 2020 18:22:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5030341381 for ; Mon, 28 Dec 2020 18:22:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C03C49 for ; Mon, 28 Dec 2020 18:22:29 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1609179742.44d6221cbfc85b3b31d877885281ad2131e4477e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libqalculate/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libqalculate/libqalculate-3.15.0-r1.ebuild sci-libs/libqalculate/libqalculate-3.15.0.ebuild X-VCS-Directories: sci-libs/libqalculate/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 44d6221cbfc85b3b31d877885281ad2131e4477e X-VCS-Branch: master Date: Mon, 28 Dec 2020 18:22:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 467e54be-f7b1-4d98-99e5-416779836892 X-Archives-Hash: 013e617eb8ca07a9ec6516b41b242e5e commit: 44d6221cbfc85b3b31d877885281ad2131e4477e Author: David Seifert gentoo org> AuthorDate: Mon Dec 28 18:22:22 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Dec 28 18:22:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d6221c 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 gentoo.org> ...3.15.0.ebuild => libqalculate-3.15.0-r1.ebuild} | 29 +++++++++++----------- 1 file 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 similarity index 76% rename from sci-libs/libqalculate/libqalculate-3.15.0.ebuild rename to sci-libs/libqalculate/libqalculate-3.15.0-r1.ebuild index 52575b8238b..822797484de 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 }