From 05d8db5ce0dc34bf790930da96402cfe9f2e913d Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Mon, 25 Aug 2025 03:49:04 +0000 Subject: [PATCH] 24.03-lts-sp1 update libyuv to 1916 --- Others/libyuv/1916/24.03-lts-sp1/Dockerfile | 21 +++++++++++++++++++++ Others/libyuv/README.md | 1 + Others/libyuv/doc/image-info.yml | 1 + Others/libyuv/meta.yml | 3 +++ 4 files changed, 26 insertions(+) create mode 100644 Others/libyuv/1916/24.03-lts-sp1/Dockerfile diff --git a/Others/libyuv/1916/24.03-lts-sp1/Dockerfile b/Others/libyuv/1916/24.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..1c81591f --- /dev/null +++ b/Others/libyuv/1916/24.03-lts-sp1/Dockerfile @@ -0,0 +1,21 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} + +ARG VERSION=1916 + +RUN dnf update -y \ + && dnf install -y git cmake gcc-c++ make \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +RUN git clone https://chromium.googlesource.com/libyuv/libyuv \ + && cd libyuv \ + && mkdir build \ + && cd build \ + && cmake -DBUILD_SHARED_LIBS=ON .. \ + && make -j$(nproc) \ + && make install + +ENV LD_LIBRARY_PATH=/usr/local/lib:/libyuv/build:$LD_LIBRARY_PATH + +CMD ["bash"] \ No newline at end of file diff --git a/Others/libyuv/README.md b/Others/libyuv/README.md index 6759c9e0..11e3f99a 100644 --- a/Others/libyuv/README.md +++ b/Others/libyuv/README.md @@ -15,6 +15,7 @@ LibYuv is an open source project that includes YUV scaling and conversion functi The tag of each `libyuv` docker image is consist of the version of `libyuv` and the version of basic image. The details are as follows | Tag | Currently | Architectures | |----------|-------------|------------------| +|[1916-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1916/24.03-lts-sp1/Dockerfile) | libyuv 1916 on openEuler 24.03-LTS-SP1 | amd64, arm64 | |[1915-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1915/24.03-lts-sp1/Dockerfile)| LibYuv 1915 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Others/libyuv/doc/image-info.yml b/Others/libyuv/doc/image-info.yml index 6964cb93..4ec19856 100644 --- a/Others/libyuv/doc/image-info.yml +++ b/Others/libyuv/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[1916-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1916/24.03-lts-sp1/Dockerfile) | libyuv 1916 on openEuler 24.03-LTS-SP1 | amd64, arm64 | |[1915-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1915/24.03-lts-sp1/Dockerfile)| LibYuv 1915 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | diff --git a/Others/libyuv/meta.yml b/Others/libyuv/meta.yml index a0e7583b..c37a8188 100644 --- a/Others/libyuv/meta.yml +++ b/Others/libyuv/meta.yml @@ -1,2 +1,5 @@ 1915-oe2403sp1: path: 1915/24.03-lts-sp1/Dockerfile + +1916-oe2403sp1: + path: 1916/24.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee