Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/jsoncpp/
Date: Sun, 30 Aug 2020 00:26:09
Message-Id: 1598747115.ee7f49a44212a38d1a2768f189aed92f410d05af.perfinion@gentoo
1 commit: ee7f49a44212a38d1a2768f189aed92f410d05af
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 22:09:59 2020 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 30 00:25:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7f49a4
7
8 dev-libs/jsoncpp: Drop 1.9.1
9
10 Now that older sci-libs/tensorflow versions have been dropped,
11 jsoncpp-1.9.1 has no consumers in the tree and can be dropped too.
12
13 Package-Manager: Portage-2.3.103, Repoman-2.3.23
14 Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
15
16 dev-libs/jsoncpp/Manifest | 1 -
17 dev-libs/jsoncpp/jsoncpp-1.9.1.ebuild | 67 -----------------------------------
18 2 files changed, 68 deletions(-)
19
20 diff --git a/dev-libs/jsoncpp/Manifest b/dev-libs/jsoncpp/Manifest
21 index 2f2722de426..791c5258436 100644
22 --- a/dev-libs/jsoncpp/Manifest
23 +++ b/dev-libs/jsoncpp/Manifest
24 @@ -1,2 +1 @@
25 -DIST jsoncpp-1.9.1.tar.gz 203067 BLAKE2B 654f39b1265b344bb24d3fefb34d4d8b44f69ec819f333f00033ef90acfd5b926fdcc743badf403af797a6f58fe58d195ec0cdf4a1514629f8a1e75c20a6e2f6 SHA512 4a8352e1d32c0ba8a0aea4df1663279cb2256b334643c5b62be37dfb5951e06900ba38c010d1201511fcf7de09137d6a4b886edbb2b99160d2f62b5f4679f766
26 DIST jsoncpp-1.9.3.tar.gz 212922 BLAKE2B 6f89762e899ffe127705a30c1fe86f458d62fa05b8dbde6c465c73b6855d3945f3d739ff0c26e1a6326a211c946277908684ace9363df72ba0f460f66b3e3fd8 SHA512 f1c035d54ed952d8d4e41acab5c3ecf6aa445f348f98aeac2e7c89555ec2f6421d727b3bc4c2f54176afce137c545b20d886562901953ec091f91890e91e8559
27
28 diff --git a/dev-libs/jsoncpp/jsoncpp-1.9.1.ebuild b/dev-libs/jsoncpp/jsoncpp-1.9.1.ebuild
29 deleted file mode 100644
30 index 49dd145bbea..00000000000
31 --- a/dev-libs/jsoncpp/jsoncpp-1.9.1.ebuild
32 +++ /dev/null
33 @@ -1,67 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -PYTHON_COMPAT=( python2_7 )
40 -
41 -inherit cmake python-any-r1
42 -
43 -DESCRIPTION="C++ JSON reader and writer"
44 -HOMEPAGE="https://github.com/open-source-parsers/jsoncpp"
45 -SRC_URI="https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="|| ( public-domain MIT )"
48 -SLOT="0/21"
49 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
50 -IUSE="doc test"
51 -
52 -DEPEND="
53 - doc? (
54 - app-doc/doxygen
55 - ${PYTHON_DEPS}
56 - )
57 - test? (
58 - ${PYTHON_DEPS}
59 - )"
60 -RDEPEND=""
61 -
62 -RESTRICT="!test? ( test )"
63 -
64 -pkg_setup() {
65 - if use doc || use test; then
66 - python-any-r1_pkg_setup
67 - fi
68 -}
69 -
70 -src_configure() {
71 - local mycmakeargs=(
72 - -DJSONCPP_WITH_TESTS=$(usex test)
73 - -DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF
74 - -DJSONCPP_WITH_CMAKE_PACKAGE=ON
75 -
76 - -DBUILD_SHARED_LIBS=ON
77 -
78 - # Follow Debian, Ubuntu, Arch convention for headers location
79 - # bug #452234
80 - -DCMAKE_INSTALL_INCLUDEDIR=include/jsoncpp
81 -
82 - # Disable implicit ccache use
83 - -DCCACHE_FOUND=OFF
84 - )
85 - cmake_src_configure
86 -}
87 -
88 -src_compile() {
89 - cmake_src_compile
90 -
91 - if use doc; then
92 - cp "${BUILD_DIR}"/version . || die
93 - "${EPYTHON}" doxybuild.py --doxygen="${EPREFIX}"/usr/bin/doxygen || die
94 - HTML_DOCS=( dist/doxygen/jsoncpp*/. )
95 - fi
96 -}
97 -
98 -src_test() {
99 - cmake_build jsoncpp_check
100 -}