chore: update dependencies
This commit is contained in:
parent
d17083beb8
commit
4066c4fc4b
2 changed files with 36 additions and 0 deletions
|
@ -6,3 +6,5 @@ DIST google-cloud-cli-480.0.0-linux-arm.tar.gz 51933910 BLAKE2B 73bc2d9bd695be9c
|
|||
DIST google-cloud-cli-480.0.0-linux-x86_64.tar.gz 130406364 BLAKE2B ed50ffe9940b70c45666970aa3a4fc00e454f857590f1572952f640615a5cea5dca61e0a2418c969c9cd3c1624bd71e2c2adba06dbcdc6ce3d90204836acb3d7 SHA512 b6af067804fa4f6ba9d4981752d4c9788b666948d8f813a7a66fe54947bc7399279169108c1cd4de40e532efadf226ced3247f5f7437f3b35c77a3f85a1916cc
|
||||
DIST google-cloud-cli-481.0.0-linux-arm.tar.gz 52036351 BLAKE2B ce3cb165a6aef72997ed60a457e8d3dba3a8bccce56959054c0c30a79de51d362c197772f51e28ffa79cafbb71710d8f0f8babe4cb063fe0a0041c8a71793cce SHA512 396c5aed1152761a4bb8dd80c7e64a17d68fa6313ccc7a96ad4fecc5b2c4b79666cd03b6afd118730f012db54cd0584f90376417681cff3392245a0f0cada2bd
|
||||
DIST google-cloud-cli-481.0.0-linux-x86_64.tar.gz 130513419 BLAKE2B 04873c97cde7ba3f2e5349ec3284bdfe4461ada87d5a40fd807fd7094e79457e591f65ec75f53c34beedb224d3858110f0bc443110b59f098b1dd5655637eb1f SHA512 fbf766052384ac386089e3650a3f3659aa4084c0b5f5f1980fcc6631fe8f6e36a9cb7687c78ac03fd3a35ee3ea4f81350bc2579557f714f24dd5badaa29df474
|
||||
DIST google-cloud-cli-482.0.0-linux-arm.tar.gz 52148260 BLAKE2B 9e55328e852061208c38e25aa11c9d846f8d6b04c19c28515bfb2339fcfab084783ad6079f6a10540664d2238f95a8bc5e7a8db4e38a8d1b78be12dc7768d6dc SHA512 90513e56128995493c23342333913aed4068d60f364a6d3fa8b07ee7eb621b447c8ad730be6e37539ab55e8a93f134202ffc9121f1c88287579d09b9b5eee2c1
|
||||
DIST google-cloud-cli-482.0.0-linux-x86_64.tar.gz 130623428 BLAKE2B 1556df2ecdb997b45367c8c36b73e13690ffe40ff013eeb8f7782343606b3400543c6505bc2e0e8a57e9af817fd2ae0583a19551b73a535f7720550ded3b7090 SHA512 a2769073916ff6062dafc8e3cd2d5aaeaefe6528df718e88edb60d7f6f5cb7f7c31efb8d7da1f34c16420faebd263f982e6459c17b54fe6e1633c1cf9c6f97d8
|
||||
|
|
|
@ -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