From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 23998158087 for ; Sat, 25 Dec 2021 23:20:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC0DE2BC01A; Sat, 25 Dec 2021 23:20:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D81F92BC01A for ; Sat, 25 Dec 2021 23:20:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5AA88343090 for ; Sat, 25 Dec 2021 23:20:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69A6A266 for ; Sat, 25 Dec 2021 23:20:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1640474408.e52c2188a04febeb10a1e1939d4fcbaa36ccc118.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libuev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libuev/Manifest dev-libs/libuev/libuev-2.4.0.ebuild X-VCS-Directories: dev-libs/libuev/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e52c2188a04febeb10a1e1939d4fcbaa36ccc118 X-VCS-Branch: master Date: Sat, 25 Dec 2021 23:20:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4ae35760-910f-40f5-be06-ba1454f187d9 X-Archives-Hash: d304e3922288f0b3973d2342587025e6 commit: e52c2188a04febeb10a1e1939d4fcbaa36ccc118 Author: Oz N Tiram gmail com> AuthorDate: Fri Dec 24 23:31:13 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 25 23:20:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52c2188 dev-libs/libuev: add 2.4.0 Signed-off-by: Oz N Tiram gmail.com> Signed-off-by: Sam James gentoo.org> dev-libs/libuev/Manifest | 1 + dev-libs/libuev/libuev-2.4.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-libs/libuev/Manifest b/dev-libs/libuev/Manifest index 1d559f83565d..865367d6a526 100644 --- a/dev-libs/libuev/Manifest +++ b/dev-libs/libuev/Manifest @@ -1 +1,2 @@ DIST libuev-2.3.2.tar.xz 247784 BLAKE2B 30f9ca2d71c2f05173d4c5863e0dce64e7a77987e3472b11ac5f3ecf677712ddc5fe9e9cc9587f73d6a5acfb716d02dfa744bb301d55b834d44e944bf09f3bd0 SHA512 dccf83ea61dd4841d2b7e1e75b8c46f41607b26aeefd49bc3d594d864408a282c2ff4cf6ff84cf596fe3382c02e53631593f12d5b79afd9f2e57fb9d021b60a8 +DIST libuev-2.4.0.tar.xz 281344 BLAKE2B b3bc81205510729b73e52717eb647c37b446d6c947032e09480413a8a52e93b0dc6539189639aca9e045b1c48dcb34e3115c074f41b8f1d716815a8f8a5ac08a SHA512 0f33ca8f8ce43fb746befdc09585db5bfeabc3bd1aac7e336e01ed21baaf58f3ce618feb34e7ef4e692708cc182b09edfa920b43647a7a61dc3c33eaf87d3c31 diff --git a/dev-libs/libuev/libuev-2.4.0.ebuild b/dev-libs/libuev/libuev-2.4.0.ebuild new file mode 100644 index 000000000000..d82689f38da8 --- /dev/null +++ b/dev-libs/libuev/libuev-2.4.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Lightweight event loop library for Linux epoll() family APIs" +HOMEPAGE="https://github.com/troglobit/libuev" +SRC_URI="https://github.com/troglobit/${PN}/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +src_configure() { + econf --enable-static=$(usex static-libs) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die + rm "${D}/usr/share/doc/${PF}/LICENSE" || die +}