diff --git a/gui-apps/corepad/Manifest b/gui-apps/corepad/Manifest index 37af79a4d8..1ebe7ece51 100644 --- a/gui-apps/corepad/Manifest +++ b/gui-apps/corepad/Manifest @@ -1 +1,2 @@ DIST corepad-4.2.0.tar.gz 143973 BLAKE2B 6c637aa4e391939c99f421723c78a34cdedcc6efa8b309b8dee6abf9b3d5c9a79f7ea1c62c320eb1690308c0d20c7fcb90efa927888e2dbdf5898dd9c913b7c1 SHA512 bd9bee5ac61a7c96bb7ad181112059ad7a07a4b23288dcde8fb5ca4b3343de08d5f1dd641ceda37e2d22aaa3d909cda18cbad9b172e9b662f1d563733131dda9 +DIST corepad-v4.5.0.tar.bz2 147168 BLAKE2B e875cbc44ef24e554e0dadd10012a6c79b9e6f1637daab7f9f22989201435afbaeb7c0233cc156a1e76239d0c8aafdae7c8700c0295a7b1179fd90064d9748a4 SHA512 30f125a0787e44992d8e7010f5c03a04dac491e79a717c499f6fb893607aeb070854b59095f172657d0ac3f0d66873a48086c74bc9ca230da5ba39b1bc284c1f diff --git a/gui-apps/corepad/corepad-4.5.0.ebuild b/gui-apps/corepad/corepad-4.5.0.ebuild new file mode 100644 index 0000000000..28829690ee --- /dev/null +++ b/gui-apps/corepad/corepad-4.5.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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/corepad.git" +else + SRC_URI="https://gitlab.com/cubocore/coreapps/corepad/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +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}" diff --git a/gui-apps/corepad/corepad-9999.ebuild b/gui-apps/corepad/corepad-9999.ebuild index d6281acc60..28829690ee 100644 --- a/gui-apps/corepad/corepad-9999.ebuild +++ b/gui-apps/corepad/corepad-9999.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -MY_PV="${PV/_/-}" +EAPI=8 inherit xdg cmake @@ -12,25 +10,21 @@ HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad" if [[ "${PV}" == *9999* ]]; then inherit git-r3 - EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git" + EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/corepad.git" else - SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://gitlab.com/cubocore/coreapps/corepad/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-v${MY_PV}" + S="${WORKDIR}/${PN}-v${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 dev-qt/qtxml:5 gui-libs/libcprime " -RDEPEND=" - ${DEPEND} -" +RDEPEND="${DEPEND}"