Accepting request 673656 from devel:languages:python
- Remove installed files after running the testsuite - Switch to multibuild (with separate test) to avoid large dependencies on the main package. OBS-URL: https://build.opensuse.org/request/show/673656 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tqdm?expand=0&rev=17
This commit is contained in:
commit
a2d85d90f6
3
_multibuild
Normal file
3
_multibuild
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<multibuild>
|
||||||
|
<package>test</package>
|
||||||
|
</multibuild>
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 12 10:45:37 UTC 2019 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Remove installed files after running the testsuite
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Feb 9 13:37:08 CET 2019 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Switch to multibuild (with separate test) to avoid large
|
||||||
|
dependencies on the main package.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 31 14:21:07 UTC 2018 - Thomas Bechtold <tbechtold@suse.com>
|
Mon Dec 31 14:21:07 UTC 2018 - Thomas Bechtold <tbechtold@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-tqdm
|
# spec file for package python-tqdm
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,7 +18,16 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define oldpython python
|
%define oldpython python
|
||||||
Name: python-tqdm
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
|
%if "%{flavor}" == "test"
|
||||||
|
%define test 1
|
||||||
|
%bcond_without test
|
||||||
|
%define suffix -test
|
||||||
|
%else
|
||||||
|
%bcond_with test
|
||||||
|
%define suffix %{nil}
|
||||||
|
%endif
|
||||||
|
Name: python-tqdm%{suffix}
|
||||||
Version: 4.28.1
|
Version: 4.28.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An extensible progress meter
|
Summary: An extensible progress meter
|
||||||
@ -33,13 +42,16 @@ BuildRequires: python-rpm-macros
|
|||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
%if %{with test}
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module jupyter_ipython}
|
BuildRequires: %{python_module jupyter_ipython}
|
||||||
BuildRequires: %{python_module jupyter_ipywidgets}
|
BuildRequires: %{python_module jupyter_ipywidgets}
|
||||||
BuildRequires: %{python_module nose}
|
BuildRequires: %{python_module nose}
|
||||||
BuildRequires: %{python_module numpy}
|
BuildRequires: %{python_module numpy}
|
||||||
BuildRequires: %{python_module pandas}
|
BuildRequires: %{python_module pandas}
|
||||||
|
BuildRequires: %{python_module tqdm}
|
||||||
# /SECTION
|
# /SECTION
|
||||||
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -55,22 +67,28 @@ and does not require ncurses.
|
|||||||
%python_build
|
%python_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
%if !%{with test}
|
||||||
%python_install
|
%python_install
|
||||||
%python_clone -a %{buildroot}%{_bindir}/tqdm
|
%python_clone -a %{buildroot}%{_bindir}/tqdm
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if !%{with test}
|
||||||
%post
|
%post
|
||||||
%{python_install_alternative tqdm tqdm.1}
|
%{python_install_alternative tqdm tqdm.1}
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
%python_uninstall_alternative tqdm
|
%python_uninstall_alternative tqdm
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with test}
|
||||||
%check
|
%check
|
||||||
%{python_expand export PATH="$PATH:%{buildroot}%{_bindir}"
|
%{python_expand PYTHONPATH=%{$python_sitelib}
|
||||||
export PYTHONPATH=%{buildroot}%{$python_sitelib}
|
|
||||||
nosetests-%%{$python_bin_suffix} --ignore-files="tests_perf\.py" --ignore-files="tests_synchronisation\.py" tqdm/
|
nosetests-%%{$python_bin_suffix} --ignore-files="tests_perf\.py" --ignore-files="tests_synchronisation\.py" tqdm/
|
||||||
}
|
}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if !%{with test}
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.rst logo.png
|
%doc README.rst logo.png
|
||||||
%doc examples/
|
%doc examples/
|
||||||
@ -80,5 +98,6 @@ nosetests-%%{$python_bin_suffix} --ignore-files="tests_perf\.py" --ignore-files=
|
|||||||
%{python_sitelib}/tqdm/*
|
%{python_sitelib}/tqdm/*
|
||||||
%{python_sitelib}/tqdm-%{version}-py%{py_ver}.egg-info/*
|
%{python_sitelib}/tqdm-%{version}-py%{py_ver}.egg-info/*
|
||||||
%python_alternative %{_bindir}/tqdm
|
%python_alternative %{_bindir}/tqdm
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user