Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libuev/
Date: Thu, 27 Feb 2020 13:55:04
Message-Id: 1582811682.86c2e1a6cad7b0269c0d14e68b5bc0ea4310f968.juippis@gentoo
1 commit: 86c2e1a6cad7b0269c0d14e68b5bc0ea4310f968
2 Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Sun Feb 23 08:58:42 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 27 13:54:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86c2e1a6
7
8 dev-libs/libuev: bump version to 2.3.1
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.16
11 Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/14747
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 dev-libs/libuev/Manifest | 1 +
16 dev-libs/libuev/libuev-2.3.1.ebuild | 23 +++++++++++++++++++++++
17 2 files changed, 24 insertions(+)
18
19 diff --git a/dev-libs/libuev/Manifest b/dev-libs/libuev/Manifest
20 index c981d716f0a..cd63db86b15 100644
21 --- a/dev-libs/libuev/Manifest
22 +++ b/dev-libs/libuev/Manifest
23 @@ -1,2 +1,3 @@
24 DIST libuev-2.2.0.tar.xz 245680 BLAKE2B 40d0912dcec56d58863411e034c6ddded3470bc2ea3a9f49d36fa0ef924e9ff206cb96ef93582134881ce8377938688d44cfa04d7e533321baf7cfd754f0dff0 SHA512 700c91100c61af2101a6d1756eed97aaf51d6b1dc3a59f90f668d8bb6e3d817aa6f765af5acbbdaeccd4382a97c8e99d2a13ad679fc8582891e0546baa6f001f
25 DIST libuev-2.3.0.tar.xz 247932 BLAKE2B dea136cbd34788b7156a5ce1b8390467fde77a21b6fb4c7b27068b87254eb42034579bcaed3228dcfacd00b320668db915557230ebbb8da9487ade2359a5fabe SHA512 dc6cd2d1df5336027d8df77fda17b9d9521d955ffa013a5e83958d6b4f981f14f5b0caac3e68e4fa4a8a00bbe8001a18de54ebc441b4231a2d17600c762f80d2
26 +DIST libuev-2.3.1.tar.xz 247596 BLAKE2B b2d6a7034aa27a80c17438e4329cba59bc4f047b2879662f9900e886f13a948f2c507732d5c5a4abbb130e42af9ba8a935724d1542f3c929a60198889ac7cce9 SHA512 bd463604a89f5bd3e749375f450b376ed1d57b1195b69a5bcfd247fe92c4d42d245bbce9a7950f5aa5a13ce75abeeee028073b7d4356b7770d8821aa501113a9
27
28 diff --git a/dev-libs/libuev/libuev-2.3.1.ebuild b/dev-libs/libuev/libuev-2.3.1.ebuild
29 new file mode 100644
30 index 00000000000..c4a3bb57a11
31 --- /dev/null
32 +++ b/dev-libs/libuev/libuev-2.3.1.ebuild
33 @@ -0,0 +1,23 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +DESCRIPTION="A collection of useful BSD APIs"
40 +HOMEPAGE="https://github.com/troglobit/libuev"
41 +SRC_URI="https://github.com/troglobit/${PN}/releases/download/v${PV}/${P}.tar.xz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="static-libs"
47 +
48 +src_configure() {
49 + econf --enable-static=$(usex static-libs)
50 +}
51 +
52 +src_install() {
53 + default
54 + find "${D}" -name '*.la' -delete || die
55 + rm "${D}/usr/share/doc/${PF}/LICENSE" || die
56 +}