From e7b44e3eba82c9cc00a1817576dcbff8f82f6769 Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Sun, 1 Mar 2026 15:36:56 +0200 Subject: [PATCH] app-admin/linode-cli: add 5.65.1 Add release 5.65.1. Add verify-provenance. Signed-off-by: Viorel Munteanu --- app-admin/linode-cli/Manifest | 2 + app-admin/linode-cli/linode-cli-5.65.1.ebuild | 47 +++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 app-admin/linode-cli/linode-cli-5.65.1.ebuild diff --git a/app-admin/linode-cli/Manifest b/app-admin/linode-cli/Manifest index b2a4ffb9d3b28..17c63d45307b9 100644 --- a/app-admin/linode-cli/Manifest +++ b/app-admin/linode-cli/Manifest @@ -1,2 +1,4 @@ DIST linode_cli-5.64.0.tar.gz 204901 BLAKE2B fcc948ddcd18a1276b5b1ba526c5fe6de13bc887872257957f8ab4e0e69d43ee23f0b17bdbfd7007425a576b47f5db26e3db2f375b94b3faa0a232592414b314 SHA512 324284c04b2b0e2b0e003273d8cff81554957af82e96c650cfb906ea3501fec27e5d676e49c58640c95b6d0db628245418ccc5be3c148a57d74fa280e6232b5c DIST linode_cli-5.65.0.tar.gz 206974 BLAKE2B bdf9dd9d89476f96cb1b7832ef38e7e4d977586fe3721c3d9ca83134803f5dacf0f71e31ae046e2c8f63def89456b925e4631d2f605130747f6b9b71f76085a0 SHA512 c61d31f8cc055911d90c371817c537c4cc63dca8659e6e7662d21e6438dc7bfc3d6de7ca0ff4fd6675d95836a8e787f7e6e1e40cf57d4704814f9ee6fc9059ab +DIST linode_cli-5.65.1.tar.gz 210478 BLAKE2B 4f57c932f6c94627d694491a1595b27b3385c4c281865ab7e850a772eaa987cf191f0d9fbd3b81988b38e935101f2f868b4b8f9dfdc228dfa8aacc2c9f43ba02 SHA512 1e2f4195b18ffcf114a23b05c9b5738847655e68e5ce85589c68731cdac0a1d96f93065f6ed5a83a9bac82a3d190faa179c7cace8ce33acd29aecef9e31071c4 +DIST linode_cli-5.65.1.tar.gz.provenance 9590 BLAKE2B 562a5b911e4b4392f2dd0755cfdb3cc1d7b4f3da301f59a1e7ee410e3e9cc4413fafd126f2aa0b8194ca3c3533e21ebb8edd4c33bd8ba18e2e1c0631e4a660bd SHA512 1e705c7f12a18557b7ce9a75982399e36fa966a54211c6502a1364decfabd7a312951e25fa67084784bf27cfa131aee3c016169fd85c288b60c5c26a1ed722b1 diff --git a/app-admin/linode-cli/linode-cli-5.65.1.ebuild b/app-admin/linode-cli/linode-cli-5.65.1.ebuild new file mode 100644 index 0000000000000..bafe4e5438644 --- /dev/null +++ b/app-admin/linode-cli/linode-cli-5.65.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 2023-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{12..13} ) +DISTUTILS_USE_PEP517=setuptools +PYPI_VERIFY_REPO=https://github.com/linode/linode-cli +inherit distutils-r1 pypi shell-completion + +DESCRIPTION="Official command-line interface for interacting with the Linode API" +HOMEPAGE="https://github.com/linode/linode-cli https://www.linode.com/" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +# Tests require network, a linode account and an API key. +# WARNING: tests will incur costs and will wipe the account. +RESTRICT="test" + +RDEPEND=" + >=dev-python/boto3-1.36[${PYTHON_USEDEP}] + >=dev-python/linode-metadata-0.3[${PYTHON_USEDEP}] + dev-python/openapi3[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/pytimeparse[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/rich[${PYTHON_USEDEP}] + "${T}/${PN}".bash || die + PYTHONPATH=. ${EPYTHON} linodecli completion fish > "${T}/${PN}".fish || die + + newbashcomp "${T}/${PN}".bash ${PN} + dofishcomp "${T}/${PN}".fish + + dosym ${PN} "$(get_bashcompdir)"/linode + dosym ${PN} "$(get_bashcompdir)"/lin + dosym ${PN}.fish "$(get_fishcompdir)"/linode.fish + dosym ${PN}.fish "$(get_fishcompdir)"/lin.fish +}