diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 05:35:26 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 05:35:26 -0500 |
| commit | f716a9fe6455d39eef01e718aae68dae61c19704 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-cpp/cppdap | |
| parent | 3f9cf298e89cd5037b982abba06091224ee76daf (diff) | |
| download | baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip | |
Adding metadata
Diffstat (limited to 'dev-cpp/cppdap')
| -rw-r--r-- | dev-cpp/cppdap/Manifest | 3 | ||||
| -rw-r--r-- | dev-cpp/cppdap/cppdap-0_pre20230605-r1.ebuild | 52 | ||||
| -rw-r--r-- | dev-cpp/cppdap/cppdap-0_pre20240802.ebuild | 45 | ||||
| -rw-r--r-- | dev-cpp/cppdap/metadata.xml | 11 |
4 files changed, 0 insertions, 111 deletions
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 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>base-system@gentoo.org</email> - <name>Gentoo Base System</name> - </maintainer> - <upstream> - <remote-id type="github">google/cppdap</remote-id> - </upstream> -</pkgmetadata> |
