forked from docker-library/httpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.sh
executable file
·61 lines (53 loc) · 2.16 KB
/
update.sh
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
#!/bin/bash
set -eo pipefail
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
versions=( "$@" )
if [ ${#versions[@]} -eq 0 ]; then
versions=( */ )
fi
versions=( "${versions[@]%/}" )
nghttp2VersionDebian="$(docker run -i --rm debian:stretch-slim bash -c 'apt-get update -qq && apt-cache show "$@"' -- 'libnghttp2-dev' |tac|tac| awk -F ': ' '$1 == "Version" { print $2; exit }')"
opensslVersionDebian="$(docker run -i --rm debian:jessie-backports bash -c 'apt-get update -qq && apt-cache show "$@"' -- 'openssl' |tac|tac| awk -F ': ' '$1 == "Version" { print $2; exit }')"
travisEnv=
for version in "${versions[@]}"; do
fullVersion="$(
wget -qO- "https://www-us.apache.org/dist/httpd/" \
| grep -E '<a href="httpd-'"$version"'[^"-]+.tar.bz2"' \
| sed -r 's!.*<a href="httpd-([^"-]+).tar.bz2".*!\1!' \
| sort -V \
| tail -1
)"
sha256="$(wget -qO- "https://www-us.apache.org/dist/httpd/httpd-$fullVersion.tar.bz2.sha256" | cut -d' ' -f1)"
echo "$version: $fullVersion"
patchesUrl="https://www-us.apache.org/dist/httpd/patches/apply_to_$fullVersion"
patches=()
if wget --quiet --spider -O /dev/null -o /dev/null "$patchesUrl/"; then
patchFiles="$(
wget -qO- "$patchesUrl/?C=M;O=A" \
| grep -oE 'href="[^"]+[.]patch"' \
| cut -d'"' -f2 \
|| true
)"
for patchFile in $patchFiles; do
patchSha256="$(wget -qO- "$patchesUrl/$patchFile" | sha256sum | cut -d' ' -f1)"
[ -n "$patchSha256" ]
patches+=( "$patchFile" "$patchSha256" )
done
fi
if [ "${#patches[@]}" -gt 0 ]; then
echo " - ${patches[*]}"
fi
sed -ri \
-e 's/^(ENV HTTPD_VERSION) .*/\1 '"$fullVersion"'/' \
-e 's/^(ENV HTTPD_SHA256) .*/\1 '"$sha256"'/' \
-e 's/^(ENV NGHTTP2_VERSION) .*/\1 '"$nghttp2VersionDebian"'/' \
-e 's/^(ENV OPENSSL_VERSION) .*/\1 '"$opensslVersionDebian"'/' \
-e 's/^(ENV HTTPD_PATCHES=").*(")$/\1'"${patches[*]}"'\2/' \
"$version/Dockerfile" "$version"/*/Dockerfile
for variant in alpine; do
travisEnv='\n - VERSION='"$version VARIANT=$variant$travisEnv"
done
travisEnv='\n - VERSION='"$version$travisEnv"
done
travis="$(awk -v 'RS=\n\n' '$1 == "env:" { $0 = "env:'"$travisEnv"'" } { printf "%s%s", $0, RS }' .travis.yml)"
echo "$travis" > .travis.yml