diff --git a/gui-apps/coretoppings/Manifest b/gui-apps/coretoppings/Manifest index acb5286f32..3e301d210b 100644 --- a/gui-apps/coretoppings/Manifest +++ b/gui-apps/coretoppings/Manifest @@ -1,2 +1,3 @@ DIST coretoppings-4.1.0.tar.gz 185742 BLAKE2B eac839dc3f0f6cb2d844aaaf6e1c7e06aef9a364585ee2dd30daad1cfe28567962459fcb0974fff8d7d3a863d06b6d51d02aecbc8837534f7a5c1e274e0177b5 SHA512 bbad49c322f5fbf39633a6a56269b3bddde42c8e515b6c25471dbf74f59f24b2217a89593d06b67dda6cca0ef3fc93b50fec1ab7cd523ff23b3c8bad76f0d71e DIST coretoppings-4.2.0.tar.gz 190179 BLAKE2B 845836777052fe8f411de4166f5f26392e53a246e60fa6ac9156cabbd44cfc7ce1cb065b357b33fa1524084c07265b810db5dcfdf8455539a4d5bbdda65c6f79 SHA512 f3d433db645308183e51fb250895088e6fca6d32f1d1ffcf8e758d749daa09a96707549d4b51c8ac51711481e78d7c4be1d4dfe496f32dd28bd14cb0b5da4af7 +DIST coretoppings-v4.5.0.tar.bz2 162641 BLAKE2B 122aa1e468dfa72da54997a637f7bbf21080b037e92ff56c4000fb09441e4c1d55e3ab4068bcb2da32f3a87337219359e1d548b872b8cce82e7d87a1eb9785db SHA512 886f8a2b26a7dded7c7aa1dd219898238975daca84650afe1e4d1d6e365e41d6c4d1626139062330b022e9b0cda5ef46633d9a9704cc7f92e7dbf8cf97631eb7 diff --git a/gui-apps/coretoppings/coretoppings-4.5.0.ebuild b/gui-apps/coretoppings/coretoppings-4.5.0.ebuild new file mode 100644 index 0000000000..99345d0d90 --- /dev/null +++ b/gui-apps/coretoppings/coretoppings-4.5.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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/coretoppings.git" +else + SRC_URI="https://gitlab.com/cubocore/coreapps/coretoppings/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="location pulseaudio" + +DEPEND=" + dev-libs/libdbusmenu-qt + dev-qt/qtbluetooth:5 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + gui-libs/libcprime + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXrender +" +RDEPEND=" + ${DEPEND} + location? ( dev-qt/qtlocation:5 ) + pulseaudio? ( media-libs/libpulse ) +" diff --git a/gui-apps/coretoppings/coretoppings-9999.ebuild b/gui-apps/coretoppings/coretoppings-9999.ebuild index 796a3bc4e9..99345d0d90 100644 --- a/gui-apps/coretoppings/coretoppings-9999.ebuild +++ b/gui-apps/coretoppings/coretoppings-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/coretoppings" 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/coretoppings.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/coretoppings/-/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" IUSE="location pulseaudio" @@ -27,12 +24,19 @@ IUSE="location pulseaudio" DEPEND=" dev-libs/libdbusmenu-qt dev-qt/qtbluetooth:5 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 gui-libs/libcprime + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXrender " RDEPEND=" ${DEPEND} location? ( dev-qt/qtlocation:5 ) - pulseaudio? ( media-sound/pulseaudio ) + pulseaudio? ( media-libs/libpulse ) "