python-invocations/python-invocations.spec

104 lines
3.1 KiB
RPMSpec

#
# spec file for package python-invocations
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%bcond_without test
%else
%bcond_with test
%endif
Version: 1.4.0
Release: 0
Summary: Reusable Invoke tasks
License: BSD-2-Clause
Group: Development/Languages/Python
URL: http://pyinvoke.org
Source: https://github.com/pyinvoke/invocations/archive/%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-blessings >= 1.6
Requires: python-invoke >= 1.0
Requires: python-releases >= 1.2
Requires: python-semantic_version >= 2.4
Requires: python-tabulate >= 0.7.5
Requires: python-tqdm >= 4.8.1
BuildArch: noarch
%if %{with test}
Name: python-invocations-%{flavor}
%else
Name: python-invocations
%endif
%ifpython2
Requires: python-enum34
%endif
%if %{with test}
BuildRequires: %{python_module blessings >= 1.6}
BuildRequires: %{python_module invocations = %{version}}
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 semantic_version >= 2.4}
BuildRequires: %{python_module tabulate >= 0.7.5}
BuildRequires: %{python_module tqdm >= 4.8.1}
BuildRequires: python2-enum34
%endif
%python_subpackages
%description
Invocations is a collection of reusable `Invoke <http://pyinvoke.org>`_
tasks/task modules, including (but not limited to) Python project management
tools such as documentation building and dependency organization.
It has no stand-alone components and is designed to be imported into your
pre-existing Invoke task files.
Invocations is currently in pre-alpha status and is unsupported. Please follow
the Invoke project's communication channels for updates. Thanks!
%prep
%setup -q -n invocations-%{version}
%build
%python_build
%install
%if !%{with test}
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%if %{with test}
%check
%{python_expand export PYTHONPATH=%{$python_sitelib}
py.test-%{$python_bin_suffix}
}
%endif
%files %{python_files}
%doc README.rst
%license LICENSE
%if !%{with test}
%{python_sitelib}/*
%endif
%changelog