Package Details: google-cloud-cli 517.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: 190
Popularity: 0.68
First Submitted: 2023-03-08 09:33 (UTC)
Last Updated: 2025-04-02 08:09 (UTC)

Dependencies (2)

Required by (14)

Sources (4)

Pinned Comments

Latest Comments

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

itwenty commented on 2015-04-03 06:58 (UTC)

Latest version is 0.9.52. Building this fails due to md5 checksum mismatch

confusedfla commented on 2015-02-02 22:54 (UTC)

Hi, I got some troubles with the components lists. It told me that it can't find my installation, as a quick fix I manually patched this line lib/googlecloudsdk/core/config:358 ``` p = file_utils.FindDirectoryContaining(os.path.dirname(__file__), Paths.CLOUDSDK_STATE_DIR) ``` with ``` return os.path.join(self.global_config_dir, ".install") ``` this implies that you have run "mkdir ~/.config/gcloud/.install" before. How did you deal with the installation problem?

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)