Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-laptop/i8kutils/
Date: Thu, 21 May 2020 08:14:19
Message-Id: 1590048827.a28cf771613bcfed39785aadf26fb23fa61c0a58.asturm@gentoo
1 commit: a28cf771613bcfed39785aadf26fb23fa61c0a58
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 08:13:47 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 08:13:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a28cf771
7
8 app-laptop/i8kutils: Drop 1.33-r1
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-laptop/i8kutils/Manifest | 1 -
14 app-laptop/i8kutils/i8kutils-1.33-r1.ebuild | 54 -----------------------------
15 2 files changed, 55 deletions(-)
16
17 diff --git a/app-laptop/i8kutils/Manifest b/app-laptop/i8kutils/Manifest
18 index 2322a663fee..aa67d983e3c 100644
19 --- a/app-laptop/i8kutils/Manifest
20 +++ b/app-laptop/i8kutils/Manifest
21 @@ -1,2 +1 @@
22 -DIST i8kutils_1.33.tar.gz 50378 BLAKE2B 648d5dca57a407b1239b5a8d51dbe44214140368eefa71d72ef31b0cac3c0e7af2cb0ce44eb7ee429f555ef6503025ffa7543d9d17d2c42db98b67865fac0a03 SHA512 a7b9277b8c9bc2642a65122dda31cfa7cc0c4fa780ba980364c0a4e0e4599502c6557871464ff256c5911370d98944826d0e29d4d3621605d5e8c1c8a23e5578
23 DIST i8kutils_1.42.tar.xz 37544 BLAKE2B ca8ec63252f43b269ba2a5565fce275aaa6542ebe6f4824d12b194cb0ae8b09dbe354c743ad78af8bcb897e411f1739df464e6c5603d470842de4b59be753984 SHA512 148e8788c50cbaa22f1dd3b72867839f5bc2d91cda70aee74f7c9a3d8542386a44652c5eb8dd9eba0e30400fc6bb72855d3cc7f2dc4284c2529b9cba2eac485b
24
25 diff --git a/app-laptop/i8kutils/i8kutils-1.33-r1.ebuild b/app-laptop/i8kutils/i8kutils-1.33-r1.ebuild
26 deleted file mode 100644
27 index cf870ed7fd3..00000000000
28 --- a/app-laptop/i8kutils/i8kutils-1.33-r1.ebuild
29 +++ /dev/null
30 @@ -1,54 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=4
35 -
36 -inherit systemd toolchain-funcs
37 -
38 -DESCRIPTION="Dell Inspiron and Latitude utilities"
39 -HOMEPAGE="http://packages.debian.org/sid/i8kutils"
40 -SRC_URI="mirror://debian/pool/main/i/${PN}/${P/-/_}.tar.gz"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0"
44 -KEYWORDS="-* amd64 x86"
45 -IUSE="examples tk"
46 -
47 -DEPEND="tk? ( dev-lang/tk )"
48 -RDEPEND="${DEPEND}"
49 -
50 -DOCS=( README.i8kutils )
51 -
52 -src_prepare() {
53 - sed \
54 - -e '/^CC/d' \
55 - -e '/^CFLAGS/d' \
56 - -e 's: -g : $(LDFLAGS) :g' \
57 - -i Makefile || die
58 -
59 - tc-export CC
60 -}
61 -
62 -src_install() {
63 - dobin i8kbuttons i8kctl
64 - doman i8kbuttons.1 i8kctl.1
65 - dosym /usr/bin/i8kctl /usr/bin/i8kfan
66 -
67 - use examples && dodoc -r examples
68 -
69 - newinitd "${FILESDIR}"/i8k.init-r1 i8k
70 - newconfd "${FILESDIR}"/i8k.conf i8k
71 -
72 - if use tk; then
73 - dobin i8kmon
74 - doman i8kmon.1
75 - dodoc i8kmon.conf
76 - systemd_dounit "${FILESDIR}"/i8kmon.service
77 - else
78 - cat >> "${ED}"/etc/conf.d/i8k <<- EOF
79 - # i8kmon disabled because the package was installed without USE=tk
80 - NOMON=1
81 - EOF
82 - fi
83 -
84 -}