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 coretoppings-4.0.0.tar.gz 170719 BLAKE2B 039f2c38bd28f277a321d50686b1ba9adc373c1a37cf3b47aa4cd2d3d70154bc8a0c7f52c16e39711c27d5efc9e26ff3018a3097591cc43244bb94a44c38bf6d SHA512 469eacf5fa33388d57f7f3b0b84886fee97942b2d77418e454334f62dcaad891f499ec9b5bf4930b46757a2ec67b3cc2f1656530804811ac6eff74c25d110536
DIST coretoppings-4.1.0.tar.gz 185742 BLAKE2B eac839dc3f0f6cb2d844aaaf6e1c7e06aef9a364585ee2dd30daad1cfe28567962459fcb0974fff8d7d3a863d06b6d51d02aecbc8837534f7a5c1e274e0177b5 SHA512 bbad49c322f5fbf39633a6a56269b3bddde42c8e515b6c25471dbf74f59f24b2217a89593d06b67dda6cca0ef3fc93b50fec1ab7cd523ff23b3c8bad76f0d71e
DIST coretoppings-4.2.0_alpha.tar.gz 189480 BLAKE2B 7bc7131bba8f9fc9a6b690446039a57f9f3465bbf0563f474999d034717f7e24aa7a0c23026d791fb6bc8d6f145d0caafba05d721fe60ab7533377d1ccfb8917 SHA512 f6df9869d2a7cbe1ef10a9ccc22857b3ffb1b66bbf0d7cc589083485432345da6cb0dd5da32e41edb03eeb827aaf2e070fb7d92040aa05d5b62779a2949884a6

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="Additional features, plugins, widgets etc for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretoppings"
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"
IUSE="location pulseaudio"
DEPEND="
dev-qt/qtbluetooth:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
gui-libs/libcprime
"
RDEPEND="
${DEPEND}
location? ( dev-qt/qtlocation:5 )
pulseaudio? ( media-sound/pulseaudio )
"

View File

@@ -3,7 +3,9 @@
EAPI=7
inherit cmake xdg
MY_PV="${PV/_/-}"
inherit xdg cmake
DESCRIPTION="Additional features, plugins, widgets etc for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretoppings"
@@ -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 @@ RDEPEND="
location? ( dev-qt/qtlocation:5 )
pulseaudio? ( media-sound/pulseaudio )
"
src_prepare() {
cmake_src_prepare
sed -i 's/C Suite/X-CSuite/' shareit/shareit.desktop || die
}