commit: 2c4131d8bd36b05cd8d52b667ceeb9e02e7e7633 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Fri Mar 29 15:17:48 2024 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Fri Mar 29 16:47:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c4131d8
sci-geosciences/gpxlab: EAPI8 bump, add missing die, remove unused eclass Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/35985 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org> .../{gpxlab-0.7.0.ebuild => gpxlab-0.7.0-r1.ebuild} | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/sci-geosciences/gpxlab/gpxlab-0.7.0.ebuild b/sci-geosciences/gpxlab/gpxlab-0.7.0-r1.ebuild similarity index 86% rename from sci-geosciences/gpxlab/gpxlab-0.7.0.ebuild rename to sci-geosciences/gpxlab/gpxlab-0.7.0-r1.ebuild index 46bc19a557dc..56fda8622ff6 100644 --- a/sci-geosciences/gpxlab/gpxlab-0.7.0.ebuild +++ b/sci-geosciences/gpxlab/gpxlab-0.7.0-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PLOCALES="fi ru" -inherit desktop plocale qmake-utils xdg +inherit plocale qmake-utils xdg MY_PN="GPXLab" MY_P="${MY_PN}-${PV}" @@ -12,10 +12,12 @@ MY_P="${MY_PN}-${PV}" DESCRIPTION="An application to display and manage GPS tracks" HOMEPAGE="https://github.com/BourgeoisLab/GPXLab" SRC_URI="https://github.com/BourgeoisLab/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" + LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" -IUSE="" + RDEPEND="dev-qt/qtcore:5 dev-qt/qtwidgets:5 dev-qt/qtgui:5 @@ -24,8 +26,6 @@ RDEPEND="dev-qt/qtcore:5 DEPEND="${RDEPEND}" BDEPEND="dev-qt/linguist-tools:5" -S="${WORKDIR}/${MY_P}" - PATCHES=( "${FILESDIR}"/${PN}-0.7.0.patch ) src_prepare() { @@ -34,9 +34,8 @@ src_prepare() { plocale_find_changes ${MY_PN}/locale "${PN}_" '.ts' rm_ts() { - sed -e "s|locale/${PN}_${1}.ts||" -i ${MY_PN}/${MY_PN}.pro + sed -e "s|locale/${PN}_${1}.ts||" -i ${MY_PN}/${MY_PN}.pro || die } - plocale_for_each_disabled_locale rm_ts }
