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/univalue/
Date: Wed, 14 Feb 2018 15:46:36
Message-Id: 1518623036.e893f6761ddd0afe1a98e10abfb280b729d7d1df.mgorny@gentoo
1 commit: e893f6761ddd0afe1a98e10abfb280b729d7d1df
2 Author: Luke Dashjr <luke-jr+git <AT> utopios <DOT> org>
3 AuthorDate: Mon Jul 10 23:18:39 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 14 15:43:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e893f676
7
8 dev-libs/univalue: Bump to 1.0.3
9
10 Closes: https://github.com/gentoo/gentoo/pull/5081
11
12 dev-libs/univalue/Manifest | 1 +
13 dev-libs/univalue/univalue-1.0.3.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-libs/univalue/Manifest b/dev-libs/univalue/Manifest
17 index 1505087393c..d07cc76a2a3 100644
18 --- a/dev-libs/univalue/Manifest
19 +++ b/dev-libs/univalue/Manifest
20 @@ -1 +1,2 @@
21 DIST univalue-1.0.2.tgz 14201 BLAKE2B 47a72a629bc3a0ff193c33d89c3a97e19abca833180473b0a37a6f5a4ba15b7886d1a605a905f7a94af2512e4d1e9f2a7879cae4c5a0af78ac9dfb23a0a581c7 SHA512 727096735dbad082741fb863c9066936a80d7337b1d7c4c289107d240b7f695756a8720f5db320f0c7521b523e299829bd49833b6a31969d8aa43267653a4f2f
22 +DIST univalue-1.0.3.tar.gz 16820 BLAKE2B 40dd6c4e08e8f4a27731aa0fd6931162f8427a709cc3fc16c049a093d17a08f002a6eb08cf3c4fa9870805f3eed7627c8c9baa7cdc6d6fc8970a085488a955b0 SHA512 1c8358baca82b44d7a762c0cb3b7bef6f36d2f3d0ab29045224c1c39b69fbcbb66573dfb9ee4705f71aadff542cc9f02e98921b1c013748e2c0cd63c386bc1df
23
24 diff --git a/dev-libs/univalue/univalue-1.0.3.ebuild b/dev-libs/univalue/univalue-1.0.3.ebuild
25 new file mode 100644
26 index 00000000000..8e6fe5bdaf5
27 --- /dev/null
28 +++ b/dev-libs/univalue/univalue-1.0.3.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="C++ universal value object and JSON library"
38 +HOMEPAGE="https://github.com/jgarzik/univalue"
39 +SRC_URI="https://codeload.github.com/jgarzik/${PN}/tar.gz/v${PV} -> ${P}.tar.gz"
40 +
41 +LICENSE="MIT"
42 +SLOT="0/0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
44 +IUSE=""
45 +
46 +DEPEND=""
47 +RDEPEND="${DEPEND}"
48 +
49 +src_prepare() {
50 + default
51 + eautoreconf
52 +}
53 +
54 +src_configure() {
55 + econf --disable-static
56 +}
57 +
58 +src_install() {
59 + default
60 + find "${D}" -name '*.la' -delete || die
61 +}