gui-apps/corerenamer: add 4.5.0, live sync

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2024-01-13 20:45:28 +09:00
parent 9a17cb6842
commit 32b55ad575
3 changed files with 36 additions and 11 deletions

View File

@@ -1 +1,2 @@
DIST corerenamer-4.2.0.tar.gz 69601 BLAKE2B c039762c2cd0727e73595c3cfd19aefd54e085053fcd722bda20a98efa975932beba85ed47bbcfefbdff543040c13a094cc8f6d479b69226a737837de0ea7937 SHA512 c04883a9dd615775a05ea28518563bfc7295ea2c103f41c7548e6d30c6d70fc10ed2884fe86e19b2470d830eac172552eb02f161c97b0b099571127594859384
DIST corerenamer-v4.5.0.tar.bz2 70985 BLAKE2B f79e8662d660dbae27fa655d38a23b9ae5665ebed34eb5746a5210e0b7a056a48188c48544a974375873cf9211d12e4d8125883ad74238a60e3decd5d786f931 SHA512 2a5533adc8b690c56de28015f51cde72fe2f6217cd73935c266c4e20fec6c9a88894e2033269efe7b71e4d9404d8caf87bc9062daf2d7dd7d694bf57544c205f

View File

@@ -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 batch file renamer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corerenamer"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/corerenamer.git"
else
SRC_URI="https://gitlab.com/cubocore/coreapps/corerenamer/-/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}"

View File

@@ -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,14 +10,13 @@ HOMEPAGE="https://gitlab.com/cubocore/coreapps/corerenamer"
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/corerenamer.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/corerenamer/-/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"
@@ -29,6 +26,4 @@ DEPEND="
dev-qt/qtwidgets:5
gui-libs/libcprime
"
RDEPEND="
${DEPEND}
"
RDEPEND="${DEPEND}"