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 EEDE2158094 for ; Wed, 17 Aug 2022 13:01:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A285E089C; Wed, 17 Aug 2022 13:01:11 +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 47F23E089C for ; Wed, 17 Aug 2022 13:01:11 +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 651BF34130C for ; Wed, 17 Aug 2022 13:01:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F193580 for ; Wed, 17 Aug 2022 13:01:07 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1660741245.19b6abc3ab861a22c9340e9eebb80d15b2b3d808.asturm@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: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 19b6abc3ab861a22c9340e9eebb80d15b2b3d808 X-VCS-Branch: master Date: Wed, 17 Aug 2022 13:01:07 +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: 92eca703-8cba-412c-8f5a-0388072bc300 X-Archives-Hash: 2b5345ff82975c0bb864f33c97c1b30f commit: 19b6abc3ab861a22c9340e9eebb80d15b2b3d808 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Aug 17 10:52:16 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 17 13:00:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19b6abc3 app-misc/inputlircd: drop 0.0.1_pre15-r2, EAPI-6-- Closes: https://bugs.gentoo.org/865439 Signed-off-by: Andreas Sturmlechner gentoo.org> .../inputlircd/inputlircd-0.0.1_pre15-r2.ebuild | 37 ---------------------- 1 file changed, 37 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 deleted file mode 100644 index 832ae5d90026..000000000000 --- a/app-misc/inputlircd/inputlircd-0.0.1_pre15-r2.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs versionator - -DESCRIPTION="Inputlirc daemon to utilize /dev/input/event*" -HOMEPAGE="https://github.com/ferdinandhuebner/inputlirc" -SRC_URI="http://gentooexperimental.org/~genstef/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv x86" - -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 - eapply "${FILESDIR}/inputlircd-linux-4.4-fix.patch" - fi - - sed -e 's:$(CFLAGS):$(CFLAGS) $(LDFLAGS):' -i Makefile || die - - default -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr install - - newinitd "${FILESDIR}"/inputlircd.init.2 inputlircd - newconfd "${FILESDIR}"/inputlircd.conf inputlircd -}