forked from pool/python-PySDL2
- Adjust run-time dependencies to avoid old virtual provides. - Adjust build-time dependencies so that it builds with SDL3. OBS-URL: https://build.opensuse.org/request/show/1273537 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PySDL2?expand=0&rev=36
88 lines
2.8 KiB
RPMSpec
88 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package python-PySDL2
|
|
#
|
|
# Copyright (c) 2025 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/
|
|
#
|
|
|
|
|
|
%define X_display ":98"
|
|
%define lname pysdl2
|
|
Name: python-PySDL2
|
|
Version: 0.9.17
|
|
Release: 0
|
|
Summary: Python ctypes wrapper around SDL2
|
|
License: SUSE-Public-Domain
|
|
URL: https://github.com/py-sdl/py-sdl2
|
|
Source: https://files.pythonhosted.org/packages/source/p/%{lname}/%{lname}-%{version}.tar.gz
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: pkgconfig(SDL2_gfx) >= 1.0.4
|
|
BuildRequires: pkgconfig(SDL2_image) >= 2.6.0
|
|
BuildRequires: pkgconfig(SDL2_mixer) >= 2.6.0
|
|
BuildRequires: pkgconfig(SDL2_ttf) >= 2.20.0
|
|
BuildRequires: pkgconfig(sdl3) >= 2.0.22
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module numpy}
|
|
BuildRequires: %{python_module Pillow}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: libmpg123-0
|
|
BuildRequires: xorg-x11-server
|
|
# /SECTION
|
|
Requires: libSDL2-2_0-0 >= 2.0.22
|
|
Requires: libSDL2_gfx-1_0-0 >= 1.0.4
|
|
Requires: libSDL2_image-2_0-0 >= 2.6.0
|
|
Requires: libSDL2_mixer-2_0-0 >= 2.6.0
|
|
Requires: libSDL2_ttf-2_0-0 >= 2.20.0
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
PySDL2 is a pure Python wrapper around the SDL2, SDL2_mixer, SDL2_image,
|
|
SDL2_ttf, and SDL2_gfx libraries. Instead of relying on C code, it uses
|
|
the built-in ctypes module to interface with SDL2, and provides simple
|
|
Python classes and wrappers for common SDL2 functionality.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{lname}-%{version}
|
|
|
|
sed -i 's/\r$//' AUTHORS.txt COPYING.txt README.md
|
|
find . -name *DS_Store -delete
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export SDL_VIDEODRIVER=dummy
|
|
export SDL_AUDIODRIVER=dummy
|
|
export SDL_RENDER_DRIVER=software
|
|
export PYTHONFAULTHANDLER=1
|
|
|
|
%pytest -rfEs -k 'not (test_SDL_SetWindowDisplayMode or test_SDL_SetWindowFullscreen or test_SDL_SetHint)'
|
|
|
|
%files %{python_files}
|
|
%license COPYING.txt
|
|
%doc AUTHORS.txt README.md doc/
|
|
%{python_sitelib}/sdl2
|
|
%{python_sitelib}/[Pp]y[Ss][Dd][Ll]2-%{version}*-info
|
|
|
|
%changelog
|