commit:     e97311eadc3ba7e5066b82458a4f7ada12f1d0c2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 26 06:40:38 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 16:13:53 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e97311ea

dev-libs/jsoncpp: Drop old

 dev-libs/jsoncpp/Manifest                 |  2 -
 dev-libs/jsoncpp/jsoncpp-0.10.2-r1.ebuild | 75 -------------------------------
 dev-libs/jsoncpp/jsoncpp-0.10.6.ebuild    | 71 -----------------------------
 3 files changed, 148 deletions(-)

diff --git a/dev-libs/jsoncpp/Manifest b/dev-libs/jsoncpp/Manifest
index dd2b0ca606a..2af18dd83a0 100644
--- a/dev-libs/jsoncpp/Manifest
+++ b/dev-libs/jsoncpp/Manifest
@@ -1,4 +1,2 @@
-DIST jsoncpp-0.10.2.tar.gz 197188 BLAKE2B 
eeca1bbccab98f9da0d1158d19cab0079b9a025ea53494795531de53206256d083703e2d1f0ab68e68f5f6f7427a28b3ffe04078a9fb26a775fd086783e2997f
 SHA512 
8e451e3ba37094445ab098d5b9f7236ac84e2f15d98e2039c565e609b757c2383e91850bd86aca507ca5cd2f733fedc484bb7760eeeee7fe9bace71d97ae0d2e
-DIST jsoncpp-0.10.6.tar.gz 200213 BLAKE2B 
3b643a4c672c150ab235473010894674d1577b33b23dbe3cb1e951ddfb5ed59574ddca750f38278afbcf74de44c62d09888ee61e0e756b2a406fe663292a3d7d
 SHA512 
9fcf584d14c31fc135c9789b36c02c5985daecc7396eb21912d5ea3e757d1fd0d516d7a060e14b4955c73f6b4aa256529281da908726919236fa65310de9f1aa
 DIST jsoncpp-1.8.1.tar.gz 210629 BLAKE2B 
5f9a7f51b463784c5a74a78b7189800a37797f233b1d5a66d34edc0689c77a2b96b230c0ed4dfc749401087c551dd5659a6d152e09342ca92250ce9ea91a293e
 SHA512 
4203826fca4c366b51d28ffc928399c914ffaba8be1cada64ff118b5742e6b469d3fc3e59344587d851447857b479794c5697d4fd11a9a55b32a3a7a801b745b
 DIST jsoncpp-1.8.4.tar.gz 200226 BLAKE2B 
bbfa8cf7b6cfa6af34762b54de2da0e919849c65b1093b29f7a7ac437524d8b3cf07b42926b250489e9a289105df971fad798f3e73f908fac3e2f52a4e5467b3
 SHA512 
f70361a3263dd8b9441374a9a409462be1426c0d6587c865171a80448ab73b3f69de2b4d70d2f0c541764e1e6cccc727dd53178347901f625ec6fb54fb94f4f1

diff --git a/dev-libs/jsoncpp/jsoncpp-0.10.2-r1.ebuild 
b/dev-libs/jsoncpp/jsoncpp-0.10.2-r1.ebuild
deleted file mode 100644
index 282e25c214a..00000000000
--- a/dev-libs/jsoncpp/jsoncpp-0.10.2-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils python-any-r1
-
-DESCRIPTION="C++ JSON reader and writer"
-HOMEPAGE="https://github.com/open-source-parsers/jsoncpp";
-SRC_URI="https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="|| ( public-domain MIT )"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE="doc test"
-
-DEPEND="
-       doc? (
-               app-doc/doxygen
-               ${PYTHON_DEPS}
-       )
-       test? (
-               ${PYTHON_DEPS}
-       )"
-RDEPEND=""
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-       # fix broken path subst in .pc file
-       "${FILESDIR}"/jsoncpp-1.6.2-fix-pkgconfig.patch
-       "${FILESDIR}/${P}-arm.patch"
-)
-
-pkg_setup() {
-       if use doc || use test; then
-               python-any-r1_pkg_setup
-       fi
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DJSONCPP_WITH_TESTS=$(usex test)
-               -DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF
-               -DJSONCPP_WITH_CMAKE_PACKAGE=ON
-
-               -DBUILD_SHARED_LIBS=ON
-               # Follow Debian, Ubuntu, Arch convention for headers location
-               # bug #452234
-               -DINCLUDE_INSTALL_DIR="${EPREFIX}"/usr/include/jsoncpp
-       )
-
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       cmake-utils_src_compile
-
-       if use doc; then
-               "${EPYTHON}" doxybuild.py --doxygen=/usr/bin/doxygen || die
-       fi
-}
-
-src_test() {
-       emake -C "${BUILD_DIR}" jsoncpp_check
-}
-
-src_install() {
-       cmake-utils_src_install
-
-       if use doc; then
-               dohtml dist/doxygen/jsoncpp*/*
-       fi
-}

diff --git a/dev-libs/jsoncpp/jsoncpp-0.10.6.ebuild 
b/dev-libs/jsoncpp/jsoncpp-0.10.6.ebuild
deleted file mode 100644
index 52631dc5155..00000000000
--- a/dev-libs/jsoncpp/jsoncpp-0.10.6.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils python-any-r1
-
-DESCRIPTION="C++ JSON reader and writer"
-HOMEPAGE="https://github.com/open-source-parsers/jsoncpp";
-SRC_URI="https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="|| ( public-domain MIT )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc test"
-
-DEPEND="
-       doc? (
-               app-doc/doxygen
-               ${PYTHON_DEPS}
-       )
-       test? (
-               ${PYTHON_DEPS}
-       )"
-RDEPEND=""
-
-RESTRICT="!test? ( test )"
-
-pkg_setup() {
-       if use doc || use test; then
-               python-any-r1_pkg_setup
-       fi
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DJSONCPP_WITH_TESTS=$(usex test)
-               -DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF
-               -DJSONCPP_WITH_CMAKE_PACKAGE=ON
-
-               -DBUILD_SHARED_LIBS=ON
-               -DBUILD_STATIC_LIBS=OFF
-               # Follow Debian, Ubuntu, Arch convention for headers location
-               # bug #452234
-               -DINCLUDE_INSTALL_DIR="${EPREFIX}"/usr/include/jsoncpp
-       )
-
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       cmake-utils_src_compile
-
-       if use doc; then
-               "${EPYTHON}" doxybuild.py --doxygen=/usr/bin/doxygen || die
-       fi
-}
-
-src_test() {
-       emake -C "${BUILD_DIR}" jsoncpp_check
-}
-
-src_install() {
-       cmake-utils_src_install
-
-       if use doc; then
-               docinto html
-               dodoc -r dist/doxygen/jsoncpp*/.
-       fi
-}

Reply via email to