python-sortedcontainers/python-sortedcontainers.spec

89 lines
3.0 KiB
RPMSpec
Raw Normal View History

#
# spec file for package python-sortedcontainers
#
# 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-%{**}}
Name: python-sortedcontainers
Version: 1.5.10
Release: 0
Summary: Sorted container data types
License: Apache-2.0
Group: Development/Languages/Python
URL: http://www.grantjenks.com/docs/sortedcontainers
Source: https://files.pythonhosted.org/packages/source/s/sortedcontainers/sortedcontainers-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module nose}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: python3-Sphinx
BuildArch: noarch
%python_subpackages
%description
SortedContainers is an Apache2 licensed containers library, written in
pure-Python, and fast as C-extensions.
Python's standard library is great until you need a sorted container type. Many
will attest that you can get really far without one, but the moment you **really
need** a sorted list, dict, or set, you're faced with a dozen different
implementations, most using C-extensions without great documentation and
benchmarking.
SortedContainers takes all of the work out of Python sorted types - making your
deployment and use of Python easy. There's no need to install a C compiler or
pre-build and distribute custom extensions. Performance is a feature and testing
has 100% coverage with unit tests and hours of stress.
%package -n %{name}-doc
Summary: Documentation for %{name}
Group: Documentation/HTML
Requires: %{name} = %{version}
Provides: %{python_module zope.schema-doc = %{version}}
%description -n %{name}-doc
This package contains documentation files for %{name}.
%prep
%setup -q -n sortedcontainers-%{version}
rm -rf sortedcontainers.egg-info
%build
%python_build
python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo
%install
%python_install
# We need to install docs by hand to be able to run fdupes on it
mkdir -pv %{buildroot}%{_docdir}/%{name}-doc
cp -r build/sphinx/html %{buildroot}%{_docdir}/%{name}-doc
%fdupes -s %{buildroot}%{_docdir}/%{name}-doc
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
%check
%python_exec %{_bindir}/nosetests -v
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/*
%files -n %{name}-doc
%doc %{_docdir}/%{name}-doc
%changelog