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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F2DD913835A for ; Sun, 25 Oct 2020 23:45:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B0A0E0819; Sun, 25 Oct 2020 23:45:18 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A673AE0817 for ; Sun, 25 Oct 2020 23:45:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CD730340D32 for ; Sun, 25 Oct 2020 23:45:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 747F737F for ; Sun, 25 Oct 2020 23:45:14 +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: <1603669508.839db4f0e63e5e2a7912cd44ab5ad789918d1445.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libnih/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libnih/libnih-1.0.3-r3.ebuild X-VCS-Directories: sys-libs/libnih/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 839db4f0e63e5e2a7912cd44ab5ad789918d1445 X-VCS-Branch: master Date: Sun, 25 Oct 2020 23:45:14 +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: a7f9beda-347b-41a8-9733-cbef4a190802 X-Archives-Hash: 82ec2d9265cac937fd1b206627b922bb commit: 839db4f0e63e5e2a7912cd44ab5ad789918d1445 Author: Sam James gentoo org> AuthorDate: Sun Oct 25 23:44:43 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 25 23:45:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=839db4f0 sys-libs/libnih: cleanup old EAPI 4 Closes: https://bugs.gentoo.org/724174 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> sys-libs/libnih/libnih-1.0.3-r3.ebuild | 49 ---------------------------------- 1 file changed, 49 deletions(-) diff --git a/sys-libs/libnih/libnih-1.0.3-r3.ebuild b/sys-libs/libnih/libnih-1.0.3-r3.ebuild deleted file mode 100644 index 018cbe1034a..00000000000 --- a/sys-libs/libnih/libnih-1.0.3-r3.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit versionator eutils autotools toolchain-funcs multilib flag-o-matic usr-ldscript - -DESCRIPTION="Light-weight 'standard library' of C functions" -HOMEPAGE="https://launchpad.net/libnih" -SRC_URI="https://launchpad.net/${PN}/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86" -IUSE="+dbus nls static-libs +threads" - -# The configure phase will check for valgrind headers, and the tests will use -# that header, but only to do dynamic valgrind detection. The tests aren't -# run directly through valgrind, only by developers directly. So don't bother -# depending on valgrind here. #559830 -RDEPEND="dbus? ( dev-libs/expat >=sys-apps/dbus-1.2.16 )" -DEPEND="${RDEPEND} - sys-devel/gettext - virtual/pkgconfig" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.0.3-optional-dbus.patch - epatch "${FILESDIR}"/${PN}-1.0.3-pkg-config.patch - epatch "${FILESDIR}"/${PN}-1.0.3-signal-race.patch - eautoreconf -} - -src_configure() { - append-lfs-flags - econf \ - $(use_with dbus) \ - $(use_enable nls) \ - $(use_enable static-libs static) \ - $(use_enable threads) \ - $(use_enable threads threading) -} - -src_install() { - default - - # we need to be in / because upstart needs libnih - gen_usr_ldscript -a nih $(use dbus && echo nih-dbus) - use static-libs || rm "${ED}"/usr/$(get_libdir)/*.la -}