From d86632be95bd603bf7058b56c395137a8300be4c Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Thu, 18 Sep 2025 00:06:41 +0000 Subject: [PATCH] 24.03-lts-sp2 update libyuv to 1919 --- Others/libyuv/1919/24.03-lts-sp2/Dockerfile | 21 +++++++++++++++++++++ Others/libyuv/README.md | 1 + Others/libyuv/doc/image-info.yml | 1 + Others/libyuv/meta.yml | 4 +++- 4 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 Others/libyuv/1919/24.03-lts-sp2/Dockerfile diff --git a/Others/libyuv/1919/24.03-lts-sp2/Dockerfile b/Others/libyuv/1919/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..ef9f4ef4 --- /dev/null +++ b/Others/libyuv/1919/24.03-lts-sp2/Dockerfile @@ -0,0 +1,21 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} + +ARG VERSION=1919 + +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 24db674d..1dd4528a 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 | |----------|-------------|------------------| +|[1919-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1919/24.03-lts-sp2/Dockerfile) | libyuv 1919 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1918-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1918/24.03-lts-sp2/Dockerfile) | libyuv 1918 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1917-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1917/24.03-lts-sp2/Dockerfile) | libyuv 1917 on openEuler 24.03-LTS-SP2 | 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 | diff --git a/Others/libyuv/doc/image-info.yml b/Others/libyuv/doc/image-info.yml index 7722cdb1..c071be02 100644 --- a/Others/libyuv/doc/image-info.yml +++ b/Others/libyuv/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[1919-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1919/24.03-lts-sp2/Dockerfile) | libyuv 1919 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1918-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1918/24.03-lts-sp2/Dockerfile) | libyuv 1918 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1917-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1917/24.03-lts-sp2/Dockerfile) | libyuv 1917 on openEuler 24.03-LTS-SP2 | 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 | diff --git a/Others/libyuv/meta.yml b/Others/libyuv/meta.yml index cae96de4..8323f019 100644 --- a/Others/libyuv/meta.yml +++ b/Others/libyuv/meta.yml @@ -4,4 +4,6 @@ 1917-oe2403sp2: path: 1917/24.03-lts-sp2/Dockerfile 1918-oe2403sp2: - path: 1918/24.03-lts-sp2/Dockerfile \ No newline at end of file + path: 1918/24.03-lts-sp2/Dockerfile +1919-oe2403sp2: + path: 1919/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee