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 coreshot-4.0.0.tar.gz 1300298 BLAKE2B 9742b4dcfbd3257309bcaa517792129b933ee8ce2279184fbb8e69ba4d43e5b3116c1815586e4aa81dc015d7c18eae841a8ffadd467276d01e3f4eb88ab865ba SHA512 c8af3134ec35ef7355f67991fa8bbc96d8752296c199cca21b8193a21844ea4b445a5dcca6a37cb01ccc5054eb742534d2c9d59f7aebc2e95f17faff78c8653e
DIST coreshot-4.1.0.tar.gz 1300320 BLAKE2B 4224967cefd300aecb47112100e2d8800c19fc2919338f3230ac46c2392dc343262e2dd90b99965023f3e3202802a089588fd54c6e376e276cf2da4f4293200d SHA512 7a86f723c6b41e1551fb908b5bcdc7031e01121b282fed6225f6f74746f5cfcf9c3c474a71138b9adb63dbeb3bb41bcb0b0da32c4d11d21aafba66ef89ec4d3d
DIST coreshot-4.2.0_alpha.tar.gz 1301559 BLAKE2B 46df04874b89db2b7198475a7df0a5bc9f797e8b680df6a7ab3de1ad40ae1f949f243b0d7f7495761c9713943c0c336b9c3ab310531737a9c3812bd5bdb257ee SHA512 430e5bbc99fa15d7867ff8f77e4f69312ff5f92691b5670d00cf8169390d047b317bf931bc4008ff743352a0582b27ee475f06a34b14a6523cff9ddaeea8fcfc

View File

@@ -0,0 +1,35 @@
# 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 screen capture utility for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreshot"
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/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
gui-libs/libcprime
"
RDEPEND="
${DEPEND}
"

View File

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