Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/light/
Date: Sun, 29 Aug 2021 22:33:25
Message-Id: 1630276351.feae9c568a30c5b2ec6798c4e2daec26b1987210.bman@gentoo
1 commit: feae9c568a30c5b2ec6798c4e2daec26b1987210
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 29 22:32:31 2021 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 29 22:32:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feae9c56
7
8 dev-libs/light: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 dev-libs/light/light-1.2.2.ebuild | 33 ---------------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-libs/light/light-1.2.2.ebuild b/dev-libs/light/light-1.2.2.ebuild
16 deleted file mode 100644
17 index 8210dc3ec01..00000000000
18 --- a/dev-libs/light/light-1.2.2.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit autotools
27 -
28 -DESCRIPTION="A program to control backlights (and other hardware lights)"
29 -HOMEPAGE="https://github.com/haikarainen/light"
30 -SRC_URI="https://github.com/haikarainen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 -
32 -LICENSE="GPL-3"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86"
35 -
36 -IUSE="udev"
37 -
38 -RDEPEND=""
39 -DEPEND="udev? ( virtual/libudev:= )
40 - ${RDEPEND}"
41 -
42 -src_prepare() {
43 - eapply "${FILESDIR}/${P}-fcommon.patch"
44 - eapply_user
45 - eautoreconf
46 -}
47 -
48 -src_configure() {
49 - local myeconfargs=(
50 - $(usex udev --with-udev="/lib/udev/rules.d" "")
51 - )
52 - econf "${myeconfargs[@]}"
53 -}