Compare commits

...

2 commits

Author SHA1 Message Date
702c8eb241
Updating PySide6 to v6.7.3 2024-10-01 22:39:05 +02:00
c139952685
Fixing changing PySide versions in TOML files 2024-10-01 22:38:44 +02:00
6 changed files with 7 additions and 7 deletions

View file

@ -103,8 +103,8 @@ build_pyside() {
latest_tag="$(from-toml-dict "$cfg" "$build.settings" | get-value-of TAG | pass-argument VERSION "${major}-latest")" latest_tag="$(from-toml-dict "$cfg" "$build.settings" | get-value-of TAG | pass-argument VERSION "${major}-latest")"
build_args="$(from-toml-dict "$cfg" "$build.docker-args" | to-docker-args "$repo" "$version")" build_args="$(from-toml-dict "$cfg" "$build.docker-args" | to-docker-args "$repo" "$version")"
box-green "Building image $repo:$tag..." box-green "Building image $repo:$tag..."
echo "> docker build -t $repo:$tag $build_args $directory/${build}" echo "> docker build -t $repo:$tag $build_args --build-arg PYSIDE_VERSION=$version $directory/${build}"
docker build -t "$repo:$tag" $build_args "$directory/${build}" docker build -t "$repo:$tag" $build_args --build-arg PYSIDE_VERSION="$version" "$directory/${build}"
# Tag as latest # Tag as latest
if [ "$latest" != "false" ]; then if [ "$latest" != "false" ]; then
docker tag "$repo:$tag" "$repo:$latest_tag" docker tag "$repo:$tag" "$repo:$latest_tag"

View file

@ -14,7 +14,7 @@ FROM ubuntu:jammy
# Jammy uses python3.10 and not 3.12, which is not compatible with PySide2. # Jammy uses python3.10 and not 3.12, which is not compatible with PySide2.
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
ARG PYSIDE_VERSION=5.15.2.1 ARG PYSIDE_VERSION
ENV TZ=Europe/Paris ENV TZ=Europe/Paris
RUN apt-get update RUN apt-get update

View file

@ -12,7 +12,7 @@
FROM ubuntu:noble FROM ubuntu:noble
ARG PYSIDE_VERSION=5.15.2.1 ARG PYSIDE_VERSION
# Adapted from https://github.com/cdrx/docker-pyinstaller/blob/master/Dockerfile-py3-win64 # Adapted from https://github.com/cdrx/docker-pyinstaller/blob/master/Dockerfile-py3-win64
# Upstream hasn't been updated for a while. # Upstream hasn't been updated for a while.

View file

@ -11,7 +11,7 @@
# #
MAJOR_VERSION="6" MAJOR_VERSION="6"
PYSIDE_VERSION="6.7.2" PYSIDE_VERSION="6.7.3"
BUILDS="linux wine linux-latex" BUILDS="linux wine linux-latex"
[linux.settings] [linux.settings]

View file

@ -12,7 +12,7 @@
FROM ubuntu:noble FROM ubuntu:noble
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
ARG PYSIDE_VERSION=6.7.2 ARG PYSIDE_VERSION
ENV TZ=Europe/Paris ENV TZ=Europe/Paris
RUN apt-get update RUN apt-get update

View file

@ -12,7 +12,7 @@
FROM ubuntu:noble FROM ubuntu:noble
ARG PYSIDE_VERSION=6.7.2 ARG PYSIDE_VERSION
# Adapted from https://github.com/cdrx/docker-pyinstaller/blob/master/Dockerfile-py3-win64 # Adapted from https://github.com/cdrx/docker-pyinstaller/blob/master/Dockerfile-py3-win64
# Upstream hasn't been updated for a while. # Upstream hasn't been updated for a while.