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 coreimage-4.0.0.tar.gz 403995 BLAKE2B d8208c774987e3585563f92435663bc29121e50581263a1e4aac0f6fe78c9d037430c843ad442743b83b07f5b05a64987a81a0cb5e768c19825bd3c106c507f9 SHA512 11c3e021178324b91f27d5b541f716158a405bd9b8c700d467ee39647ada5fd4bc300e7b538e9afb07a10eda1b2800efec2d9500ab24f2273a2c95e9a5f3d987
DIST coreimage-4.1.0.tar.gz 404411 BLAKE2B 3f5a825f2e591b2abd6f0fca0cbf0cc15e6ed7a3abf72eba1ac1994595b51659bff869d076c51f5c5028612b788015ee3edd984adc26e905857de9b38d3f552d SHA512 4ebe1ff2d9baa12b09e345cf3748a1ce35eb927b9de4e7c486a73775d629f21e7c2a6ebf3060311cd818cf5d54572ede0dba64265591feea17a3a6e328b7849b
DIST coreimage-4.2.0_alpha.tar.gz 406569 BLAKE2B d305bd809522120267049de84acd6f044490ab1d229c413bf3be0246fcf592ce7bb260fdf71012a20bdbcce90bb159ef222a2e78098fa8e6e307104704ca6eb0 SHA512 1784f35fd3bd260d5e81fecd5db10f9cd38c1f190eff3fa86d096ba8c99497312d5cbdf2393fc67be673c581da0a58e0b6ccb0eba627cce1b85f16abeafc0e56

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="An image viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage"
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/qtconcurrent:5
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
gui-libs/libcprime
gui-libs/libcsys
"
RDEPEND="
${DEPEND}
"

View File

@@ -3,7 +3,9 @@
EAPI=7
inherit cmake xdg
MY_PV="${PV/_/-}"
inherit xdg cmake
DESCRIPTION="An image viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage"
@@ -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"
@@ -32,9 +34,3 @@ DEPEND="
RDEPEND="
${DEPEND}
"
src_prepare() {
cmake_src_prepare
sed -i 's/CSuite/X-CSuite/' *.desktop || die
}