Skip to content

Commit

Permalink
Merge pull request #83 from linuxserver/7.0.2
Browse files Browse the repository at this point in the history
Bump ffmpeg, freetype, libdovi and mesa
  • Loading branch information
aptalca authored Aug 19, 2024
2 parents df2575e + ff55333 commit df61ef7
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/external_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_FFMPEG_MASTER\". ****"
echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_FFMPEG_MASTER\`" >> $GITHUB_STEP_SUMMARY
echo "**** Retrieving external version ****"
EXT_RELEASE=$(echo 7.0.1-cli)
EXT_RELEASE=$(echo 7.0.2-cli)
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
echo "**** Can't retrieve external version, exiting ****"
FAILURE_REASON="Can't retrieve external version for ffmpeg branch master"
Expand Down
18 changes: 10 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ ENV \
ENV \
AOM=v3.9.1 \
FDKAAC=2.0.3 \
FFMPEG_HARD=7.0.1 \
FFMPEG_HARD=7.0.2 \
FONTCONFIG=2.15.0 \
FREETYPE=2.13.2 \
FREETYPE=2.13.3 \
FRIBIDI=1.0.15 \
GMMLIB=22.3.20 \
HARFBUZZ=9.0.0 \
Expand All @@ -27,7 +27,7 @@ ENV \
LAME=3.100 \
LIBASS=0.17.3 \
LIBDAV1D=1.4.3 \
LIBDOVI=2.1.1 \
LIBDOVI=2.1.2 \
LIBDRM=2.4.122 \
LIBGL=1.7.0 \
LIBMFX=22.5.4 \
Expand All @@ -38,7 +38,7 @@ ENV \
LIBVIDSTAB=1.1.1 \
LIBVMAF=3.0.0 \
LIBVPL=2.12.0 \
MESA=24.1.5 \
MESA=24.2.0 \
NVCODEC=n12.2.72.0 \
OGG=1.3.5 \
OPENCOREAMR=0.1.6 \
Expand Down Expand Up @@ -134,7 +134,7 @@ RUN \
pip \
setuptools \
wheel && \
pip install --no-cache-dir cmake mako meson ninja ply
pip install --no-cache-dir cmake mako meson ninja packaging ply pyyaml

# compile 3rd party libs
RUN \
Expand Down Expand Up @@ -631,10 +631,11 @@ RUN \
mkdir -p \
rist_build && \
cd rist_build && \
meson \
meson setup \
--default-library=shared .. && \
ninja && \
ninja install
ninja install && \
strip -d /usr/local/lib/librist.so
RUN \
echo "**** grabbing srt ****" && \
mkdir -p /tmp/srt && \
Expand All @@ -651,7 +652,8 @@ RUN \
cmake \
-DBUILD_SHARED_LIBS:BOOL=on .. && \
make && \
make install
make install && \
strip -d /usr/local/lib/libsrt.so
RUN \
echo "**** grabbing SVT-AV1 ****" && \
mkdir -p /tmp/svt-av1 && \
Expand Down
12 changes: 7 additions & 5 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ ENV \
ENV \
AOM=v3.9.1 \
FDKAAC=2.0.3 \
FFMPEG_HARD=7.0.1 \
FFMPEG_HARD=7.0.2 \
FONTCONFIG=2.15.0 \
FREETYPE=2.13.2 \
FREETYPE=2.13.3 \
FRIBIDI=1.0.15 \
HARFBUZZ=9.0.0 \
KVAZAAR=2.3.1 \
Expand Down Expand Up @@ -348,10 +348,11 @@ RUN \
mkdir -p \
rist_build && \
cd rist_build && \
meson \
meson setup \
--default-library=shared .. && \
ninja && \
ninja install
ninja install && \
strip -d /usr/local/lib/librist.so
RUN \
echo "**** grabbing srt ****" && \
mkdir -p /tmp/srt && \
Expand All @@ -368,7 +369,8 @@ RUN \
cmake \
-DBUILD_SHARED_LIBS:BOOL=on .. && \
make && \
make install
make install && \
strip -d /usr/local/lib/libsrt.so
RUN \
echo "**** grabbing SVT-AV1 ****" && \
mkdir -p /tmp/svt-av1 && \
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pipeline {
steps{
script{
env.EXT_RELEASE = sh(
script: ''' echo 7.0.1-cli ''',
script: ''' echo 7.0.2-cli ''',
returnStdout: true).trim()
env.RELEASE_LINK = 'custom_command'
}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **14.08.24:** - Bump ffmpeg, freetype, libdovi and mesa.
* **14.08.24:** - Add SRT and libRIST.
* **01.08.24:** - Add libdav1d. Bump libharfbuzz, various Intel drivers and libs, libass, libdrm, libplacebo, libva, mesa, svtav1, and vulkan sdk.
* **21.06.24:** - Bump mesa and libaom. Update lib path for rav1e.
Expand Down
2 changes: 1 addition & 1 deletion jenkins-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# jenkins variables
project_name: docker-ffmpeg
external_type: na
custom_version_command: "echo 7.0.1-cli"
custom_version_command: "echo 7.0.2-cli"
release_type: stable
release_tag: latest
ls_branch: master
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ full_custom_readme: |
## Versions
* **17.08.24:** - Bump ffmpeg, freetype, libdovi and mesa.
* **14.08.24:** - Add SRT and libRIST.
* **01.08.24:** - Add libdav1d. Bump libharfbuzz, various Intel drivers and libs, libass, libdrm, libplacebo, libva, mesa, svtav1, and vulkan sdk.
* **21.06.24:** - Bump mesa and libaom. Update lib path for rav1e.
Expand Down

0 comments on commit df61ef7

Please sign in to comment.