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 601FA15803E for ; Sun, 7 Jan 2024 00:20:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBF672BC037; Sun, 7 Jan 2024 00:20:27 +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 9DA672BC037 for ; Sun, 7 Jan 2024 00:20:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 40C023431C7 for ; Sun, 7 Jan 2024 00:20:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5914F14C3 for ; Sun, 7 Jan 2024 00:20:23 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1704586774.1448cc19ac552d948a5a9a0731929fb2adad4a6a.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/input-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/input-utils/input-utils-1.3.ebuild X-VCS-Directories: sys-apps/input-utils/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 1448cc19ac552d948a5a9a0731929fb2adad4a6a X-VCS-Branch: master Date: Sun, 7 Jan 2024 00:20:23 +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: bb9fbcfb-ad9a-465d-8d94-8252aea50645 X-Archives-Hash: e1560ac0b33ca2e429776052642696ac commit: 1448cc19ac552d948a5a9a0731929fb2adad4a6a Author: Michael Mair-Keimberger levelnine at> AuthorDate: Fri Dec 22 16:41:07 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Jan 7 00:19:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1448cc19 sys-apps/input-utils: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/34421 Signed-off-by: Conrad Kostecki gentoo.org> sys-apps/input-utils/input-utils-1.3.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sys-apps/input-utils/input-utils-1.3.ebuild b/sys-apps/input-utils/input-utils-1.3.ebuild index 244234922d65..9de77fcb13cc 100644 --- a/sys-apps/input-utils/input-utils-1.3.ebuild +++ b/sys-apps/input-utils/input-utils-1.3.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 MY_PN="input" MY_P="${MY_PN}-${PV}" @@ -9,15 +9,14 @@ MY_P="${MY_PN}-${PV}" DESCRIPTION="Small collection of linux input layer utils" HOMEPAGE="https://www.kraxel.org/blog/linux/input/" SRC_URI="https://www.kraxel.org/releases/input/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ppc ~riscv x86" -S="${WORKDIR}/${MY_P}" - src_install() { - emake install bindir="${D}"/usr/bin mandir="${D}"/usr/share/man STRIP="" + emake EPREFIX="${EPREFIX}/usr" bindir="${ED}"/usr/bin mandir="${ED}"/usr/share/man STRIP="" install dodoc lircd.conf dodoc README }