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 95A40158014 for ; Sun, 29 Aug 2021 22:33:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F01F6E0857; Sun, 29 Aug 2021 22:33:24 +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 D9D59E0857 for ; Sun, 29 Aug 2021 22:33:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4DA1F342C9D for ; Sun, 29 Aug 2021 22:33:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08DB974 for ; Sun, 29 Aug 2021 22:33:21 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1630276351.feae9c568a30c5b2ec6798c4e2daec26b1987210.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/light/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/light/light-1.2.2.ebuild X-VCS-Directories: dev-libs/light/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: feae9c568a30c5b2ec6798c4e2daec26b1987210 X-VCS-Branch: master Date: Sun, 29 Aug 2021 22:33:21 +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: 82e4f76c-efc1-49fe-8c9f-c9e37902bea0 X-Archives-Hash: 17cb4162901e98193d1be8388ca32e58 commit: feae9c568a30c5b2ec6798c4e2daec26b1987210 Author: Aaron Bauman gentoo org> AuthorDate: Sun Aug 29 22:32:31 2021 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun Aug 29 22:32:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feae9c56 dev-libs/light: drop old Signed-off-by: Aaron Bauman gentoo.org> dev-libs/light/light-1.2.2.ebuild | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/dev-libs/light/light-1.2.2.ebuild b/dev-libs/light/light-1.2.2.ebuild deleted file mode 100644 index 8210dc3ec01..00000000000 --- a/dev-libs/light/light-1.2.2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A program to control backlights (and other hardware lights)" -HOMEPAGE="https://github.com/haikarainen/light" -SRC_URI="https://github.com/haikarainen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="udev" - -RDEPEND="" -DEPEND="udev? ( virtual/libudev:= ) - ${RDEPEND}" - -src_prepare() { - eapply "${FILESDIR}/${P}-fcommon.patch" - eapply_user - eautoreconf -} - -src_configure() { - local myeconfargs=( - $(usex udev --with-udev="/lib/udev/rules.d" "") - ) - econf "${myeconfargs[@]}" -}