From 13f7f0d20941e284d5c1bb86065898aca163c514 Mon Sep 17 00:00:00 2001 From: Takuya Wakazono Date: Sat, 13 Jan 2024 20:44:08 +0900 Subject: [PATCH] gui-apps/corehunt: add 4.5.0, live sync Signed-off-by: Takuya Wakazono --- gui-apps/corehunt/Manifest | 1 + gui-apps/corehunt/corehunt-4.5.0.ebuild | 29 +++++++++++++++++++++++++ gui-apps/corehunt/corehunt-9999.ebuild | 18 +++++---------- 3 files changed, 36 insertions(+), 12 deletions(-) create mode 100644 gui-apps/corehunt/corehunt-4.5.0.ebuild diff --git a/gui-apps/corehunt/Manifest b/gui-apps/corehunt/Manifest index 123dda587c..c5da576fbb 100644 --- a/gui-apps/corehunt/Manifest +++ b/gui-apps/corehunt/Manifest @@ -1 +1,2 @@ DIST corehunt-4.2.0.tar.gz 51302 BLAKE2B dc45352a9affcb0ea2df974a9a6ae4219b9d1086793b8c33125fdd7e52f59452989f20c263b6ac863d695fd274987dad9aa6158b9a261f19c16066c12e7f9da8 SHA512 e2d45e317947888b14213581d653047d261dc06ac6888e3f3dcf005cd837959250938b6eb3c10027ef018fe9a6878ab4115be61932a1f02255a637a2afef01cb +DIST corehunt-v4.5.0.tar.bz2 49376 BLAKE2B b58664866466778182bd5c1a365023e94bd1ee972976292f97a37b9ed664c274388bc7ccbc3ef314f001335fb4460e657164b7eda77dba5e49abfaddaf6c108e SHA512 990b346e579cce5bcb9e64388ab4af63baaee737b65a9d16b9b584fab519e473237589ab0ee977cde39da17dfebc9896efbe2fb6a02e77af9ac0b8651cac20c3 diff --git a/gui-apps/corehunt/corehunt-4.5.0.ebuild b/gui-apps/corehunt/corehunt-4.5.0.ebuild new file mode 100644 index 0000000000..a87a9df5b2 --- /dev/null +++ b/gui-apps/corehunt/corehunt-4.5.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg cmake + +DESCRIPTION="A file finder utility for C Suite" +HOMEPAGE="https://gitlab.com/cubocore/coreapps/corehunt" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/corehunt.git" +else + SRC_URI="https://gitlab.com/cubocore/coreapps/corehunt/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" + +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + gui-libs/libcprime +" +RDEPEND="${DEPEND}" diff --git a/gui-apps/corehunt/corehunt-9999.ebuild b/gui-apps/corehunt/corehunt-9999.ebuild index 9ecd013f9f..a87a9df5b2 100644 --- a/gui-apps/corehunt/corehunt-9999.ebuild +++ b/gui-apps/corehunt/corehunt-9999.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -MY_PV="${PV/_/-}" +EAPI=8 inherit xdg cmake @@ -12,24 +10,20 @@ HOMEPAGE="https://gitlab.com/cubocore/coreapps/corehunt" if [[ "${PV}" == *9999* ]]; then inherit git-r3 - EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git" + EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/corehunt.git" else - SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://gitlab.com/cubocore/coreapps/corehunt/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-v${MY_PV}" + S="${WORKDIR}/${PN}-v${PV}" fi -RESTRICT="test" LICENSE="GPL-3" SLOT="0" DEPEND=" - dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 gui-libs/libcprime " -RDEPEND=" - ${DEPEND} -" +RDEPEND="${DEPEND}"