From 7e2ab2ebc1929a6b8168f67c0d4ced50b2ba59df Mon Sep 17 00:00:00 2001 From: Takuya Wakazono Date: Sat, 13 Jan 2024 20:46:15 +0900 Subject: [PATCH] gui-apps/coretime: add 4.5.0, live sync Signed-off-by: Takuya Wakazono --- gui-apps/coretime/Manifest | 1 + gui-apps/coretime/coretime-4.5.0.ebuild | 31 +++++++++++++++++++++++++ gui-apps/coretime/coretime-9999.ebuild | 18 ++++++-------- 3 files changed, 39 insertions(+), 11 deletions(-) create mode 100644 gui-apps/coretime/coretime-4.5.0.ebuild diff --git a/gui-apps/coretime/Manifest b/gui-apps/coretime/Manifest index 8825ac0a07..7c79180826 100644 --- a/gui-apps/coretime/Manifest +++ b/gui-apps/coretime/Manifest @@ -1 +1,2 @@ DIST coretime-4.2.0.tar.gz 442936 BLAKE2B c11cff52bdbe3841f99573937e549e37bb8bc62006ac25a63c30e105bceb3e45a5ba1bbc8227453a75d24818f329bd32bab1717062a9969bdce558c8cce593ea SHA512 e647fff8547a6f086d54287b26852fcc3f076b5661e8b41cd2939a8f20965c984c621715af1b9061dc3e1e7e477206660bfdd4299cabca14cdc88a2faf637bc9 +DIST coretime-v4.5.0.tar.bz2 454335 BLAKE2B 3580bf0ee45dbed5c15660842167c5ea46a91780c27104dd514771574a3fa79c61a8b2c464f46ddffb60a2852f9e9af6ee926167cd12ef854689ded84de67a56 SHA512 71f6f541c668cf03a2e71f04842c4061f5fa0a3e2879e18566203319f885b272af4723845f2a604d9db861dbce88750dd6c619a87651137d139ebede3080ee6b diff --git a/gui-apps/coretime/coretime-4.5.0.ebuild b/gui-apps/coretime/coretime-4.5.0.ebuild new file mode 100644 index 0000000000..c3bd68dd69 --- /dev/null +++ b/gui-apps/coretime/coretime-4.5.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg cmake + +DESCRIPTION="A time related task manager for C Suite" +HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretime" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/coretime.git" +else + SRC_URI="https://gitlab.com/cubocore/coreapps/coretime/-/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/qtmultimedia:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + gui-libs/libcprime +" +RDEPEND="${DEPEND}" diff --git a/gui-apps/coretime/coretime-9999.ebuild b/gui-apps/coretime/coretime-9999.ebuild index e152ee0044..c3bd68dd69 100644 --- a/gui-apps/coretime/coretime-9999.ebuild +++ b/gui-apps/coretime/coretime-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,14 +10,13 @@ HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretime" 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/coretime.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/coretime/-/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" @@ -27,9 +24,8 @@ DEPEND=" dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 + dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 gui-libs/libcprime " -RDEPEND=" - ${DEPEND} -" +RDEPEND="${DEPEND}"