gui-apps/corestuff: 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:58 +09:00
parent a94004e0f1
commit c7216d62ef
No known key found for this signature in database
GPG Key ID: 91CA2604719DDA61
3 changed files with 55 additions and 12 deletions

View File

@ -1 +1,2 @@
DIST corestuff-4.2.0.tar.gz 1247589 BLAKE2B 9dff4a40a37e8b89ea59ed7c51d2016cf18386287597a2106afc92245afcb1f8708955af66c89cd830a2ab8fec640c05df67231f79d4060c57abe6778c6bd06f SHA512 88a7d5035b05d7b74a0dbe38b01c01b84cf614e7188ab94cf287828839a7210b622b8be48f3064b4e0f1fd77d13ba065a7ba5faee32e6f056c79706c6a11bb22 DIST corestuff-4.2.0.tar.gz 1247589 BLAKE2B 9dff4a40a37e8b89ea59ed7c51d2016cf18386287597a2106afc92245afcb1f8708955af66c89cd830a2ab8fec640c05df67231f79d4060c57abe6778c6bd06f SHA512 88a7d5035b05d7b74a0dbe38b01c01b84cf614e7188ab94cf287828839a7210b622b8be48f3064b4e0f1fd77d13ba065a7ba5faee32e6f056c79706c6a11bb22
DIST corestuff-v4.5.0.tar.bz2 1192001 BLAKE2B 5600c5e27b34d506d5951eb3a095501007be5a072a25680d1ab361eb9337b5c13afa2e2d56112ada07d9a81012050ac5deebf05a34b82944f8ea4b252998993d SHA512 c691a23ad8ef45941fe28f2eff554a668b2fb93c274609556d3bf5994406712e89db94f2b35f1520f82e57980a8a5ede6189b7152f05e80c3f3d65006ae7bfdf

View File

@ -0,0 +1,39 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg cmake
DESCRIPTION="An activity viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestuff"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/corestuff.git"
else
SRC_URI="https://gitlab.com/cubocore/coreapps/corestuff/-/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/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
gui-libs/libcprime
gui-libs/libcsys
kde-frameworks/kglobalaccel:5
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libxcb:=
x11-libs/libXi
x11-libs/xcb-util-wm
"
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 # Distributed under the terms of the GNU General Public License v2
EAPI=7 EAPI=8
MY_PV="${PV/_/-}"
inherit xdg cmake inherit xdg cmake
@ -12,25 +10,30 @@ HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestuff"
if [[ "${PV}" == *9999* ]]; then if [[ "${PV}" == *9999* ]]; then
inherit git-r3 inherit git-r3
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git" EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/corestuff.git"
else 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/corestuff/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
KEYWORDS="~amd64" KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${MY_PV}" S="${WORKDIR}/${PN}-v${PV}"
fi fi
RESTRICT="test"
LICENSE="GPL-3" LICENSE="GPL-3"
SLOT="0" SLOT="0"
DEPEND=" DEPEND="
dev-qt/qtconcurrent:5 dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5 dev-qt/qtx11extras:5
gui-libs/libcprime gui-libs/libcprime
gui-libs/libcsys gui-libs/libcsys
kde-frameworks/kglobalaccel:5 kde-frameworks/kglobalaccel:5
x11-libs/libX11
x11-libs/libXcomposite x11-libs/libXcomposite
x11-libs/libxcb:=
x11-libs/libXi
x11-libs/xcb-util-wm
" "
RDEPEND=" RDEPEND="${DEPEND}"
${DEPEND}
"