Skip to content

Commit

Permalink
chore(ci): bump libavif to e10e6d9-2024-07-01, rav1e to 0.7.1 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino authored Jul 8, 2024
1 parent 506b7ad commit acffd23
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
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

0 comments on commit acffd23

Please sign in to comment.