Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
Date: Sat, 01 Jan 2022 09:39:01
Message-Id: 1641029903.16f470a1da61ee1515eb68c19ef5a9466e6e1776.sam@gentoo
1 commit: 16f470a1da61ee1515eb68c19ef5a9466e6e1776
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 1 09:31:26 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 1 09:38:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f470a1
7
8 sys-apps/edac-utils: drop 0.18
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-apps/edac-utils/edac-utils-0.18.ebuild | 49 ------------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild
16 deleted file mode 100644
17 index c4aa0a9e04cf..000000000000
18 --- a/sys-apps/edac-utils/edac-utils-0.18.ebuild
19 +++ /dev/null
20 @@ -1,49 +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 -DESCRIPTION="Userspace helper for Linux kernel EDAC drivers"
27 -HOMEPAGE="https://github.com/grondo/edac-utils"
28 -SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
29 -
30 -LICENSE="GPL-2"
31 -SLOT="0"
32 -KEYWORDS="amd64 ~arm64"
33 -IUSE="debug"
34 -
35 -DEPEND="sys-fs/sysfsutils"
36 -RDEPEND="${DEPEND}
37 - sys-apps/dmidecode"
38 -
39 -src_prepare() {
40 - default
41 -
42 - sed -i \
43 - -e 's|-Werror||' \
44 - configure || die
45 -}
46 -
47 -src_configure() {
48 - econf \
49 - --disable-static \
50 - $(use_enable debug)
51 -}
52 -
53 -src_install() {
54 - default
55 -
56 - # We don't need this init.d file
57 - # Modules should be loaded by adding them to /etc/conf.d/modules
58 - # The rest is done via the udev-rule
59 - rm -rf "${ED}/etc/init.d" || die
60 -
61 - find "${ED}" -name '*.la' -delete || die
62 -}
63 -
64 -pkg_postinst() {
65 - elog "There must be an entry for your mainboard in ${EROOT}/etc/edac/labels.db"
66 - elog "in case you want nice labels in /sys/module/*_edac/"
67 - elog "Run the following command to check whether such an entry is already available:"
68 - elog " edac-ctl --print-labels"
69 -}