diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2017-07-10 23:18:39 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-02-14 16:43:56 +0100 |
commit | e893f6761ddd0afe1a98e10abfb280b729d7d1df (patch) | |
tree | 9f0b2e60a60f859b494cb53ae812de9b6acb91b8 /dev-libs/univalue | |
parent | www-client/chromium: remove old (diff) | |
download | gentoo-e893f6761ddd0afe1a98e10abfb280b729d7d1df.tar.gz gentoo-e893f6761ddd0afe1a98e10abfb280b729d7d1df.tar.bz2 gentoo-e893f6761ddd0afe1a98e10abfb280b729d7d1df.zip |
dev-libs/univalue: Bump to 1.0.3
Closes: https://github.com/gentoo/gentoo/pull/5081
Diffstat (limited to 'dev-libs/univalue')
-rw-r--r-- | dev-libs/univalue/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/univalue/univalue-1.0.3.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-libs/univalue/Manifest b/dev-libs/univalue/Manifest index 1505087393c1..d07cc76a2a3c 100644 --- a/dev-libs/univalue/Manifest +++ b/dev-libs/univalue/Manifest @@ -1 +1,2 @@ DIST univalue-1.0.2.tgz 14201 BLAKE2B 47a72a629bc3a0ff193c33d89c3a97e19abca833180473b0a37a6f5a4ba15b7886d1a605a905f7a94af2512e4d1e9f2a7879cae4c5a0af78ac9dfb23a0a581c7 SHA512 727096735dbad082741fb863c9066936a80d7337b1d7c4c289107d240b7f695756a8720f5db320f0c7521b523e299829bd49833b6a31969d8aa43267653a4f2f +DIST univalue-1.0.3.tar.gz 16820 BLAKE2B 40dd6c4e08e8f4a27731aa0fd6931162f8427a709cc3fc16c049a093d17a08f002a6eb08cf3c4fa9870805f3eed7627c8c9baa7cdc6d6fc8970a085488a955b0 SHA512 1c8358baca82b44d7a762c0cb3b7bef6f36d2f3d0ab29045224c1c39b69fbcbb66573dfb9ee4705f71aadff542cc9f02e98921b1c013748e2c0cd63c386bc1df diff --git a/dev-libs/univalue/univalue-1.0.3.ebuild b/dev-libs/univalue/univalue-1.0.3.ebuild new file mode 100644 index 000000000000..8e6fe5bdaf55 --- /dev/null +++ b/dev-libs/univalue/univalue-1.0.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="C++ universal value object and JSON library" +HOMEPAGE="https://github.com/jgarzik/univalue" +SRC_URI="https://codeload.github.com/jgarzik/${PN}/tar.gz/v${PV} -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/0" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |