Accepting request 925553 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/925553 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tomli?expand=0&rev=2
This commit is contained in:
commit
c227c7c3e0
3
_multibuild
Normal file
3
_multibuild
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<multibuild>
|
||||||
|
<package>test</package>
|
||||||
|
</multibuild>
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 15 19:03:22 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Yet another dependency cycle to break: tomli - flit_core - tomli
|
||||||
|
https://flit.readthedocs.io/en/latest/bootstrap.html
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 15 08:49:47 UTC 2021 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- BuildIgnore ca-certificates: python-pip brings it in for regular
|
||||||
|
operation, but as we do not ever do https:// connections during a
|
||||||
|
build we do not depend on certificates. Allows us to break up a
|
||||||
|
build cycle.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 13 19:20:13 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Split build and tests in _multibuild in order to avoid depcycle
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Oct 3 19:30:44 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
Sun Oct 3 19:30:44 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-tomli
|
# spec file
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
@ -16,9 +16,17 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
|
%if "%{flavor}" == "test"
|
||||||
|
%define psuffix -test
|
||||||
|
%bcond_without test
|
||||||
|
%else
|
||||||
|
%define psuffix %{nil}
|
||||||
|
%bcond_with test
|
||||||
|
%endif
|
||||||
%{?!python_module:%define python_module() python3-%{**}}
|
%{?!python_module:%define python_module() python3-%{**}}
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-tomli
|
Name: python-tomli%{psuffix}
|
||||||
Version: 1.2.1
|
Version: 1.2.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A lil' TOML parser
|
Summary: A lil' TOML parser
|
||||||
@ -28,9 +36,19 @@ URL: https://github.com/hukkin/tomli
|
|||||||
Source: https://github.com/hukkin/tomli/archive/refs/tags/%{version}.tar.gz#/tomli-%{version}-gh.tar.gz
|
Source: https://github.com/hukkin/tomli/archive/refs/tags/%{version}.tar.gz#/tomli-%{version}-gh.tar.gz
|
||||||
BuildRequires: %{python_module flit-core}
|
BuildRequires: %{python_module flit-core}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
|
# Avoid build cycles
|
||||||
|
# https://flit.readthedocs.io/en/latest/bootstrap.html
|
||||||
|
#!BuildIgnore: python3-tomli
|
||||||
|
#!BuildIgnore: python36-tomli
|
||||||
|
#!BuildIgnore: python38-tomli
|
||||||
|
#!BuildIgnore: python39-tomli
|
||||||
|
#!BuildIgnore: python310-tomli
|
||||||
|
#!BuildIgnore: ca-certificates
|
||||||
|
%if %{with test}
|
||||||
BuildRequires: %{python_module pytest-randomly}
|
BuildRequires: %{python_module pytest-randomly}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module python-dateutil}
|
BuildRequires: %{python_module python-dateutil}
|
||||||
|
%endif
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -43,19 +61,24 @@ Tomli is a Python library for parsing TOML
|
|||||||
%setup -q -n tomli-%{version}
|
%setup -q -n tomli-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
export PYTHONPATH=$PWD
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
%if ! %{with test}
|
||||||
%pyproject_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
|
||||||
%pytest
|
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%{python_sitelib}/tomli
|
%{python_sitelib}/tomli
|
||||||
%{python_sitelib}/tomli-%{version}*-info
|
%{python_sitelib}/tomli-%{version}*-info
|
||||||
|
|
||||||
|
%else
|
||||||
|
|
||||||
|
%check
|
||||||
|
%pytest
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user