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 corepad-4.0.0.tar.gz 333491 BLAKE2B 702d8f94b1fccb17cbdc8ecd2510ea32ac12d515b888e1b89d654dab61e60050685aed329ddd34dba51a9e0a81fa2488aa948831324191a5f22cc71b140e3f86 SHA512 24073edcf6de1bc94e510b88f8c017a12bf9bed2099876b76cd9254426e891043f3cdb9162156dd3af8d502e52494cabfe931442350cc9e8eaa9e694ced2e760
DIST corepad-4.1.0.tar.gz 333915 BLAKE2B d3a7fc7514dc9e85ed548dfb24744a0a1d83611d544fb3bfd9ec1c33573f1b7d6a63d0ff65994444ec253efb385b4d8dd59f184df49888a739f6e71a103715a3 SHA512 3998a95f8ffd51cbae9cc9bf74c2bd31ef1af0bb9d7d4ae9ef9ae3d60c5ede0b8048c3591285da5a06b83e045d702c94f71655250ad34aaf64dce9974dbd61c0
DIST corepad-4.2.0_alpha.tar.gz 141943 BLAKE2B c05451ce4b43283f7054d4e73a5dffb12ee1055b06784e9d4e9cb17e7c12904cc16e32e4feafd9a1332c047f9b9d060cac164a22d6f44005a0f5e6f130cc0955 SHA512 aaa2e80a493d3aa4b49ba32e1b37dc5b7aa7a25553eb93588931fbc265dd04ac80b74c600f031267236fbd2bac9f1ac653ef2279f2c1faf37154636f0852a889

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 document editor for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad"
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/qtxml: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 document editor for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad"
@@ -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
}