Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jq/
Date: Mon, 01 Feb 2016 22:53:39
Message-Id: 1454367196.17efc05ff1f7a2cd0bbe7a4db0fffe7e87aa3987.chutzpah@gentoo
1 commit: 17efc05ff1f7a2cd0bbe7a4db0fffe7e87aa3987
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 1 22:52:15 2016 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 1 22:53:16 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17efc05f
7
8 app-misc/jq: Drop ebuild for 1.5 since -r1 fixes some depdency issues
9
10 Package-Manager: portage-2.2.27
11
12 app-misc/jq/jq-1.5.ebuild | 50 -----------------------------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/app-misc/jq/jq-1.5.ebuild b/app-misc/jq/jq-1.5.ebuild
16 deleted file mode 100644
17 index 4bf14a4..0000000
18 --- a/app-misc/jq/jq-1.5.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=6
26 -
27 -inherit autotools
28 -
29 -DESCRIPTION="A lightweight and flexible command-line JSON processor"
30 -HOMEPAGE="https://stedolan.github.com/jq/"
31 -SRC_URI="https://github.com/stedolan/jq/releases/download/${P}/${P}.tar.gz"
32 -
33 -LICENSE="MIT CC-BY-3.0"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86 ~x64-macos"
36 -IUSE="oniguruma static-libs test"
37 -
38 -DEPEND="sys-devel/bison
39 - sys-devel/flex
40 - oniguruma? ( dev-libs/oniguruma[static-libs?] )
41 - test? ( dev-util/valgrind )"
42 -
43 -DOCS=( AUTHORS README )
44 -
45 -PATCHES=(
46 - "${FILESDIR}"/${PN}-1.5-dynamic-link.patch
47 - "${FILESDIR}"/${P}-remove-automagic-dep-on-oniguruma.patch
48 -)
49 -
50 -src_prepare() {
51 - sed -i '/^dist_doc_DATA/d' Makefile.am || die
52 - sed -i -r "s:(m4_define\(\[jq_version\],) .+\):\1 \[${PV}\]):" \
53 - configure.ac || die
54 -
55 - default
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - # don't try to rebuild docs
61 - econf \
62 - --disable-docs \
63 - $(use_enable static-libs static) \
64 - $(use_with oniguruma)
65 -}
66 -
67 -src_install() {
68 - default
69 - use static-libs || find "${ED}" -name libjq.la -delete
70 -}