Package Details: google-cloud-cli 474.0.0-1

Git Clone URL: https://aur.archlinux.org/google-cloud-cli.git (read-only, click to copy)
Package Base: google-cloud-cli
Description: A set of command-line tools for the Google Cloud Platform. Includes gcloud (with beta and alpha commands), gsutil, and bq.
Upstream URL: https://cloud.google.com/cli/
Keywords: cloud gcloud gcp google sdk
Licenses: Apache-2.0
Conflicts: google-cloud-sdk
Provides: google-cloud-sdk
Replaces: google-cloud-sdk
Submitter: PolarianDev
Maintainer: jvybihal
Last Packager: jvybihal
Votes: 188
Popularity: 0.92
First Submitted: 2023-03-08 09:33 (UTC)
Last Updated: 2024-05-01 09:55 (UTC)

Dependencies (2)

Required by (15)

Sources (3)

Pinned Comments

Latest Comments

« First ‹ Previous 1 .. 24 25 26 27 28 29 30 Next › Last »

giniu commented on 2014-12-10 08:36 (UTC)

where do you found it is 0.9.37? Seems that latest is 0.9.40 now. At least that is the version defined in the sources.

jimenezrick commented on 2014-12-10 00:00 (UTC)

It seems to be a release/checksum mismatch, the latest one now is: 0.9.37 (2014/11/19)

zanegrey commented on 2014-09-21 21:55 (UTC)

Updated md5sums and incorporated changes below: https://github.com/muff1nman/archlinux-packages/tree/master/google-cloud-sdk

zanegrey commented on 2014-09-21 20:31 (UTC)

Out of date. @giniu's script reports the version at 0.9.32

justin8 commented on 2014-08-02 03:07 (UTC)

Can you please make this not include the appengine files. it makes it go from 21MB up to almost 200, not to mention it is already providing files that are in the google-appengine-* packages that have been around for years. Please also fix up: - Your broken python sed that just replacings things everywhere and has already been mentioned. something like this would do only the changes you actually want: grep -rl 'python' "$pkgdir/opt/$pkgname" | xargs sed -i 's|#!.*python\b|#!/usr/bin/env python2|g' find "$pkgdir/opt/google-cloud-sdk/bin/" -type f -maxdepth 1 -exec sed -i 's/CLOUDSDK_PYTHON=python/CLOUDSDK_PYTHON=python2/g' {} \; - Symlink the binaries so that they are actually on the path and usable; unless you remove the appengine parts from this you will inadvertently create conflicts with the appengine packages. This will do it for you: mkdir -p "$pkgdir/usr/bin" find "$pkgdir/opt/$pkgname/bin" -type f -maxdepth 1 -printf "/opt/$pkgname/bin/%f\n" | xargs ln -st "$pkgdir/usr/bin" Or just upload this pkgbuild that does it already: http://storage.googleapis.com/justin8-files/public/google-cloud-sdk-PKGBUILD The only namcap warnings from that package are somewhat ignorable now. If you remove the appengine dependencies you can change it to an any package instead of x86-64/i686, and there are 4 empty directories, but there is a chance that the oauth2-boto plugin needs those; I haven't used it before.

<deleted-account> commented on 2014-07-03 21:46 (UTC)

Instead of using sed to modify the source you can use: export CLOUDSDK_PYTHON=/usr/bin/python2

giniu commented on 2014-06-23 20:04 (UTC)

Btw, you can use this: curl -s https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz | tar -zxO google-cloud-sdk/lib/googlecloudsdk/core/config.json | grep '"version"' | sed "s/.*:.*\"\(.*\)\".*/\1/" to check current version

giniu commented on 2014-06-23 19:56 (UTC)

Seems it only happened once, it is 0.9.27 now (version number is in RELEASE_NOTES and in file lib/googlecloudsdk/core/config.json)

numkem commented on 2014-06-23 19:13 (UTC)

Seems like the downloaded archive gets changed quite often while the filename or version doesn't. I don't really know how we could keep up with their changes.

numkem commented on 2014-06-16 13:45 (UTC)

OK! This should be a pretty good version. I was using namcap before but I didn't really understand why it was complaining. With your explanations and some digging and fixed most problems.