diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-01-27 21:44:38 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-02-01 20:26:35 +0100 |
commit | 8b418f05098d6f3fee162259d509b0783621acd0 (patch) | |
tree | f0739a462419412fa1d071938d63f33c9ea80167 /dev-libs/cxxopts | |
parent | media-libs/tg_owt: drop 0_pre20220209 (diff) | |
download | gentoo-8b418f05098d6f3fee162259d509b0783621acd0.tar.gz gentoo-8b418f05098d6f3fee162259d509b0783621acd0.tar.bz2 gentoo-8b418f05098d6f3fee162259d509b0783621acd0.zip |
dev-libs/cxxopts: drop 2.2.1-r1
Closes: https://bugs.gentoo.org/887509
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/cxxopts')
-rw-r--r-- | dev-libs/cxxopts/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/cxxopts/cxxopts-2.2.1-r1.ebuild | 36 |
2 files changed, 0 insertions, 37 deletions
diff --git a/dev-libs/cxxopts/Manifest b/dev-libs/cxxopts/Manifest index 8e25883fd030..25fc46c0bb8d 100644 --- a/dev-libs/cxxopts/Manifest +++ b/dev-libs/cxxopts/Manifest @@ -1,2 +1 @@ -DIST cxxopts-2.2.1.tar.gz 89561 BLAKE2B d7fb74cff9b9381d90827fd3e3bcc7dab8b4dc100b9ff12d98ff4c73400c187c04c270d8c5a019c88e553f8c46c59eda1e5076a1aec944e7d8af5ca6de2326db SHA512 bad2928b4e06efcfa09728dd946426e4fd39715b687c0a5c7b6308dd366cb490fdd8491c9a9778242d97d5be4a383bf9d1c209efe298c6c43bb1eb9daa103f05 DIST cxxopts-3.0.0.tar.gz 97020 BLAKE2B 129b055dd03ce9e4a146d36587063f7155b47456d81e395ae6eeab8012e8d6cfcb410c305353f2ac2ec66a2f3e8d6169e1a0d27c53dcb35388b967d3c9cc86f1 SHA512 239479a3b35ddef6fc380ac9371e1cf7e3aea066f03e1ea538151fa2fff4296838daa976d55e988d8f87f40c0ae027767bcb214754177499413af1081315565c diff --git a/dev-libs/cxxopts/cxxopts-2.2.1-r1.ebuild b/dev-libs/cxxopts/cxxopts-2.2.1-r1.ebuild deleted file mode 100644 index 96b57b0c39e8..000000000000 --- a/dev-libs/cxxopts/cxxopts-2.2.1-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Lightweight C++ command line option parser" -HOMEPAGE="https://github.com/jarro2783/cxxopts" -SRC_URI="https://github.com/jarro2783/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86" -IUSE="test" - -RESTRICT="!test? ( test )" - -DOCS=( - README.md - CHANGELOG.md -) - -src_prepare() { - sed -r -e 's:-Werror[[:space:]]*::' -i CMakeLists.txt || die - cmake_src_prepare -} - -src_configure() { - local -a mycmakeopts=( - -DCXXOPTS_BUILD_EXAMPLES=OFF - -DCXXOPTS_BUILD_TESTS=$(usex test 'ON' 'OFF') - -DCXXOPTS_ENABLE_INSTALL=ON - ) - cmake_src_configure -} |