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-cpp/gflags/
Date: Wed, 01 Feb 2023 19:27:23
Message-Id: 1675279597.10b470be7bd6fab416d7f0232baf5343398ce2cb.asturm@gentoo
1 commit: 10b470be7bd6fab416d7f0232baf5343398ce2cb
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 27 21:13:58 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 1 19:26:37 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10b470be
7
8 dev-cpp/gflags: drop 2.2.1-r1
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 dev-cpp/gflags/Manifest | 1 -
13 dev-cpp/gflags/gflags-2.2.1-r1.ebuild | 36 -----------------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-cpp/gflags/Manifest b/dev-cpp/gflags/Manifest
17 index fe205d2550f7..b945767f9e34 100644
18 --- a/dev-cpp/gflags/Manifest
19 +++ b/dev-cpp/gflags/Manifest
20 @@ -1,2 +1 @@
21 -DIST gflags-2.2.1.tar.gz 96985 BLAKE2B 065dac9cf5d878e4179cb6d56ddf240052a552b72036fd06cb83197d9772a9b97fa544f809c6e1efd6f9ad8cd0222872fc6292c44bc013c5f70e235bcc5b290c SHA512 e919cbdcff1f993ddbfa9c06d8e595566a4717c27ff62f388a64c0e6b4683a93211c24ce78485eae84c2c76053341574064e6c56af185fc2782e2816b26e1fc9
22 DIST gflags-2.2.2.tar.gz 98704 BLAKE2B 54cbf3b0a422d662e89c1921614ae9f20a4a383524d374d1e7ce1473eff0a6e121c1a2255df0b9d27ae9866c8e63094b908534c5fd2173737033cc0f184a5e4f SHA512 98c4703aab24e81fe551f7831ab797fb73d0f7dfc516addb34b9ff6d0914e5fd398207889b1ae555bac039537b1d4677067dae403b64903577078d99c1bdb447
23
24 diff --git a/dev-cpp/gflags/gflags-2.2.1-r1.ebuild b/dev-cpp/gflags/gflags-2.2.1-r1.ebuild
25 deleted file mode 100644
26 index 423e936e4bf2..000000000000
27 --- a/dev-cpp/gflags/gflags-2.2.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit cmake-multilib
36 -
37 -if [[ ${PV} == 9999 ]]; then
38 - inherit git-r3
39 - EGIT_REPO_URI="https://github.com/gflags/gflags"
40 -else
41 - SRC_URI="https://github.com/gflags/gflags/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
43 -fi
44 -
45 -DESCRIPTION="Google's C++ argument parsing library"
46 -HOMEPAGE="https://gflags.github.io/gflags/"
47 -
48 -LICENSE="BSD"
49 -SLOT="0/2.2"
50 -IUSE="static-libs test"
51 -RESTRICT="!test? ( test )"
52 -
53 -# AUTHORS.txt only links the google group
54 -DOCS=( ChangeLog.txt README.md )
55 -
56 -multilib_src_configure() {
57 - local mycmakeargs=(
58 - -DBUILD_STATIC_LIBS=$(usex static-libs)
59 - -DBUILD_TESTING=$(usex test)
60 - # avoid installing .cmake/packages, e.g.:
61 - # >>> /tmp/portage/dev-cpp/gflags-9999/homedir/.cmake/packages/gflags/a7fca4708532331c2d656af0fdc8b8b9
62 - -DREGISTER_INSTALL_PREFIX=OFF
63 - )
64 - cmake_src_configure
65 -}