commit: dfb6f2926e59a10afe3255d324237ba538f80cbc Author: David Roman <davidroman96 <AT> gmail <DOT> com> AuthorDate: Wed Jan 28 13:36:38 2026 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Wed Jan 28 13:36:38 2026 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dfb6f292
dev-cpp/dpp: drop 10.0.23, 10.0.24, 10.0.25, 10.0.29 Signed-off-by: David Roman <davidroman96 <AT> gmail.com> dev-cpp/dpp/Manifest | 4 ---- dev-cpp/dpp/dpp-10.0.23.ebuild | 52 ------------------------------------------ dev-cpp/dpp/dpp-10.0.24.ebuild | 52 ------------------------------------------ dev-cpp/dpp/dpp-10.0.25.ebuild | 52 ------------------------------------------ dev-cpp/dpp/dpp-10.0.29.ebuild | 52 ------------------------------------------ 5 files changed, 212 deletions(-) diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest index 545577451d..7bc990311b 100644 --- a/dev-cpp/dpp/Manifest +++ b/dev-cpp/dpp/Manifest @@ -1,6 +1,2 @@ -DIST dpp-10.0.23.tar.gz 13721815 BLAKE2B abbe6849025270554f8462dcbef6adefff412ee06216c19a730f236cd44c7e4da1c6b801f2b10a493df253626a4af9b8132aa155c7f585fe3de35eaa5c5cf4df SHA512 18bbb7d2c1385d179cac9ded31d1b11e8d24f172e7ffe2ba79071203e1e2f277657e21d660b18ee4b849bc093d350f4bc5401702400084b56c3ebd6f03ce28df -DIST dpp-10.0.24.tar.gz 13739463 BLAKE2B 0531d9d14b943302293aac62a3972a4628487332107b77ca6d09ae39ae8a9d1cfeceae1a656790cc8699932af9c5d46a0ae5bc26885a9c29cc970388cdb60f3f SHA512 2f1e5415c121d5f19d2abb1b389512ad22c3cac6779ed897403d430b2c4e62c758ab25d46a3fd02538add711073fadd616a690b4981f3782e46c18ff05d116dc -DIST dpp-10.0.25.tar.gz 14312767 BLAKE2B 52263024ad615198fe901f3cc79290e1b88c4e44c22c318fb7df2e9a3d4069611282b18650602f29f40bff3b042b16d0b8a47b8d3ff9c5b5ea89fa9514777609 SHA512 49cb6fedcb75d3dd146243f46f9e34cfe79e1c9a6ae76fc69c8c6935d9a10ccf562452311085791674ff659913befe1dc6f8a191b518d45151cb23d779396572 -DIST dpp-10.0.29.tar.gz 15560520 BLAKE2B 491730da342e2db08e061ec71d5488be3c23addc4ef5ae537631a83d3a461a53f34033da72d387f8202c45d529d39ff6bcc70e8a69f94006b2e1fb607aed2d23 SHA512 fcb9b8181827fc63fb2f9aff44e697d18a0bfd94714888492a63a04e0112f42f9506bfab8181e822aa5ce85e6b6a8aa44e0774baeac3e52c3f41348cbf55a76a DIST dpp-10.0.30.tar.gz 15726421 BLAKE2B 647571d5c7434c3b5636a66a3365d2af8b2d11c81165666d3df2b2ad36d4b61b683a8e3c7ef304fba96a4ac365365272fffa3f0d7d05f697dfe48ba7f972ced6 SHA512 4842e5e688893275e524f998bdcac1d308165a02c280f69eaa898aa8f9986a97fe687e20e3428f30777c49f1feb47905da462bbdba8c9a5ea00067e560208f91 DIST dpp-10.0.33.tar.gz 17222706 BLAKE2B b4443eade64cb6f98742d37c2cd0776b1a1a643fa86732f964488ff8835f2eee2e85553498d3b63159434a6512c9a7726eeddd0b84d8e725fb65e6bbb2290141 SHA512 69fe3323aceb4ad52ec1fcfb38a8770e88c03ae0b6cb49768441b603e13659625720d984b992311fcca8ef863d40b8b7fb082996fae2d396e785b637b673a328 diff --git a/dev-cpp/dpp/dpp-10.0.23.ebuild b/dev-cpp/dpp/dpp-10.0.23.ebuild deleted file mode 100644 index f5850ba015..0000000000 --- a/dev-cpp/dpp/dpp-10.0.23.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 2023-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Lightweight C++ Discord bot library" -HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP" -SRC_URI=" - https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz -" - -S="${WORKDIR}/DPP-${PV}" - -LICENSE="Apache-2.0" -# DPP is extremely ABI instable due to frequent changes in the Discord API -# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157 -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="voice" - -RDEPEND=" - dev-libs/openssl:= - virtual/zlib:= - - voice? ( - dev-libs/libsodium:= - media-libs/opus - ) -" -DEPEND=" - ${RDEPEND} - - dev-cpp/nlohmann_json -" - -DOCS=( "README.md" "SECURITY.md" ) - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=true - -DBUILD_VOICE_SUPPORT="$(usex voice)" - -DRUN_LDCONFIG=false - # Tests require network access - -DDPP_BUILD_TEST=false - -DDPP_NO_VCPKG=true - -DDPP_USE_EXTERNAL_JSON=true - ) - - cmake_src_configure -} diff --git a/dev-cpp/dpp/dpp-10.0.24.ebuild b/dev-cpp/dpp/dpp-10.0.24.ebuild deleted file mode 100644 index f5850ba015..0000000000 --- a/dev-cpp/dpp/dpp-10.0.24.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 2023-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Lightweight C++ Discord bot library" -HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP" -SRC_URI=" - https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz -" - -S="${WORKDIR}/DPP-${PV}" - -LICENSE="Apache-2.0" -# DPP is extremely ABI instable due to frequent changes in the Discord API -# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157 -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="voice" - -RDEPEND=" - dev-libs/openssl:= - virtual/zlib:= - - voice? ( - dev-libs/libsodium:= - media-libs/opus - ) -" -DEPEND=" - ${RDEPEND} - - dev-cpp/nlohmann_json -" - -DOCS=( "README.md" "SECURITY.md" ) - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=true - -DBUILD_VOICE_SUPPORT="$(usex voice)" - -DRUN_LDCONFIG=false - # Tests require network access - -DDPP_BUILD_TEST=false - -DDPP_NO_VCPKG=true - -DDPP_USE_EXTERNAL_JSON=true - ) - - cmake_src_configure -} diff --git a/dev-cpp/dpp/dpp-10.0.25.ebuild b/dev-cpp/dpp/dpp-10.0.25.ebuild deleted file mode 100644 index f5850ba015..0000000000 --- a/dev-cpp/dpp/dpp-10.0.25.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 2023-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Lightweight C++ Discord bot library" -HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP" -SRC_URI=" - https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz -" - -S="${WORKDIR}/DPP-${PV}" - -LICENSE="Apache-2.0" -# DPP is extremely ABI instable due to frequent changes in the Discord API -# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157 -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="voice" - -RDEPEND=" - dev-libs/openssl:= - virtual/zlib:= - - voice? ( - dev-libs/libsodium:= - media-libs/opus - ) -" -DEPEND=" - ${RDEPEND} - - dev-cpp/nlohmann_json -" - -DOCS=( "README.md" "SECURITY.md" ) - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=true - -DBUILD_VOICE_SUPPORT="$(usex voice)" - -DRUN_LDCONFIG=false - # Tests require network access - -DDPP_BUILD_TEST=false - -DDPP_NO_VCPKG=true - -DDPP_USE_EXTERNAL_JSON=true - ) - - cmake_src_configure -} diff --git a/dev-cpp/dpp/dpp-10.0.29.ebuild b/dev-cpp/dpp/dpp-10.0.29.ebuild deleted file mode 100644 index f5850ba015..0000000000 --- a/dev-cpp/dpp/dpp-10.0.29.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 2023-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Lightweight C++ Discord bot library" -HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP" -SRC_URI=" - https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz -" - -S="${WORKDIR}/DPP-${PV}" - -LICENSE="Apache-2.0" -# DPP is extremely ABI instable due to frequent changes in the Discord API -# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157 -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="voice" - -RDEPEND=" - dev-libs/openssl:= - virtual/zlib:= - - voice? ( - dev-libs/libsodium:= - media-libs/opus - ) -" -DEPEND=" - ${RDEPEND} - - dev-cpp/nlohmann_json -" - -DOCS=( "README.md" "SECURITY.md" ) - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=true - -DBUILD_VOICE_SUPPORT="$(usex voice)" - -DRUN_LDCONFIG=false - # Tests require network access - -DDPP_BUILD_TEST=false - -DDPP_NO_VCPKG=true - -DDPP_USE_EXTERNAL_JSON=true - ) - - cmake_src_configure -}
