17
0

6 Commits

Author SHA256 Message Date
710dcf7144 Accepting request 1313838 from devel:languages:python
- Build tests with _multibuild to avoid cycles with pytest dependency.

OBS-URL: https://build.opensuse.org/request/show/1313838
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Pygments?expand=0&rev=52
2025-10-28 13:45:16 +00:00
fb6fd9bc45 - Build tests with _multibuild to avoid cycles with pytest dependency.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Pygments?expand=0&rev=129
2025-10-27 12:51:26 +00:00
38b665f89c Accepting request 1291573 from devel:languages:python
- Skip testcase that breaks with pytest 8.4.

OBS-URL: https://build.opensuse.org/request/show/1291573
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Pygments?expand=0&rev=51
2025-07-10 21:14:59 +00:00
709380b11c - Skip testcase that breaks with pytest 8.4.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Pygments?expand=0&rev=127
2025-07-10 02:55:56 +00:00
157f195a11 Accepting request 1287798 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1287798
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Pygments?expand=0&rev=50
2025-06-24 18:45:52 +00:00
26c9019df4 Accepting request 1287583 from home:benoit_monin:branches:devel:languages:python
- update to version 2.19.2
- skip random input tests because they get stuck from time to time

OBS-URL: https://build.opensuse.org/request/show/1287583
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Pygments?expand=0&rev=125
2025-06-23 05:37:58 +00:00
5 changed files with 47 additions and 9 deletions

3
_multibuild Normal file
View File

@@ -0,0 +1,3 @@
<multibuild>
<package>test</package>
</multibuild>

Binary file not shown.

3
pygments-2.19.2.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887
size 4968631

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Mon Oct 27 12:29:34 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
- Build tests with _multibuild to avoid cycles with pytest dependency.
-------------------------------------------------------------------
Thu Jul 10 02:55:32 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Skip testcase that breaks with pytest 8.4.
-------------------------------------------------------------------
Sat Jun 21 15:48:13 UTC 2025 - Benoît Monin <benoit.monin@gmx.fr>
- update to version 2.19.2:
* Lua: Fix regression introduced in 2.19.0 (#2882, #2839)
- skip random input tests because they get stuck from time to time
-------------------------------------------------------------------
Wed May 14 07:19:25 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-Pygments
#
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,23 @@
#
#
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
%if 0%{?suse_version} > 1500
%bcond_without libalternatives
%else
%bcond_with libalternatives
%endif
%{?sle15_python_module_pythons}
Name: python-Pygments
Version: 2.19.1
Name: python-Pygments%{psuffix}
Version: 2.19.2
Release: 0
Summary: A syntax highlighting package written in Python
License: BSD-2-Clause
@@ -37,8 +45,10 @@ Patch0: skip-wcag-contrast-ratio.patch
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest >= 7}
BuildRequires: %{python_module wheel}
%if %{with test}
BuildRequires: %{python_module pytest >= 7}
%endif
BuildRequires: fdupes
BuildRequires: python-rpm-macros >= 20210929
#!BuildIgnore: ca-certificates:p11-kit
@@ -72,6 +82,7 @@ source code. Highlights are:
# Remove unneeded executable bit
chmod -x pygments/formatters/_mapping.py pygments/lexers/gsql.py
%if !%{with test}
%build
%pyproject_wheel
@@ -83,13 +94,19 @@ install -Dm0644 doc/pygmentize.1 %{buildroot}%{_mandir}/man1/pygmentize.1
%{python_expand rm -rf %{buildroot}%{$python_sitelib}/tests
%fdupes %{buildroot}%{$python_sitelib}
}
%endif
%if %{with test}
%check
# skip test_guess_lexer_modula2 as we have to remove it's depent artifacts
# in exmplefiles because of potential licensing concerns
# See https://github.com/pygments/pygments/issues/2872
%pytest -k "not test_guess_lexer_modula2"
# skip random input tests as they get stuck (missing entropy?)
# test_lexer_classes breaks with pytest 8.4.
%pytest -k "not (test_guess_lexer_modula2 or test_random_input or test_lexer_classes)"
%endif
%if !%{with test}
%pre
# If libalternatives is used: Removing old update-alternatives entries.
%python_libalternatives_reset_alternative pygmentize
@@ -107,5 +124,6 @@ install -Dm0644 doc/pygmentize.1 %{buildroot}%{_mandir}/man1/pygmentize.1
%python_alternative %{_mandir}/man1/pygmentize.1%{ext_man}
%{python_sitelib}/pygments
%{python_sitelib}/pygments-%{version}*-info
%endif
%changelog