chore: update dependencies
This commit is contained in:
parent
20b9cf0803
commit
194ae8f778
2 changed files with 36 additions and 0 deletions
|
@ -10,3 +10,5 @@ DIST google-cloud-cli-482.0.0-linux-arm.tar.gz 52148260 BLAKE2B 9e55328e85206120
|
|||
DIST google-cloud-cli-482.0.0-linux-x86_64.tar.gz 130623428 BLAKE2B 1556df2ecdb997b45367c8c36b73e13690ffe40ff013eeb8f7782343606b3400543c6505bc2e0e8a57e9af817fd2ae0583a19551b73a535f7720550ded3b7090 SHA512 a2769073916ff6062dafc8e3cd2d5aaeaefe6528df718e88edb60d7f6f5cb7f7c31efb8d7da1f34c16420faebd263f982e6459c17b54fe6e1633c1cf9c6f97d8
|
||||
DIST google-cloud-cli-483.0.0-linux-arm.tar.gz 52220514 BLAKE2B 6cc8ba7b148e07aba67e5f5eef6d52ef0eca872f325b29e69aa09cef58ad247c56b52a668091d721b879127cc60ee239296d3e712164265e2e73a0ecefa9275d SHA512 099d596b3dac308961d924a60301f3361f5ef8010a0aea4a07a90cb87f5a13603467feb4f394feba0bb136ae64408a25b60c07ad0a2bfbb63437729a0b44a7b4
|
||||
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
|
||||
|
|
|
@ -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