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 3EA94158086 for ; Sat, 25 Dec 2021 23:20:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF6B12BC029; Sat, 25 Dec 2021 23:20:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 F04222BC01E 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 44D1734308F 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 7BF73268 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.5d3512231842064a5829a9f74c9d5b8432013f2d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libuev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libuev/libuev-2.3.2.ebuild X-VCS-Directories: dev-libs/libuev/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5d3512231842064a5829a9f74c9d5b8432013f2d 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: 49f06aa4-30fe-4b18-902b-2c11fdc51d4c X-Archives-Hash: 5a8f3f748a1e17e6acb24c4881e557fc commit: 5d3512231842064a5829a9f74c9d5b8432013f2d Author: Oz N Tiram gmail com> AuthorDate: Fri Dec 24 23:32:08 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=5d351223 dev-libs/libuev: drop 2.3.2 Signed-off-by: Oz N Tiram gmail.com> Closes: https://github.com/gentoo/gentoo/pull/23503 Signed-off-by: Sam James gentoo.org> dev-libs/libuev/libuev-2.3.2.ebuild | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/dev-libs/libuev/libuev-2.3.2.ebuild b/dev-libs/libuev/libuev-2.3.2.ebuild deleted file mode 100644 index d82689f38da8..000000000000 --- a/dev-libs/libuev/libuev-2.3.2.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# 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 -}