* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2017-12-21 21:46 Matt Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matt Thode @ 2017-12-21 21:46 UTC (permalink / raw
To: gentoo-commits
commit: 2ec5d27e3a98b1e308c902bcc7e6998b4a80dbef
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 21 21:46:05 2017 +0000
Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Dec 21 21:46:32 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ec5d27e
app-admin/rasdaemon: 0.6.0 added as a replacement for mcelog
Package-Manager: Portage-2.3.14, Repoman-2.3.6
app-admin/rasdaemon/Manifest | 1 +
app-admin/rasdaemon/metadata.xml | 18 ++++++++++++++
app-admin/rasdaemon/rasdaemon-0.6.0.ebuild | 39 ++++++++++++++++++++++++++++++
3 files changed, 58 insertions(+)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
new file mode 100644
index 00000000000..93bbf015df3
--- /dev/null
+++ b/app-admin/rasdaemon/Manifest
@@ -0,0 +1 @@
+DIST rasdaemon-0.6.0.tar.bz2 361721 BLAKE2B af992c810024df4f553727b4aff4f4f1d41cb3f7e458ac91916ccbac6815b6ade697f0c49bf1e072205c7f872cfc9c2f7223fe0d3f090064ffaa0bab002d4f67 SHA512 cb363ee9968dab10951077edea6558adc235c2ba1a57294ccf2d483c49af3366bcec0a5857fe2b475a5407de850f706c44bfe4d8a80bcfb53b1c7e2d101ba72f
diff --git a/app-admin/rasdaemon/metadata.xml b/app-admin/rasdaemon/metadata.xml
new file mode 100644
index 00000000000..2e59b91513a
--- /dev/null
+++ b/app-admin/rasdaemon/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>prometheanfire@gentoo.org</email>
+ <name>Matthew Thode</name>
+ </maintainer>
+ <longdescription lang="en">
+ Rasdaemon is a RAS (Reliability, Availability and Serviceability) logging tool.
+It currently records memory errors, using the EDAC tracing events.
+EDAC is drivers in the Linux kernel that handle detection of ECC errors
+from memory controllers for most chipsets on i386 and x86_64 architectures.
+EDAC drivers for other architectures like arm also exists.
+This userspace component consists of an init script which makes sure
+EDAC drivers and DIMM labels are loaded at system startup, as well as
+an utility for reporting current error counts from the EDAC sysfs files.
+ </longdescription>
+</pkgmetadata>
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.0.ebuild
new file mode 100644
index 00000000000..7bb3e34c6e7
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.6.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
+SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+ ${DEPEND}
+ sys-devel/gettext
+ dev-db/sqlite
+ sys-apps/dmidecode
+"
+
+src_configure() {
+ econf --enable-mce \
+ --enable-aer \
+ --enable-sqlite3 \
+ --enable-extlog \
+ --enable-abrt-report \
+ --enable-non-standard \
+ --enable-hisi-ns-decode \
+ --enable-arm
+}
+
+src_install() {
+ default
+ systemd_dounit misc/*.service
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2018-01-15 16:14 Matt Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matt Thode @ 2018-01-15 16:14 UTC (permalink / raw
To: gentoo-commits
commit: dd92dd44879d47dc770a7d942492706c5b4f9bd5
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 15 16:14:30 2018 +0000
Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Jan 15 16:14:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd92dd44
app-admin/rasdaemon: bump with kernel config checks
Package-Manager: Portage-2.3.14, Repoman-2.3.6
app-admin/rasdaemon/rasdaemon-0.6.0-r1.ebuild | 46 +++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.0-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.0-r1.ebuild
new file mode 100644
index 00000000000..aa124a97770
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.6.0-r1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit linux-info systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
+SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+ ${DEPEND}
+ sys-devel/gettext
+ dev-db/sqlite
+ sys-apps/dmidecode
+"
+
+pkg_setup() {
+ linux-info_pkg_setup
+ local CONFIG_CHECK="FUNCTION_TRACER FUNCTION_GRAPH_TRACER STACK_TRACER DYNAMIC_FTRACE"
+ check_extra_config
+}
+
+src_configure() {
+ econf --enable-abrt-report \
+ --enable-aer \
+ --enable-arm \
+ --enable-extlog \
+ --enable-hisi-ns-decode \
+ --enable-mce \
+ --enable-non-standard \
+ --enable-sqlite3 \
+ --localstatedir=/var
+}
+
+src_install() {
+ default
+ systemd_dounit misc/*.service
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2018-06-13 20:29 Matt Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matt Thode @ 2018-06-13 20:29 UTC (permalink / raw
To: gentoo-commits
commit: f9001af1754b2b07870fa07976f2bbc953220c5d
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 13 20:27:31 2018 +0000
Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed Jun 13 20:29:26 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9001af1
app-admin/rasdaemon: 0.6.1 bup
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-admin/rasdaemon/Manifest | 1 +
app-admin/rasdaemon/rasdaemon-0.6.1.ebuild | 46 ++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
index 93bbf015df3..2f5274334ef 100644
--- a/app-admin/rasdaemon/Manifest
+++ b/app-admin/rasdaemon/Manifest
@@ -1 +1,2 @@
DIST rasdaemon-0.6.0.tar.bz2 361721 BLAKE2B af992c810024df4f553727b4aff4f4f1d41cb3f7e458ac91916ccbac6815b6ade697f0c49bf1e072205c7f872cfc9c2f7223fe0d3f090064ffaa0bab002d4f67 SHA512 cb363ee9968dab10951077edea6558adc235c2ba1a57294ccf2d483c49af3366bcec0a5857fe2b475a5407de850f706c44bfe4d8a80bcfb53b1c7e2d101ba72f
+DIST rasdaemon-0.6.1.tar.bz2 363201 BLAKE2B bdc7ec3c2e7e4b2fee02dddc55b5afd82df64717f45da15dbfd5fee87721b80ac425af5806ee7462cad29c6ab2953a2e649c4b1e455983d8821a1f633d76c85d SHA512 a221a7ea0e4555befbf8acb9d4ce22d5cc7861a0da458111a24905fa06be0e8f3b18d8de5334310a423657febc0532d2705236de89cb1788302bf487ede29f60
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild
new file mode 100644
index 00000000000..aa124a97770
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit linux-info systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
+SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+ ${DEPEND}
+ sys-devel/gettext
+ dev-db/sqlite
+ sys-apps/dmidecode
+"
+
+pkg_setup() {
+ linux-info_pkg_setup
+ local CONFIG_CHECK="FUNCTION_TRACER FUNCTION_GRAPH_TRACER STACK_TRACER DYNAMIC_FTRACE"
+ check_extra_config
+}
+
+src_configure() {
+ econf --enable-abrt-report \
+ --enable-aer \
+ --enable-arm \
+ --enable-extlog \
+ --enable-hisi-ns-decode \
+ --enable-mce \
+ --enable-non-standard \
+ --enable-sqlite3 \
+ --localstatedir=/var
+}
+
+src_install() {
+ default
+ systemd_dounit misc/*.service
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2018-06-28 16:25 Matt Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matt Thode @ 2018-06-28 16:25 UTC (permalink / raw
To: gentoo-commits
commit: 6f62a6975ebfff50b2b217480c36bc10b8731338
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 28 16:24:55 2018 +0000
Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Jun 28 16:24:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f62a697
app-admin/rasdaemon: make config_check options optional
made optional for so it should be able to be built on systems without
those options (it's a runtime need, not a build need).
This should also help with binhost building.
Closes: https://bugs.gentoo.org/658058
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-admin/rasdaemon/rasdaemon-0.6.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild
index aa124a97770..fd97b294f4e 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild
@@ -24,7 +24,7 @@ RDEPEND="
pkg_setup() {
linux-info_pkg_setup
- local CONFIG_CHECK="FUNCTION_TRACER FUNCTION_GRAPH_TRACER STACK_TRACER DYNAMIC_FTRACE"
+ local CONFIG_CHECK="~FUNCTION_TRACER ~FUNCTION_GRAPH_TRACER ~STACK_TRACER ~DYNAMIC_FTRACE"
check_extra_config
}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2018-07-16 2:58 Matt Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matt Thode @ 2018-07-16 2:58 UTC (permalink / raw
To: gentoo-commits
commit: 519196fa7364c290cf0f8d029faeac4c41a7166a
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 16 02:57:44 2018 +0000
Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Jul 16 02:57:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519196fa
app-admin/rasdaemon: add missing dep
Closes: https://bugs.gentoo.org/660986
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-admin/rasdaemon/Manifest | 1 -
app-admin/rasdaemon/rasdaemon-0.6.0-r1.ebuild | 46 ----------------------
app-admin/rasdaemon/rasdaemon-0.6.0.ebuild | 39 ------------------
...emon-0.6.1.ebuild => rasdaemon-0.6.1-r1.ebuild} | 1 +
4 files changed, 1 insertion(+), 86 deletions(-)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
index 2f5274334ef..de797238347 100644
--- a/app-admin/rasdaemon/Manifest
+++ b/app-admin/rasdaemon/Manifest
@@ -1,2 +1 @@
-DIST rasdaemon-0.6.0.tar.bz2 361721 BLAKE2B af992c810024df4f553727b4aff4f4f1d41cb3f7e458ac91916ccbac6815b6ade697f0c49bf1e072205c7f872cfc9c2f7223fe0d3f090064ffaa0bab002d4f67 SHA512 cb363ee9968dab10951077edea6558adc235c2ba1a57294ccf2d483c49af3366bcec0a5857fe2b475a5407de850f706c44bfe4d8a80bcfb53b1c7e2d101ba72f
DIST rasdaemon-0.6.1.tar.bz2 363201 BLAKE2B bdc7ec3c2e7e4b2fee02dddc55b5afd82df64717f45da15dbfd5fee87721b80ac425af5806ee7462cad29c6ab2953a2e649c4b1e455983d8821a1f633d76c85d SHA512 a221a7ea0e4555befbf8acb9d4ce22d5cc7861a0da458111a24905fa06be0e8f3b18d8de5334310a423657febc0532d2705236de89cb1788302bf487ede29f60
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.0-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.0-r1.ebuild
deleted file mode 100644
index aa124a97770..00000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.0-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- dev-db/sqlite
- sys-apps/dmidecode
-"
-
-pkg_setup() {
- linux-info_pkg_setup
- local CONFIG_CHECK="FUNCTION_TRACER FUNCTION_GRAPH_TRACER STACK_TRACER DYNAMIC_FTRACE"
- check_extra_config
-}
-
-src_configure() {
- econf --enable-abrt-report \
- --enable-aer \
- --enable-arm \
- --enable-extlog \
- --enable-hisi-ns-decode \
- --enable-mce \
- --enable-non-standard \
- --enable-sqlite3 \
- --localstatedir=/var
-}
-
-src_install() {
- default
- systemd_dounit misc/*.service
-}
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.0.ebuild
deleted file mode 100644
index 7bb3e34c6e7..00000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- dev-db/sqlite
- sys-apps/dmidecode
-"
-
-src_configure() {
- econf --enable-mce \
- --enable-aer \
- --enable-sqlite3 \
- --enable-extlog \
- --enable-abrt-report \
- --enable-non-standard \
- --enable-hisi-ns-decode \
- --enable-arm
-}
-
-src_install() {
- default
- systemd_dounit misc/*.service
-}
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.1-r1.ebuild
similarity index 97%
rename from app-admin/rasdaemon/rasdaemon-0.6.1.ebuild
rename to app-admin/rasdaemon/rasdaemon-0.6.1-r1.ebuild
index fd97b294f4e..18c68185be3 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.1.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.1-r1.ebuild
@@ -20,6 +20,7 @@ RDEPEND="
sys-devel/gettext
dev-db/sqlite
sys-apps/dmidecode
+ dev-perl/DBD-SQLite
"
pkg_setup() {
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2018-12-12 7:05 Matthew Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matthew Thode @ 2018-12-12 7:05 UTC (permalink / raw
To: gentoo-commits
commit: 78cae72a3eef162d5ff2af6af7a10a61aadbf406
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 12 06:26:23 2018 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed Dec 12 07:04:19 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78cae72a
app-admin/rasdaemon: fix multiple issues
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.2-r2.ebuild | 57 +++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.2-r2.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.2-r2.ebuild
new file mode 100644
index 00000000000..0e27e9fe31e
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.6.2-r2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit linux-info systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
+SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+ ${DEPEND}
+ sys-devel/gettext
+ dev-db/sqlite
+ sys-apps/dmidecode
+ dev-perl/DBD-SQLite
+"
+
+pkg_setup() {
+ linux-info_pkg_setup
+ local CONFIG_CHECK="~ACPI_EXTLOG ~DYNAMIC_FTRACE ~FUNCTION_GRAPH_TRACER ~FUNCTION_TRACER ~STACK_TRACER"
+ check_extra_config
+}
+
+src_configure() {
+ local myconf=(
+ --enable-abrt-report
+ --enable-aer
+ --enable-arm
+ --enable-extlog
+ --enable-hisi-ns-decode
+ --enable-mce
+ --enable-non-standard
+ --enable-sqlite3
+ --includedir="/usr/include/${PN}"
+ --localstatedir=/var
+ )
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ keepdir "/var/lib/${PN}"
+
+ systemd_dounit misc/*.service
+
+ newinitd "${FILESDIR}/rasdaemon.openrc" rasdaemon
+ newinitd "${FILESDIR}/ras-mc-ctl.openrc" ras-mc-ctl
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2019-05-31 16:25 Matthew Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matthew Thode @ 2019-05-31 16:25 UTC (permalink / raw
To: gentoo-commits
commit: d8072837af9ad05b3ef81039811096d2d8c87b16
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Fri May 31 09:52:26 2019 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri May 31 16:25:17 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8072837
app-admin/rasdaemon: fix sqlite use flag
Closes: https://bugs.gentoo.org/687056
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild
index 5659b1666af..19491e34040 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild
@@ -33,6 +33,7 @@ pkg_setup() {
src_configure() {
local myconf=(
+ $(use_enable sqlite sqlite3)
--enable-abrt-report
--enable-aer
--enable-arm
@@ -40,13 +41,9 @@ src_configure() {
--enable-hisi-ns-decode
--enable-mce
--enable-non-standard
- --enable-sqlite3
--includedir="/usr/include/${PN}"
--localstatedir=/var
)
- if use sqlite ; then
- myconf="${myconf} --enable-sqlite3)"
- fi
econf "${myconf[@]}"
}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2020-01-18 23:28 Matthew Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matthew Thode @ 2020-01-18 23:28 UTC (permalink / raw
To: gentoo-commits
commit: f46ea06d6d147b8230a2fbe5e7941fcd8cf5f1bd
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 18 23:27:35 2020 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sat Jan 18 23:27:51 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f46ea06d
app-admin/rasdaemon: 0.6.5 bump
Fixes: https://bugs.gentoo.org/642016
Fixes: https://bugs.gentoo.org/705706
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
app-admin/rasdaemon/Manifest | 1 +
app-admin/rasdaemon/rasdaemon-0.6.5.ebuild | 63 ++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
index 7d14f3d5052..a1fcfc65ec6 100644
--- a/app-admin/rasdaemon/Manifest
+++ b/app-admin/rasdaemon/Manifest
@@ -1,2 +1,3 @@
DIST rasdaemon-0.6.1.tar.bz2 363201 BLAKE2B bdc7ec3c2e7e4b2fee02dddc55b5afd82df64717f45da15dbfd5fee87721b80ac425af5806ee7462cad29c6ab2953a2e649c4b1e455983d8821a1f633d76c85d SHA512 a221a7ea0e4555befbf8acb9d4ce22d5cc7861a0da458111a24905fa06be0e8f3b18d8de5334310a423657febc0532d2705236de89cb1788302bf487ede29f60
DIST rasdaemon-0.6.2.tar.bz2 375140 BLAKE2B fd22185172777865120fbd13b7bfb5db9b9b0348fe8575ca6b5f16fd662c1e847729e239342b1c9ece70a4e79ad00352bb69d9f80cfbc8da2c961e68874dd03b SHA512 d8c1ee2cc801124837b3a0739f3016a206165306e300ce51e6aac2cef56bb65479f96cdb019ba3a5cffeba94e7b67ca22686d4ac94bfa8a8a1145db6ba51096b
+DIST rasdaemon-0.6.5.tar.bz2 403435 BLAKE2B bc6fa1aea6a6f0190a4f26df936f0ceb4c9b2ae00183ad9239430a018d9c8178e54b016a0aa9d22d97d851b59321b4a27cad7196f1fc22790d15a19c9c06f6e6 SHA512 aa781f3148ae32c8bc7ff8007574912454180725b9b102e1c7c583101dd1fd96debbdc78f3f2a35db45df359c7547cad4d87b490af66f444341c0dc8429c1310
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.5.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.5.ebuild
new file mode 100644
index 00000000000..37e14a241e6
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.6.5.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
+SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="sqlite"
+
+DEPEND=""
+RDEPEND="
+ ${DEPEND}
+ sys-devel/gettext
+ sys-apps/dmidecode
+ sqlite? (
+ dev-db/sqlite
+ dev-perl/DBD-SQLite
+ )
+"
+
+pkg_setup() {
+ linux-info_pkg_setup
+ local CONFIG_CHECK="~ACPI_EXTLOG"
+ check_extra_config
+}
+
+src_configure() {
+ local myconf=(
+ $(use_enable sqlite sqlite3)
+ --enable-abrt-report
+ --enable-aer
+ --enable-arm
+ --enable-extlog
+ --enable-hisi-ns-decode
+ --enable-mce
+ --enable-non-standard
+ --enable-devlink
+ --enable-diskerror
+ --includedir="/usr/include/${PN}"
+ --localstatedir=/var
+ )
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ keepdir "/var/lib/${PN}"
+
+ systemd_dounit misc/*.service
+
+ newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
+ newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
+ newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2020-08-16 19:27 Matthew Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matthew Thode @ 2020-08-16 19:27 UTC (permalink / raw
To: gentoo-commits
commit: b133c3a7c53ea6523c66adf64cf095b1c4914cb8
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 16 19:27:41 2020 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sun Aug 16 19:27:41 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b133c3a7
app-admin/rasdaemon: 0.6.6 bump
Closes: https://bugs.gentoo.org/708636
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
app-admin/rasdaemon/Manifest | 1 +
app-admin/rasdaemon/rasdaemon-0.6.6.ebuild | 64 ++++++++++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
index a1fcfc65ec6..698796bd4f2 100644
--- a/app-admin/rasdaemon/Manifest
+++ b/app-admin/rasdaemon/Manifest
@@ -1,3 +1,4 @@
DIST rasdaemon-0.6.1.tar.bz2 363201 BLAKE2B bdc7ec3c2e7e4b2fee02dddc55b5afd82df64717f45da15dbfd5fee87721b80ac425af5806ee7462cad29c6ab2953a2e649c4b1e455983d8821a1f633d76c85d SHA512 a221a7ea0e4555befbf8acb9d4ce22d5cc7861a0da458111a24905fa06be0e8f3b18d8de5334310a423657febc0532d2705236de89cb1788302bf487ede29f60
DIST rasdaemon-0.6.2.tar.bz2 375140 BLAKE2B fd22185172777865120fbd13b7bfb5db9b9b0348fe8575ca6b5f16fd662c1e847729e239342b1c9ece70a4e79ad00352bb69d9f80cfbc8da2c961e68874dd03b SHA512 d8c1ee2cc801124837b3a0739f3016a206165306e300ce51e6aac2cef56bb65479f96cdb019ba3a5cffeba94e7b67ca22686d4ac94bfa8a8a1145db6ba51096b
DIST rasdaemon-0.6.5.tar.bz2 403435 BLAKE2B bc6fa1aea6a6f0190a4f26df936f0ceb4c9b2ae00183ad9239430a018d9c8178e54b016a0aa9d22d97d851b59321b4a27cad7196f1fc22790d15a19c9c06f6e6 SHA512 aa781f3148ae32c8bc7ff8007574912454180725b9b102e1c7c583101dd1fd96debbdc78f3f2a35db45df359c7547cad4d87b490af66f444341c0dc8429c1310
+DIST rasdaemon-0.6.6.tar.bz2 404681 BLAKE2B 4314cd064b255df1cb1a148914c856d074fda1fc2d63e0554cbf0b78799c4252afdd4e827390729e191ff2ed9f719f6610487e85dd52af2b02694fb17740df05 SHA512 481ecd624ab5521d60ee7c613ee05d1d19b85e914b92eae84d18cb2e6dc788981213d49a6316cf575517b6e180f46c66c65804e4feb518bdd84bc21cd2970e08
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.6.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.6.ebuild
new file mode 100644
index 00000000000..65a479d775e
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.6.6.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
+SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="sqlite"
+
+DEPEND=""
+RDEPEND="
+ ${DEPEND}
+ sys-devel/gettext
+ sys-apps/dmidecode
+ sqlite? (
+ dev-db/sqlite
+ dev-perl/DBD-SQLite
+ )
+"
+
+pkg_setup() {
+ linux-info_pkg_setup
+ local CONFIG_CHECK="~ACPI_EXTLOG"
+ check_extra_config
+}
+
+src_configure() {
+ local myconf=(
+ $(use_enable sqlite sqlite3)
+ --enable-abrt-report
+ --enable-aer
+ --enable-arm
+ --enable-extlog
+ --enable-hisi-ns-decode
+ --enable-mce
+ --enable-non-standard
+ --enable-devlink
+ --enable-diskerror
+ --enable-memory-ce-pfa
+ --includedir="/usr/include/${PN}"
+ --localstatedir=/var
+ )
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ keepdir "/var/lib/${PN}"
+
+ systemd_dounit misc/*.service
+
+ newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
+ newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
+ newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2021-01-06 16:35 Andreas K. Hüttel
0 siblings, 0 replies; 36+ messages in thread
From: Andreas K. Hüttel @ 2021-01-06 16:35 UTC (permalink / raw
To: gentoo-commits
commit: aa860ecd45e3901d4faca78db2bcf3a6880352fc
Author: Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 6 16:20:13 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Jan 6 16:35:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa860ecd
app-admin/rasdaemon: Remove old
Bug: https://bugs.gentoo.org/708636
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel <dilfridge <AT> gentoo.org>
app-admin/rasdaemon/Manifest | 3 --
app-admin/rasdaemon/rasdaemon-0.6.1-r1.ebuild | 47 --------------------
app-admin/rasdaemon/rasdaemon-0.6.2-r1.ebuild | 50 ---------------------
app-admin/rasdaemon/rasdaemon-0.6.2-r3.ebuild | 57 ------------------------
app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild | 61 --------------------------
app-admin/rasdaemon/rasdaemon-0.6.5.ebuild | 63 ---------------------------
6 files changed, 281 deletions(-)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
index 698796bd4f2..e0d3a767a2b 100644
--- a/app-admin/rasdaemon/Manifest
+++ b/app-admin/rasdaemon/Manifest
@@ -1,4 +1 @@
-DIST rasdaemon-0.6.1.tar.bz2 363201 BLAKE2B bdc7ec3c2e7e4b2fee02dddc55b5afd82df64717f45da15dbfd5fee87721b80ac425af5806ee7462cad29c6ab2953a2e649c4b1e455983d8821a1f633d76c85d SHA512 a221a7ea0e4555befbf8acb9d4ce22d5cc7861a0da458111a24905fa06be0e8f3b18d8de5334310a423657febc0532d2705236de89cb1788302bf487ede29f60
-DIST rasdaemon-0.6.2.tar.bz2 375140 BLAKE2B fd22185172777865120fbd13b7bfb5db9b9b0348fe8575ca6b5f16fd662c1e847729e239342b1c9ece70a4e79ad00352bb69d9f80cfbc8da2c961e68874dd03b SHA512 d8c1ee2cc801124837b3a0739f3016a206165306e300ce51e6aac2cef56bb65479f96cdb019ba3a5cffeba94e7b67ca22686d4ac94bfa8a8a1145db6ba51096b
-DIST rasdaemon-0.6.5.tar.bz2 403435 BLAKE2B bc6fa1aea6a6f0190a4f26df936f0ceb4c9b2ae00183ad9239430a018d9c8178e54b016a0aa9d22d97d851b59321b4a27cad7196f1fc22790d15a19c9c06f6e6 SHA512 aa781f3148ae32c8bc7ff8007574912454180725b9b102e1c7c583101dd1fd96debbdc78f3f2a35db45df359c7547cad4d87b490af66f444341c0dc8429c1310
DIST rasdaemon-0.6.6.tar.bz2 404681 BLAKE2B 4314cd064b255df1cb1a148914c856d074fda1fc2d63e0554cbf0b78799c4252afdd4e827390729e191ff2ed9f719f6610487e85dd52af2b02694fb17740df05 SHA512 481ecd624ab5521d60ee7c613ee05d1d19b85e914b92eae84d18cb2e6dc788981213d49a6316cf575517b6e180f46c66c65804e4feb518bdd84bc21cd2970e08
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.1-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.1-r1.ebuild
deleted file mode 100644
index 18c68185be3..00000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.1-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- dev-db/sqlite
- sys-apps/dmidecode
- dev-perl/DBD-SQLite
-"
-
-pkg_setup() {
- linux-info_pkg_setup
- local CONFIG_CHECK="~FUNCTION_TRACER ~FUNCTION_GRAPH_TRACER ~STACK_TRACER ~DYNAMIC_FTRACE"
- check_extra_config
-}
-
-src_configure() {
- econf --enable-abrt-report \
- --enable-aer \
- --enable-arm \
- --enable-extlog \
- --enable-hisi-ns-decode \
- --enable-mce \
- --enable-non-standard \
- --enable-sqlite3 \
- --localstatedir=/var
-}
-
-src_install() {
- default
- systemd_dounit misc/*.service
-}
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.2-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.2-r1.ebuild
deleted file mode 100644
index 330e1815fc3..00000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.2-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- dev-db/sqlite
- sys-apps/dmidecode
- dev-perl/DBD-SQLite
-"
-
-pkg_setup() {
- linux-info_pkg_setup
- local CONFIG_CHECK="~FUNCTION_TRACER ~FUNCTION_GRAPH_TRACER ~STACK_TRACER ~DYNAMIC_FTRACE"
- check_extra_config
-}
-
-src_configure() {
- econf --enable-abrt-report \
- --enable-aer \
- --enable-arm \
- --enable-extlog \
- --enable-hisi-ns-decode \
- --enable-mce \
- --enable-non-standard \
- --enable-sqlite3 \
- --localstatedir=/var
-}
-
-src_install() {
- default
- systemd_dounit misc/*.service
-
- newinitd "${FILESDIR}/rasdaemon.openrc" rasdaemon
- newinitd "${FILESDIR}/ras-mc-ctl.openrc" ras-mc-ctl
-}
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.2-r3.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.2-r3.ebuild
deleted file mode 100644
index fca06e7b0f0..00000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.2-r3.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- dev-db/sqlite
- sys-apps/dmidecode
- dev-perl/DBD-SQLite
-"
-
-pkg_setup() {
- linux-info_pkg_setup
- local CONFIG_CHECK="~ACPI_EXTLOG ~DYNAMIC_FTRACE ~FUNCTION_GRAPH_TRACER ~FUNCTION_TRACER ~STACK_TRACER"
- check_extra_config
-}
-
-src_configure() {
- local myconf=(
- --enable-abrt-report
- --enable-aer
- --enable-arm
- --enable-extlog
- --enable-hisi-ns-decode
- --enable-mce
- --enable-non-standard
- --enable-sqlite3
- --includedir="/usr/include/${PN}"
- --localstatedir=/var
- )
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
-
- keepdir "/var/lib/${PN}"
-
- systemd_dounit misc/*.service
-
- newinitd "${FILESDIR}/rasdaemon.openrc-r1" rasdaemon
- newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
-}
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild
deleted file mode 100644
index 19491e34040..00000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="sqlite"
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- sys-apps/dmidecode
- sqlite? (
- dev-db/sqlite
- dev-perl/DBD-SQLite
- )
-"
-
-pkg_setup() {
- linux-info_pkg_setup
- local CONFIG_CHECK="~ACPI_EXTLOG"
- check_extra_config
-}
-
-src_configure() {
- local myconf=(
- $(use_enable sqlite sqlite3)
- --enable-abrt-report
- --enable-aer
- --enable-arm
- --enable-extlog
- --enable-hisi-ns-decode
- --enable-mce
- --enable-non-standard
- --includedir="/usr/include/${PN}"
- --localstatedir=/var
- )
-
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
-
- keepdir "/var/lib/${PN}"
-
- systemd_dounit misc/*.service
-
- newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
- newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
- newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
-}
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.5.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.5.ebuild
deleted file mode 100644
index 37e14a241e6..00000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.5.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="sqlite"
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- sys-apps/dmidecode
- sqlite? (
- dev-db/sqlite
- dev-perl/DBD-SQLite
- )
-"
-
-pkg_setup() {
- linux-info_pkg_setup
- local CONFIG_CHECK="~ACPI_EXTLOG"
- check_extra_config
-}
-
-src_configure() {
- local myconf=(
- $(use_enable sqlite sqlite3)
- --enable-abrt-report
- --enable-aer
- --enable-arm
- --enable-extlog
- --enable-hisi-ns-decode
- --enable-mce
- --enable-non-standard
- --enable-devlink
- --enable-diskerror
- --includedir="/usr/include/${PN}"
- --localstatedir=/var
- )
-
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
-
- keepdir "/var/lib/${PN}"
-
- systemd_dounit misc/*.service
-
- newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
- newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
- newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
-}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2021-06-08 2:56 Matthew Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matthew Thode @ 2021-06-08 2:56 UTC (permalink / raw
To: gentoo-commits
commit: 85fed5462e94009ce3a4b7d31dec58762b1c58f1
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 8 02:49:14 2021 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Jun 8 02:56:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85fed546
app-admin/rasdaemon: 0.6.7 bump
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
app-admin/rasdaemon/Manifest | 1 +
app-admin/rasdaemon/rasdaemon-0.6.7.ebuild | 64 ++++++++++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
index e0d3a767a2b..6782f8dd3bc 100644
--- a/app-admin/rasdaemon/Manifest
+++ b/app-admin/rasdaemon/Manifest
@@ -1 +1,2 @@
DIST rasdaemon-0.6.6.tar.bz2 404681 BLAKE2B 4314cd064b255df1cb1a148914c856d074fda1fc2d63e0554cbf0b78799c4252afdd4e827390729e191ff2ed9f719f6610487e85dd52af2b02694fb17740df05 SHA512 481ecd624ab5521d60ee7c613ee05d1d19b85e914b92eae84d18cb2e6dc788981213d49a6316cf575517b6e180f46c66c65804e4feb518bdd84bc21cd2970e08
+DIST rasdaemon-0.6.7.tar.bz2 422473 BLAKE2B 32a95ed9ca217fb69b197f88fa296bf0d3b4230a1ae11c60582911ff84abbe8b9a67b318774b8c4b765dbedbd4458eb220ca3b8ff4c9d065eb893a9a6a9916c5 SHA512 15beae5d4964c49b7b7f9e731948b5def9622fba5d7d17ce52a282d7834d256366cdf3cf427b82b2a6a8fd0c99f202f545000bdb06064fbae7ae0296aef0946c
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
new file mode 100644
index 00000000000..c5aa842b5d0
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
+SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="sqlite"
+
+DEPEND=""
+RDEPEND="
+ ${DEPEND}
+ sys-devel/gettext
+ sys-apps/dmidecode
+ sqlite? (
+ dev-db/sqlite
+ dev-perl/DBD-SQLite
+ )
+"
+
+pkg_setup() {
+ linux-info_pkg_setup
+ local CONFIG_CHECK="~ACPI_EXTLOG"
+ check_extra_config
+}
+
+src_configure() {
+ local myconf=(
+ $(use_enable sqlite sqlite3)
+ --enable-abrt-report
+ --enable-aer
+ --enable-arm
+ --enable-extlog
+ --enable-hisi-ns-decode
+ --enable-mce
+ --enable-non-standard
+ --enable-devlink
+ --enable-diskerror
+ --enable-memory-ce-pfa
+ --includedir="/usr/include/${PN}"
+ --localstatedir=/var
+ )
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ keepdir "/var/lib/${PN}"
+
+ systemd_dounit misc/*.service
+
+ newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
+ newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
+ newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2021-07-05 20:02 Matthew Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matthew Thode @ 2021-07-05 20:02 UTC (permalink / raw
To: gentoo-commits
commit: 0f5ccadd9c97ef71e693e7c28bf0b0048e8b4017
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 5 19:55:57 2021 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Jul 5 20:01:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f5ccadd
app-admin/rasdaemon: 0.6.7 stable amd64/x86
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
index add264d2374..12a8438bc2b 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="sqlite"
DEPEND=""
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2021-08-06 15:13 Matthew Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matthew Thode @ 2021-08-06 15:13 UTC (permalink / raw
To: gentoo-commits
commit: 3b6b4b3a3253cc4ba6ef5ed8159e6f88ab10454b
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 6 15:10:28 2021 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Aug 6 15:10:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b6b4b3a
app-admin/rasdaemon: 0.6.6 cleanup
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
app-admin/rasdaemon/Manifest | 1 -
app-admin/rasdaemon/rasdaemon-0.6.6.ebuild | 64 ------------------------------
2 files changed, 65 deletions(-)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
index 6782f8dd3bc..1b6919f9da7 100644
--- a/app-admin/rasdaemon/Manifest
+++ b/app-admin/rasdaemon/Manifest
@@ -1,2 +1 @@
-DIST rasdaemon-0.6.6.tar.bz2 404681 BLAKE2B 4314cd064b255df1cb1a148914c856d074fda1fc2d63e0554cbf0b78799c4252afdd4e827390729e191ff2ed9f719f6610487e85dd52af2b02694fb17740df05 SHA512 481ecd624ab5521d60ee7c613ee05d1d19b85e914b92eae84d18cb2e6dc788981213d49a6316cf575517b6e180f46c66c65804e4feb518bdd84bc21cd2970e08
DIST rasdaemon-0.6.7.tar.bz2 422473 BLAKE2B 32a95ed9ca217fb69b197f88fa296bf0d3b4230a1ae11c60582911ff84abbe8b9a67b318774b8c4b765dbedbd4458eb220ca3b8ff4c9d065eb893a9a6a9916c5 SHA512 15beae5d4964c49b7b7f9e731948b5def9622fba5d7d17ce52a282d7834d256366cdf3cf427b82b2a6a8fd0c99f202f545000bdb06064fbae7ae0296aef0946c
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.6.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.6.ebuild
deleted file mode 100644
index 65a479d775e..00000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.6.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="sqlite"
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- sys-apps/dmidecode
- sqlite? (
- dev-db/sqlite
- dev-perl/DBD-SQLite
- )
-"
-
-pkg_setup() {
- linux-info_pkg_setup
- local CONFIG_CHECK="~ACPI_EXTLOG"
- check_extra_config
-}
-
-src_configure() {
- local myconf=(
- $(use_enable sqlite sqlite3)
- --enable-abrt-report
- --enable-aer
- --enable-arm
- --enable-extlog
- --enable-hisi-ns-decode
- --enable-mce
- --enable-non-standard
- --enable-devlink
- --enable-diskerror
- --enable-memory-ce-pfa
- --includedir="/usr/include/${PN}"
- --localstatedir=/var
- )
-
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
-
- keepdir "/var/lib/${PN}"
-
- systemd_dounit misc/*.service
-
- newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
- newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
- newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
-}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2022-06-24 2:29 Matthew Thode
0 siblings, 0 replies; 36+ messages in thread
From: Matthew Thode @ 2022-06-24 2:29 UTC (permalink / raw
To: gentoo-commits
commit: 1a7f582e51add443a48f941fca0a2c814d0a9a09
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 02:25:26 2022 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 02:25:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a7f582e
app-admin/rasdaemon: 0.6.7-r1 stable amd64/x86
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.7-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.7-r1.ebuild
index 7a8d2aa43192..0ca8b21dd672 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.7-r1.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.7-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
IUSE="sqlite"
DEPEND=""
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2022-12-29 17:26 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2022-12-29 17:26 UTC (permalink / raw
To: gentoo-commits
commit: f887800c7a940282004c8f6bb4b2a53dfe7df6ca
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 17:26:21 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 17:26:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f887800c
app-admin/rasdaemon: drop 0.6.7
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.7.ebuild | 68 ------------------------------
1 file changed, 68 deletions(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
deleted file mode 100644
index 12a8438bc2ba..000000000000
--- a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info systemd
-
-DESCRIPTION="Reliability, Availability and Serviceability logging tool"
-HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
-SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="sqlite"
-
-DEPEND=""
-RDEPEND="
- ${DEPEND}
- sys-devel/gettext
- sys-apps/dmidecode
- sqlite? (
- dev-db/sqlite
- dev-perl/DBD-SQLite
- )
-"
-
-PATCHES=(
- "${FILESDIR}/sysconfig-fix-0.6.7.patch"
-)
-
-pkg_setup() {
- linux-info_pkg_setup
- local CONFIG_CHECK="~ACPI_EXTLOG"
- check_extra_config
-}
-
-src_configure() {
- local myconf=(
- $(use_enable sqlite sqlite3)
- --enable-abrt-report
- --enable-aer
- --enable-arm
- --enable-extlog
- --enable-hisi-ns-decode
- --enable-mce
- --enable-non-standard
- --enable-devlink
- --enable-diskerror
- --enable-memory-ce-pfa
- --includedir="/usr/include/${PN}"
- --localstatedir=/var
- )
-
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
-
- keepdir "/var/lib/${PN}"
-
- systemd_dounit misc/*.service
-
- newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
- newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
- newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
-}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2022-12-29 17:26 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2022-12-29 17:26 UTC (permalink / raw
To: gentoo-commits
commit: a9d69b46ca54d0dda00f95db9080e2c37c22e83b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 17:26:05 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 17:26:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9d69b46
app-admin/rasdaemon: update maintainers
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/app-admin/rasdaemon/metadata.xml b/app-admin/rasdaemon/metadata.xml
index 05af691e4081..9ee9ca3cdb8b 100644
--- a/app-admin/rasdaemon/metadata.xml
+++ b/app-admin/rasdaemon/metadata.xml
@@ -1,6 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+ <maintainer type="project">
+ <email>base-system@gentoo.org</email>
+ <name>Gentoo Base System</name>
+ </maintainer>
<maintainer type="person">
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2022-12-29 17:26 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2022-12-29 17:26 UTC (permalink / raw
To: gentoo-commits
commit: f833faa3b87e6d68157e4c42909cdb4f0912633b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 17:18:56 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 17:26:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f833faa3
app-admin/rasdaemon: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/metadata.xml | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/app-admin/rasdaemon/metadata.xml b/app-admin/rasdaemon/metadata.xml
index ae831ed56223..05af691e4081 100644
--- a/app-admin/rasdaemon/metadata.xml
+++ b/app-admin/rasdaemon/metadata.xml
@@ -7,12 +7,15 @@
</maintainer>
<longdescription lang="en">
Rasdaemon is a RAS (Reliability, Availability and Serviceability) logging tool.
-It currently records memory errors, using the EDAC tracing events.
-EDAC is drivers in the Linux kernel that handle detection of ECC errors
-from memory controllers for most chipsets on i386 and x86_64 architectures.
-EDAC drivers for other architectures like arm also exists.
-This userspace component consists of an init script which makes sure
-EDAC drivers and DIMM labels are loaded at system startup, as well as
-an utility for reporting current error counts from the EDAC sysfs files.
+ It currently records memory errors, using the EDAC tracing events.
+ EDAC is drivers in the Linux kernel that handle detection of ECC errors
+ from memory controllers for most chipsets on i386 and x86_64 architectures.
+ EDAC drivers for other architectures like arm also exists.
+ This userspace component consists of an init script which makes sure
+ EDAC drivers and DIMM labels are loaded at system startup, as well as
+ an utility for reporting current error counts from the EDAC sysfs files.
</longdescription>
+ <upstream>
+ <remote-id type="github">mchehab/rasdaemon</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-01-01 22:20 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-01-01 22:20 UTC (permalink / raw
To: gentoo-commits
commit: 1e362c4242d3f1de99089635f0d724730bfade1f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 1 22:20:00 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 1 22:20:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e362c42
app-admin/rasdaemon: Keyword 0.6.8 ppc, #889322
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.8.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
index 3a80aa0e89a8..91f96a6197da 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mchehab/rasdaemon/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-01-01 22:20 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-01-01 22:20 UTC (permalink / raw
To: gentoo-commits
commit: 8527df01120d5b2cfd2ab1678fe68ea7a49340b1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 1 22:20:03 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 1 22:20:03 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8527df01
app-admin/rasdaemon: Keyword 0.6.8 arm, #889322
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
index 57f8315273ba..2b6eaf22b91c 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mchehab/rasdaemon/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-01-01 22:20 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-01-01 22:20 UTC (permalink / raw
To: gentoo-commits
commit: a598fdafe244e14c45cf4d392867fc9cafd0e81f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 1 22:20:01 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 1 22:20:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a598fdaf
app-admin/rasdaemon: Keyword 0.6.8 ppc64, #889322
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
index 91f96a6197da..57f8315273ba 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mchehab/rasdaemon/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-01-09 5:35 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-01-09 5:35 UTC (permalink / raw
To: gentoo-commits
commit: 7bb151ed759a8e63b5253484e75d349681913f50
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 9 05:35:02 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 9 05:35:02 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb151ed
app-admin/rasdaemon: Stabilize 0.6.8 amd64, #890263
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
index 2b6eaf22b91c..d20c814b12f1 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mchehab/rasdaemon/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-01-09 5:41 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-01-09 5:41 UTC (permalink / raw
To: gentoo-commits
commit: 1aa52b7a93fffcd1f4a6f05a1943e24fb3348d2a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 9 05:41:06 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 9 05:41:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aa52b7a
app-admin/rasdaemon: Stabilize 0.6.8 x86, #890263
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.6.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
index d20c814b12f1..68acb037cef6 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mchehab/rasdaemon/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-01-19 1:35 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-01-19 1:35 UTC (permalink / raw
To: gentoo-commits
commit: a658f4492b655eebd5340c4b716322004e636980
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 19 01:33:23 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 19 01:34:55 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a658f449
app-admin/rasdaemon: check for CONFIG_DEBUG_FS
Closes: https://bugs.gentoo.org/891357
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../rasdaemon/{rasdaemon-0.6.8-r1.ebuild => rasdaemon-0.6.8-r2.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.8-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.8-r2.ebuild
similarity index 96%
rename from app-admin/rasdaemon/rasdaemon-0.6.8-r1.ebuild
rename to app-admin/rasdaemon/rasdaemon-0.6.8-r2.ebuild
index 68acb037cef6..63c05654e834 100644
--- a/app-admin/rasdaemon/rasdaemon-0.6.8-r1.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.6.8-r2.ebuild
@@ -31,7 +31,7 @@ PATCHES=(
pkg_setup() {
linux-info_pkg_setup
- local CONFIG_CHECK="~ACPI_EXTLOG"
+ local CONFIG_CHECK="~ACPI_EXTLOG ~DEBUG_FS"
check_extra_config
}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-01-22 6:52 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-01-22 6:52 UTC (permalink / raw
To: gentoo-commits
commit: 3693db19f56e5873b9a54521bb1ecc9f37276b2b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 22 06:51:35 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 06:51:35 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3693db19
app-admin/rasdaemon: add 0.7.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/Manifest | 1 +
app-admin/rasdaemon/rasdaemon-0.7.0.ebuild | 66 ++++++++++++++++++++++++++++++
2 files changed, 67 insertions(+)
diff --git a/app-admin/rasdaemon/Manifest b/app-admin/rasdaemon/Manifest
index 1e16c310cda2..4a209b8bbcc0 100644
--- a/app-admin/rasdaemon/Manifest
+++ b/app-admin/rasdaemon/Manifest
@@ -1 +1,2 @@
DIST rasdaemon-0.6.8.tar.gz 161343 BLAKE2B 95dab212e404480d45e5b07fa0f9ec7361036c9295a81dd082657c71cf8ad1114cc28f163b8975733e2042dfeb957f8da71dc52440249c75c24653c1ce235e86 SHA512 634638154c6b0bf7a079d6aba884a55e540c9edc3c25715a792ad7535c68629618e9cef8b6ec7e20845f78bd57f712d437be4d772523020f09d30cce42759a30
+DIST rasdaemon-0.7.0.tar.bz2 433555 BLAKE2B cf73f59558d8a6f3138fea20e7096a1b1214dd44a4518da88a4b1f0c4c92a6df4eb7922e9a2e76d5012364219067cf66e220d8f54588ab22acf09937e41aa2dc SHA512 a7938ccd8171d849b5d89df6ab90942278c824a3dbd17abda8ae3d80ce5227cbc3fe23b31806609114482606d780ec7f0676a0fedfa950ed8cb5a59f3583bd57
diff --git a/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild
new file mode 100644
index 000000000000..ff6aeb34ef98
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic linux-info systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="https://github.com/mchehab/rasdaemon"
+SRC_URI="https://github.com/mchehab/rasdaemon/releases/download/v${PV}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+
+DEPEND="
+ dev-db/sqlite
+ elibc_musl? ( sys-libs/argp-standalone )
+"
+RDEPEND="
+ ${DEPEND}
+ dev-perl/DBI
+ dev-perl/DBD-SQLite
+ sys-apps/dmidecode
+"
+BDEPEND="sys-devel/gettext"
+
+pkg_setup() {
+ linux-info_pkg_setup
+ local CONFIG_CHECK="~ACPI_EXTLOG ~DEBUG_FS"
+ check_extra_config
+}
+
+src_configure() {
+ local myconfargs=(
+ --enable-sqlite3
+ --enable-abrt-report
+ --enable-aer
+ --enable-arm
+ --enable-extlog
+ --enable-hisi-ns-decode
+ --enable-mce
+ --enable-non-standard
+ --enable-devlink
+ --enable-diskerror
+ --enable-memory-ce-pfa
+ --includedir="/usr/include/${PN}"
+ --localstatedir=/var
+ )
+
+ use elibc_musl && append-libs -largp
+
+ econf "${myconfargs[@]}"
+}
+
+src_install() {
+ default
+
+ keepdir "/var/lib/${PN}"
+
+ systemd_dounit misc/*.service
+
+ newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
+ newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
+ newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-03-04 8:49 Arthur Zamarin
0 siblings, 0 replies; 36+ messages in thread
From: Arthur Zamarin @ 2023-03-04 8:49 UTC (permalink / raw
To: gentoo-commits
commit: fce34e52cd1ba9d55bc4e0d0a347fc3355a7fcac
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 08:48:57 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 08:48:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce34e52
app-admin/rasdaemon: Stabilize 0.7.0 x86, #899288
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild
index ff6aeb34ef98..5e618a5f7140 100644
--- a/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mchehab/rasdaemon/releases/download/v${PV}/${P}.tar.
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-03-04 11:09 Arthur Zamarin
0 siblings, 0 replies; 36+ messages in thread
From: Arthur Zamarin @ 2023-03-04 11:09 UTC (permalink / raw
To: gentoo-commits
commit: 1a0a5e1ff32263282025777eea60912119c6d6d0
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 11:09:18 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 11:09:18 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a0a5e1f
app-admin/rasdaemon: Stabilize 0.7.0 amd64, #899288
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild
index 5e618a5f7140..c0ee30e744f2 100644
--- a/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/mchehab/rasdaemon/releases/download/v${PV}/${P}.tar.
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-03-22 5:27 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-03-22 5:27 UTC (permalink / raw
To: gentoo-commits
commit: 82938af28e4a0d5cd73ae4d26f2d1451f4e2bb07
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 22 05:26:04 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 22 05:26:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82938af2
app-admin/rasdaemon: Stabilize 0.8.0 x86, #902575
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
index 6d4033b70e55..4704166513d1 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-03-22 5:27 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-03-22 5:27 UTC (permalink / raw
To: gentoo-commits
commit: e498247cd151158091a2108e2345a6f13df2ce21
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 22 05:26:06 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 22 05:26:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e498247c
app-admin/rasdaemon: Stabilize 0.8.0 amd64, #902575
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
index 4704166513d1..b2387b6618dc 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-06-11 19:16 Arthur Zamarin
0 siblings, 0 replies; 36+ messages in thread
From: Arthur Zamarin @ 2023-06-11 19:16 UTC (permalink / raw
To: gentoo-commits
commit: 407ee70a7c090d5d6355e8d3b0117d00eaa72b6a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 19:15:55 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 19:15:55 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=407ee70a
app-admin/rasdaemon: Keyword 0.8.0 arm, #895498
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
index b2387b6618dc..82c00d3dfe86 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-06-11 19:20 Arthur Zamarin
0 siblings, 0 replies; 36+ messages in thread
From: Arthur Zamarin @ 2023-06-11 19:20 UTC (permalink / raw
To: gentoo-commits
commit: 50873ce18987c5b91265ffba42e363f43ed16861
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 19:19:51 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 19:19:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50873ce1
app-admin/rasdaemon: Keyword 0.8.0 ppc, #895498
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
index 82c00d3dfe86..526bad1506c5 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-06-11 20:22 Arthur Zamarin
0 siblings, 0 replies; 36+ messages in thread
From: Arthur Zamarin @ 2023-06-11 20:22 UTC (permalink / raw
To: gentoo-commits
commit: 58c0c78a7da0f821551f107796b1e449054830cd
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 20:22:06 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 20:22:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58c0c78a
app-admin/rasdaemon: Keyword 0.8.0 ppc64, #895498
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
index 526bad1506c5..932a683f6795 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0.ebuild
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
DEPEND="
dev-db/sqlite
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-10-06 21:57 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-10-06 21:57 UTC (permalink / raw
To: gentoo-commits
commit: 5ddb0b9153e2805c720e46d59d5b23e7df543999
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 6 21:56:50 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 6 21:56:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ddb0b91
app-admin/rasdaemon: add USE=selinux for new sec-policy/selinux-rasdaemon
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild | 85 +++++++++++++++++++++++++++
1 file changed, 85 insertions(+)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild
new file mode 100644
index 000000000000..a6e5f6592601
--- /dev/null
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic linux-info systemd
+
+DESCRIPTION="Reliability, Availability and Serviceability logging tool"
+HOMEPAGE="https://github.com/mchehab/rasdaemon"
+# This if can be dropped > 0.8.0, see https://github.com/mchehab/rasdaemon/issues/88
+if [[ ${PV} == 0.8.0 ]] ; then
+ SRC_URI="https://github.com/mchehab/rasdaemon/releases/download/refs%2Fheads%2Fmaster/${P}.tar.bz2"
+else
+ SRC_URI="https://github.com/mchehab/rasdaemon/releases/download/v${PV}/${P}.tar.bz2"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="selinux"
+
+DEPEND="
+ dev-db/sqlite
+ dev-libs/libtraceevent
+ elibc_musl? ( sys-libs/argp-standalone )
+"
+RDEPEND="
+ ${DEPEND}
+ dev-perl/DBI
+ dev-perl/DBD-SQLite
+ sys-apps/dmidecode
+ selinux? ( sec-policy/selinux-rasdaemon )
+"
+BDEPEND="sys-devel/gettext"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-0.8.0-bashisms-configure.patch
+)
+
+pkg_setup() {
+ linux-info_pkg_setup
+ local CONFIG_CHECK="~ACPI_EXTLOG ~DEBUG_FS"
+ check_extra_config
+}
+
+src_prepare() {
+ default
+
+ # Only here for 0.8.0's bashism patch
+ eautoreconf
+}
+
+src_configure() {
+ local myconfargs=(
+ --enable-sqlite3
+ --enable-abrt-report
+ --enable-aer
+ --enable-arm
+ --enable-extlog
+ --enable-hisi-ns-decode
+ --enable-mce
+ --enable-non-standard
+ --enable-devlink
+ --enable-diskerror
+ --enable-memory-ce-pfa
+ --includedir="/usr/include/${PN}"
+ --localstatedir=/var
+ )
+
+ use elibc_musl && append-libs -largp
+
+ econf "${myconfargs[@]}"
+}
+
+src_install() {
+ default
+
+ keepdir "/var/lib/${PN}"
+
+ systemd_dounit misc/*.service
+
+ newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon
+ newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl
+ newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-11-15 10:39 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-11-15 10:39 UTC (permalink / raw
To: gentoo-commits
commit: a6ba08419e8e1f35e17699563fa0123723290f4e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 15 10:38:42 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 15 10:38:42 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ba0841
app-admin/rasdaemon: Stabilize 0.8.0-r1 x86, #916562
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild
index a6e5f6592601..d530ef4edc9b 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
IUSE="selinux"
DEPEND="
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2023-11-15 10:39 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-11-15 10:39 UTC (permalink / raw
To: gentoo-commits
commit: cee3c3b75df5ef19267b524057d90dcf2e40e967
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 15 10:38:43 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 15 10:38:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cee3c3b7
app-admin/rasdaemon: Stabilize 0.8.0-r1 amd64, #916562
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild
index d530ef4edc9b..aea9287acd6b 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0-r1.ebuild
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
IUSE="selinux"
DEPEND="
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2024-01-13 22:00 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2024-01-13 22:00 UTC (permalink / raw
To: gentoo-commits
commit: 64fcc9f5b1335ae697a5de825bb46dc3947a05c1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 13 21:59:58 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 13 21:59:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64fcc9f5
app-admin/rasdaemon: Stabilize 0.8.0-r2 amd64, #922061
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild
index 790f5a194f26..239806ec5a3a 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
IUSE="selinux"
DEPEND="
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
@ 2024-01-13 22:00 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2024-01-13 22:00 UTC (permalink / raw
To: gentoo-commits
commit: f1b8423377e4b6ccfd5e587eabcaacb7f52a9812
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 13 21:59:59 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 13 21:59:59 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1b84233
app-admin/rasdaemon: Stabilize 0.8.0-r2 x86, #922061
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild b/app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild
index 239806ec5a3a..491390c49008 100644
--- a/app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild
+++ b/app-admin/rasdaemon/rasdaemon-0.8.0-r2.ebuild
@@ -16,7 +16,7 @@ fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
IUSE="selinux"
DEPEND="
^ permalink raw reply related [flat|nested] 36+ messages in thread
end of thread, other threads:[~2024-01-13 22:00 UTC | newest]
Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-22 5:27 [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-01-13 22:00 Sam James
2024-01-13 22:00 Sam James
2023-11-15 10:39 Sam James
2023-11-15 10:39 Sam James
2023-10-06 21:57 Sam James
2023-06-11 20:22 Arthur Zamarin
2023-06-11 19:20 Arthur Zamarin
2023-06-11 19:16 Arthur Zamarin
2023-03-22 5:27 Sam James
2023-03-04 11:09 Arthur Zamarin
2023-03-04 8:49 Arthur Zamarin
2023-01-22 6:52 Sam James
2023-01-19 1:35 Sam James
2023-01-09 5:41 Sam James
2023-01-09 5:35 Sam James
2023-01-01 22:20 Sam James
2023-01-01 22:20 Sam James
2023-01-01 22:20 Sam James
2022-12-29 17:26 Sam James
2022-12-29 17:26 Sam James
2022-12-29 17:26 Sam James
2022-06-24 2:29 Matthew Thode
2021-08-06 15:13 Matthew Thode
2021-07-05 20:02 Matthew Thode
2021-06-08 2:56 Matthew Thode
2021-01-06 16:35 Andreas K. Hüttel
2020-08-16 19:27 Matthew Thode
2020-01-18 23:28 Matthew Thode
2019-05-31 16:25 Matthew Thode
2018-12-12 7:05 Matthew Thode
2018-07-16 2:58 Matt Thode
2018-06-28 16:25 Matt Thode
2018-06-13 20:29 Matt Thode
2018-01-15 16:14 Matt Thode
2017-12-21 21:46 Matt Thode
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox