2021-12-17 10:08:50 +08:00
|
|
|
%global llvm_toolset %{nil}
|
|
|
|
|
%global llvm_pkg_prefix %{nil}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%ifarch s390x
|
|
|
|
|
%define with_hardware 0
|
2021-03-26 09:24:05 +08:00
|
|
|
%else
|
2021-12-17 10:08:50 +08:00
|
|
|
%define with_hardware 1
|
|
|
|
|
%define with_vdpau 1
|
2023-08-08 11:32:34 +08:00
|
|
|
%define with_omx 1
|
|
|
|
|
%define with_nine 1
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
|
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%ifarch %{ix86} x86_64
|
|
|
|
|
%define platform_drivers i965
|
|
|
|
|
%define with_vmware 1
|
|
|
|
|
%define with_xa 1
|
|
|
|
|
%define with_iris 1
|
2023-08-08 11:32:34 +08:00
|
|
|
%define with_crocus 1
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%ifarch %{ix86} x86_64
|
2021-12-17 10:08:50 +08:00
|
|
|
%define with_vulkan_hw 1
|
2019-09-30 11:04:30 -04:00
|
|
|
%else
|
2021-12-17 10:08:50 +08:00
|
|
|
%define with_vulkan_hw 0
|
2019-09-30 11:04:30 -04:00
|
|
|
%endif
|
|
|
|
|
|
2022-11-03 15:55:21 +08:00
|
|
|
%ifarch %{arm} aarch64 sw_64
|
2021-12-17 10:08:50 +08:00
|
|
|
%define with_xa 1
|
2020-08-03 18:05:46 +08:00
|
|
|
%endif
|
|
|
|
|
|
2023-08-17 12:40:26 +00:00
|
|
|
%ifarch %{arm} aarch64
|
|
|
|
|
%define with_vc4 1
|
|
|
|
|
%define with_v3d 1
|
|
|
|
|
%define with_kmsro 1
|
|
|
|
|
%endif
|
|
|
|
|
|
2023-08-08 11:32:34 +08:00
|
|
|
%ifarch riscv64
|
|
|
|
|
%define with_xa 1
|
|
|
|
|
%define with_vmware 1
|
|
|
|
|
%endif
|
|
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%global dri_drivers %{?platform_drivers}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%if 0%{?with_vulkan_hw}
|
2023-08-08 11:32:34 +08:00
|
|
|
%define vulkan_drivers swrast,intel,amd,intel_hasvk
|
2021-03-26 09:24:05 +08:00
|
|
|
%else
|
2023-08-08 11:32:34 +08:00
|
|
|
%define vulkan_drivers swrast,amd
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%global sanitize 0
|
2020-01-15 18:43:44 +08:00
|
|
|
|
2019-09-30 11:04:30 -04:00
|
|
|
Name: mesa
|
|
|
|
|
Summary: Mesa graphics libraries
|
2023-11-02 23:12:20 +08:00
|
|
|
Version: 23.2.1
|
2023-08-20 18:28:59 +08:00
|
|
|
Release: 1
|
2021-12-17 10:08:50 +08:00
|
|
|
|
2019-09-30 11:04:30 -04:00
|
|
|
License: MIT
|
2021-03-26 09:24:05 +08:00
|
|
|
URL: http://www.mesa3d.org
|
2020-01-09 19:03:16 +08:00
|
|
|
Source0: https://mesa.freedesktop.org/archive/%{name}-%{version}.tar.xz
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
Patch1: backport-fix-build-err-on-arm.patch
|
|
|
|
|
Patch2: 0001-evergreen-big-endian.patch
|
2023-08-08 11:32:34 +08:00
|
|
|
Patch3: llvmpipe-add-an-implementation-with-llvm-orcjit.patch
|
|
|
|
|
Patch4: llvmpipe-add-riscv-support-in-orcjit.patch
|
|
|
|
|
Patch5: llvmpipe-make-unnamed-global-have-internal-linkage.patch
|
2021-03-26 09:24:05 +08:00
|
|
|
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
|
BuildRequires: gcc-c++
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2023-08-08 11:32:34 +08:00
|
|
|
BuildRequires: meson >= 1.0.0
|
2021-12-17 10:08:50 +08:00
|
|
|
%if %{with_hardware}
|
2021-03-26 09:24:05 +08:00
|
|
|
BuildRequires: kernel-headers
|
|
|
|
|
%endif
|
2021-12-17 10:08:50 +08:00
|
|
|
BuildRequires: libdrm-devel >= 2.4.103
|
|
|
|
|
BuildRequires: libXxf86vm-devel
|
|
|
|
|
BuildRequires: expat-devel
|
|
|
|
|
BuildRequires: xorg-x11-proto-devel
|
|
|
|
|
BuildRequires: libselinux-devel
|
|
|
|
|
BuildRequires: libXext-devel
|
|
|
|
|
BuildRequires: libXfixes-devel
|
|
|
|
|
BuildRequires: libXdamage-devel
|
|
|
|
|
BuildRequires: libXi-devel
|
|
|
|
|
BuildRequires: libXrandr-devel
|
|
|
|
|
BuildRequires: libXmu-devel
|
|
|
|
|
BuildRequires: libxshmfence-devel
|
|
|
|
|
BuildRequires: elfutils
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: gettext
|
|
|
|
|
BuildRequires: %{llvm_pkg_prefix}llvm-devel >= 3.4-7
|
|
|
|
|
%if 0%{?with_opencl}
|
|
|
|
|
BuildRequires: %{llvm_pkg_prefix}clang-devel >= 3.0
|
|
|
|
|
%endif
|
|
|
|
|
BuildRequires: elfutils-libelf-devel
|
|
|
|
|
BuildRequires: libudev-devel
|
|
|
|
|
BuildRequires: bison flex
|
|
|
|
|
BuildRequires: pkgconfig(wayland-client)
|
|
|
|
|
BuildRequires: pkgconfig(wayland-server)
|
|
|
|
|
BuildRequires: pkgconfig(wayland-protocols)
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_vdpau}
|
2021-12-17 10:08:50 +08:00
|
|
|
BuildRequires: libvdpau-devel
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
|
|
|
|
%if 0%{?with_vaapi}
|
2021-12-17 10:08:50 +08:00
|
|
|
BuildRequires: libva-devel
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2021-12-17 10:08:50 +08:00
|
|
|
BuildRequires: pkgconfig(zlib)
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_omx}
|
2021-12-17 10:08:50 +08:00
|
|
|
BuildRequires: libomxil-bellagio-devel
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2020-01-15 18:43:44 +08:00
|
|
|
%if 0%{?with_opencl}
|
2021-12-17 10:08:50 +08:00
|
|
|
BuildRequires: libclc-devel opencl-filesystem
|
2020-01-15 18:43:44 +08:00
|
|
|
%endif
|
2021-12-17 10:08:50 +08:00
|
|
|
BuildRequires: python3-mako
|
|
|
|
|
%ifarch %{valgrind_arches}
|
|
|
|
|
BuildRequires: pkgconfig(valgrind)
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2021-12-17 10:08:50 +08:00
|
|
|
BuildRequires: pkgconfig(libglvnd) >= 1.2.0
|
|
|
|
|
|
|
|
|
|
%if 0%{?rhel} == 7
|
|
|
|
|
BuildRequires: llvm-toolset-7-runtime
|
|
|
|
|
%enable_llvmtoolset7
|
2019-09-30 11:04:30 -04:00
|
|
|
%endif
|
2023-07-31 06:40:32 +00:00
|
|
|
BuildRequires: glslang
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package filesystem
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa driver filesystem
|
|
|
|
|
Provides: mesa-dri-filesystem = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
Obsoletes: mesa-dri-filesystem < %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description filesystem
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libGL
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa libGL runtime libraries
|
|
|
|
|
Requires: %{name}-libglapi%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2021-12-17 10:08:50 +08:00
|
|
|
Requires: libglvnd-glx%{?_isa} >= 1:1.2.0-1
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libGL
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libGL-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa libGL development package
|
|
|
|
|
Requires: %{name}-libGL%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2021-12-17 10:08:50 +08:00
|
|
|
Requires: libglvnd-devel%{?_isa} >= 1:1.2.0-1
|
2021-03-26 09:24:05 +08:00
|
|
|
Provides: libGL-devel
|
|
|
|
|
Provides: libGL-devel%{?_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libGL-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libEGL
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa libEGL runtime libraries
|
2021-12-17 10:08:50 +08:00
|
|
|
Requires: libglvnd-egl%{?_isa} >= 1:1.2.0-1
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libEGL
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libEGL-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa libEGL development package
|
|
|
|
|
Requires: %{name}-libEGL%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2021-12-17 10:08:50 +08:00
|
|
|
Requires: libglvnd-devel%{?_isa} >= 1:1.2.0-1
|
2021-03-26 09:24:05 +08:00
|
|
|
Provides: libEGL-devel
|
|
|
|
|
Provides: libEGL-devel%{?_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libEGL-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package dri-drivers
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa-based DRI drivers
|
|
|
|
|
Requires: %{name}-filesystem%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2021-12-17 10:08:50 +08:00
|
|
|
Requires: libdrm >= 2.4.103
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description dri-drivers
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_omx}
|
|
|
|
|
%package omx-drivers
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa-based OMX drivers
|
|
|
|
|
Requires: %{name}-filesystem%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description omx-drivers
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_vdpau}
|
2019-09-30 11:04:30 -04:00
|
|
|
%package vdpau-drivers
|
|
|
|
|
Summary: Mesa-based VDPAU drivers
|
|
|
|
|
Requires: %{name}-filesystem%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description vdpau-drivers
|
|
|
|
|
%{summary}.
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libOSMesa
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa offscreen rendering libraries
|
|
|
|
|
Requires: %{name}-libglapi%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2021-03-26 09:24:05 +08:00
|
|
|
Provides: libOSMesa
|
|
|
|
|
Provides: libOSMesa%{?_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libOSMesa
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libOSMesa-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa offscreen rendering development package
|
|
|
|
|
Requires: %{name}-libOSMesa%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libOSMesa-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libgbm
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa gbm runtime library
|
2021-03-26 09:24:05 +08:00
|
|
|
Provides: libgbm
|
|
|
|
|
Provides: libgbm%{?_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libgbm
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libgbm-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa libgbm development package
|
|
|
|
|
Requires: %{name}-libgbm%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2021-03-26 09:24:05 +08:00
|
|
|
Provides: libgbm-devel
|
|
|
|
|
Provides: libgbm-devel%{?_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libgbm-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_xa}
|
|
|
|
|
%package libxatracker
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa XA state tracker
|
2021-03-26 09:24:05 +08:00
|
|
|
Provides: libxatracker
|
|
|
|
|
Provides: libxatracker%{?_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libxatracker
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libxatracker-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa XA state tracker development package
|
|
|
|
|
Requires: %{name}-libxatracker%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
2021-03-26 09:24:05 +08:00
|
|
|
Provides: libxatracker-devel
|
|
|
|
|
Provides: libxatracker-devel%{?_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libxatracker-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libglapi
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa shared glapi
|
2021-03-26 09:24:05 +08:00
|
|
|
Provides: libglapi
|
|
|
|
|
Provides: libglapi%{?_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libglapi
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2020-01-15 18:43:44 +08:00
|
|
|
%if 0%{?with_opencl}
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libOpenCL
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa OpenCL runtime library
|
|
|
|
|
Requires: ocl-icd%{?_isa}
|
|
|
|
|
Requires: libclc%{?_isa}
|
|
|
|
|
Requires: %{name}-libgbm%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
Requires: opencl-filesystem
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libOpenCL
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libOpenCL-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa OpenCL development package
|
|
|
|
|
Requires: %{name}-libOpenCL%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libOpenCL-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
2020-01-15 18:43:44 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_nine}
|
|
|
|
|
%package libd3d
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa Direct3D9 state tracker
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libd3d
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package libd3d-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa Direct3D9 state tracker development package
|
|
|
|
|
Requires: %{name}-libd3d%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description libd3d-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
%{summary}.
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%package vulkan-drivers
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa Vulkan drivers
|
2021-03-26 09:24:05 +08:00
|
|
|
Requires: vulkan%{_isa}
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description vulkan-drivers
|
2019-09-30 11:04:30 -04:00
|
|
|
The drivers with support for the Vulkan API.
|
|
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%if 0%{?with_vulkan_hw}
|
2021-03-26 09:24:05 +08:00
|
|
|
%package vulkan-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Summary: Mesa Vulkan development files
|
|
|
|
|
Requires: %{name}-vulkan-drivers%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
Requires: vulkan-devel
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%description vulkan-devel
|
2019-09-30 11:04:30 -04:00
|
|
|
Headers for development with the Vulkan API.
|
2021-12-17 10:08:50 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%autosetup -n %{name}-%{version} -p1
|
|
|
|
|
|
2020-08-03 18:05:46 +08:00
|
|
|
# Make sure the build uses gnu++14 as llvm 10 headers require that
|
2023-07-31 06:40:32 +00:00
|
|
|
sed -i -e 's/cpp_std=gnu++11/cpp_std=gnu++17/g' meson.build
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%build
|
2021-12-17 10:08:50 +08:00
|
|
|
export ASFLAGS="--generate-missing-build-notes=yes"
|
2023-07-31 06:40:32 +00:00
|
|
|
%meson -Dcpp_std=gnu++17 \
|
|
|
|
|
-Dandroid-libbacktrace=disabled \
|
|
|
|
|
-Dlibunwind=disabled \
|
|
|
|
|
-Dlmsensors=disabled \
|
2021-12-17 10:08:50 +08:00
|
|
|
-Db_ndebug=true \
|
|
|
|
|
-Dplatforms=x11,wayland \
|
|
|
|
|
-Ddri3=enabled \
|
|
|
|
|
-Dosmesa=true \
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_hardware}
|
2023-08-17 12:40:26 +00:00
|
|
|
-Dgallium-drivers=swrast%{?with_iris:,iris},virgl,nouveau%{?with_vmware:,svga},radeonsi,r300,r600%{?with_freedreno:,freedreno}%{?with_etnaviv:,etnaviv}%{?with_tegra:,tegra}%{?with_vc4:,vc4}%{?with_v3d:,v3d}%{?with_kmsro:,kmsro}%{?with_crocus:,crocus} \
|
2021-03-26 09:24:05 +08:00
|
|
|
%else
|
|
|
|
|
-Dgallium-drivers=swrast,virgl \
|
|
|
|
|
%endif
|
2023-07-31 06:40:32 +00:00
|
|
|
-Dgallium-vdpau=%{?with_vdpau:enabled}%{!?with_vdpau:disabled} \
|
2021-03-26 09:24:05 +08:00
|
|
|
-Dgallium-omx=%{?with_omx:bellagio}%{!?with_omx:disabled} \
|
2023-07-31 06:40:32 +00:00
|
|
|
-Dgallium-va=%{?with_vaapi:enabled}%{!?with_vaapi:disabled} \
|
|
|
|
|
-Dgallium-xa=%{?with_xa:enabled}%{!?with_xa:disabled} \
|
2021-03-26 09:24:05 +08:00
|
|
|
-Dgallium-nine=%{?with_nine:true}%{!?with_nine:false} \
|
2021-12-17 10:08:50 +08:00
|
|
|
-Dgallium-opencl=%{?with_opencl:icd}%{!?with_opencl:disabled} \
|
2020-08-03 18:05:46 +08:00
|
|
|
-Dvulkan-drivers=%{?vulkan_drivers} \
|
2021-12-17 10:08:50 +08:00
|
|
|
-Dvulkan-layers=device-select \
|
|
|
|
|
-Dshared-glapi=enabled \
|
|
|
|
|
-Dgles1=disabled \
|
|
|
|
|
-Dgles2=enabled \
|
2020-08-03 18:05:46 +08:00
|
|
|
-Dopengl=true \
|
2021-12-17 10:08:50 +08:00
|
|
|
-Dgbm=enabled \
|
2020-08-03 18:05:46 +08:00
|
|
|
-Dglx=dri \
|
2023-07-31 06:40:32 +00:00
|
|
|
-Degl=enabled \
|
2020-08-03 18:05:46 +08:00
|
|
|
-Dglvnd=true \
|
2021-12-17 10:08:50 +08:00
|
|
|
-Dmicrosoft-clc=disabled \
|
2023-07-31 06:40:32 +00:00
|
|
|
-Dllvm=enabled \
|
|
|
|
|
-Dshared-llvm=enabled \
|
|
|
|
|
-Dvalgrind=%{?with_valgrind:enabled}%{!?with_valgrind:disabled} \
|
2020-08-03 18:05:46 +08:00
|
|
|
-Dbuild-tests=false \
|
|
|
|
|
-Dselinux=true \
|
|
|
|
|
%{nil}
|
|
|
|
|
%meson_build
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%check
|
|
|
|
|
%meson_test
|
|
|
|
|
|
2019-09-30 11:04:30 -04:00
|
|
|
%install
|
2020-08-03 18:05:46 +08:00
|
|
|
%meson_install
|
2021-03-26 09:24:05 +08:00
|
|
|
# libvdpau opens the versioned name, don't bother including the unversioned
|
|
|
|
|
rm -vf %{buildroot}%{_libdir}/vdpau/*.so
|
|
|
|
|
# likewise glvnd
|
|
|
|
|
rm -vf %{buildroot}%{_libdir}/libGLX_mesa.so
|
|
|
|
|
rm -vf %{buildroot}%{_libdir}/libEGL_mesa.so
|
|
|
|
|
# XXX can we just not build this
|
|
|
|
|
rm -vf %{buildroot}%{_libdir}/libGLES*
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
# glvnd needs a default provider for indirect rendering where it cannot
|
|
|
|
|
# determine the vendor
|
2019-09-30 11:04:30 -04:00
|
|
|
ln -s %{_libdir}/libGLX_mesa.so.0 %{buildroot}%{_libdir}/libGLX_system.so.0
|
|
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
# strip out useless headers
|
|
|
|
|
rm -f %{buildroot}%{_includedir}/GL/w*.h
|
|
|
|
|
|
|
|
|
|
# these are shipped already in vulkan-devel
|
|
|
|
|
rm -f %{buildroot}/%{_includedir}/vulkan/vk_platform.h
|
|
|
|
|
rm -f %{buildroot}/%{_includedir}/vulkan/vulkan.h
|
|
|
|
|
|
|
|
|
|
# remove .la files
|
|
|
|
|
find %{buildroot} -name '*.la' -delete
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
# this keeps breaking, check it early. note that the exit from eu-ftr is odd.
|
2019-09-30 11:04:30 -04:00
|
|
|
pushd %{buildroot}%{_libdir}
|
|
|
|
|
for i in libOSMesa*.so libGL.so ; do
|
|
|
|
|
eu-findtextrel $i && exit 1
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
%files filesystem
|
|
|
|
|
%dir %{_libdir}/dri
|
2021-12-17 10:08:50 +08:00
|
|
|
%if %{with_hardware}
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_vdpau}
|
2019-09-30 11:04:30 -04:00
|
|
|
%dir %{_libdir}/vdpau
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
|
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%files libGL
|
|
|
|
|
%{_libdir}/libGLX_mesa.so.0*
|
|
|
|
|
%{_libdir}/libGLX_system.so.0*
|
|
|
|
|
%files libGL-devel
|
2021-03-26 09:24:05 +08:00
|
|
|
%dir %{_includedir}/GL/internal
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_includedir}/GL/internal/dri_interface.h
|
|
|
|
|
%{_libdir}/pkgconfig/dri.pc
|
2021-03-26 09:24:05 +08:00
|
|
|
%{_libdir}/libglapi.so
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%files libEGL
|
|
|
|
|
%{_datadir}/glvnd/egl_vendor.d/50_mesa.json
|
|
|
|
|
%{_libdir}/libEGL_mesa.so.0*
|
|
|
|
|
%files libEGL-devel
|
2021-03-26 09:24:05 +08:00
|
|
|
%dir %{_includedir}/EGL
|
|
|
|
|
%{_includedir}/EGL/eglmesaext.h
|
2023-07-31 06:40:32 +00:00
|
|
|
%{_includedir}/EGL/eglext_angle.h
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%post libglapi -p /sbin/ldconfig
|
|
|
|
|
%postun libglapi -p /sbin/ldconfig
|
2019-09-30 11:04:30 -04:00
|
|
|
%files libglapi
|
2021-03-26 09:24:05 +08:00
|
|
|
%{_libdir}/libglapi.so.0
|
|
|
|
|
%{_libdir}/libglapi.so.0.*
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%post libOSMesa -p /sbin/ldconfig
|
|
|
|
|
%postun libOSMesa -p /sbin/ldconfig
|
2019-09-30 11:04:30 -04:00
|
|
|
%files libOSMesa
|
|
|
|
|
%{_libdir}/libOSMesa.so.8*
|
|
|
|
|
%files libOSMesa-devel
|
2021-03-26 09:24:05 +08:00
|
|
|
%dir %{_includedir}/GL
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_includedir}/GL/osmesa.h
|
|
|
|
|
%{_libdir}/libOSMesa.so
|
|
|
|
|
%{_libdir}/pkgconfig/osmesa.pc
|
|
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%post libgbm -p /sbin/ldconfig
|
|
|
|
|
%postun libgbm -p /sbin/ldconfig
|
2019-09-30 11:04:30 -04:00
|
|
|
%files libgbm
|
|
|
|
|
%{_libdir}/libgbm.so.1
|
|
|
|
|
%{_libdir}/libgbm.so.1.*
|
|
|
|
|
%files libgbm-devel
|
|
|
|
|
%{_libdir}/libgbm.so
|
|
|
|
|
%{_includedir}/gbm.h
|
|
|
|
|
%{_libdir}/pkgconfig/gbm.pc
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_xa}
|
2021-12-17 10:08:50 +08:00
|
|
|
%post libxatracker -p /sbin/ldconfig
|
|
|
|
|
%postun libxatracker -p /sbin/ldconfig
|
2019-09-30 11:04:30 -04:00
|
|
|
%files libxatracker
|
2021-12-17 10:08:50 +08:00
|
|
|
%if %{with_hardware}
|
2021-03-26 09:24:05 +08:00
|
|
|
%{_libdir}/libxatracker.so.2
|
|
|
|
|
%{_libdir}/libxatracker.so.2.*
|
|
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%files libxatracker-devel
|
2021-12-17 10:08:50 +08:00
|
|
|
%if %{with_hardware}
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_libdir}/libxatracker.so
|
2021-03-26 09:24:05 +08:00
|
|
|
%{_includedir}/xa_tracker.h
|
|
|
|
|
%{_includedir}/xa_composite.h
|
|
|
|
|
%{_includedir}/xa_context.h
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_libdir}/pkgconfig/xatracker.pc
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
|
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2020-01-15 18:43:44 +08:00
|
|
|
%if 0%{?with_opencl}
|
2021-12-17 10:08:50 +08:00
|
|
|
%post libOpenCL -p /sbin/ldconfig
|
|
|
|
|
%postun libOpenCL -p /sbin/ldconfig
|
2019-09-30 11:04:30 -04:00
|
|
|
%files libOpenCL
|
|
|
|
|
%{_libdir}/libMesaOpenCL.so.*
|
|
|
|
|
%{_sysconfdir}/OpenCL/vendors/mesa.icd
|
|
|
|
|
%files libOpenCL-devel
|
|
|
|
|
%{_libdir}/libMesaOpenCL.so
|
2020-01-15 18:43:44 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_nine}
|
2019-09-30 11:04:30 -04:00
|
|
|
%files libd3d
|
2021-03-26 09:24:05 +08:00
|
|
|
%dir %{_libdir}/d3d/
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_libdir}/d3d/*.so.*
|
2021-12-17 10:08:50 +08:00
|
|
|
|
2019-09-30 11:04:30 -04:00
|
|
|
%files libd3d-devel
|
|
|
|
|
%{_libdir}/pkgconfig/d3d.pc
|
|
|
|
|
%{_includedir}/d3dadapter/
|
|
|
|
|
%{_libdir}/d3d/*.so
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%files dri-drivers
|
2020-08-03 18:05:46 +08:00
|
|
|
%dir %{_datadir}/drirc.d
|
|
|
|
|
%{_datadir}/drirc.d/00-mesa-defaults.conf
|
2021-12-17 10:08:50 +08:00
|
|
|
%if %{with_hardware}
|
2023-08-08 11:32:34 +08:00
|
|
|
%{_libdir}/dri/r300_dri.so
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_libdir}/dri/r600_dri.so
|
|
|
|
|
%{_libdir}/dri/radeonsi_dri.so
|
|
|
|
|
%ifarch %{ix86} x86_64
|
2023-08-08 11:32:34 +08:00
|
|
|
%{_libdir}/dri/crocus_dri.so
|
2020-08-03 18:05:46 +08:00
|
|
|
%{_libdir}/dri/iris_dri.so
|
2019-09-30 11:04:30 -04:00
|
|
|
%endif
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_vc4}
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_libdir}/dri/vc4_dri.so
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
2023-08-17 12:40:26 +00:00
|
|
|
%if 0%{?with_v3d}
|
|
|
|
|
%{_libdir}/dri/v3d_dri.so
|
|
|
|
|
%endif
|
|
|
|
|
%if 0%{?with_kmsro}
|
|
|
|
|
%{_libdir}/dri/armada-drm_dri.so
|
|
|
|
|
%{_libdir}/dri/exynos_dri.so
|
|
|
|
|
%{_libdir}/dri/hx8357d_dri.so
|
|
|
|
|
%{_libdir}/dri/ili9225_dri.so
|
|
|
|
|
%{_libdir}/dri/ili9341_dri.so
|
|
|
|
|
%{_libdir}/dri/imx-drm_dri.so
|
|
|
|
|
%{_libdir}/dri/imx-dcss_dri.so
|
|
|
|
|
%{_libdir}/dri/imx-lcdif_dri.so
|
|
|
|
|
%{_libdir}/dri/ingenic-drm_dri.so
|
|
|
|
|
%{_libdir}/dri/kirin_dri.so
|
|
|
|
|
%{_libdir}/dri/komeda_dri.so
|
|
|
|
|
%{_libdir}/dri/mali-dp_dri.so
|
|
|
|
|
%{_libdir}/dri/mcde_dri.so
|
|
|
|
|
%{_libdir}/dri/mediatek_dri.so
|
|
|
|
|
%{_libdir}/dri/meson_dri.so
|
|
|
|
|
%{_libdir}/dri/mi0283qt_dri.so
|
|
|
|
|
%{_libdir}/dri/mxsfb-drm_dri.so
|
|
|
|
|
%{_libdir}/dri/pl111_dri.so
|
|
|
|
|
%{_libdir}/dri/rcar-du_dri.so
|
|
|
|
|
%{_libdir}/dri/repaper_dri.so
|
|
|
|
|
%{_libdir}/dri/rockchip_dri.so
|
|
|
|
|
%{_libdir}/dri/st7586_dri.so
|
|
|
|
|
%{_libdir}/dri/st7735r_dri.so
|
|
|
|
|
%{_libdir}/dri/stm_dri.so
|
|
|
|
|
%{_libdir}/dri/sun4i-drm_dri.so
|
|
|
|
|
%endif
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_freedreno}
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_libdir}/dri/kgsl_dri.so
|
|
|
|
|
%{_libdir}/dri/msm_dri.so
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
|
|
|
|
%if 0%{?with_etnaviv}
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_libdir}/dri/etnaviv_dri.so
|
|
|
|
|
%{_libdir}/dri/imx-drm_dri.so
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
|
|
|
|
%{_libdir}/dri/nouveau_dri.so
|
|
|
|
|
%if 0%{?with_vmware}
|
|
|
|
|
%{_libdir}/dri/vmwgfx_dri.so
|
|
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
%endif
|
2021-03-26 09:24:05 +08:00
|
|
|
%{_libdir}/dri/kms_swrast_dri.so
|
|
|
|
|
%{_libdir}/dri/swrast_dri.so
|
|
|
|
|
%{_libdir}/dri/virtio_gpu_dri.so
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%if %{with_hardware}
|
2021-03-26 09:24:05 +08:00
|
|
|
%if 0%{?with_omx}
|
2019-09-30 11:04:30 -04:00
|
|
|
%files omx-drivers
|
|
|
|
|
%{_libdir}/bellagio/libomx_mesa.so
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
|
|
|
|
%if 0%{?with_vdpau}
|
2019-09-30 11:04:30 -04:00
|
|
|
%files vdpau-drivers
|
|
|
|
|
%{_libdir}/vdpau/libvdpau_nouveau.so.1*
|
2021-03-26 09:24:05 +08:00
|
|
|
%{_libdir}/vdpau/libvdpau_r600.so.1*
|
|
|
|
|
%{_libdir}/vdpau/libvdpau_radeonsi.so.1*
|
2023-08-08 11:32:34 +08:00
|
|
|
%{_libdir}/vdpau/libvdpau_virtio_gpu.so.1*
|
2021-03-26 09:24:05 +08:00
|
|
|
%endif
|
|
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%files vulkan-drivers
|
2021-12-17 10:08:50 +08:00
|
|
|
%if 0%{?with_vulkan_hw}
|
2019-09-30 11:04:30 -04:00
|
|
|
%{_libdir}/libvulkan_intel.so
|
|
|
|
|
%{_libdir}/libvulkan_radeon.so
|
2023-08-08 11:32:34 +08:00
|
|
|
%{_libdir}/libvulkan_intel_hasvk.so
|
|
|
|
|
%{_datadir}/vulkan/icd.d/intel_hasvk_icd.*.json
|
|
|
|
|
%{_datadir}/vulkan/icd.d/intel_icd.*.json
|
2021-12-17 10:08:50 +08:00
|
|
|
%endif
|
2023-08-08 11:32:34 +08:00
|
|
|
%{_datadir}/drirc.d/00-radv-defaults.conf
|
|
|
|
|
%{_datadir}/vulkan/icd.d/radeon_icd.*.json
|
2023-07-31 06:40:32 +00:00
|
|
|
%{_libdir}/vdpau/libvdpau_virtio_gpu.so.1*
|
2023-08-08 11:32:34 +08:00
|
|
|
%{_libdir}/libvulkan_radeon.so
|
2021-12-17 10:08:50 +08:00
|
|
|
%{_libdir}/libvulkan_lvp.so
|
|
|
|
|
%{_datadir}/vulkan/icd.d/lvp_icd.*.json
|
2020-08-03 18:05:46 +08:00
|
|
|
%{_libdir}/libVkLayer_MESA_device_select.so
|
|
|
|
|
%{_datadir}/vulkan/implicit_layer.d/VkLayer_MESA_device_select.json
|
2019-09-30 11:04:30 -04:00
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
%if 0%{?with_vulkan_hw}
|
2019-09-30 11:04:30 -04:00
|
|
|
%files vulkan-devel
|
2020-08-03 18:05:46 +08:00
|
|
|
%endif
|
2019-09-30 11:04:30 -04:00
|
|
|
|
|
|
|
|
%changelog
|
2023-11-02 23:12:20 +08:00
|
|
|
* Thu Nov 02 2023 Jingwiw <wangjingwei@iscas.ac.cn> - 23.2.1-1
|
|
|
|
|
- upgrade to version 23.2.1
|
|
|
|
|
- fix llvmpipe interface support for the new version
|
|
|
|
|
|
2023-08-20 18:28:59 +08:00
|
|
|
* Sun Aug 20 2023 Funda Wang <fundawang@yeah.net> - 23.1.6-1
|
|
|
|
|
- update to 23.1.6
|
|
|
|
|
|
2023-08-17 12:40:26 +00:00
|
|
|
* Fri Aug 11 2023 xiaofan <xiaofan@iscas.ac.cn> - 23.1.3-3
|
|
|
|
|
- Enable gallium driver vc4/v3d for arm platform
|
|
|
|
|
|
2023-08-08 11:32:34 +08:00
|
|
|
* Tue Aug 08 2023 Jingwiw <wangjingwei@iscas.ac.cn> - 23.1.3-2
|
|
|
|
|
- Add OrcJIT and add riscv architecture optimization
|
|
|
|
|
- Optimize the mesa spec and add more backend
|
|
|
|
|
|
2023-07-31 06:40:32 +00:00
|
|
|
* Mon Jul 31 2023 zhouwenpei <zhouwenpei1@h-partners.com> - 23.1.3-1
|
|
|
|
|
- upgrade to mesa-23.1.3
|
|
|
|
|
|
2022-11-03 15:55:21 +08:00
|
|
|
* Thu Nov 3 2022 wuzx<wuzx1226@qq.com> - 21.3.1-3
|
|
|
|
|
- Add sw64 architecture
|
|
|
|
|
|
2022-10-26 07:03:50 +00:00
|
|
|
* Wed Oct 26 2022 zhouwenpei <zhouwenpei1@h-partners.com> - 21.3.1-2
|
|
|
|
|
- Rebuild for next release
|
|
|
|
|
|
2021-12-17 10:08:50 +08:00
|
|
|
* Thu Sep 16 2021 hanhui <hanhui15@huawei.com> - 21.3.1-1
|
|
|
|
|
- upgrade to mesa-21.3.1
|
|
|
|
|
- enable check
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
* Thu Mar 25 2021 yanan <yanan@huawei.com> - 20.1.4-2
|
|
|
|
|
- optimize the mesa spec
|
|
|
|
|
|
|
|
|
|
* Sat Oct 10 2020 hanhui <hanhui15@huawei.com> - 20.1.4-1
|
2020-08-03 18:05:46 +08:00
|
|
|
- update to 20.1.4
|
|
|
|
|
|
2021-03-26 09:24:05 +08:00
|
|
|
* Wed Jun 03 2020 songnannan <songnannan2@huawei.com> - 18.3.6-2
|
|
|
|
|
- add mesa-khr-header subpackage to hold <KHR/khrplatform.h>
|
|
|
|
|
|
|
|
|
|
* Tue Jun 02 2020 songnannan <songnannan2@huawei.com> - 18.3.6-1
|
|
|
|
|
- update to 18.3.6
|
|
|
|
|
|
2020-01-15 18:43:44 +08:00
|
|
|
* Wed Jan 15 2020 openEuler Buildteam <buildteam@openeuler.org> - 18.2.2-6
|
|
|
|
|
- disable opencl
|
|
|
|
|
|
|
|
|
|
* Sat Oct 19 2019 openEuler Buildteam <buildteam@openeuler.org> - 18.2.2-5
|
2019-11-06 19:43:02 +08:00
|
|
|
- Type:bugfix
|
|
|
|
|
- Id:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:add the license file
|
|
|
|
|
|
2020-01-15 18:43:44 +08:00
|
|
|
* Tue Sep 24 2019 openEuler Buildteam <buildteam@openeuler.org> - 18.2.2-4
|
2019-09-30 11:04:30 -04:00
|
|
|
- Type: enhance
|
|
|
|
|
- Id:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC: rewrite it without merging packages
|
|
|
|
|
|
2020-01-15 18:43:44 +08:00
|
|
|
* Sat Sep 21 2019 openEuler Buildteam <buildteam@openeuler.org> - 18.2.2-3
|
2019-09-30 11:04:30 -04:00
|
|
|
- Type:bugfix
|
|
|
|
|
- Id:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC: restore previous version of 18.2.2-1
|
|
|
|
|
|
|
|
|
|
* Sat Sep 21 2019 openEuler Buildteam <buildteam@openeuler.org> - 18.2.2-2
|
|
|
|
|
- Package init
|