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 1AFE2138331 for ; Fri, 20 Apr 2018 20:01:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09721E08C0; Fri, 20 Apr 2018 20:01:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 DEE79E08C0 for ; Fri, 20 Apr 2018 20:01:28 +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 B9D1D335C75 for ; Fri, 20 Apr 2018 20:01:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 188B628D for ; Fri, 20 Apr 2018 20:01:26 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1524254443.68aba6676e596d502d53ab1420d5c1115c536129.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/inputlircd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild X-VCS-Directories: app-misc/inputlircd/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 68aba6676e596d502d53ab1420d5c1115c536129 X-VCS-Branch: master Date: Fri, 20 Apr 2018 20:01:26 +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-Archives-Salt: 4eab06fb-9428-48d6-94fa-d19f0c316218 X-Archives-Hash: 7b75f5ab442ab258f6767e65d2844176 commit: 68aba6676e596d502d53ab1420d5c1115c536129 Author: Marty E. Plummer startmail com> AuthorDate: Fri Apr 20 08:02:41 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Apr 20 20:00:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68aba667 app-misc/inputlircd: epatch->eapply Also dropped unneeded eutils eclass Package-Manager: Portage-2.3.28, Repoman-2.3.9 app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild b/app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild index 0176163074c..ba0fe2e3199 100644 --- a/app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild +++ b/app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit toolchain-funcs eutils versionator + +inherit toolchain-funcs versionator DESCRIPTION="Inputlirc daemon to utilize /dev/input/event*" HOMEPAGE="https://github.com/ferdinandhuebner/inputlirc" @@ -16,7 +17,7 @@ src_prepare() { local ver="$(best_version sys-kernel/linux-headers)" ver=${ver#sys-kernel/linux-headers-} if version_is_at_least 4.4 ${ver} ; then - epatch "${FILESDIR}/inputlircd-linux-4.4-fix.patch" + eapply "${FILESDIR}/inputlircd-linux-4.4-fix.patch" fi sed -e 's:$(CFLAGS):$(CFLAGS) $(LDFLAGS):' -i Makefile || die