I'm getting a 404 error when attempting to download https://dl.google.com/dl/cloudsdk/release/downloads/for_packagers/linux/google-cloud-sdk_355.0.0.orig.tar.gz. Anyone else?
Search Criteria
Package Details: google-cloud-cli 520.0.0-1
Package Actions
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.39 |
First Submitted: | 2023-03-08 09:33 (UTC) |
Last Updated: | 2025-04-30 06:46 (UTC) |
Dependencies (2)
- python (python37AUR, python311AUR, python310AUR)
- python-crcmod (optional) – [gsutil] verify the integrity of GCS object contents
Required by (14)
- apollo-neo-env-manager-dev (optional)
- arkade-bin (requires google-cloud-sdk) (optional)
- gcsfuse (requires google-cloud-sdk) (optional)
- gcsfuse-bin (requires google-cloud-sdk) (optional)
- google-cloud-cli-firestore-emulator
- google-cloud-cli-gke-gcloud-auth-plugin
- google-cloud-sdk-app-engine-java (requires google-cloud-sdk)
- google-cloud-sdk-app-engine-python (requires google-cloud-sdk)
- google-cloud-sdk-app-engine-python-extras (requires google-cloud-sdk)
- google-cloud-sdk-datastore-emulator (requires google-cloud-sdk)
- k3sup-bin (requires google-cloud-sdk) (optional)
- porter-bin (requires google-cloud-sdk) (optional)
- repman (optional)
- repman-git (optional)
Sources (4)
Latest Comments
« First ‹ Previous 1 .. 10 11 12 13 14 15 16 17 18 19 20 .. 32 Next › Last »
frabjous commented on 2021-09-01 13:27 (UTC)
jamesmcm commented on 2021-04-27 09:01 (UTC) (edited on 2021-04-27 09:03 (UTC) by jamesmcm)
Would it be possible to package with the cloud-datastore-emulator component?
EDIT: Nevermind I read the pinned comments.
sudoforge commented on 2020-06-15 03:00 (UTC)
@allsyed component support in individual packages is still under way; only a few packages are currently maintained (check my profile for a complete list). Read the pinned comment(s) for instructions on how to receive support for this package, and how to modify your installation to allow for component management via gcloud components <command>
.
allsyed commented on 2020-06-15 02:57 (UTC)
How do I go about installing other components?
Like when I try to install cloud_sql_proxy. I get this message.
ERROR: (gcloud.components.install) You cannot perform this action because this Cloud SDK installation is managed by an external package manager.
Please consider using a separate installation of the Cloud SDK created through the default mechanism described at: https://cloud.google.com/sdk/
sudoforge commented on 2020-04-23 19:27 (UTC)
@brody great catch, that was patched in. As a reminder, please use Github to submit patches, ask questions, and raise issues.
brody commented on 2020-04-22 18:37 (UTC)
Please can you adjust the permission of the bash-completion file to 644 (from the least privilege perspective)?
diff --git a/PKGBUILD b/PKGBUILD
index ce029a3..6260b9d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -66,7 +66,7 @@ package() {
install -Dm755 "${srcdir}/${source[1]}" \
"${pkgdir}/etc/profile.d/google-cloud-sdk.sh"
- install -Dm755 "${pkgdir}/opt/${pkgname}/completion.bash.inc" \
+ install -Dm644 "${pkgdir}/opt/${pkgname}/completion.bash.inc" \
"${pkgdir}/etc/bash_completion.d/google-cloud-sdk"
mkdir -p "${pkgdir}/usr/share"
mindrunner commented on 2020-02-18 22:20 (UTC)
Will do, thank you for help and patience! :)
sudoforge commented on 2020-02-18 22:16 (UTC)
Haha, cannot patch PKGUILD because 'patch not found'. reinstalled base-devel group and all good now! :)
I guessed that was going to be the issue, but wanted to make sure we debugged it properly. Glad it's sorted out! As a note, please use the GitHub parent project for reporting issues in the future.
mindrunner commented on 2020-02-18 22:13 (UTC)
Haha, cannot patch PKGUILD because 'patch not found'. reinstalled base-devel group and all good now! :)
Cheers
sudoforge commented on 2020-02-18 21:30 (UTC) (edited on 2020-02-18 21:36 (UTC) by sudoforge)
Super weird. I still encounter this on one computer (a virtual server), however I am able to install the package on my laptop without any problems. Both are set up in pretty much the same way, but differ in the list of installed packages (e.g. laptop has desktop stuff installed). Using yay as the aur-helper on both machines. Tried manually with makepkg, same result. I cannot figure out an easy way to see why patching fails (no verbose option).
After cloning this repository on the failing machine, apply the following patch to the PKGBUILD before running makepkg
; this should give us the information we need:
diff -urN a/PKGBUILD b/PKGBUILD
--- a/PKGBUILD 2020-02-18 13:33:09.701671909 -0800
+++ b/PKGBUILD 2020-02-18 13:35:33.254889896 -0800
@@ -36,7 +36,7 @@
cd "$pkgname"
for f in ./../*.patch; do
- patch -p1 -i $f > /dev/null 2>&1 || ( echo "failed to apply patch: $(basename $f)" && exit 1 )
+ patch -p1 --verbose -i $f
done
}
I've uploaded the above patch to ix.io. To easily apply this from your virtual server:
$ git clone https://aur.archlinux.org/google-cloud-sdk.git
$ cd google-cloud-sdk
$ patch -p1 < <(wget -qO- http://ix.io/2c5o)
$ makepkg -sr
Edit: I initially made this comment with an invalid patch containing an erroneous s
I had added to verify that the patch would print out the error.
Pinned Comments