14
0

- Split package into multibuild to avoid a build cycle.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-referencing?expand=0&rev=4
This commit is contained in:
2023-03-28 09:12:49 +00:00
committed by Git OBS Bridge
parent d52677aa37
commit 4718347f5f
3 changed files with 26 additions and 2 deletions

3
_multibuild Normal file
View File

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

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Mar 28 09:12:37 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Split package into multibuild to avoid a build cycle.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Mar 28 05:05:26 UTC 2023 - kastl@b1-systems.de Tue Mar 28 05:05:26 UTC 2023 - kastl@b1-systems.de

View File

@@ -1,5 +1,5 @@
# #
# spec file for package python-referencing # spec file
# #
# Copyright (c) 2023 SUSE LLC # Copyright (c) 2023 SUSE LLC
# #
@@ -16,7 +16,15 @@
# #
Name: python-referencing %global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
Name: python-referencing%{psuffix}
Version: 0.26.4 Version: 0.26.4
Release: 0 Release: 0
Summary: JSON Referencing + Python Summary: JSON Referencing + Python
@@ -36,6 +44,7 @@ BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: git-core BuildRequires: git-core
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
%if %{with test}
# SECTION test requirements # SECTION test requirements
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module attrs >= 22.2.0} BuildRequires: %{python_module attrs >= 22.2.0}
@@ -44,6 +53,7 @@ BuildRequires: %{python_module jsonschema}
BuildRequires: %{python_module pytest-subtests} BuildRequires: %{python_module pytest-subtests}
BuildRequires: %{python_module rpds-py >= 0.7.0} BuildRequires: %{python_module rpds-py >= 0.7.0}
# /SECTION # /SECTION
%endif
BuildRequires: fdupes BuildRequires: fdupes
Requires: python-attrs >= 22.2.0 Requires: python-attrs >= 22.2.0
Requires: python-rpds-py >= 0.7.0 Requires: python-rpds-py >= 0.7.0
@@ -60,16 +70,22 @@ JSON Referencing + Python
%pyproject_wheel %pyproject_wheel
%install %install
%if %{without test}
%pyproject_install %pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%check %check
%if %{with test}
%pytest %pytest
%endif
%if %{without test}
%files %{python_files} %files %{python_files}
%doc CHANGELOG.rst README.rst %doc CHANGELOG.rst README.rst
%license COPYING %license COPYING
%{python_sitelib}/referencing/ %{python_sitelib}/referencing/
%{python_sitelib}/referencing-%{version}.dist-info/ %{python_sitelib}/referencing-%{version}.dist-info/
%endif
%changelog %changelog