chore: update dependencies
This commit is contained in:
parent
16e35da3da
commit
1b57447212
2 changed files with 36 additions and 0 deletions
|
@ -12,3 +12,5 @@ DIST google-cloud-cli-483.0.0-linux-arm.tar.gz 52220514 BLAKE2B 6cc8ba7b148e07ab
|
|||
DIST google-cloud-cli-483.0.0-linux-x86_64.tar.gz 130690371 BLAKE2B 5b1fd78c6005c8c0e7b24771c868dedab34e1cc676ff04ef61fef4e6848c0a4d90827ee326071f5da1e9ab253fa5b4c1f29dd1d99ee17652813bc29b1b9a825d SHA512 0123ee863552b37009ecd14bc8fdebf9617ac4eaa840105d7a6609c5acf6cbef865c085bb42f42dce0fb7be6aa5edda8b4defd7363818e25634eaeedc4617a86
|
||||
DIST google-cloud-cli-484.0.0-linux-arm.tar.gz 52438727 BLAKE2B 7dd767f44d9f8ac9f8996ba0680a31cad5c6687d8195beda1869cc3eb9f36c2dfab17d163bd06457b060dcac38dcec24ca6d6b842ee2f5b46327d5a0ca23dd5f SHA512 57e5bdbc522de5b7e2b729e2160a7dea575da6b6b0496a94aae3bf527fd3eefd16b2bc13259fdbc1bc741a0d702c8da8067855591fc4beb048f06cb2796abfc6
|
||||
DIST google-cloud-cli-484.0.0-linux-x86_64.tar.gz 129863593 BLAKE2B 1edcc8f75decace4212ac1439c7fe904a02a424a0529e57b7f46fc42e4a11ef0ffd29402e4f5ca8362bef647843a65b9f93bee841c7c4ff3538a973e54b6824a SHA512 8c296e45f6708a7638eb391254def28841dcc1c18055625d2e2b01c615329fad6280833a384b05b324730980b91c29196af43d44679396defc6489727ea17190
|
||||
DIST google-cloud-cli-485.0.0-linux-arm.tar.gz 52532375 BLAKE2B c78a01cf4ffd7607e203acdb0ecc68f144f2854c532533b2001f356ccdf69c18883e0ec22a19811337e85526889efba1bad4fb7d75b2d5617d980511b1b65dfe SHA512 19797e54ccde949710bd10be25dd4eff13504a9e96e90742ce1cb5b7bb54659754cfd8d2160019c4a42a7071f91b4df6800b535071ca458a6d1a3d9fc12cf3f1
|
||||
DIST google-cloud-cli-485.0.0-linux-x86_64.tar.gz 129958922 BLAKE2B 47de1586ff0d0d4be627d4e7ceb0642def927961e41ed5bc7158d3b9ce39fce405836d4403399cf01a658fa0f74bbfe615ec24f199ef94475fd3c1dd6deadcfd SHA512 c4ba5d2367557551a7a54961523b758e8669d4bc85a51e1790cebe6dd61e6771ce8d14e09e60f000470e44e62c6d30b13e92fce1e32ebd589ad7a595a21eb5d3
|
||||
|
|
|
@ -0,0 +1,34 @@
|
|||
# Copyright 2020-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Interact with the Google Cloud Platform"
|
||||
HOMEPAGE="https://cloud.google.com/cli"
|
||||
SITE="https://dl.google.com/dl/cloudsdk/channels/rapid/downloads"
|
||||
SRC_URI="
|
||||
amd64? ( ${SITE}/google-cloud-cli-${PV}-linux-x86_64.tar.gz )
|
||||
arm64? ( ${SITE}/google-cloud-cli-${PV}-linux-arm.tar.gz )
|
||||
"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm64 arm"
|
||||
|
||||
QA_PREBUILT="
|
||||
google-cloud-sdk/bin/anothoscli
|
||||
google-cloud-sdk/bin/gcloud-crc32c
|
||||
"
|
||||
RESTRICT="bindist mirror"
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_install() {
|
||||
mkdir -p "${D}/opt/google-cloud-sdk"
|
||||
cp -r "${S}/google-cloud-sdk/"* "${D}/opt/google-cloud-sdk" || die "Install failed!"
|
||||
|
||||
dosym "${D}/opt/google-cloud-sdk/bin/gcloud" /usr/bin/gcloud
|
||||
dosym "${D}/opt/google-cloud-sdk/bin/gsutil" /usr/bin/gsutil
|
||||
|
||||
chmod 4755 "${D}/opt/google-cloud-sdk/bin/gsutil"
|
||||
chmod 4755 "${D}/opt/google-cloud-sdk/bin/gcloud"
|
||||
}
|
Loading…
Add table
Reference in a new issue