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 corerenamer-4.0.0.tar.gz 218290 BLAKE2B 5916a46e397e9a5562ea30a6ac601d0b653f90d9ab89452e98dc81e70194fbb87711e167f5701565bc7ccbde6c32325d87891544ab10d18bd46c9bf47e48a75a SHA512 4ef1896b3f0d960c03f870dd80a296b7c779569c96f0816b4484383bbcf82839cd95d25cd24282843dbe672186ef8edcf4f986c5b682b0bc081939c3509cd130
DIST corerenamer-4.1.0.tar.gz 218279 BLAKE2B 5cbab2d079b040c37bdc50dc09fbaedc12c665c14ee66ed1a0b3848c609e2affb8a33b94e487168f5c878fd142c5450b563fdf6bec8cc277d7ca7de7913c059a SHA512 c9fd68a9f688decc4868e97bf905c9a26e2236e965b939b94db80fc9278d97f8b1a37eaa5c6f2239001d80ae64cf2d51a89f9bf102dc1d654c21193659825ae9
DIST corerenamer-4.2.0_alpha.tar.gz 69106 BLAKE2B 9d169696446d6a4c98f9db778a66c465d7d3095368e30e359a20c396cd81726a95955d511c7076c0b4876da173e1dcf0bd5ad7898ea7c591136a66dc3e67b236 SHA512 3c85d99be35d5c2840bfd7e72bad15d9c34cab880a8427e19790a4140d1eeb069fcc206cc24aea8a0545ff2cad7198d5030763b21ef2213df471170dd64d387a

View File

@@ -0,0 +1,34 @@
# 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 batch file renamer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corerenamer"
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
gui-libs/libcprime
"
RDEPEND="
${DEPEND}
"

View File

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