From 9a17cb68423bcca9a8ac3bfb7307e652037031af Mon Sep 17 00:00:00 2001 From: Takuya Wakazono Date: Sat, 13 Jan 2024 20:45:18 +0900 Subject: [PATCH] gui-apps/corepins: add 4.5.0, live sync Signed-off-by: Takuya Wakazono --- gui-apps/corepins/Manifest | 1 + gui-apps/corepins/corepins-4.5.0.ebuild | 29 +++++++++++++++++++++++++ gui-apps/corepins/corepins-9999.ebuild | 17 +++++---------- 3 files changed, 36 insertions(+), 11 deletions(-) create mode 100644 gui-apps/corepins/corepins-4.5.0.ebuild diff --git a/gui-apps/corepins/Manifest b/gui-apps/corepins/Manifest index cbe0c0bb8d..5efc754f08 100644 --- a/gui-apps/corepins/Manifest +++ b/gui-apps/corepins/Manifest @@ -1 +1,2 @@ DIST corepins-4.2.0.tar.gz 53287 BLAKE2B 7ca28ca7f92e34916be46079ad5d1cb2ab6a835ec3c2bfcece322c61813979c2be1427e4deddf53fcde2e03a27f9c8e53eb1039dd42c83dd57730809fc6575d5 SHA512 2ab3eb00541fe85ed6cf0d5f11ea54703085dcba36654acbf867b637ead9e67180081561fb6127b850489700cb9915c7c160e94319f15e42a7b951a4e9ffa670 +DIST corepins-v4.5.0.tar.bz2 51454 BLAKE2B 7efbb252b4f48630d4cbe6997fff7472ff442dbb3cc03311398b77cbcb1dbba72306f1605f05226318e9a632375bd8fabb1cc794c72d18e41d26cc9a625d10c8 SHA512 bd8d940a8fc186068abf38a61bb415b4e91b4cbeaeed0bd0b79fb436969de36a0416e3ec8ff8f9a0609ca7a8ed195e8cc751c30d155499c6862f74a7a1ddb780 diff --git a/gui-apps/corepins/corepins-4.5.0.ebuild b/gui-apps/corepins/corepins-4.5.0.ebuild new file mode 100644 index 0000000000..c329751e84 --- /dev/null +++ b/gui-apps/corepins/corepins-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 bookmarking app for C Suite" +HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepins" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/corepins.git" +else + SRC_URI="https://gitlab.com/cubocore/coreapps/corepins/-/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/corepins/corepins-9999.ebuild b/gui-apps/corepins/corepins-9999.ebuild index 612d9ec460..c329751e84 100644 --- a/gui-apps/corepins/corepins-9999.ebuild +++ b/gui-apps/corepins/corepins-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/corepins" 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/corepins.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/corepins/-/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}"