Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-laptop/mbpfan/
Date: Sun, 31 Jul 2022 22:52:05
Message-Id: 1659307904.eca012345e60192ef2b9f2e9cb3b066a99f91b2a.soap@gentoo
1 commit: eca012345e60192ef2b9f2e9cb3b066a99f91b2a
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 22:51:44 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 31 22:51:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eca01234
7
8 app-laptop/mbpfan: drop 2.1.1
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 app-laptop/mbpfan/Manifest | 1 -
13 app-laptop/mbpfan/mbpfan-2.1.1.ebuild | 43 -----------------------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/app-laptop/mbpfan/Manifest b/app-laptop/mbpfan/Manifest
17 index 4a597c58c6d4..cd7d919845c7 100644
18 --- a/app-laptop/mbpfan/Manifest
19 +++ b/app-laptop/mbpfan/Manifest
20 @@ -1,2 +1 @@
21 -DIST mbpfan-2.1.1.tar.gz 40637 BLAKE2B bdd17a9a883cc9af3cb7d55a2c8594c435fb367f0c6b5dec2b3da85747e2c2af591ed1dabf082cbbc31ac92ce5b2dc5194d8a50836c87cd784f238322ab09d9f SHA512 c1bf81c5e2f2f4f710a8455c65f10dc2dc2255319a7dbf4367c31884eece8d9909d28f3a00e5fc4d964d65254b36202a2a2b666d0ef04ea04153baded6039449
22 DIST mbpfan-2.2.1.tar.gz 40455 BLAKE2B 0932919b4808fa41d64c326f0d202650be25798ca692b4c17cc94a88f3287ccdd10d74c27f95ac8ef7d900f0067b3c40dc8798d99210b89c01b8cb0d63187b98 SHA512 ce358047910bd6996e1d47fe08e1825863e043fc9a33b3c4922ea537e58dd7508fc45c651816125e7b32472cbb3d06afa4a487daba5b910a8580623def938a71
23
24 diff --git a/app-laptop/mbpfan/mbpfan-2.1.1.ebuild b/app-laptop/mbpfan/mbpfan-2.1.1.ebuild
25 deleted file mode 100644
26 index 565655fb2b27..000000000000
27 --- a/app-laptop/mbpfan/mbpfan-2.1.1.ebuild
28 +++ /dev/null
29 @@ -1,43 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit linux-info systemd toolchain-funcs
36 -
37 -DESCRIPTION="A simple daemon to control fan speed on all Macbook/Macbook Pros"
38 -HOMEPAGE="https://github.com/dgraziotin/mbpfan"
39 -LICENSE="GPL-3+"
40 -SLOT="0"
41 -RESTRICT="test" # will fail if the hardware is unavailable, not useful
42 -
43 -if [[ "${PV}" = 9999 ]]; then
44 - inherit git-r3
45 - EGIT_REPO_URI="https://github.com/dgraziotin/${PN}.git"
46 -else
47 - SRC_URI="https://github.com/dgraziotin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 - KEYWORDS="~amd64"
49 -fi
50 -
51 -CONFIG_CHECK="~SENSORS_APPLESMC ~SENSORS_CORETEMP"
52 -
53 -src_compile() {
54 - emake CC="$(tc-getCC)"
55 -}
56 -
57 -src_install() {
58 - emake DESTDIR="${ED}" install
59 -
60 - # Remove the empty systemd unit directory
61 - # It doesn't actually install the unit file
62 - rmdir --ignore-fail-on-non-empty -p "${ED%/}/lib/systemd/system" || die
63 - # Actually install the sytstemd unit file
64 - systemd_dounit ${PN}.service
65 - # Install openrc init file
66 - newinitd ${PN}.init.gentoo ${PN}
67 -
68 - # make install doesn't install the docs in the right place
69 - rm -rf "${ED%/}/usr/share/doc/${PN}" || die
70 -
71 - einstalldocs
72 -}