Skip to content

Commit

Permalink
Merge pull request #214 from infosiftr/bookworm
Browse files Browse the repository at this point in the history
Update to Debian bookworm
  • Loading branch information
yosifkit authored Dec 12, 2023
2 parents 54990d4 + 37ba32b commit f74e9f8
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 25 deletions.
2 changes: 1 addition & 1 deletion 2.0/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 2.2/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 2.2/alpine/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions 2.4/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions 2.6/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions 2.7/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions 2.8/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions 2.9/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions 3.0/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ RUN set -eux; \
apt-mark auto '.*' > /dev/null; \
[ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \
find /usr/local -type f -executable -exec ldd '{}' ';' \
| awk '/=>/ { print $(NF-1) }' \
| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \
| sort -u \
| xargs -r dpkg-query --search \
| cut -d: -f1 \
Expand Down
14 changes: 7 additions & 7 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,50 +7,50 @@
"version": "2.0.33"
},
"2.2": {
"alpine": "3.19",
"alpine": "3.16",
"debian": "bullseye-slim",
"sha256": "94b099e0142c3e5689b2a1a4943eafa02a453b342e6527cd108b722f8d0a82f6",
"url": "https://www.haproxy.org/download/2.2/src/haproxy-2.2.31.tar.gz",
"version": "2.2.31"
},
"2.4": {
"alpine": "3.19",
"debian": "bullseye-slim",
"debian": "bookworm-slim",
"sha256": "decc925111980792f32ecb8778b1105d7d4594880c75d4d973fc85214ad6a953",
"url": "https://www.haproxy.org/download/2.4/src/haproxy-2.4.24.tar.gz",
"version": "2.4.24"
},
"2.6": {
"alpine": "3.19",
"debian": "bullseye-slim",
"debian": "bookworm-slim",
"sha256": "41f8e1695e92fafdffe39690a68993f1a0f5f7f06931a99e9a153f749ea39cfd",
"url": "https://www.haproxy.org/download/2.6/src/haproxy-2.6.15.tar.gz",
"version": "2.6.15"
},
"2.7": {
"alpine": "3.19",
"debian": "bullseye-slim",
"debian": "bookworm-slim",
"sha256": "b064c5cd64615899ab39e518ff900b71c6e321d5f883d32dd871c31b372ebbc4",
"url": "https://www.haproxy.org/download/2.7/src/haproxy-2.7.11.tar.gz",
"version": "2.7.11"
},
"2.8": {
"alpine": "3.19",
"debian": "bullseye-slim",
"debian": "bookworm-slim",
"sha256": "3f5459c5a58e0b343a32eaef7ed5bed9d3fc29d8aa9e14b36c92c969fc2a60d9",
"url": "https://www.haproxy.org/download/2.8/src/haproxy-2.8.5.tar.gz",
"version": "2.8.5"
},
"2.9": {
"alpine": "3.19",
"debian": "bullseye-slim",
"debian": "bookworm-slim",
"sha256": "fba18acd1a46337fe20ae07c816c2496c8602b80a1bc9ff3768d4caa5fb80eab",
"url": "https://www.haproxy.org/download/2.9/src/haproxy-2.9.0.tar.gz",
"version": "2.9.0"
},
"3.0": {
"alpine": "3.19",
"debian": "bullseye-slim",
"debian": "bookworm-slim",
"sha256": "47c387d203ab00b5501017691f741375359a161216a84b17e55e48f2e84adc9f",
"url": "https://www.haproxy.org/download/3.0/src/devel/haproxy-3.0-dev0.tar.gz",
"version": "3.0-dev0"
Expand Down
6 changes: 4 additions & 2 deletions versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ else
fi
versions=( "${versions[@]%/}" )

defaultDebianSuite='bullseye-slim'
defaultDebianSuite='bookworm-slim'
declare -A debianSuite=(
[2.2]='bullseye-slim'
[2.0]='buster-slim'
)
defaultAlpineVersion='3.19'
declare -A alpineVersion=(
# OpenSSL 3 incompatibilities
# OpenSSL 3 incompatibilities (https://github.com/haproxy/haproxy/issues/1276)
[2.2]='3.16'
[2.0]='3.16'
)

Expand Down

0 comments on commit f74e9f8

Please sign in to comment.