public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2019-04-13 16:56 Tiziano Müller
  0 siblings, 0 replies; 10+ messages in thread
From: Tiziano Müller @ 2019-04-13 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     9df3466524c7e920d10ebb6e955723ac30651de7
Author:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 16:53:57 2019 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 16:53:57 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df34665

sys-apps/edac-utils: remove -Werror with USE=debug

Closes: https://bugs.gentoo.org/637696
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tiziano Müller <dev-zero <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18.ebuild | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild
index 5bf6da23f31..84151a32ea1 100644
--- a/sys-apps/edac-utils/edac-utils-0.18.ebuild
+++ b/sys-apps/edac-utils/edac-utils-0.18.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,6 +17,12 @@ DEPEND="sys-fs/sysfsutils"
 RDEPEND="${DEPEND}
 	sys-apps/dmidecode"
 
+src_prepare() {
+	sed -i \
+		-e 's|-Werror||' \
+		configure || die
+}
+
 src_configure() {
 	econf \
 		--disable-static \


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2021-04-25  5:19 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-25  5:19 UTC (permalink / raw
  To: gentoo-commits

commit:     f7eb52c7e303008b2f3d746ae930997538d95bc4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 25 05:18:40 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 25 05:18:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7eb52c7

sys-apps/edac-utils: Keyword 0.18 arm64, #776271

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild
index 5bd3af4a81d..c0e1edb052e 100644
--- a/sys-apps/edac-utils/edac-utils-0.18.ebuild
+++ b/sys-apps/edac-utils/edac-utils-0.18.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64"
+KEYWORDS="amd64 ~arm64"
 IUSE="debug"
 
 DEPEND="sys-fs/sysfsutils"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2021-05-31  9:20 David Seifert
  0 siblings, 0 replies; 10+ messages in thread
From: David Seifert @ 2021-05-31  9:20 UTC (permalink / raw
  To: gentoo-commits

commit:     255b9b21e25f25c2d9f56e9016b0c23e012ba721
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon May 31 09:19:35 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon May 31 09:19:35 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=255b9b21

sys-apps/edac-utils: drop deprecated ltprune eclass

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild
index c0e1edb052e..86bafa9ff0d 100644
--- a/sys-apps/edac-utils/edac-utils-0.18.ebuild
+++ b/sys-apps/edac-utils/edac-utils-0.18.ebuild
@@ -3,8 +3,6 @@
 
 EAPI=5
 
-inherit ltprune
-
 DESCRIPTION="Userspace helper for Linux kernel EDAC drivers"
 HOMEPAGE="https://github.com/grondo/edac-utils"
 SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
@@ -38,7 +36,7 @@ src_install() {
 	# The rest is done via the udev-rule
 	rm -rf "${D}/etc/init.d"
 
-	prune_libtool_files
+	find "${ED}" -name '*.la' -delete || die
 }
 
 pkg_postinst() {


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2021-08-02  3:18 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-08-02  3:18 UTC (permalink / raw
  To: gentoo-commits

commit:     d41bfcd493770555e529637b956a8d51ae4823ff
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug  2 02:39:33 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug  2 03:17:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d41bfcd4

sys-apps/edac-utils: update EAPI 5 -> 7

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18.ebuild | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild
index 86bafa9ff0d..c4aa0a9e04c 100644
--- a/sys-apps/edac-utils/edac-utils-0.18.ebuild
+++ b/sys-apps/edac-utils/edac-utils-0.18.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 DESCRIPTION="Userspace helper for Linux kernel EDAC drivers"
 HOMEPAGE="https://github.com/grondo/edac-utils"
@@ -17,6 +17,8 @@ RDEPEND="${DEPEND}
 	sys-apps/dmidecode"
 
 src_prepare() {
+	default
+
 	sed -i \
 		-e 's|-Werror||' \
 		configure || die
@@ -34,13 +36,13 @@ src_install() {
 	# We don't need this init.d file
 	# Modules should be loaded by adding them to /etc/conf.d/modules
 	# The rest is done via the udev-rule
-	rm -rf "${D}/etc/init.d"
+	rm -rf "${ED}/etc/init.d" || die
 
 	find "${ED}" -name '*.la' -delete || die
 }
 
 pkg_postinst() {
-	elog "There must be an entry for your mainboard in /etc/edac/labels.db"
+	elog "There must be an entry for your mainboard in ${EROOT}/etc/edac/labels.db"
 	elog "in case you want nice labels in /sys/module/*_edac/"
 	elog "Run the following command to check whether such an entry is already available:"
 	elog "    edac-ctl --print-labels"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2021-08-02  3:18 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-08-02  3:18 UTC (permalink / raw
  To: gentoo-commits

commit:     b809eca177d089bf9c7afe46b60021d88a3a7e60
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug  2 02:27:55 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug  2 03:17:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b809eca1

sys-apps/edac-utils: add myself as a maintainer

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/edac-utils/metadata.xml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/sys-apps/edac-utils/metadata.xml b/sys-apps/edac-utils/metadata.xml
index 0d757f0cc8d..57f6459cb14 100644
--- a/sys-apps/edac-utils/metadata.xml
+++ b/sys-apps/edac-utils/metadata.xml
@@ -1,8 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <!-- maintainer-needed -->
-  <upstream>
-    <remote-id type="github">grondo/edac-utils</remote-id>
-  </upstream>
+	<maintainer type="person">
+		<email>sam@gentoo.org</email>
+		<name>Sam James</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">grondo/edac-utils</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2021-09-07 11:55 Agostino Sarubbo
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo @ 2021-09-07 11:55 UTC (permalink / raw
  To: gentoo-commits

commit:     2eae4a0ce0023d545281dfdfe83575ad79d59b88
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  7 11:55:06 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Sep  7 11:55:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eae4a0c

sys-apps/edac-utils: amd64 stable wrt bug #811903

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild b/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild
index b48d523eff5..a8f2910a9cb 100644
--- a/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild
+++ b/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="debug"
 
 DEPEND="sys-fs/sysfsutils"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2022-01-01  9:38 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-01-01  9:38 UTC (permalink / raw
  To: gentoo-commits

commit:     16f470a1da61ee1515eb68c19ef5a9466e6e1776
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  1 09:31:26 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan  1 09:38:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f470a1

sys-apps/edac-utils: drop 0.18

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18.ebuild | 49 ------------------------------
 1 file changed, 49 deletions(-)

diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild
deleted file mode 100644
index c4aa0a9e04cf..000000000000
--- a/sys-apps/edac-utils/edac-utils-0.18.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Userspace helper for Linux kernel EDAC drivers"
-HOMEPAGE="https://github.com/grondo/edac-utils"
-SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64"
-IUSE="debug"
-
-DEPEND="sys-fs/sysfsutils"
-RDEPEND="${DEPEND}
-	sys-apps/dmidecode"
-
-src_prepare() {
-	default
-
-	sed -i \
-		-e 's|-Werror||' \
-		configure || die
-}
-
-src_configure() {
-	econf \
-		--disable-static \
-		$(use_enable debug)
-}
-
-src_install() {
-	default
-
-	# We don't need this init.d file
-	# Modules should be loaded by adding them to /etc/conf.d/modules
-	# The rest is done via the udev-rule
-	rm -rf "${ED}/etc/init.d" || die
-
-	find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-	elog "There must be an entry for your mainboard in ${EROOT}/etc/edac/labels.db"
-	elog "in case you want nice labels in /sys/module/*_edac/"
-	elog "Run the following command to check whether such an entry is already available:"
-	elog "    edac-ctl --print-labels"
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2022-12-29 22:54 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-12-29 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     783b363773d46f2a90236d1b0fe42dad0159d4cd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 22:54:08 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 22:54:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=783b3637

sys-apps/edac-utils: update EAPI 7 -> 8; add pkg_pretend warning

See 2a2a9c4d140ad55ec9aa64a2f0695b90402f8ad2.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18-r2.ebuild | 64 +++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild b/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild
new file mode 100644
index 000000000000..0562dd9fe509
--- /dev/null
+++ b/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools systemd
+
+DESCRIPTION="Userspace helper for Linux kernel EDAC drivers"
+HOMEPAGE="https://github.com/grondo/edac-utils"
+SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="debug"
+
+DEPEND="sys-fs/sysfsutils"
+RDEPEND="${DEPEND}
+	sys-apps/dmidecode"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-mitac-hawk.patch
+)
+
+pkg_pretend() {
+	ewarn "edac-utils can't handle the interface newer kernels use to report"
+	ewarn "EDAC events, so it may miss some (or all) events which occur."
+	ewarn "See app-admin/rasdaemon's README for technical details."
+	ewarn "Consider using app-admin/rasdaemon instead."
+}
+
+src_prepare() {
+	default
+
+	# Needed to refresh libtool and friends to not call CC directly
+	# bug #725540
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--disable-static \
+		$(use_enable debug)
+}
+
+src_install() {
+	default
+
+	# Dump the inappropriate-for-us bundled init script
+	rm -rf "${ED}/etc/init.d" || die
+
+	# Install our own
+	newinitd "${FILESDIR}"/edac.init edac
+	systemd_dounit "${FILESDIR}"/edac.service
+
+	find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+	elog "There must be an entry for your mainboard in ${EROOT}/etc/edac/labels.db"
+	elog "in case you want nice labels in /sys/module/*_edac/"
+	elog "Run the following command to check whether such an entry is already available:"
+	elog "    edac-ctl --print-labels"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2023-03-04  7:50 Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2023-03-04  7:50 UTC (permalink / raw
  To: gentoo-commits

commit:     6006ced25548ca38f7561f8e0549c770d289131e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  4 07:50:22 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  4 07:50:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6006ced2

sys-apps/edac-utils: Stabilize 0.18-r2 amd64, #899520

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild b/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild
index 0562dd9fe509..a23ea1dcd4f7 100644
--- a/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild
+++ b/sys-apps/edac-utils/edac-utils-0.18-r2.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/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="debug"
 
 DEPEND="sys-fs/sysfsutils"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/
@ 2023-12-28  3:43 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2023-12-28  3:43 UTC (permalink / raw
  To: gentoo-commits

commit:     b74ca1089ea4b5814c52ba7aa18f3aa302de2737
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 28 03:35:22 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 28 03:35:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b74ca108

sys-apps/edac-utils: drop 0.18-r1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/edac-utils/edac-utils-0.18-r1.ebuild | 57 ---------------------------
 1 file changed, 57 deletions(-)

diff --git a/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild b/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild
deleted file mode 100644
index b1b73a2138c8..000000000000
--- a/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools systemd
-
-DESCRIPTION="Userspace helper for Linux kernel EDAC drivers"
-HOMEPAGE="https://github.com/grondo/edac-utils"
-SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64"
-IUSE="debug"
-
-DEPEND="sys-fs/sysfsutils"
-RDEPEND="${DEPEND}
-	sys-apps/dmidecode"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-mitac-hawk.patch
-)
-
-src_prepare() {
-	default
-
-	# Needed to refresh libtool and friends to not call CC directly
-	# bug #725540
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--disable-static \
-		$(use_enable debug)
-}
-
-src_install() {
-	default
-
-	# Dump the inappropriate-for-us bundled init script
-	rm -rf "${ED}/etc/init.d" || die
-
-	# Install our own
-	newinitd "${FILESDIR}"/edac.init edac
-	systemd_dounit "${FILESDIR}"/edac.service
-
-	find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-	elog "There must be an entry for your mainboard in ${EROOT}/etc/edac/labels.db"
-	elog "in case you want nice labels in /sys/module/*_edac/"
-	elog "Run the following command to check whether such an entry is already available:"
-	elog "    edac-ctl --print-labels"
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2023-12-28  3:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-02  3:18 [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-12-28  3:43 Sam James
2023-03-04  7:50 Arthur Zamarin
2022-12-29 22:54 Sam James
2022-01-01  9:38 Sam James
2021-09-07 11:55 Agostino Sarubbo
2021-08-02  3:18 Sam James
2021-05-31  9:20 David Seifert
2021-04-25  5:19 Sam James
2019-04-13 16:56 Tiziano Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox