diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2022-02-02 21:38:32 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2022-02-02 21:38:32 +0100 |
commit | 2187d6b3307258456f06976c39575de58d0b2bda (patch) | |
tree | 1aee3a95d277cf0bb0ad812714b8c7f130d67589 | |
parent | 12efeb634552cc993f9bacb8174b34214f777283 (diff) | |
download | blogc-2187d6b3307258456f06976c39575de58d0b2bda.tar.gz blogc-2187d6b3307258456f06976c39575de58d0b2bda.tar.bz2 blogc-2187d6b3307258456f06976c39575de58d0b2bda.zip |
build: update debian/ubuntu releases
-rw-r--r-- | .yatr.yml | 6 | ||||
-rwxr-xr-x | build-aux/build-debian.sh | 10 |
2 files changed, 8 insertions, 8 deletions
@@ -65,10 +65,10 @@ targets: - --disable-make - --disable-runserver task_script: build-aux/build-windows.sh - deb-buster-amd64: + deb-bullseye-amd64: task_script: build-aux/build-debian.sh archive_extract_filter: "blogc-deb-*.tar.xz" - deb-bullseye-amd64: + deb-bookworm-amd64: task_script: build-aux/build-debian.sh archive_extract_filter: "blogc-deb-*.tar.xz" deb-sid-amd64: @@ -77,6 +77,6 @@ targets: deb-focal-amd64: task_script: build-aux/build-debian.sh archive_extract_filter: "blogc-deb-*.tar.xz" - deb-groovy-amd64: + deb-impish-amd64: task_script: build-aux/build-debian.sh archive_extract_filter: "blogc-deb-*.tar.xz" diff --git a/build-aux/build-debian.sh b/build-aux/build-debian.sh index 8e857f6..048912a 100755 --- a/build-aux/build-debian.sh +++ b/build-aux/build-debian.sh @@ -12,20 +12,20 @@ ARCH="$(echo "${TARGET}" | cut -d- -f3)" REV= case ${DIST} in - buster) - REV="1~10buster" - ;; bullseye) REV="1~11bullseye" ;; + bookworm) + REV="1~12bookworm" + ;; sid) REV="1~sid" ;; focal) REV="1~11.0focal" ;; - groovy) - REV="1~11.1groovy" + impish) + REV="1~11.3impish" ;; *) echo "error: unsupported dist: ${DIST}" |