blob: b4d9abd5b5e45022173ee21ca0eb7e873c0cd048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Maintainer: Benjamin Denhartog <ben@sudoforge.com>
# Contributor: Mansour Behabadi <mansour@oxplot.com>
# Contributor: Troy Engel <troyengel+arch@gmail.com>
# Contributor: Geoff Hill <geoff@geoffhill.org>
# Contributor: Sebastien Bariteau <numkem@numkem.org>
# Contributor: Justin Dray <justin@dray.be>
pkgname="google-cloud-sdk"
pkgver=333.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/"
license=("Apache")
arch=('x86_64')
depends=('python')
optdepends=(
"python2: for dev_appserver.py and endpointscfg support"
"python-crcmod: [gsutil] verify the integrity of GCS object contents"
)
options=('!strip' 'staticlibs')
source=(
"https://dl.google.com/dl/cloudsdk/release/downloads/for_packagers/linux/${pkgname}_${pkgver}.orig.tar.gz"
"google-cloud-sdk.sh"
"0001-set-python2-for-dev-appserver-py.patch"
"0002-set-python2-for-endpointscfg-py.patch"
"0003-add-compdef-to-zsh-completion.patch"
)
sha256sums=('3e25aa94508d2f1a1c88f4bd36f213f9f6eccf00ef48111e39ea593d40162388'
'a54f88947a2593fae4aa8f65e42de4ad735583ae743735305c0f36710a794295'
'62ec7f56e09168d375823e9e99fcdcfbf40b0fffdd75f35cf91122c5902c82e9'
'ff6065ce2e54ac654605bd5fe554313b1d0def2c31ce56ff39429098dd1e39fe'
'4694f5191ceea7cf8076861ce5790ba9e809023da278b0f6ed862b9611e5aa93')
prepare() {
cd "${srcdir}/${pkgname}"
for f in "${source[@]}"; do
[[ "$f" =~ \.patch$ ]] && \
( \
patch -p1 -i "${srcdir}/${f}" > /dev/null 2>&1 ||\
( \
echo "failed to apply patch: $(basename ${f})" && \
exit 1 \
) \
)
done
}
package() {
mkdir "${pkgdir}/opt"
cp -r "${srcdir}/${pkgname}" "${pkgdir}/opt"
# The Google code uses a _TraceAction() method which spams the screen even
# in "quiet" mode, we're throwing away output on purpose to keep it clean
# ref: lib/googlecloudsdk/core/platforms_install.py
python "${pkgdir}/opt/${pkgname}/bin/bootstrapping/install.py" \
--quiet \
--usage-reporting False \
--path-update False \
--bash-completion False \
--additional-components "" \
1 > /dev/null
rm -rf "${pkgdir}/opt/${pkgname}/.install/.backup"
mkdir "${pkgdir}/opt/${pkgname}/.install/.backup"
find $pkgdir -name '__pycache__' -type d -exec rm -rf {} +
install -D -m 0755 "${srcdir}/${source[1]}" \
"${pkgdir}/etc/profile.d/google-cloud-sdk.sh"
install -D -m 0644 "${pkgdir}/opt/${pkgname}/completion.bash.inc" \
"${pkgdir}/etc/bash_completion.d/google-cloud-sdk"
install -D -m 0644 "${pkgdir}/opt/${pkgname}/completion.zsh.inc" \
"${pkgdir}/usr/share/zsh/site-functions/_gcloud"
mkdir -p "${pkgdir}/usr/share"
mv -f "${pkgdir}/opt/${pkgname}/help/man" "${pkgdir}/usr/share/"
chmod 0755 "${pkgdir}/usr/share/man"
chmod 0755 "${pkgdir}/usr/share/man/man1"
mkdir -p "${pkgdir}/usr/bin"
for i in "${pkgdir}/opt/${pkgname}/bin"/*; do
ln -st "${pkgdir}/usr/bin/" "${i#${pkgdir}}"
done
rm -f "${pkgdir}"/usr/bin/{bq,dev_appserver.py*,endpointscfg.py*,java_dev_appserver.sh}
chmod -x "${pkgdir}"/usr/share/man/man1/*
find "${pkgdir}/opt/${pkgname}" -name "*.html" -o -name "*.json" -exec chmod -x {} \;
find "${pkgdir}/opt/${pkgname}" -name "*_test.py" -exec chmod +x {} \;
}
|