Skip to content

Commit d0a7883

Browse files
committed
GH-14: build: Support debian bookworm (stable)
Signed-off-by: Philippe Coval <[email protected]>
1 parent 8700948 commit d0a7883

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bullseye
1+
FROM debian:bookworm
22

33
ENV DEBIAN_FRONTEND noninteractive
44
ENV LC_ALL en_US.UTF-8

helper.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@ default: help zpc/default
1010
SELF?=${CURDIR}/helper.mk
1111

1212
project?=unifysdk
13-
1413
CMAKE_GENERATOR?=Ninja
1514
export CMAKE_GENERATOR
1615

1716
build_dir?=build
1817
sudo?=sudo
1918

20-
debian_codename?=bullseye
19+
debian_codename?=bookworm
2120

2221
packages?=cmake ninja-build build-essential python3-full ruby clang
2322
packages+=git-lfs unp time file
@@ -80,7 +79,8 @@ setup/rust:
8079
setup/python:
8180
@echo "$@: TODO: https://github.com/wbond/pybars3/issues/82"
8281
pip3 --version || echo "warning: Please install pip"
83-
pip3 install pybars3
82+
pip3 install pybars3 \
83+
|| pip3 install --break-system-packages pybars3
8484

8585
cmake_url?=https://github.com/Kitware/CMake/releases/download/v3.21.6/cmake-3.21.6-Linux-x86_64.sh
8686
cmake_filename?=$(shell basename -- "${cmake_url}")

0 commit comments

Comments
 (0)