Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/acpilight/
Date: Tue, 01 Sep 2020 16:16:27
Message-Id: 1598976978.63d302653fd8350e4d24a748816be2121aae3b1e.grknight@gentoo
1 commit: 63d302653fd8350e4d24a748816be2121aae3b1e
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 1 16:13:35 2020 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 16:16:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63d30265
7
8 sys-power/acpilight: Drop old 1.1
9
10 Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
11
12 sys-power/acpilight/Manifest | 1 -
13 sys-power/acpilight/acpilight-1.1.ebuild | 53 --------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/sys-power/acpilight/Manifest b/sys-power/acpilight/Manifest
17 index 03785a2f9cd..9207a9f4274 100644
18 --- a/sys-power/acpilight/Manifest
19 +++ b/sys-power/acpilight/Manifest
20 @@ -1,2 +1 @@
21 -DIST acpilight-v1.1.tar.gz 17583 BLAKE2B 9505d0b2e1eb6e311b3be7938c455dcca399b2a644856f57593be4da56b637445b796f16300540436645b4dc660f7330b63ff3eecf93ecb49b366d152d5c5faf SHA512 af10a538fec83315aaec3837647622ecea41cb936d38667e4e70689a2b8a968a786fc9ad2be136d5799fa091f07614886decc9044e71aec1e64765e90ddae439
22 DIST acpilight-v1.2.tar.gz 18068 BLAKE2B 469fd12c0a24b152681d73add559733a294f8a0848f46d0d3a1e209dea2ad3b180294677a8d84a82387ec34b00bbfda85a10f447fe22b81a3c51225cdce14051 SHA512 ef634ec0f315fe94dca138f1b9231f320b93340db3365ab9a09cf898fe4691f70573041bcb04563d760f1201000ea3ff11ab5dad3bfffddf3d3070dedb5732d7
23
24 diff --git a/sys-power/acpilight/acpilight-1.1.ebuild b/sys-power/acpilight/acpilight-1.1.ebuild
25 deleted file mode 100644
26 index c22bf8439c5..00000000000
27 --- a/sys-power/acpilight/acpilight-1.1.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit python-r1 udev
38 -
39 -MY_P="${PN}-v${PV}"
40 -
41 -DESCRIPTION="Replacement for xbacklight that uses the ACPI interface to set brightness"
42 -HOMEPAGE="https://gitlab.com/wavexx/acpilight/"
43 -SRC_URI="https://gitlab.com/wavexx/acpilight/-/archive/v${PV}/${MY_P}.tar.gz"
44 -LICENSE="GPL-3+"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE=""
48 -
49 -S="${WORKDIR}/${MY_P}"
50 -
51 -RDEPEND="virtual/udev
52 - ${PYTHON_DEPS}
53 - !x11-apps/xbacklight"
54 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
55 -DOCS=( README.rst NEWS.rst )
56 -
57 -# Disable Makefile that installs by default
58 -src_compile() { :; }
59 -
60 -src_install() {
61 - python_foreach_impl python_doscript xbacklight
62 - udev_dorules "${S}"/90-backlight.rules
63 - doman xbacklight.1
64 - einstalldocs
65 - newinitd "${FILESDIR}"/acpilight.initd acpilight
66 - newconfd "${FILESDIR}"/acpilight.confd acpilight
67 -}
68 -
69 -pkg_postinst() {
70 - udev_reload
71 - einfo
72 - elog "To use the xbacklight binary as a regular user, you must be a part of the video group"
73 - einfo
74 - elog "If this utility does not find any backlights to manipulate,"
75 - elog "verify you have kernel support on the device and display driver enabled."
76 - einfo
77 - elog "To take advantage of the init script, and automate the process of"
78 - elog "saving and restoring the brightness level you should add acpilight"
79 - elog "to the boot runlevel. You can do this as root like so:"
80 - elog "# rc-update add acpilight boot"
81 - einfo
82 -}