summaryrefslogtreecommitdiff
path: root/dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r2.ebuild
diff options
context:
space:
mode:
authorAlexey Sokolov <alexey+gentoo@asokolov.org>2025-02-10 23:53:15 +0000
committerAndreas Sturmlechner <asturm@gentoo.org>2025-02-11 21:54:21 +0100
commitec77c6c33372c246d066bc4aed7954c9d51ea466 (patch)
treee19441e77b0bb84b93b225bf96eda084c9d6bea4 /dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r2.ebuild
parent0bd68cd4ceee7ea98cafeb3a2405b001b6590c20 (diff)
downloadgentoo-ec77c6c33372c246d066bc4aed7954c9d51ea466.tar.gz
gentoo-ec77c6c33372c246d066bc4aed7954c9d51ea466.tar.bz2
gentoo-ec77c6c33372c246d066bc4aed7954c9d51ea466.zip
dev-cpp/yaml-cpp: drop 0.7.0-r2
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r2.ebuild')
-rw-r--r--dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r2.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r2.ebuild b/dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r2.ebuild
deleted file mode 100644
index 91e20995e963..000000000000
--- a/dev-cpp/yaml-cpp/yaml-cpp-0.7.0-r2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="YAML parser and emitter in C++"
-HOMEPAGE="https://github.com/jbeder/yaml-cpp"
-SRC_URI="https://github.com/jbeder/yaml-cpp/archive/${P}.tar.gz"
-S="${WORKDIR}/yaml-cpp-${P}"
-
-LICENSE="MIT"
-SLOT="0/0.7"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )"
-
-PATCHES=(
- "${FILESDIR}/${P}-gtest.patch"
- "${FILESDIR}/${P}-cmake-paths.patch"
- "${FILESDIR}/${P}-install-paths.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DYAML_BUILD_SHARED_LIBS=ON
- -DYAML_CPP_BUILD_TOOLS=OFF # Don't have install rule
- -DYAML_CPP_BUILD_TESTS=$(usex test)
- )
-
- cmake-multilib_src_configure
-}