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 corestats-4.0.0.tar.gz 99029 BLAKE2B 88ca6d3d1f8b45e7817e1ebac8ba8994d18aed8469600e3f63b18029b66ab33d32cf0379f6c169a432f95ba6cad92fd434229cd29a4927d9798b70018ff67568 SHA512 7a31102a0a22f464f9bc03aebad9112df8eb3f48c428b4099512b7dcc044c368706be7cdf0059d8a1d1554946d5cbd6cb64ab58639e125c054f4d746459bcf5a
DIST corestats-4.1.0.tar.gz 99006 BLAKE2B 897d2ffb13b10b03b21fbff3538654ae9eb4c1d434cdf821d7f7bd8771ceb5097311e4119effbef87979ef432d8ed535d63c4d2942ee89be0c65d07547e188fa SHA512 2829e052a815f516667b211cac57dd9f55c181cc040036602c31dc758e275f05f7f4038c5425b239fc9fd160307e0bfebe9aedc39226a58d5964d6c76d498a04
DIST corestats-4.2.0_alpha.tar.gz 103581 BLAKE2B ac5d61b2068a2cb0c1579e9221f22b6581c9e47869bfac7e8f4823937e964a00fdd814cf413d3bc8f27d156cdf379f6ae629b7174ea49d645b1694ff5477dd85 SHA512 7b367ea7bbf0a9a3e5cbfb30902de0160b5bdb9d68ec86728cf17f6f85c8e0c87842e08e8b19b9fb3863ded9e6d03333a6bfc4804259c6b6c851a87a73d44273

View File

@@ -0,0 +1,37 @@
# 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 system resource viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestats"
if [[ "${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="
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
gui-libs/libcprime
gui-libs/libcsys
sys-apps/lm-sensors
"
RDEPEND="
${DEPEND}
"

View File

@@ -3,7 +3,9 @@
EAPI=7
inherit cmake xdg
MY_PV="${PV/_/-}"
inherit xdg cmake
DESCRIPTION="A system resource viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestats"
@@ -12,9 +14,9 @@ if [[ "${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"
@@ -33,9 +35,3 @@ DEPEND="
RDEPEND="
${DEPEND}
"
src_prepare() {
cmake_src_prepare
sed -i 's/CSuite/X-CSuite/' *.desktop || die
}