Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cxxopts/
Date: Wed, 01 Feb 2023 19:27:21
Message-Id: 1675279595.8b418f05098d6f3fee162259d509b0783621acd0.asturm@gentoo
1 commit: 8b418f05098d6f3fee162259d509b0783621acd0
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 27 20:44:38 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 1 19:26:35 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b418f05
7
8 dev-libs/cxxopts: drop 2.2.1-r1
9
10 Closes: https://bugs.gentoo.org/887509
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/cxxopts/Manifest | 1 -
14 dev-libs/cxxopts/cxxopts-2.2.1-r1.ebuild | 36 --------------------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/dev-libs/cxxopts/Manifest b/dev-libs/cxxopts/Manifest
18 index 8e25883fd030..25fc46c0bb8d 100644
19 --- a/dev-libs/cxxopts/Manifest
20 +++ b/dev-libs/cxxopts/Manifest
21 @@ -1,2 +1 @@
22 -DIST cxxopts-2.2.1.tar.gz 89561 BLAKE2B d7fb74cff9b9381d90827fd3e3bcc7dab8b4dc100b9ff12d98ff4c73400c187c04c270d8c5a019c88e553f8c46c59eda1e5076a1aec944e7d8af5ca6de2326db SHA512 bad2928b4e06efcfa09728dd946426e4fd39715b687c0a5c7b6308dd366cb490fdd8491c9a9778242d97d5be4a383bf9d1c209efe298c6c43bb1eb9daa103f05
23 DIST cxxopts-3.0.0.tar.gz 97020 BLAKE2B 129b055dd03ce9e4a146d36587063f7155b47456d81e395ae6eeab8012e8d6cfcb410c305353f2ac2ec66a2f3e8d6169e1a0d27c53dcb35388b967d3c9cc86f1 SHA512 239479a3b35ddef6fc380ac9371e1cf7e3aea066f03e1ea538151fa2fff4296838daa976d55e988d8f87f40c0ae027767bcb214754177499413af1081315565c
24
25 diff --git a/dev-libs/cxxopts/cxxopts-2.2.1-r1.ebuild b/dev-libs/cxxopts/cxxopts-2.2.1-r1.ebuild
26 deleted file mode 100644
27 index 96b57b0c39e8..000000000000
28 --- a/dev-libs/cxxopts/cxxopts-2.2.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 2020-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit cmake
37 -
38 -DESCRIPTION="Lightweight C++ command line option parser"
39 -HOMEPAGE="https://github.com/jarro2783/cxxopts"
40 -SRC_URI="https://github.com/jarro2783/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0/${PV}"
44 -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
45 -IUSE="test"
46 -
47 -RESTRICT="!test? ( test )"
48 -
49 -DOCS=(
50 - README.md
51 - CHANGELOG.md
52 -)
53 -
54 -src_prepare() {
55 - sed -r -e 's:-Werror[[:space:]]*::' -i CMakeLists.txt || die
56 - cmake_src_prepare
57 -}
58 -
59 -src_configure() {
60 - local -a mycmakeopts=(
61 - -DCXXOPTS_BUILD_EXAMPLES=OFF
62 - -DCXXOPTS_BUILD_TESTS=$(usex test 'ON' 'OFF')
63 - -DCXXOPTS_ENABLE_INSTALL=ON
64 - )
65 - cmake_src_configure
66 -}