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: Fri, 31 Dec 2021 08:17:55
Message-Id: 1640938440.9efa3d79c79d07c34e371c3d690976c1a3cad51e.mgorny@gentoo
1 commit: 9efa3d79c79d07c34e371c3d690976c1a3cad51e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 31 08:02:15 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 31 08:14:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9efa3d79
7
8 dev-libs/jsoncpp: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-libs/jsoncpp/Manifest | 2 --
13 dev-libs/jsoncpp/jsoncpp-1.9.3.ebuild | 45 -------------------------------
14 dev-libs/jsoncpp/jsoncpp-1.9.4.ebuild | 50 -----------------------------------
15 3 files changed, 97 deletions(-)
16
17 diff --git a/dev-libs/jsoncpp/Manifest b/dev-libs/jsoncpp/Manifest
18 index 9f94bcfc7ed4..32bbef99f8fd 100644
19 --- a/dev-libs/jsoncpp/Manifest
20 +++ b/dev-libs/jsoncpp/Manifest
21 @@ -1,3 +1 @@
22 -DIST jsoncpp-1.9.3.tar.gz 212922 BLAKE2B 6f89762e899ffe127705a30c1fe86f458d62fa05b8dbde6c465c73b6855d3945f3d739ff0c26e1a6326a211c946277908684ace9363df72ba0f460f66b3e3fd8 SHA512 f1c035d54ed952d8d4e41acab5c3ecf6aa445f348f98aeac2e7c89555ec2f6421d727b3bc4c2f54176afce137c545b20d886562901953ec091f91890e91e8559
23 -DIST jsoncpp-1.9.4.tar.gz 214057 BLAKE2B 9a8c52e5d0b78f1593c93bc40f48d3789b031ba0da519c99cce17f1f6e104b24e0ffe88138c25da6dfa250586aeb9e98d00fbf74d9fb9309b29a6d4f17762263 SHA512 adfd4afbdf6b79bd37edcf0e248f07864994f1c4bcb7431f3b44102490ce467f72381908066655fa486dec12f467af0a11f42f859bbf719895974c7339db7d22
24 DIST jsoncpp-1.9.5.tar.gz 216055 BLAKE2B 744275297647be8f1ac7bbf6c818e5106fc122591b3fb68c37cf33f5b3b7d6666e8429bb7ca2ae693202a5a83c274303804e21ebb27f05ba235568bf75a9b375 SHA512 1d06e044759b1e1a4cc4960189dd7e001a0a4389d7239a6d59295af995a553518e4e0337b4b4b817e70da5d9731a4c98655af90791b6287870b5ff8d73ad8873
25
26 diff --git a/dev-libs/jsoncpp/jsoncpp-1.9.3.ebuild b/dev-libs/jsoncpp/jsoncpp-1.9.3.ebuild
27 deleted file mode 100644
28 index 1b704d188812..000000000000
29 --- a/dev-libs/jsoncpp/jsoncpp-1.9.3.ebuild
30 +++ /dev/null
31 @@ -1,45 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_{7..9} )
38 -
39 -inherit meson python-any-r1
40 -
41 -DESCRIPTION="C++ JSON reader and writer"
42 -HOMEPAGE="https://github.com/open-source-parsers/jsoncpp"
43 -SRC_URI="
44 - https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz
45 - -> ${P}.tar.gz"
46 -
47 -LICENSE="|| ( public-domain MIT )"
48 -SLOT="0/24"
49 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
50 -IUSE="doc test"
51 -RESTRICT="!test? ( test )"
52 -
53 -BDEPEND="
54 - ${PYTHON_DEPS}
55 - doc? ( app-doc/doxygen )"
56 -RDEPEND=""
57 -
58 -src_configure() {
59 - local emesonargs=(
60 - # Follow Debian, Ubuntu, Arch convention for headers location
61 - # bug #452234
62 - --includedir include/jsoncpp
63 - -Dtests=$(usex test true false)
64 - )
65 - meson_src_configure
66 -}
67 -
68 -src_compile() {
69 - meson_src_compile
70 -
71 - if use doc; then
72 - echo "${PV}" > version || die
73 - "${EPYTHON}" doxybuild.py --doxygen="${EPREFIX}"/usr/bin/doxygen || die
74 - HTML_DOCS=( dist/doxygen/jsoncpp*/. )
75 - fi
76 -}
77
78 diff --git a/dev-libs/jsoncpp/jsoncpp-1.9.4.ebuild b/dev-libs/jsoncpp/jsoncpp-1.9.4.ebuild
79 deleted file mode 100644
80 index 5c858b99e519..000000000000
81 --- a/dev-libs/jsoncpp/jsoncpp-1.9.4.ebuild
82 +++ /dev/null
83 @@ -1,50 +0,0 @@
84 -# Copyright 1999-2021 Gentoo Authors
85 -# Distributed under the terms of the GNU General Public License v2
86 -
87 -EAPI=7
88 -
89 -PYTHON_COMPAT=( python3_{7..9} )
90 -
91 -inherit meson python-any-r1
92 -
93 -DESCRIPTION="C++ JSON reader and writer"
94 -HOMEPAGE="https://github.com/open-source-parsers/jsoncpp"
95 -SRC_URI="
96 - https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz
97 - -> ${P}.tar.gz"
98 -
99 -LICENSE="|| ( public-domain MIT )"
100 -SLOT="0/24"
101 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
102 -IUSE="doc test"
103 -RESTRICT="!test? ( test )"
104 -
105 -BDEPEND="
106 - ${PYTHON_DEPS}
107 - doc? ( app-doc/doxygen )"
108 -RDEPEND=""
109 -
110 -src_configure() {
111 - local emesonargs=(
112 - # Follow Debian, Ubuntu, Arch convention for headers location
113 - # bug #452234
114 - --includedir include/jsoncpp
115 - -Dtests=$(usex test true false)
116 - )
117 - meson_src_configure
118 -}
119 -
120 -src_compile() {
121 - meson_src_compile
122 -
123 - if use doc; then
124 - echo "${PV}" > version || die
125 - "${EPYTHON}" doxybuild.py --doxygen="${EPREFIX}"/usr/bin/doxygen || die
126 - HTML_DOCS=( dist/doxygen/jsoncpp*/. )
127 - fi
128 -}
129 -
130 -src_test() {
131 - # increase test timeout due to failures on slower hardware
132 - meson_src_test -t 2
133 -}