From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 66A20138331 for ; Thu, 15 Mar 2018 15:42:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F90BE0869; Thu, 15 Mar 2018 15:42:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7094FE0869 for ; Thu, 15 Mar 2018 15:42:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00958335C76 for ; Thu, 15 Mar 2018 15:42:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 033D426E for ; Thu, 15 Mar 2018 15:42:08 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1521128523.102e22a13e7a4eb3c17d274f831e59ae3f3ecea7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/jansson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/jansson/Manifest dev-libs/jansson/jansson-2.9.ebuild X-VCS-Directories: dev-libs/jansson/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 102e22a13e7a4eb3c17d274f831e59ae3f3ecea7 X-VCS-Branch: master Date: Thu, 15 Mar 2018 15:42:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cee9221f-ded5-4e9a-a513-b17a4a3fc855 X-Archives-Hash: 988c1d039b43d704dd7faefdcc17a2e5 commit: 102e22a13e7a4eb3c17d274f831e59ae3f3ecea7 Author: David Zero zer0-one net> AuthorDate: Mon Feb 19 22:05:09 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 15 15:42:03 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=102e22a1 dev-libs/jansson: Remove version 2.9 ebuild dev-libs/jansson/Manifest | 1 - dev-libs/jansson/jansson-2.9.ebuild | 39 ------------------------------------- 2 files changed, 40 deletions(-) diff --git a/dev-libs/jansson/Manifest b/dev-libs/jansson/Manifest index 3aa9831fee7..352a7fe5c0e 100644 --- a/dev-libs/jansson/Manifest +++ b/dev-libs/jansson/Manifest @@ -1,2 +1 @@ DIST jansson-2.10.tar.gz 487855 BLAKE2B b1d83ad1a37e66cb7c497284a7958882d5a7e13cec2260d9cc2b5eaef648feea66b70305dec9193f10cf77f37bdda17605277ea41735708ca6a9898b79fef807 SHA512 e331d5c097b4acb0b1df7d90d1d3453c26bd34bfe2e06af0027665bee9efecc2bc61cc7ab5b70dab1262bf80a3315ffb53b4176874fe07e20eee4b9ea7071d44 -DIST jansson-2.9.tar.gz 485095 BLAKE2B e874738b5bf1783a9d162f2cfa8ffc81a833c5e7d69a41a2eb298b130550bffb44d3caf2f6a524ac2b902952b31ce0cae8a9213186801bef818c31e43a202b59 SHA512 ae239e1a825c252d7a3b0ee97004c129a0968f7e9da8679dc665a8e54a34c073b0c274bd5af004700b442f7b703bcc76f5e3360ab82172da7203b3458a5e9cb9 diff --git a/dev-libs/jansson/jansson-2.9.ebuild b/dev-libs/jansson/jansson-2.9.ebuild deleted file mode 100644 index f75e332859b..00000000000 --- a/dev-libs/jansson/jansson-2.9.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools multilib-minimal - -DESCRIPTION="C library for encoding, decoding and manipulating JSON data" -HOMEPAGE="http://www.digip.org/jansson/" -SRC_URI="http://www.digip.org/jansson/releases/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86" -IUSE="doc static-libs" - -DEPEND="doc? ( >=dev-python/sphinx-1.0.4 )" -RDEPEND="" - -src_prepare() { - default - sed -ie 's/-Werror//' src/Makefile.am || die - eautoreconf -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" \ - econf \ - $(use_enable static-libs static) -} - -multilib_src_compile() { - default - - if multilib_is_native_abi && use doc ; then - emake html - HTML_DOCS=( "${BUILD_DIR}"/doc/_build/html/. ) - fi -}