* [gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/
@ 2024-09-01 15:53 David Roman
0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-09-01 15:53 UTC (permalink / raw
To: gentoo-commits
commit: 9b42f368f96de46bc5bd57f0f4d154cac4f93109
Author: Skyler Mäntysaari <sm+git <AT> skym <DOT> fi>
AuthorDate: Sun Sep 1 12:41:18 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Sep 1 12:41:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9b42f368
app-admin/talosctl-bin: new package, add 1.7.6
Signed-off-by: Skyler Mäntysaari <sm+git <AT> skym.fi>
app-admin/talosctl-bin/Manifest | 3 +++
app-admin/talosctl-bin/metadata.xml | 8 +++++++
app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild | 28 ++++++++++++++++++++++++
3 files changed, 39 insertions(+)
diff --git a/app-admin/talosctl-bin/Manifest b/app-admin/talosctl-bin/Manifest
new file mode 100644
index 000000000..31e066ef9
--- /dev/null
+++ b/app-admin/talosctl-bin/Manifest
@@ -0,0 +1,3 @@
+DIST talosctl-amd64-v1.7.6 79237272 BLAKE2B fae6d5a3c00ad09c6f8509ec6f7bdf2005e278eb524d82ec5ad11a4896d53e3540e580edcfa854a290597399ed907ebeeb8b25d95c685fcaf5d3dcf4097845c7 SHA512 077195e8ec0bcd854c7bb1b3c895f1ec1d64d3e102188234e00911e1e205933276dbafcffd0b04e3fd667cc76d8a09422e379a6d92da41d266264dba1070261a
+DIST talosctl-arm64-v1.7.6 76808344 BLAKE2B c89b4517cdcf511c153e1fa8f20883969b9b58f5fbaa97090af7215782a3943e7f765ae806f3e9e2ca8bab11152afb5a8e8493bfc11eb851d9008f25f3917d64 SHA512 845f69b8ff8508885d0494523280b6d025809abf6cacc923fd5c1049a156e6185a36462d2f4fe67d7699f20f78c00b8b5bc469a4d0c03a00b61ccf7e660608d2
+DIST talosctl-armv7-v1.7.6 75301016 BLAKE2B 03fec115f7cce619d39f625057e5256fe9ae72775094b5b9ae32393c7ecfe39c03bad81e51628a948f1e40912c0937b35ab329748c63341062813207cfc59dfa SHA512 868ffd828f6eae6c964cc4b4f7f8ea73772df5e1bcd6f524b53e81779bce45b950aabcc180c842d87c242d3b382d82a5b2ee9d918f897b47dfdf50cf0dec4b56
diff --git a/app-admin/talosctl-bin/metadata.xml b/app-admin/talosctl-bin/metadata.xml
new file mode 100644
index 000000000..3b2e026d0
--- /dev/null
+++ b/app-admin/talosctl-bin/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>sm+gentoo@skym.fi</email>
+ <name>Skyler</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
new file mode 100644
index 000000000..1de0efe9e
--- /dev/null
+++ b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="Pre-compiled talosctl is an tool for interacting with the Talos API"
+HOMEPAGE="https://www.talos.dev/v1.7/"
+SLOT="0"
+S="${WORKDIR}"
+LICENSE="MPL2.0"
+KEYWORDS="~amd64 ~arm ~arm64"
+SRC_URI="
+ amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 -> talosctl-amd64-v${PV} )
+ arm64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-arm64 -> talosctl-arm64-v${PV} )
+ arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 -> talosctl-armv7-v${PV} )
+"
+
+src_install() {
+ if use arm; then
+ newbin "${DISTDIR}"/talosctl-armv7-v${PV} talosctl
+ fi
+ if use arm64; then
+ newbin "${DISTDIR}"/talosctl-arm64-v${PV} talosctl
+ fi
+ if use amd64; then
+ newbin "${DISTDIR}"/talosctl-amd64-v${PV} talosctl
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/
@ 2024-09-01 15:53 David Roman
0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-09-01 15:53 UTC (permalink / raw
To: gentoo-commits
commit: a579ebe6c284a150c16274899b1700e51e106acd
Author: Skyler Mäntysaari <sm+git <AT> skym <DOT> fi>
AuthorDate: Sun Sep 1 12:51:49 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Sep 1 12:51:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a579ebe6
app-admin/talosctl-bin: update SRC_URI
Signed-off-by: Skyler Mäntysaari <sm+git <AT> skym.fi>
app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
index 09140090c..d8396ae76 100644
--- a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
+++ b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
@@ -5,15 +5,18 @@ EAPI="8"
DESCRIPTION="Pre-compiled talosctl is an tool for interacting with the Talos API"
HOMEPAGE="https://www.talos.dev/v1.7/"
-SLOT="0"
S="${WORKDIR}"
+SLOT="0"
LICENSE="MPL-2.0"
-KEYWORDS="~amd64 ~arm ~arm64"
SRC_URI="
- amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 -> talosctl-amd64-v${PV} )
- arm64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-arm64 -> talosctl-arm64-v${PV} )
- arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 -> talosctl-armv7-v${PV} )
+ amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 ->
+ talosctl-amd64-v${PV} )
+ arm64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-arm64 ->
+ talosctl-arm64-v${PV} )
+ arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 ->
+ talosctl-armv7-v${PV} )
"
+KEYWORDS="~amd64 ~arm ~arm64"
src_install() {
if use arm; then
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/
@ 2024-09-01 15:53 David Roman
0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-09-01 15:53 UTC (permalink / raw
To: gentoo-commits
commit: c094a5534b1b521281669aacc491999205551325
Author: Skyler Mäntysaari <sm+git <AT> skym <DOT> fi>
AuthorDate: Sun Sep 1 12:41:18 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Sep 1 12:44:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c094a553
app-admin/talosctl-bin: new package, add 1.7.6
Signed-off-by: Skyler Mäntysaari <sm+git <AT> skym.fi>
app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
index 1de0efe9e..09140090c 100644
--- a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
+++ b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
@@ -7,7 +7,7 @@ DESCRIPTION="Pre-compiled talosctl is an tool for interacting with the Talos API
HOMEPAGE="https://www.talos.dev/v1.7/"
SLOT="0"
S="${WORKDIR}"
-LICENSE="MPL2.0"
+LICENSE="MPL-2.0"
KEYWORDS="~amd64 ~arm ~arm64"
SRC_URI="
amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 -> talosctl-amd64-v${PV} )
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/
@ 2024-09-01 15:53 David Roman
0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-09-01 15:53 UTC (permalink / raw
To: gentoo-commits
commit: 6b2e32365858e227598662abe7e378218f90dbe3
Author: Skyler Mäntysaari <sm+git <AT> skym <DOT> fi>
AuthorDate: Sun Sep 1 12:53:16 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Sep 1 12:53:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b2e3236
app-admin/talosctl-bin: Fixing up the ordering of the ebuild variables.
Signed-off-by: Skyler Mäntysaari <sm+git <AT> skym.fi>
app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
index d8396ae76..b2b183927 100644
--- a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
+++ b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
@@ -6,8 +6,6 @@ EAPI="8"
DESCRIPTION="Pre-compiled talosctl is an tool for interacting with the Talos API"
HOMEPAGE="https://www.talos.dev/v1.7/"
S="${WORKDIR}"
-SLOT="0"
-LICENSE="MPL-2.0"
SRC_URI="
amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 ->
talosctl-amd64-v${PV} )
@@ -16,6 +14,8 @@ SRC_URI="
arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 ->
talosctl-armv7-v${PV} )
"
+LICENSE="MPL-2.0"
+SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64"
src_install() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/
@ 2024-09-03 10:53 David Roman
0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-09-03 10:53 UTC (permalink / raw
To: gentoo-commits
commit: 4cd726b8fd2eeff1d965c88c02966edf284a232e
Author: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Mon Sep 2 20:40:57 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Sep 2 20:41:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4cd726b8
app-admin/talosctl-bin: add QA_PREBUILT
Fix formatting issues and variable order
Closes: https://bugs.gentoo.org/938917
Closes: https://bugs.gentoo.org/938916
Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>
app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild | 36 +++++++++++++-----------
1 file changed, 20 insertions(+), 16 deletions(-)
diff --git a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
index b2b183927..686fb7523 100644
--- a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
+++ b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild
@@ -5,27 +5,31 @@ EAPI="8"
DESCRIPTION="Pre-compiled talosctl is an tool for interacting with the Talos API"
HOMEPAGE="https://www.talos.dev/v1.7/"
-S="${WORKDIR}"
SRC_URI="
- amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 ->
- talosctl-amd64-v${PV} )
- arm64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-arm64 ->
- talosctl-arm64-v${PV} )
- arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 ->
- talosctl-armv7-v${PV} )
+amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 ->
+ talosctl-amd64-v${PV} )
+arm64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-arm64 ->
+ talosctl-arm64-v${PV} )
+arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 ->
+ talosctl-armv7-v${PV} )
"
+
+S="${WORKDIR}"
+
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64"
+QA_PREBUILT="usr/bin/talosctl"
+
src_install() {
- if use arm; then
- newbin "${DISTDIR}"/talosctl-armv7-v${PV} talosctl
- fi
- if use arm64; then
- newbin "${DISTDIR}"/talosctl-arm64-v${PV} talosctl
- fi
- if use amd64; then
- newbin "${DISTDIR}"/talosctl-amd64-v${PV} talosctl
- fi
+ if use arm; then
+ newbin "${DISTDIR}"/talosctl-armv7-v${PV} talosctl
+ fi
+ if use arm64; then
+ newbin "${DISTDIR}"/talosctl-arm64-v${PV} talosctl
+ fi
+ if use amd64; then
+ newbin "${DISTDIR}"/talosctl-amd64-v${PV} talosctl
+ fi
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/
@ 2025-02-03 11:38 David Roman
0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2025-02-03 11:38 UTC (permalink / raw
To: gentoo-commits
commit: 2d1165c1a83dbc62ca580bcc07c22af0fcf75b83
Author: Skyler Mäntysaari <sm+gentoo <AT> skym <DOT> fi>
AuthorDate: Mon Feb 3 05:11:17 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Feb 3 05:11:26 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2d1165c1
app-admin/talosctl-bin: update HOMEPAGE for 1.9
Signed-off-by: Skyler Mäntysaari <sm+gentoo <AT> skym.fi>
app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild
index 2603a348f..ece54a17a 100644
--- a/app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild
+++ b/app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild
@@ -4,7 +4,7 @@
EAPI="8"
DESCRIPTION="Pre-compiled talosctl is an tool for interacting with the Talos API"
-HOMEPAGE="https://www.talos.dev/v1.7/"
+HOMEPAGE="https://www.talos.dev/v1.9/"
SRC_URI="
amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 ->
talosctl-amd64-v${PV} )
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/
@ 2025-02-03 11:38 David Roman
0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2025-02-03 11:38 UTC (permalink / raw
To: gentoo-commits
commit: 0958da025982bde4ec3a70b92e77cad6d6fcc01a
Author: Skyler Mäntysaari <sm+gentoo <AT> skym <DOT> fi>
AuthorDate: Mon Feb 3 05:08:51 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Feb 3 05:08:51 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0958da02
app-admin/talosctl-bin: add 1.9.2
Signed-off-by: Skyler Mäntysaari <sm+gentoo <AT> skym.fi>
app-admin/talosctl-bin/Manifest | 3 ++
app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild | 35 ++++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/app-admin/talosctl-bin/Manifest b/app-admin/talosctl-bin/Manifest
index 31e066ef9..c992ef270 100644
--- a/app-admin/talosctl-bin/Manifest
+++ b/app-admin/talosctl-bin/Manifest
@@ -1,3 +1,6 @@
DIST talosctl-amd64-v1.7.6 79237272 BLAKE2B fae6d5a3c00ad09c6f8509ec6f7bdf2005e278eb524d82ec5ad11a4896d53e3540e580edcfa854a290597399ed907ebeeb8b25d95c685fcaf5d3dcf4097845c7 SHA512 077195e8ec0bcd854c7bb1b3c895f1ec1d64d3e102188234e00911e1e205933276dbafcffd0b04e3fd667cc76d8a09422e379a6d92da41d266264dba1070261a
+DIST talosctl-amd64-v1.9.2 89129112 BLAKE2B 6f7e77ad88a4583e3610155695c5f50cdbfdf4d45eafcebb09f5c49f310c301c805d3fef534867b08a4bf84f078213ab9a59b489882bcf546c6936ccadb36bbd SHA512 8bb23146837bf840efddf96fd56ab3ea8dd4d96ff6d6292e8ad4404cbc171b3cffc6d4c82face19ae7404c0cf4fb4b925bfaad4297afea7950a853ed224e857a
DIST talosctl-arm64-v1.7.6 76808344 BLAKE2B c89b4517cdcf511c153e1fa8f20883969b9b58f5fbaa97090af7215782a3943e7f765ae806f3e9e2ca8bab11152afb5a8e8493bfc11eb851d9008f25f3917d64 SHA512 845f69b8ff8508885d0494523280b6d025809abf6cacc923fd5c1049a156e6185a36462d2f4fe67d7699f20f78c00b8b5bc469a4d0c03a00b61ccf7e660608d2
+DIST talosctl-arm64-v1.9.2 86442136 BLAKE2B d2e00795da83e74b7f37dcb985397fc23be76e6f2c6a511f9c7316deb0a711d95d6ab99c84fd3909ed4323ec2d7984570ab56ae84960d3f5c48ef4aa04ddf8e5 SHA512 742677fac931e9a58aab09489a1209b41a629b24b30072e7a970825a96c43c0432561adb62ca7aad3b0ec701e151240b9b64433b173bc8e68b6faee2425fed66
DIST talosctl-armv7-v1.7.6 75301016 BLAKE2B 03fec115f7cce619d39f625057e5256fe9ae72775094b5b9ae32393c7ecfe39c03bad81e51628a948f1e40912c0937b35ab329748c63341062813207cfc59dfa SHA512 868ffd828f6eae6c964cc4b4f7f8ea73772df5e1bcd6f524b53e81779bce45b950aabcc180c842d87c242d3b382d82a5b2ee9d918f897b47dfdf50cf0dec4b56
+DIST talosctl-armv7-v1.9.2 83558552 BLAKE2B 2f0c5cf1ccd75022982a96817ef0affd423cb24fb63c3c116d9af0d04d681d81cfe128bafb80f94d91c7a2e347ea218041c8db5fdaf43a2341c089d8ef0fe9c3 SHA512 65b5b1dffaf6a6068d6d541bfe42b975cd316cefe1216b1e199ded4c5e25fd45fdd51f4958ac228e47fb94df506c23a266fcaaeee8361fc9907515264656ff50
diff --git a/app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild
new file mode 100644
index 000000000..2603a348f
--- /dev/null
+++ b/app-admin/talosctl-bin/talosctl-bin-1.9.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="Pre-compiled talosctl is an tool for interacting with the Talos API"
+HOMEPAGE="https://www.talos.dev/v1.7/"
+SRC_URI="
+amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 ->
+ talosctl-amd64-v${PV} )
+arm64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-arm64 ->
+ talosctl-arm64-v${PV} )
+arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 ->
+ talosctl-armv7-v${PV} )
+"
+
+S="${WORKDIR}"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64"
+
+QA_PREBUILT="usr/bin/talosctl"
+
+src_install() {
+ if use arm; then
+ newbin "${DISTDIR}"/talosctl-armv7-v${PV} talosctl
+ fi
+ if use arm64; then
+ newbin "${DISTDIR}"/talosctl-arm64-v${PV} talosctl
+ fi
+ if use amd64; then
+ newbin "${DISTDIR}"/talosctl-amd64-v${PV} talosctl
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-02-03 11:38 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-03 11:38 [gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/ David Roman
-- strict thread matches above, loose matches on Subject: below --
2025-02-03 11:38 David Roman
2024-09-03 10:53 David Roman
2024-09-01 15:53 David Roman
2024-09-01 15:53 David Roman
2024-09-01 15:53 David Roman
2024-09-01 15:53 David Roman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox