forked from pool/python-pyroma
78 lines
2.4 KiB
RPMSpec
78 lines
2.4 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package python-pyroma
|
||
|
#
|
||
|
# Copyright (c) 2019 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 https://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||
|
%bcond_without test
|
||
|
Name: python-pyroma
|
||
|
Version: 2.4
|
||
|
Release: 0
|
||
|
Summary: Test your project's packaging friendliness
|
||
|
License: MIT
|
||
|
Group: Development/Languages/Python
|
||
|
URL: https://github.com/regebro/pyroma
|
||
|
Source: https://files.pythonhosted.org/packages/source/p/pyroma/pyroma-%{version}.tar.gz
|
||
|
BuildRequires: %{python_module setuptools}
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: python-rpm-macros
|
||
|
Requires: python-docutils
|
||
|
Requires: python-setuptools
|
||
|
BuildArch: noarch
|
||
|
%if %{with test}
|
||
|
BuildRequires: %{python_module docutils}
|
||
|
%endif
|
||
|
%python_subpackages
|
||
|
|
||
|
%description
|
||
|
Pyroma rhymes with aroma, and is a product aimed at giving a rating of how well
|
||
|
a Python project complies with the best practices of the Python packaging
|
||
|
ecosystem, primarily PyPI, pip, Distribute etc, as well as a list of issues that
|
||
|
could be improved.
|
||
|
|
||
|
The aim of this is both to help people make a project that is nice and usable,
|
||
|
but also to improve the quality of Python third-party software, making it easier
|
||
|
and more enjoyable to use the vast array of available modules for Python.
|
||
|
|
||
|
It's written so that there are a library with methods to call from Python, as
|
||
|
well as a script, also called pyroma.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n pyroma-%{version}
|
||
|
|
||
|
%build
|
||
|
export LANG=en_US.UTF-8
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
export LANG=en_US.UTF-8
|
||
|
%python_install
|
||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
|
|
||
|
%if %{with test}
|
||
|
%check
|
||
|
export LANG=en_US.UTF-8
|
||
|
%python_exec setup.py test
|
||
|
%endif
|
||
|
|
||
|
%files %{python_files}
|
||
|
%license LICENSE.txt
|
||
|
%doc README.rst HISTORY.txt
|
||
|
%python3_only %{_bindir}/pyroma
|
||
|
%{python_sitelib}/*
|
||
|
|
||
|
%changelog
|