Skip to content

Commit d0c4e20

Browse files
authored
Merge pull request #192 from serpilliere/update_v0.1.4
Release v0.1.4
2 parents e9e1b31 + e02e886 commit d0c4e20

File tree

6 files changed

+31
-16
lines changed

6 files changed

+31
-16
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.4] - 2023-05-31
11+
1012
### Changed
1113
- extern-img-source short version is '-k' for all binaries
1214
- remove duplicate '-c' option for client/proxy/server

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/Dockerfile-windows

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,45 @@ RUN set -eux; \
2424
unzip \
2525
sudo \
2626
git \
27-
fakeroot; \
27+
fakeroot;
28+
29+
RUN set -eux; \
2830
useradd -ms /bin/bash builduser ; \
2931
passwd -d builduser ; \
3032
printf 'builduser ALL=(ALL) ALL\n' | tee -a /etc/sudoers ; \
3133
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path ; \
3234
rustup target add x86_64-pc-windows-gnu ; \
33-
rustup toolchain install stable-x86_64-pc-windows-gnu ; \
34-
for lib in SECUR32 KERNEL32 OLEAUT32 OLE32 ; do ln -s /usr/x86_64-w64-mingw32/lib/lib${lib,,}.a /usr/x86_64-w64-mingw32/lib/lib${lib}.a ; done ; \
35+
rustup toolchain install --force-non-host stable-x86_64-pc-windows-gnu ; \
36+
for lib in SECUR32 KERNEL32 OLEAUT32 OLE32 ; do ln -s /usr/x86_64-w64-mingw32/lib/lib${lib,,}.a /usr/x86_64-w64-mingw32/lib/lib${lib}.a ; done
37+
38+
RUN set -eux; \
3539
pacman -S --noconfirm \
3640
libxtst \
3741
libxext \
3842
ffmpeg \
3943
libxdamage \
4044
libxfixes \
41-
curl ; \
42-
cd /tmp/ ; \
43-
curl -L -o /tmp/ffmpeg.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-n4.4-latest-win64-gpl-shared-4.4.zip ; \
45+
curl ; \
46+
cd /tmp ; \
47+
curl -L -o /tmp/ffmpeg.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-n6.0-latest-win64-gpl-shared-6.0.zip ; \
4448
unzip /tmp/ffmpeg.zip ; cd /tmp/ffmpeg*/bin/ ; \
4549
for lib in *.dll ; do echo ${lib} ; \
4650
cp $lib /usr/x86_64-w64-mingw32/lib/${lib} ; \
4751
ln -s /usr/x86_64-w64-mingw32/lib/${lib} /usr/x86_64-w64-mingw32/lib/${lib/-*.dll/.dll} ; \
48-
done; \
52+
done;
53+
54+
55+
RUN set -eux; \
56+
sudo bash -c "echo 'Defaults env_keep += \"ftp_proxy http_proxy https_proxy no_proxy\"' >> /etc/sudoers" ; \
57+
sudo cat /etc/sudoers
58+
59+
RUN set -eux; \
4960
cd /tmp ; \
50-
sudo --preserve-env=https_proxy -u builduser bash -c 'git clone https://aur.archlinux.org/aurman.git ; cd aurman ; \
51-
makepkg --skippgpcheck --noconfirm -si' ; \
52-
sudo --preserve-env=https_proxy --preserve-env=http_proxy -u builduser bash -c 'aurman --noconfirm --skip_news --noedit -S mingw-w64-opus' ;
61+
sudo -u builduser bash -c 'git clone https://aur.archlinux.org/pikaur.git ; cd pikaur ; \
62+
makepkg --noconfirm -si'
63+
64+
RUN set -eux; \
65+
sudo -u builduser bash -c 'pikaur --noconfirm --noedit -S mingw-w64-opus' ;
5366

5467

5568
WORKDIR /SRC

sanzu-broker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sanzu_broker"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Fabrice Desclaux <fabrice.desclaux@cea.fr>"]
55
edition = "2018"
66
readme = "README.md"

sanzu-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sanzu-common"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Fabrice Desclaux <fabrice.desclaux@cea.fr>"]
55
edition = "2018"
66
description = "Sanzu helper code"

sanzu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sanzu"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Fabrice Desclaux <fabrice.desclaux@cea.fr>"]
55
edition = "2018"
66
readme = "README.md"

0 commit comments

Comments
 (0)