diff --git a/gui-apps/coreimage/Manifest b/gui-apps/coreimage/Manifest index b094ad6e6d..93dd9fabdc 100644 --- a/gui-apps/coreimage/Manifest +++ b/gui-apps/coreimage/Manifest @@ -1 +1,2 @@ DIST coreimage-4.2.0.tar.gz 407103 BLAKE2B b47498e84ffbab39b43b32b2f93e976a7a1eb41d6956a8a0f40dced23d8c19d2eb737b567c3ab8f30640e982bcfb87843699bab350c17f34563ac01f4c1d29f9 SHA512 a84e8d0061187959a291301dda1274000f19607ff932d8bddfd5384653436d4de88662c145d1be43b12a798c739a259f81cc4da17a8dd2c61bd6ba5ecaf69efb +DIST coreimage-v4.5.0.tar.bz2 414029 BLAKE2B 11e64d3d8ffe828448f6344ba6ea93af2d479828f9c53f03b3bfe7fd0f4ebe85e003074f77152af51972893fd6fd91157c8eefc63f5f48809172b526263e2b12 SHA512 fcb9301d811e79c68a6e5dfcbe7f672a7b95d926b0b1137cb8827eb3ae67b5052ebb8a88e966b578a50ee900e7dc672961d3868554daf9b2503a5585b7ba3a01 diff --git a/gui-apps/coreimage/coreimage-4.5.0.ebuild b/gui-apps/coreimage/coreimage-4.5.0.ebuild new file mode 100644 index 0000000000..2a16e289fc --- /dev/null +++ b/gui-apps/coreimage/coreimage-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="An image viewer for C Suite" +HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/coreimage.git" +else + SRC_URI="https://gitlab.com/cubocore/coreapps/coreimage/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" + +DEPEND=" + dev-qt/qtconcurrent:5 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + gui-libs/libcprime +" +RDEPEND="${DEPEND}" diff --git a/gui-apps/coreimage/coreimage-9999.ebuild b/gui-apps/coreimage/coreimage-9999.ebuild index 2b11baa2fa..2a16e289fc 100644 --- a/gui-apps/coreimage/coreimage-9999.ebuild +++ b/gui-apps/coreimage/coreimage-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,14 +10,13 @@ HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage" 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/coreimage.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/coreimage/-/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" @@ -29,8 +26,5 @@ DEPEND=" dev-qt/qtgui:5 dev-qt/qtwidgets:5 gui-libs/libcprime - gui-libs/libcsys -" -RDEPEND=" - ${DEPEND} " +RDEPEND="${DEPEND}"