gui-apps/core*: bump to 4.2.0_alpha; update live

Signed-off-by: Maciej Barć <xgqt@riseup.net>
This commit is contained in:
Maciej Barć
2021-04-07 18:12:00 +02:00
parent 25079ddd44
commit d0a8c98881
61 changed files with 867 additions and 181 deletions

View File

@@ -1,2 +1,3 @@
DIST coregarage-4.0.0.tar.gz 113603 BLAKE2B 2044cc558f886d47f6622bbe853f0a33a01585b72463e948c5515b6803f3a30c600b2bdc2ed1037701b0c30714b9c743b5ac70b898b1f6b56c59a3e58979b306 SHA512 0f7864027af39b567d54f0430f511245d3dd5b18d900e66734bb27e95ffa6ed6d6217fe80f95e8fe9b322bad47628127fa559ed328051ec1c551e77824cfc9f6
DIST coregarage-4.1.0.tar.gz 113599 BLAKE2B 3a4d8748af42fb342626944a43bb1371b06a4f39142c8e7e2f2ff3ef1359e25714ac4ccf9894ee3e219c43600bc2ef3bd887e35b17a6e8c2dc9b6ee74d5dc8ab SHA512 9b15c1147105c0cc068e9559e4c5c89e95497a7026356051b37165a0347725e6310b4d5144238e01f94a7cbbd6a427db8eed37bb457c2804db2b857a9c1de574
DIST coregarage-4.2.0_alpha.tar.gz 101915 BLAKE2B d3552f429b9ff1af132e98660e73f92e648fb1c474e0d15d743a915c39b49921b14b7f212dba93cba66494bf13dc219d6c9a8486a56414f02eb62abe10f568fb SHA512 f23d1eccda1d01f0db5a399310fcce250f8472e45ec3823118ac1f8a22e8a4426c485c23a0bd7e9e6426b67722e59671bf625723f155c4b62fbac43491263409

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PV="${PV/_/-}"
inherit xdg cmake
DESCRIPTION="A settings manager for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
if [[ "${MY_PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
else
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${MY_PV}"
fi
RESTRICT="test"
LICENSE="GPL-3"
SLOT="0"
DEPEND="
app-arch/libarchive-qt
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
gui-libs/libcprime
gui-libs/libcsys
"
RDEPEND="
${DEPEND}
"

View File

@@ -3,18 +3,20 @@
EAPI=7
inherit cmake xdg
MY_PV="${PV/_/-}"
inherit xdg cmake
DESCRIPTION="A settings manager for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
if [[ "${PV}" == *9999* ]]; then
if [[ "${MY_PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
else
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${PV}"
S="${WORKDIR}/${PN}-v${MY_PV}"
fi
RESTRICT="test"
@@ -32,9 +34,3 @@ DEPEND="
RDEPEND="
${DEPEND}
"
src_prepare() {
cmake_src_prepare
sed -i 's/CSuite/X-CSuite/' *.desktop || die
}