commit: 0958da025982bde4ec3a70b92e77cad6d6fcc01a Author: Skyler Mäntysaari <sm+gentoo <AT> skym <DOT> fi> AuthorDate: Mon Feb 3 05:08:51 2025 +0000 Commit: Skyler Mäntysaari <gentoo <AT> samip <DOT> fi> 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 +}