From aa043ed82a69b983580e92b692cc7430052e68c3 Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Tue, 21 Oct 2025 00:02:47 +0000 Subject: [PATCH] 24.03-lts-sp2 update libyuv to 1922 --- Others/libyuv/1922/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/1922/24.03-lts-sp2/Dockerfile diff --git a/Others/libyuv/1922/24.03-lts-sp2/Dockerfile b/Others/libyuv/1922/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..51ec2062 --- /dev/null +++ b/Others/libyuv/1922/24.03-lts-sp2/Dockerfile @@ -0,0 +1,21 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} + +ARG VERSION=1922 + +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 f4c9df87..32f3d20a 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 | |----------|-------------|------------------| +|[1922-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1922/24.03-lts-sp2/Dockerfile) | libyuv 1922 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1920-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1920/24.03-lts-sp2/Dockerfile) | libyuv 1920 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 | diff --git a/Others/libyuv/doc/image-info.yml b/Others/libyuv/doc/image-info.yml index ee982970..174df377 100644 --- a/Others/libyuv/doc/image-info.yml +++ b/Others/libyuv/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[1922-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1922/24.03-lts-sp2/Dockerfile) | libyuv 1922 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1920-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/libyuv/1920/24.03-lts-sp2/Dockerfile) | libyuv 1920 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 | diff --git a/Others/libyuv/meta.yml b/Others/libyuv/meta.yml index ef5cd5bd..48c13bb9 100644 --- a/Others/libyuv/meta.yml +++ b/Others/libyuv/meta.yml @@ -6,4 +6,6 @@ 1918-oe2403sp2: path: 1918/24.03-lts-sp2/Dockerfile 1920-oe2403sp2: - path: 1920/24.03-lts-sp2/Dockerfile \ No newline at end of file + path: 1920/24.03-lts-sp2/Dockerfile +1922-oe2403sp2: + path: 1922/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee