SHA256
1
0
forked from pool/piglit
piglit/piglit.spec
Martin Pluskal 3772a3bc84 - Update to version 1~20201223.ff2a7650b:
* rasterpos: Fix missing termination of program list.
  * ati_fragment_shader: Test alpha channel with fog
  * summary: Add -g/--fixes to console-mode output
  * ati_fragment_shader: Add a test of all the ops and modifiers.
  * arb_gl_spirv: Test using length on an runtime (unsized) array
  * framework: corrected some typos
  * framework/replay: add always the images information to the results
  * framework/replay: rename dump image to include the checksum
  * framework: remove forbidden XML chars for text in the JUnit backend
  * Fix timeout in spec/arb_sync/repeat-wait
  * glsl-1.50,tess: Test passing maximum count of varyings between stages
  * shader_runner: reset glPolygonMode between tests without process isolation
  * arb_framebuffer_object: Add a test for blit-based mipmap generation
  * gen_builtin_packing_tests: Only fill a 10x10 window.
  * fbo-pbo-readpixels-small: add check of depth and stencil data
  * nv_primitive_restart: Add tests using display lists
  * nv_primitive_restart: Add tests for error conditions
  * nv_primitive_restart: Verify that NV_primitive_restart isn't advertised in Core
  * nv_primitive_restart: Move existing NV_primitive_restart tests to a new dir
  * glsl-1.50/execution: add primitive id tests for QUADS and QUAD_STRIP
  * glsl-1.50/execution: add primitive id tests with point and line rasterization mode
  * shader_draw_parameters: Test gl_DrawIDARB with non-MultiDraw and primitive restart
  * shader_draw_parameters: Test gl_DrawIDARB with non-MultiDraw commands
  * shader_draw_parameters: Reduce GLSL requirement back to 1.40
  * shader_draw_parameters: Add missing extension requirements
  * framework: add write method to the junit backend
  * framework: add backends API to write a TestrunResult to a file
  * framework: restore syserr output when loading a junit test result
  * framework: fix loading time start/end in junit test results

OBS-URL: https://build.opensuse.org/package/show/benchmark/piglit?expand=0&rev=29
2020-12-28 09:44:29 +00:00

142 lines
4.1 KiB
RPMSpec

#
# spec file for package piglit
#
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%ifarch %{arm} aarch64
# Enable openGL ES only
%bcond_with opengl
%bcond_without opengles
%else
# Enable openGL and openGL ES
%bcond_without opengl
%bcond_without opengles
%endif
Name: piglit
Version: 1~20201223.ff2a7650b
Release: 0
Summary: OpenGL driver testing framework
License: MIT
Group: System/Benchmark
URL: https://cgit.freedesktop.org/piglit
Source0: %{name}-%{version}.tar.xz
Source1: piglit-rpmlintrc
Source2: suse_qa.py
Source3: suse_qa-skip-tests.txt
Source4: opensuse_qa.py
Source5: opensuse_qa-skip-tests.txt
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: glibc-devel
BuildRequires: pkgconfig
BuildRequires: python3
BuildRequires: python3-Mako
BuildRequires: python3-numpy
BuildRequires: python3-six
BuildRequires: python3-xml
BuildRequires: waffle-devel
BuildRequires: pkgconfig(egl)
BuildRequires: pkgconfig(libdrm)
BuildRequires: pkgconfig(libpng)
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xcb)
BuildRequires: pkgconfig(xcb-dri2)
BuildRequires: pkgconfig(xcb-dri3)
Requires: python3
Requires: python3-Mako
Requires: python3-numpy
Requires: python3-six
Requires: python3-xml
Recommends: waffle
ExcludeArch: %{ix86} ppc
%if %{with opengl}
BuildRequires: pkgconfig(gl)
BuildRequires: pkgconfig(glproto)
BuildRequires: pkgconfig(glu)
%endif
%if %{with opengles}
BuildRequires: Mesa-libGLESv3-devel
BuildRequires: pkgconfig(glesv1_cm)
BuildRequires: pkgconfig(glesv2)
%endif
%ifarch x86_64
BuildRequires: pkgconfig(libdrm_intel)
%endif
%description
Piglit is a collection of automated tests for OpenGL and OpenCL
implementations.
The goal of Piglit is to help improve the quality of open source
OpenGL drivers by providing developers with means to perform
regression tests.
It contains the Glean tests, some tests adapted from Mesa, as well as
some specific regression tests for certain bugs. HTML summaries can
be generated, including the ability to compare different test runs.
%prep
%setup -q
%build
# FIXME: you should use %%cmake macros
# Note: Using the cmake rpm macro to get good defaults for installation
# directories, CFLAGS etc. Some changes on top:
# Note: Overwriting CMAKE_SHARED_LINKER_FLAGS with those from the cmake macro,
# but leaving out -Wl,--no-undefined
# Note: Overwriting CMAKE_SKIP_RPATH to be off, but enabling
# CMAKE_BUILD_WITH_INSTALL_RPATH so the individual test binaries in
# /usr/lib64/piglit/bin/* can find the libraries in /usr/lib64/piglit/lib
%cmake \
%if %{without opengl}
-DPIGLIT_BUILD_GL_TESTS=OFF \
%endif
%if %{without opengles}
-DPIGLIT_BUILD_GL_ES1_TESTS=OFF \
-DPIGLIT_BUILD_GL_ES2_TESTS=OFF \
-DPIGLIT_BUILD_GL_ES3_TESTS=OFF \
%endif
-DCMAKE_C_FLAGS="%{optflags} -fcommon -DNDEBUG" \
-DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now" \
-DCMAKE_SKIP_RPATH:BOOL=OFF \
-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON \
-Wno-dev
%cmake_build
%install
%cmake_install
install -Dpm 644 %{SOURCE2} \
%{buildroot}%{_libdir}/piglit/tests
install -Dpm 644 %{SOURCE3} \
%{buildroot}%{_libdir}/piglit/tests
install -Dpm 644 %{SOURCE4} \
%{buildroot}%{_libdir}/piglit/tests
install -Dpm 644 %{SOURCE5} \
{buildroot}%{_libdir}/piglit/tests
%fdupes %{buildroot}/%{_libdir}/piglit
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%{_libdir}/piglit
%{_bindir}/piglit
%doc %{_datadir}/doc/piglit
%changelog