15
0

Accepting request 743991 from devel:languages:python

- Switch to multibuild and make sure we build without setuptools
  in order to avoid buildcycle

OBS-URL: https://build.opensuse.org/request/show/743991
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-ordered-set?expand=0&rev=3
This commit is contained in:
2019-10-30 13:48:23 +00:00
committed by Git OBS Bridge
3 changed files with 36 additions and 4 deletions

3
_multibuild Normal file
View File

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

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Oct 17 09:01:30 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Switch to multibuild and make sure we build without setuptools
in order to avoid buildcycle
-------------------------------------------------------------------
Wed May 22 14:21:24 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>

View File

@@ -20,19 +20,30 @@
%global short_name ordered-set
%global dir_name ordered_set
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
Name: python-%{short_name}
Version: 3.1.1
Release: 0
Summary: Custom MutableSet that remembers its order
License: MIT
Group: Development/Libraries/Python
URL: https://github.com/LuminosoInsight/ordered-set
Source0: https://pypi.python.org/packages/source/o/%{short_name}/%{short_name}-%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
# this package is build dependency of setuptools
BuildRequires: %{python_module base}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
%endif
%python_subpackages
%description
@@ -40,23 +51,35 @@ An OrderedSet is a custom MutableSet that remembers its order, so that every
entry has an index that can be looked up.
%prep
%autosetup -n %{short_name}-%{version} -p1
%setup -q -n %{short_name}-%{version}
# we are build dep of setuptools
sed -i -e 's:from setuptools :from distutils.core :g' setup.py
%build
%python_build
%install
%if !%{with test}
%python_install
# ensure egg-info is a directory
%{python_expand rm -rf %{buildroot}%{$python_sitelib}/*.egg-info
cp -r ordered_set.egg-info %{buildroot}%{$python_sitelib}/ordered_set-%{version}-py%{$python_version}.egg-info
}
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%check
%if %{with test}
%pytest test.py
%endif
%if !%{with test}
%files %{python_files}
%license MIT-LICENSE
%doc README.md
%{python_sitelib}/%{dir_name}-*
%{python_sitelib}/%{dir_name}.py*
%pycache_only %{python3_sitelib}/__pycache__/%{dir_name}.*
%endif
%changelog