Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/univalue/
Date: Tue, 27 Nov 2018 17:28:23
Message-Id: 1543339647.0e3ac5b80c2b42f55b70576db5df7f02ab48d9dd.candrews@gentoo
1 commit: 0e3ac5b80c2b42f55b70576db5df7f02ab48d9dd
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 27 16:47:11 2018 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 27 17:27:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e3ac5b8
7
8 dev-libs/univalue: 1.0.4 version bump
9
10 Closes: https://bugs.gentoo.org/show_bug.cgi?id=672066
11 Package-Manager: Portage-2.3.52, Repoman-2.3.12
12 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
13
14 dev-libs/univalue/Manifest | 1 +
15 dev-libs/univalue/univalue-1.0.4.ebuild | 38 +++++++++++++++++++++++++++++++++
16 2 files changed, 39 insertions(+)
17
18 diff --git a/dev-libs/univalue/Manifest b/dev-libs/univalue/Manifest
19 index d07cc76a2a3..b8fd0e52c73 100644
20 --- a/dev-libs/univalue/Manifest
21 +++ b/dev-libs/univalue/Manifest
22 @@ -1,2 +1,3 @@
23 DIST univalue-1.0.2.tgz 14201 BLAKE2B 47a72a629bc3a0ff193c33d89c3a97e19abca833180473b0a37a6f5a4ba15b7886d1a605a905f7a94af2512e4d1e9f2a7879cae4c5a0af78ac9dfb23a0a581c7 SHA512 727096735dbad082741fb863c9066936a80d7337b1d7c4c289107d240b7f695756a8720f5db320f0c7521b523e299829bd49833b6a31969d8aa43267653a4f2f
24 DIST univalue-1.0.3.tar.gz 16820 BLAKE2B 40dd6c4e08e8f4a27731aa0fd6931162f8427a709cc3fc16c049a093d17a08f002a6eb08cf3c4fa9870805f3eed7627c8c9baa7cdc6d6fc8970a085488a955b0 SHA512 1c8358baca82b44d7a762c0cb3b7bef6f36d2f3d0ab29045224c1c39b69fbcbb66573dfb9ee4705f71aadff542cc9f02e98921b1c013748e2c0cd63c386bc1df
25 +DIST univalue-1.0.4.tar.gz 19677 BLAKE2B 1565a8aabe9b4dfddb2a8b577077bfe50a66aca62e63cfafaaadf1429ad08c0d8aa9f69469b063b2f3c51885addd0a6ab820e06f1ae1b9850de163dd2d1065fd SHA512 cd503ad2f59ea47afbce4acd352ba2baa06b8237f9cfec669353556cff85761e85717ba16c2dc76094b9a9554e5cb27e73e726f2c2d1e6dc5c76e4a5c4cd8edc
26
27 diff --git a/dev-libs/univalue/univalue-1.0.4.ebuild b/dev-libs/univalue/univalue-1.0.4.ebuild
28 new file mode 100644
29 index 00000000000..989d23ce6cc
30 --- /dev/null
31 +++ b/dev-libs/univalue/univalue-1.0.4.ebuild
32 @@ -0,0 +1,38 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit autotools
39 +
40 +DESCRIPTION="C++ universal value object and JSON library"
41 +HOMEPAGE="https://github.com/jgarzik/univalue"
42 +
43 +if [[ ${PV} == *9999 ]] ; then
44 + EGIT_REPO_URI="https://github.com/jgarzik/${PN}.git"
45 + inherit git-r3
46 +else
47 + SRC_URI="https://codeload.github.com/jgarzik/${PN}/tar.gz/v${PV} -> ${P}.tar.gz"
48 + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
49 +fi
50 +
51 +LICENSE="MIT"
52 +SLOT="0/0"
53 +IUSE=""
54 +
55 +DEPEND=""
56 +RDEPEND="${DEPEND}"
57 +
58 +src_prepare() {
59 + default
60 + eautoreconf
61 +}
62 +
63 +src_configure() {
64 + econf --disable-static
65 +}
66 +
67 +src_install() {
68 + default
69 + find "${D}" -name '*.la' -delete || die
70 +}