app-admin/linode-cli: add 5.65.1

Add release 5.65.1.
Add verify-provenance.

Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Viorel Munteanu
2026-03-01 15:36:56 +02:00
parent dc20246b5d
commit e7b44e3eba
2 changed files with 49 additions and 0 deletions

View File

@@ -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

View File

@@ -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}]
<dev-python/urllib3-3[${PYTHON_USEDEP}]
"
python_install_all() {
distutils-r1_python_install_all
PYTHONPATH=. ${EPYTHON} linodecli completion bash > "${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
}