Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): bump libavif to e10e6d9-2024-07-01, rav1e to 0.7.1 #58

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions wheelbuild/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CONFIG_DIR=$(abspath $(dirname "${BASH_SOURCE[0]}"))

ARCHIVE_SDIR=pillow-avif-plugin-depends
LIBAVIF_VERSION=e10e6d98e6d1dbcdd409859a924d1b607a1e06dc
RAV1E_VERSION=p20231003
RAV1E_VERSION=0.7.1
CCACHE_VERSION=4.7.1
SCCACHE_VERSION=0.3.0
export PERLBREWURL=https://raw.githubusercontent.com/gugod/App-perlbrew/release-0.92/perlbrew
Expand Down Expand Up @@ -190,19 +190,19 @@ function build_rav1e {
group_start "Build rav1e"

if [ -n "$IS_MACOS" ] && [ "$PLAT" == "arm64" ]; then
librav1e_tgz=librav1e-macos-aarch64.tar.gz
librav1e_tgz=librav1e-${RAV1E_VERSION}-macos-aarch64.tar.gz
elif [ -n "$IS_MACOS" ]; then
librav1e_tgz=librav1e-macos.tar.gz
librav1e_tgz=librav1e-${RAV1E_VERSION}-macos.tar.gz
elif [ "$PLAT" == "aarch64" ]; then
librav1e_tgz=librav1e-linux-aarch64.tar.gz
librav1e_tgz=librav1e-${RAV1E_VERSION}-linux-aarch64.tar.gz
elif [ "$PLAT" == "i686" ]; then
librav1e_tgz=librav1e-linux-i686.tar.gz
librav1e_tgz=librav1e-${RAV1E_VERSION}-linux-i686.tar.gz
else
librav1e_tgz=librav1e-linux-generic.tar.gz
librav1e_tgz=librav1e-${RAV1E_VERSION}-linux-generic.tar.gz
fi

curl -sLo - \
https://github.com/xiph/rav1e/releases/download/$RAV1E_VERSION/$librav1e_tgz \
https://github.com/xiph/rav1e/releases/download/v$RAV1E_VERSION/$librav1e_tgz \
| tar -C $BUILD_PREFIX --exclude LICENSE -zxf -

if [ ! -n "$IS_MACOS" ]; then
Expand Down
12 changes: 6 additions & 6 deletions winbuild/build_prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ def cmd_msbuild(
},
"rav1e": {
"url": (
"https://github.com/xiph/rav1e/releases/download/p20231003/"
"rav1e-windows-msvc-generic.zip"
"https://github.com/xiph/rav1e/releases/download/v0.7.1/"
"rav1e-0.7.1-windows-msvc-generic.zip"
),
"filename": "rav1e-windows-msvc-generic.zip",
"filename": "rav1e-0.7.1-windows-msvc-generic.zip",
"dir": "rav1e-windows-msvc-sdk",
"license": "LICENSE",
"build": [
Expand All @@ -181,10 +181,10 @@ def cmd_msbuild(
"libavif": {
"url": (
"https://github.com/fdintino/libavif/archive/"
"88d3dccda111f6ccbcccd925179f67e7d6fdf4ff.zip"
"e10e6d98e6d1dbcdd409859a924d1b607a1e06dc.zip"
),
"filename": "libavif-88d3dccda111f6ccbcccd925179f67e7d6fdf4ff.zip",
"dir": "libavif-88d3dccda111f6ccbcccd925179f67e7d6fdf4ff",
"filename": "libavif-e10e6d98e6d1dbcdd409859a924d1b607a1e06dc.zip",
"dir": "libavif-e10e6d98e6d1dbcdd409859a924d1b607a1e06dc",
"license": "LICENSE",
"build": [
cmd_mkdir("build.pillow"),
Expand Down
Loading