Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
Date: Thu, 29 Dec 2022 17:26:40
Message-Id: 1672334790.f887800c7a940282004c8f6bb4b2a53dfe7df6ca.sam@gentoo
1 commit: f887800c7a940282004c8f6bb4b2a53dfe7df6ca
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 29 17:26:21 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 29 17:26:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f887800c
7
8 app-admin/rasdaemon: drop 0.6.7
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-admin/rasdaemon/rasdaemon-0.6.7.ebuild | 68 ------------------------------
13 1 file changed, 68 deletions(-)
14
15 diff --git a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
16 deleted file mode 100644
17 index 12a8438bc2ba..000000000000
18 --- a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
19 +++ /dev/null
20 @@ -1,68 +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 linux-info systemd
27 -
28 -DESCRIPTION="Reliability, Availability and Serviceability logging tool"
29 -HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
30 -SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64 x86"
35 -IUSE="sqlite"
36 -
37 -DEPEND=""
38 -RDEPEND="
39 - ${DEPEND}
40 - sys-devel/gettext
41 - sys-apps/dmidecode
42 - sqlite? (
43 - dev-db/sqlite
44 - dev-perl/DBD-SQLite
45 - )
46 -"
47 -
48 -PATCHES=(
49 - "${FILESDIR}/sysconfig-fix-0.6.7.patch"
50 -)
51 -
52 -pkg_setup() {
53 - linux-info_pkg_setup
54 - local CONFIG_CHECK="~ACPI_EXTLOG"
55 - check_extra_config
56 -}
57 -
58 -src_configure() {
59 - local myconf=(
60 - $(use_enable sqlite sqlite3)
61 - --enable-abrt-report
62 - --enable-aer
63 - --enable-arm
64 - --enable-extlog
65 - --enable-hisi-ns-decode
66 - --enable-mce
67 - --enable-non-standard
68 - --enable-devlink
69 - --enable-diskerror
70 - --enable-memory-ce-pfa
71 - --includedir="/usr/include/${PN}"
72 - --localstatedir=/var
73 - )
74 -
75 - econf "${myconf[@]}"
76 -}
77 -
78 -src_install() {
79 - default
80 -
81 - keepdir "/var/lib/${PN}"
82 -
83 - systemd_dounit misc/*.service
84 -
85 - newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
86 - newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
87 - newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
88 -}