summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Denhartog2020-02-25 14:55:22 -0800
committerBenjamin Denhartog2020-02-25 14:55:22 -0800
commitcbabd8856a3ecc9859a7d7a3468bbb74c091326d (patch)
tree5a9404dfcf1db0906eee7a007ea0b99b18af0d79
parent40d991ca8f090af2419770b5a40b8a748e77167f (diff)
downloadaur-cbabd8856a3ecc9859a7d7a3468bbb74c091326d.tar.gz
feat(google-cloud-sdk): new upstream release: 282.0.0
This patch upgrades google-cloud-sdk to version 282.0.0. As of this release, the patch to the internal third_party dependency (lib/third_party/ipaddress) is no longer necessary, as the dependency appears to be have been updated. For additional background information, refer to commit f1756a58dd64ac710a3d3e70e1d9812e5e460a8a in this repository.
-rw-r--r--.SRCINFO8
-rw-r--r--0004-fix-ipaddress-syntaxwarning.patch12
-rw-r--r--PKGBUILD8
3 files changed, 6 insertions, 22 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 950fb9414274..b5a390ca7729 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = google-cloud-sdk
pkgdesc = A set of command-line tools for the Google Cloud Platform. Includes gcloud (with beta and alpha commands), gsutil, and bq.
- pkgver = 281.0.0
+ pkgver = 282.0.0
pkgrel = 1
url = https://cloud.google.com/sdk/
arch = x86_64
@@ -10,18 +10,16 @@ pkgbase = google-cloud-sdk
optdepends = python-crcmod: [gsutil] verify the integrity of GCS object contents
options = !strip
options = staticlibs
- source = https://dl.google.com/dl/cloudsdk/release/downloads/for_packagers/linux/google-cloud-sdk_281.0.0.orig.tar.gz
+ source = https://dl.google.com/dl/cloudsdk/release/downloads/for_packagers/linux/google-cloud-sdk_282.0.0.orig.tar.gz
source = google-cloud-sdk.sh
source = 0001-fix-console-io-syntax-warning.patch
source = 0002-set-python2-for-dev-appserver-py.patch
source = 0003-set-python2-for-endpointscfg-py.patch
- source = 0004-fix-ipaddress-syntaxwarning.patch
- sha256sums = ac76927f7c6bbea63f66529d830cf440f09448a8f471d31b4b1e0951e2dcc116
+ sha256sums = 0ae87a2cf021007d1f7b1b326f91c420d38b1d0966b6b0ec3ce866736ade6e17
sha256sums = a54f88947a2593fae4aa8f65e42de4ad735583ae743735305c0f36710a794295
sha256sums = b3faeb3af2922510048d12063fa215610f12879f5cc9f8b78786c7d9f2957c70
sha256sums = 62ec7f56e09168d375823e9e99fcdcfbf40b0fffdd75f35cf91122c5902c82e9
sha256sums = ff6065ce2e54ac654605bd5fe554313b1d0def2c31ce56ff39429098dd1e39fe
- sha256sums = a23fe05f0438591b78b4baf1129f0601fe0cae8ceaa8f45eae675776317bbc9c
pkgname = google-cloud-sdk
diff --git a/0004-fix-ipaddress-syntaxwarning.patch b/0004-fix-ipaddress-syntaxwarning.patch
deleted file mode 100644
index 0d1fee3e8fb2..000000000000
--- a/0004-fix-ipaddress-syntaxwarning.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN --color a/lib/third_party/ipaddress/__init__.py b/lib/third_party/ipaddress/__init__.py
---- a/lib/third_party/ipaddress/__init__.py 2020-02-03 07:22:51.006100908 -0800
-+++ b/lib/third_party/ipaddress/__init__.py 2020-02-03 07:23:33.229413663 -0800
-@@ -1103,7 +1103,7 @@
- try:
- # Always false if one is v4 and the other is v6.
- if a._version != b._version:
-- raise TypeError("%s and %s are not of the same version" (a, b))
-+ raise TypeError("%s and %s are not of the same version" % (a, b))
- return (b.network_address <= a.network_address and
- b.broadcast_address >= a.broadcast_address)
- except AttributeError:
diff --git a/PKGBUILD b/PKGBUILD
index c7ba8fd6546c..84cc67e68702 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
# Contributor: Justin Dray <justin@dray.be>
pkgname="google-cloud-sdk"
-pkgver=281.0.0
+pkgver=282.0.0
pkgrel=1
pkgdesc="A set of command-line tools for the Google Cloud Platform. Includes gcloud (with beta and alpha commands), gsutil, and bq."
url="https://cloud.google.com/sdk/"
@@ -23,14 +23,12 @@ source=(
"0001-fix-console-io-syntax-warning.patch"
"0002-set-python2-for-dev-appserver-py.patch"
"0003-set-python2-for-endpointscfg-py.patch"
- "0004-fix-ipaddress-syntaxwarning.patch"
)
-sha256sums=('ac76927f7c6bbea63f66529d830cf440f09448a8f471d31b4b1e0951e2dcc116'
+sha256sums=('0ae87a2cf021007d1f7b1b326f91c420d38b1d0966b6b0ec3ce866736ade6e17'
'a54f88947a2593fae4aa8f65e42de4ad735583ae743735305c0f36710a794295'
'b3faeb3af2922510048d12063fa215610f12879f5cc9f8b78786c7d9f2957c70'
'62ec7f56e09168d375823e9e99fcdcfbf40b0fffdd75f35cf91122c5902c82e9'
- 'ff6065ce2e54ac654605bd5fe554313b1d0def2c31ce56ff39429098dd1e39fe'
- 'a23fe05f0438591b78b4baf1129f0601fe0cae8ceaa8f45eae675776317bbc9c')
+ 'ff6065ce2e54ac654605bd5fe554313b1d0def2c31ce56ff39429098dd1e39fe')
prepare() {
cd "$pkgname"