Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/jsoncpp/
Date: Tue, 02 Jan 2018 06:19:07
Message-Id: 1514873921.253e066472497d0e91d664e1e956bc4a573b0779.mgorny@gentoo
1 commit: 253e066472497d0e91d664e1e956bc4a573b0779
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 1 22:02:37 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 06:18:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=253e0664
7
8 dev-libs/jsoncpp: Clean old up
9
10 dev-libs/jsoncpp/Manifest | 1 -
11 dev-libs/jsoncpp/jsoncpp-1.8.3.ebuild | 67 -----------------------------------
12 2 files changed, 68 deletions(-)
13
14 diff --git a/dev-libs/jsoncpp/Manifest b/dev-libs/jsoncpp/Manifest
15 index d01d9fbd106..dd2b0ca606a 100644
16 --- a/dev-libs/jsoncpp/Manifest
17 +++ b/dev-libs/jsoncpp/Manifest
18 @@ -1,5 +1,4 @@
19 DIST jsoncpp-0.10.2.tar.gz 197188 BLAKE2B eeca1bbccab98f9da0d1158d19cab0079b9a025ea53494795531de53206256d083703e2d1f0ab68e68f5f6f7427a28b3ffe04078a9fb26a775fd086783e2997f SHA512 8e451e3ba37094445ab098d5b9f7236ac84e2f15d98e2039c565e609b757c2383e91850bd86aca507ca5cd2f733fedc484bb7760eeeee7fe9bace71d97ae0d2e
20 DIST jsoncpp-0.10.6.tar.gz 200213 BLAKE2B 3b643a4c672c150ab235473010894674d1577b33b23dbe3cb1e951ddfb5ed59574ddca750f38278afbcf74de44c62d09888ee61e0e756b2a406fe663292a3d7d SHA512 9fcf584d14c31fc135c9789b36c02c5985daecc7396eb21912d5ea3e757d1fd0d516d7a060e14b4955c73f6b4aa256529281da908726919236fa65310de9f1aa
21 DIST jsoncpp-1.8.1.tar.gz 210629 BLAKE2B 5f9a7f51b463784c5a74a78b7189800a37797f233b1d5a66d34edc0689c77a2b96b230c0ed4dfc749401087c551dd5659a6d152e09342ca92250ce9ea91a293e SHA512 4203826fca4c366b51d28ffc928399c914ffaba8be1cada64ff118b5742e6b469d3fc3e59344587d851447857b479794c5697d4fd11a9a55b32a3a7a801b745b
22 -DIST jsoncpp-1.8.3.tar.gz 199061 BLAKE2B c56d0ee987185817ef92a3b9e5c7350943375aadb960ce0c6bdfa993febf8f1976f5a848c5fc8e6204c2e7f3789dca56071260d33ad3db9e62fe1334329d0fa9 SHA512 a5170ccbc440c1bd2b365e34f7367a55731d4fa86b2d323d11431cead771127364bad9d8e2e59dcbe41bc111d11a5da94988dec5e40b9119f793f43e487d7429
23 DIST jsoncpp-1.8.4.tar.gz 200226 BLAKE2B bbfa8cf7b6cfa6af34762b54de2da0e919849c65b1093b29f7a7ac437524d8b3cf07b42926b250489e9a289105df971fad798f3e73f908fac3e2f52a4e5467b3 SHA512 f70361a3263dd8b9441374a9a409462be1426c0d6587c865171a80448ab73b3f69de2b4d70d2f0c541764e1e6cccc727dd53178347901f625ec6fb54fb94f4f1
24
25 diff --git a/dev-libs/jsoncpp/jsoncpp-1.8.3.ebuild b/dev-libs/jsoncpp/jsoncpp-1.8.3.ebuild
26 deleted file mode 100644
27 index 96aefaacbe7..00000000000
28 --- a/dev-libs/jsoncpp/jsoncpp-1.8.3.ebuild
29 +++ /dev/null
30 @@ -1,67 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python2_7 )
37 -
38 -inherit cmake-utils python-any-r1
39 -
40 -DESCRIPTION="C++ JSON reader and writer"
41 -HOMEPAGE="https://github.com/open-source-parsers/jsoncpp"
42 -SRC_URI="https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="|| ( public-domain MIT )"
45 -SLOT="0/19"
46 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
47 -IUSE="doc test"
48 -
49 -DEPEND="
50 - doc? (
51 - app-doc/doxygen
52 - ${PYTHON_DEPS}
53 - )
54 - test? (
55 - ${PYTHON_DEPS}
56 - )"
57 -RDEPEND=""
58 -
59 -RESTRICT="!test? ( test )"
60 -
61 -pkg_setup() {
62 - if use doc || use test; then
63 - python-any-r1_pkg_setup
64 - fi
65 -}
66 -
67 -src_configure() {
68 - local mycmakeargs=(
69 - -DJSONCPP_WITH_TESTS=$(usex test)
70 - -DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF
71 - -DJSONCPP_WITH_CMAKE_PACKAGE=ON
72 -
73 - -DBUILD_SHARED_LIBS=ON
74 - -DBUILD_STATIC_LIBS=OFF
75 -
76 - # Follow Debian, Ubuntu, Arch convention for headers location
77 - # bug #452234
78 - -DCMAKE_INSTALL_INCLUDEDIR=include/jsoncpp
79 -
80 - # Disable implicit ccache use
81 - -DCCACHE_FOUND=OFF
82 - )
83 - cmake-utils_src_configure
84 -}
85 -
86 -src_compile() {
87 - cmake-utils_src_compile
88 -
89 - if use doc; then
90 - "${EPYTHON}" doxybuild.py --doxygen="${EPREFIX}"/usr/bin/doxygen || die
91 - HTML_DOCS=( dist/doxygen/jsoncpp*/. )
92 - fi
93 -}
94 -
95 -src_test() {
96 - cmake-utils_src_make jsoncpp_check
97 -}