From a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 4 Jun 2026 16:24:49 -0500 Subject: Adding metadata --- dev-cpp/cppdap/Manifest | 3 -- dev-cpp/cppdap/cppdap-0_pre20230605-r1.ebuild | 52 --------------------------- dev-cpp/cppdap/cppdap-0_pre20240802.ebuild | 45 ----------------------- dev-cpp/cppdap/metadata.xml | 11 ------ 4 files changed, 111 deletions(-) delete mode 100644 dev-cpp/cppdap/Manifest delete mode 100644 dev-cpp/cppdap/cppdap-0_pre20230605-r1.ebuild delete mode 100644 dev-cpp/cppdap/cppdap-0_pre20240802.ebuild delete mode 100644 dev-cpp/cppdap/metadata.xml (limited to 'dev-cpp/cppdap') diff --git a/dev-cpp/cppdap/Manifest b/dev-cpp/cppdap/Manifest deleted file mode 100644 index a52c87c660b9..000000000000 --- a/dev-cpp/cppdap/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST cppdap-0_pre20230605.tar.gz 100715 BLAKE2B a7b6f745b7445242544deb2cd5b93bb13ee0faefe083a5e435d9a608fb453aceef1746738beb35678833f69521e637f2b8ca47fccd3e292a56e8a74c6435df86 SHA512 034f6282e992ec346715f84da1817a699937be174ab0ea09f750a693bed158b87ec6920e0ed1f7340ef5232e9634c5aebccd78527adde34b8abc4ff00c5f617e -DIST cppdap-0_pre20240802.tar.gz 101733 BLAKE2B 18302d37493ab38b579b0a00756e18efbaa1620e705e2bb54b24ccb3388837ea8aed28c880b358b670006f84ccb7df036125d1c2f7bb210ba51fa0caebef0759 SHA512 2432c2b413d956661342555a50ab2ed4cdf86de5e7bbda0822a2e7359ad034a0b0150bb6b98dff0d1a3d64e89cd8de67a7a620dd4c9e220a7ed1f9f80e5a36e6 -DIST cppdap-gtest-0a03480824b4fc7883255dbd2fd8940c9f81e22e.tar.gz 874709 BLAKE2B 706e6d168e080494ac63cf607c189f55f5e98100fd744dd184a8217173f66891aedb8779a9c8b0aa289889d1f73e18c50ef65d8c70228e2a795a5e5081f66894 SHA512 55867a2e39647a7846506446d642dcd740711dee8c0dfe25887fd6ad361161617f3d462bdb415dfba20693849949c022e97e2de65dd731cc63b9466edd1c8b87 diff --git a/dev-cpp/cppdap/cppdap-0_pre20230605-r1.ebuild b/dev-cpp/cppdap/cppdap-0_pre20230605-r1.ebuild deleted file mode 100644 index ffdc497483cb..000000000000 --- a/dev-cpp/cppdap/cppdap-0_pre20230605-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -# See https://github.com/google/cppdap/issues/113 re no release -CPPDAP_COMMIT="252b56807b532533ea7362a4d949758dcb481d2b" -GTEST_COMMIT="0a03480824b4fc7883255dbd2fd8940c9f81e22e" -DESCRIPTION="C++ library for the Debug Adapter Protocol" -HOMEPAGE="https://github.com/google/cppdap" -SRC_URI="https://github.com/google/cppdap/archive/${CPPDAP_COMMIT}.tar.gz -> ${P}.tar.gz" -SRC_URI+=" test? ( https://github.com/google/googletest/archive/${GTEST_COMMIT}.tar.gz -> ${PN}-gtest-${GTEST_COMMIT}.tar.gz )" -S="${WORKDIR}"/${PN}-${CPPDAP_COMMIT} - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm arm64 ppc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-cpp/nlohmann_json" -DEPEND="${RDEPEND}" - -src_prepare() { - if use test ; then - rm -rf "${S}"/third_party/googletest || die - ln -s "${WORKDIR}"/googletest-${GTEST_COMMIT} "${S}"/third_party/googletest || die - mkdir "${S}"/third_party/googletest/.git || die - fi - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - # Per README, could use rapidjson or jsoncpp instead. - -DCPPDAP_USE_EXTERNAL_NLOHMANN_JSON_PACKAGE=ON - -DCPPDAP_USE_EXTERNAL_RAPIDJSON_PACKAGE=OFF - -DCPPDAP_USE_EXTERNAL_JSONCPP_PACKAGE=OFF - - -DCPPDAP_BUILD_TESTS=$(usex test) - ) - - cmake_src_configure -} - -src_test() { - cd "${BUILD_DIR}" || die - ./cppdap-unittests || die -} diff --git a/dev-cpp/cppdap/cppdap-0_pre20240802.ebuild b/dev-cpp/cppdap/cppdap-0_pre20240802.ebuild deleted file mode 100644 index 2a2a6f35d508..000000000000 --- a/dev-cpp/cppdap/cppdap-0_pre20240802.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -# See https://github.com/google/cppdap/issues/113 re no release -CPPDAP_COMMIT="c69444ed76f7468b232ac4f989cb8f2bdc100185" - -DESCRIPTION="C++ library for the Debug Adapter Protocol" -HOMEPAGE="https://github.com/google/cppdap" -SRC_URI="https://github.com/google/cppdap/archive/${CPPDAP_COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}"/${PN}-${CPPDAP_COMMIT} - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm arm64 ppc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-cpp/nlohmann_json" -DEPEND=" - ${RDEPEND} - test? ( dev-cpp/gtest ) -" - -src_configure() { - local mycmakeargs=( - # Per README, could use rapidjson or jsoncpp instead. - -DCPPDAP_USE_EXTERNAL_NLOHMANN_JSON_PACKAGE=ON - -DCPPDAP_USE_EXTERNAL_RAPIDJSON_PACKAGE=OFF - -DCPPDAP_USE_EXTERNAL_JSONCPP_PACKAGE=OFF - - -DCPPDAP_BUILD_TESTS=$(usex test) - -DCPPDAP_USE_EXTERNAL_GTEST_PACKAGE=ON - ) - - cmake_src_configure -} - -src_test() { - cd "${BUILD_DIR}" || die - ./cppdap-unittests || die -} diff --git a/dev-cpp/cppdap/metadata.xml b/dev-cpp/cppdap/metadata.xml deleted file mode 100644 index b449a73bf3fc..000000000000 --- a/dev-cpp/cppdap/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - base-system@gentoo.org - Gentoo Base System - - - google/cppdap - - -- cgit v1.3.1