gui-apps/coregarage: 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:43:48 +09:00
parent 59a68e5916
commit a028aa01fc
No known key found for this signature in database
GPG Key ID: 91CA2604719DDA61
3 changed files with 40 additions and 13 deletions

View File

@ -1 +1,2 @@
DIST coregarage-4.2.0.tar.gz 102207 BLAKE2B cbd570ba36036e15d198230c3289d27604d43a7298e7f75c59fa412b5c36009941a4d7ed4eb4f5e8fd2af4cbd4bfb257c380ce76c2aa2c698ef54710c1740d47 SHA512 f6c8cbb723f3d49d66c17b860e7002998a88d99da78de566bc40a6af90c0b697ebaf898f16a45a2cfcd92e2e37717cba8ab6b6090daaf1a0f7fcbebb983b34f3
DIST coregarage-v4.5.0.tar.bz2 97632 BLAKE2B 9e138c861b8fe706ac249cf7a235d169b8041d4b267b16da0e56c8dfd6a5ce12c9570a032d1ea9e05737de48849a2bc56907a65879e6cd042c5b5ae6abb8d34e SHA512 b7ec61774e05cd54a8c6ae42e6bbdf65a835fece9e9042a892e10513c5e1f1f53e759fabfff2fe2e56d4063a449983efec44c9a8ceeb0a3834190883b6d04a04

View File

@ -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 settings manager for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/coregarage.git"
else
SRC_URI="https://gitlab.com/cubocore/coreapps/coregarage/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${PV}"
fi
LICENSE="GPL-3"
SLOT="0"
DEPEND="
app-arch/libarchive-qt
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
gui-libs/libcprime
"
RDEPEND="${DEPEND}"

View File

@ -1,25 +1,22 @@
# 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
DESCRIPTION="A settings manager for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
if [[ "${MY_PV}" == *9999* ]]; then
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/coregarage.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/coregarage/-/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,10 +24,8 @@ DEPEND="
app-arch/libarchive-qt
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
gui-libs/libcprime
gui-libs/libcsys
"
RDEPEND="
${DEPEND}
"
RDEPEND="${DEPEND}"