- Use github tag to get the tarball with tests
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-invocations?expand=0&rev=7
This commit is contained in:
parent
78cefe93f5
commit
fd73ad4ebf
3
1.4.0.tar.gz
Normal file
3
1.4.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:88d0fc74691ddd51ed26b1d09fe6647349cfba423f2b16005259acc5c9caa99c
|
||||||
|
size 41092
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b0b5e8c2a62b7b4267a31ff0c2ae4544fd97dcc70ac6081400f4fb530261a07c
|
|
||||||
size 27512
|
|
@ -5,6 +5,7 @@ Sat Aug 11 10:01:08 UTC 2018 - tchvatal@suse.com
|
|||||||
* Various py3 fixes
|
* Various py3 fixes
|
||||||
* pytest for testing
|
* pytest for testing
|
||||||
- Use multibuild to run tests
|
- Use multibuild to run tests
|
||||||
|
- Use github tag to get the tarball with tests
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 10 03:05:07 UTC 2018 - toddrme2178@gmail.com
|
Thu May 10 03:05:07 UTC 2018 - toddrme2178@gmail.com
|
||||||
|
@ -18,14 +18,10 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%global flavor @BUILD_FLAVOR@%{nil}
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
%bcond_with test
|
|
||||||
%if "%{flavor}" == "test"
|
%if "%{flavor}" == "test"
|
||||||
%bcond_without test
|
%bcond_without test
|
||||||
%endif
|
|
||||||
%if %{with test}
|
|
||||||
Name: python-invocations-%{flavor}
|
|
||||||
%else
|
%else
|
||||||
Name: python-invocations
|
%bcond_with test
|
||||||
%endif
|
%endif
|
||||||
Version: 1.4.0
|
Version: 1.4.0
|
||||||
Release: 0
|
Release: 0
|
||||||
@ -33,7 +29,7 @@ Summary: Reusable Invoke tasks
|
|||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: http://pyinvoke.org
|
URL: http://pyinvoke.org
|
||||||
Source: https://files.pythonhosted.org/packages/source/i/invocations/invocations-%{version}.tar.gz
|
Source: https://github.com/pyinvoke/invocations/archive/%{version}.tar.gz
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@ -43,18 +39,27 @@ Requires: python-releases >= 1.2
|
|||||||
Requires: python-semantic_version >= 2.4
|
Requires: python-semantic_version >= 2.4
|
||||||
Requires: python-tabulate >= 0.7.5
|
Requires: python-tabulate >= 0.7.5
|
||||||
Requires: python-tqdm >= 4.8.1
|
Requires: python-tqdm >= 4.8.1
|
||||||
|
BuildArch: noarch
|
||||||
|
%if %{with test}
|
||||||
|
Name: python-invocations-%{flavor}
|
||||||
|
%else
|
||||||
|
Name: python-invocations
|
||||||
|
%endif
|
||||||
%ifpython2
|
%ifpython2
|
||||||
Requires: python-enum34
|
Requires: python-enum34
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: python2-enum34
|
|
||||||
BuildArch: noarch
|
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
BuildRequires: %{python_module blessings >= 1.6}
|
BuildRequires: %{python_module blessings >= 1.6}
|
||||||
|
BuildRequires: %{python_module invocations = %{version}}
|
||||||
BuildRequires: %{python_module invoke >= 1.0}
|
BuildRequires: %{python_module invoke >= 1.0}
|
||||||
|
BuildRequires: %{python_module mock}
|
||||||
|
BuildRequires: %{python_module pytest-relaxed}
|
||||||
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module releases >= 1.2}
|
BuildRequires: %{python_module releases >= 1.2}
|
||||||
BuildRequires: %{python_module semantic_version >= 2.4}
|
BuildRequires: %{python_module semantic_version >= 2.4}
|
||||||
BuildRequires: %{python_module tabulate >= 0.7.5}
|
BuildRequires: %{python_module tabulate >= 0.7.5}
|
||||||
BuildRequires: %{python_module tqdm >= 4.8.1}
|
BuildRequires: %{python_module tqdm >= 4.8.1}
|
||||||
|
BuildRequires: python2-enum34
|
||||||
%endif
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@ -83,7 +88,9 @@ the Invoke project's communication channels for updates. Thanks!
|
|||||||
|
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
%check
|
%check
|
||||||
%python_exec setup.py test
|
%{python_expand export PYTHONPATH=%{$python_sitelib}
|
||||||
|
py.test-%{$python_bin_suffix}
|
||||||
|
}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user