Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

google-cloud-sdk: update to 498.0.0 #26267

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions devel/google-cloud-sdk/Portfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

Check warning on line 1 in devel/google-cloud-sdk/Portfile

View workflow job for this annotation

GitHub Actions / macos-12

port test google-cloud-sdk: Warning: google-cloud-sdk is configured to build for the architecture(s) 'x86_64', but installed Mach-O files built for the following archs: Warning: i386,x86_64: Warning: /opt/local/libexec/google-cloud-sdk/platform/gsutil/third_party/crcmod_osx/crcmod/_crcfunext.so Warning:

Check warning on line 1 in devel/google-cloud-sdk/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port test google-cloud-sdk: Warning: google-cloud-sdk is configured to build for the architecture(s) 'arm64', but installed Mach-O files built for the following archs: Warning: i386,x86_64: Warning: /opt/local/libexec/google-cloud-sdk/platform/gsutil/third_party/crcmod_osx/crcmod/_crcfunext.so Warning:

Check warning on line 1 in devel/google-cloud-sdk/Portfile

View workflow job for this annotation

GitHub Actions / macos-13

port test google-cloud-sdk: Warning: google-cloud-sdk is configured to build for the architecture(s) 'x86_64', but installed Mach-O files built for the following archs: Warning: i386,x86_64: Warning: /opt/local/libexec/google-cloud-sdk/platform/gsutil/third_party/crcmod_osx/crcmod/_crcfunext.so Warning:

PortSystem 1.0
PortGroup python 1.0

name google-cloud-sdk
version 497.0.0
version 498.0.0
revision 0
categories devel python
license Apache-2
Expand All @@ -21,19 +21,19 @@

if { ${configure.build_arch} eq "i386" } {
distname ${name}-${version}-darwin-x86
checksums rmd160 1794fcafc6e12d5c7151f1389556ccfca804573f \
sha256 c2bf4ee475785644a63ab88e367189fdb98bde7700cc7173faafac1d64f2bd10 \
size 52285945
checksums rmd160 6e344a174bf11e4122ed2b03306c69659e23f52b \
sha256 34aa006071612f678154cc3411033f0336e4638310d76106ea043dae02812b45 \
size 52361444
} elseif { ${configure.build_arch} eq "x86_64" } {
distname ${name}-${version}-darwin-x86_64
checksums rmd160 65bde5bfe5cf562b5f32e08457de6a8e08487612 \
sha256 261c5ada9571aa0c0fe8ad06f863c5c2f6c61714a5d94379ddd833df67441e17 \
size 53636087
checksums rmd160 3346c7a27573362c3529da2fe2a3e709319537a5 \
sha256 3ad3d16495ac80848e8e7980277cb27c93ec12e9d36ade394e5833f57ee68193 \
size 53715411
} elseif { ${configure.build_arch} eq "arm64" } {
distname ${name}-${version}-darwin-arm
checksums rmd160 f2c16597a27b309721e7dbffde1c935765b72be3 \
sha256 0584bd1642e01d5195f75c92fbceb045464a9197cff48d71df2cf0ac51e5d1a4 \
size 53583662
checksums rmd160 ec9068cfde2fe5597aee05b31b9facc6f46d49f7 \
sha256 c880c809f4201cb354a4f40959803866283cb2b3aa07a736e129826aa64fb377 \
size 53663104
}

homepage https://cloud.google.com/sdk/
Expand All @@ -42,7 +42,8 @@
worksrcdir ${name}

# Most recent supported Python version according to https://cloud.google.com/sdk/docs/install#mac
python.default_version 312
# Exception: gsutil is not compatible with Python 3.12 yet
python.default_version 311

post-patch {
# Default to the MacPorts Python binary
Expand Down
Loading