2013-09-09 08:28:22 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-falcon
|
|
|
|
#
|
2017-03-02 22:45:46 +00:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2013-09-09 08:28:22 +00:00
|
|
|
#
|
|
|
|
# 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/
|
2015-05-06 23:30:53 +00:00
|
|
|
#
|
2013-09-09 08:28:22 +00:00
|
|
|
|
|
|
|
|
2017-08-19 05:56:06 +00:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
%bcond_without test
|
2013-09-09 08:28:22 +00:00
|
|
|
Name: python-falcon
|
2017-08-19 05:56:06 +00:00
|
|
|
Version: 1.2.0
|
2013-09-09 08:28:22 +00:00
|
|
|
Release: 0
|
2017-08-19 05:56:06 +00:00
|
|
|
Summary: An unladen web framework for building APIs and app backends
|
2015-05-06 23:30:53 +00:00
|
|
|
License: Apache-2.0
|
2013-09-09 08:28:22 +00:00
|
|
|
Group: Development/Languages/Python
|
2015-05-06 23:30:53 +00:00
|
|
|
Url: http://falconframework.org
|
2017-08-19 05:56:06 +00:00
|
|
|
Source: https://github.com/falconry/falcon/archive/%{version}.tar.gz
|
|
|
|
# The file on pypi misses docs/ext, should be fixed in next version
|
|
|
|
#Source: https://files.pythonhosted.org/packages/source/f/falcon/falcon-%%{version}.tar.gz
|
|
|
|
BuildRequires: %{python_module devel}
|
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
# SECTION test requirements
|
|
|
|
%if %{with test}
|
|
|
|
BuildRequires: %{python_module PyYAML}
|
|
|
|
BuildRequires: %{python_module ddt}
|
|
|
|
BuildRequires: %{python_module fixtures >= 1.3.0}
|
|
|
|
BuildRequires: %{python_module pytest-runner}
|
|
|
|
BuildRequires: %{python_module pytest}
|
|
|
|
BuildRequires: %{python_module python-mimeparse >= 1.5.2}
|
|
|
|
BuildRequires: %{python_module requests}
|
|
|
|
BuildRequires: %{python_module six >= 1.4.0}
|
|
|
|
BuildRequires: %{python_module testtools}
|
2013-09-09 09:18:35 +00:00
|
|
|
%endif
|
2017-08-19 05:56:06 +00:00
|
|
|
# /SECTION
|
|
|
|
# SECTION docs
|
|
|
|
BuildRequires: python3-Sphinx
|
|
|
|
# /SECTION
|
2016-01-29 15:53:48 +00:00
|
|
|
Requires: python-python-mimeparse
|
2013-09-09 08:28:22 +00:00
|
|
|
Requires: python-six
|
2017-08-19 05:56:06 +00:00
|
|
|
Suggests: %{name}-doc
|
|
|
|
Requires(post): update-alternatives
|
|
|
|
Requires(postun): update-alternatives
|
|
|
|
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%package -n %{name}-doc
|
|
|
|
Summary: Documentation files for %name
|
|
|
|
Group: Documentation/HTML
|
|
|
|
Provides: %{python_module falcon-doc = %version}
|
2013-09-09 08:28:22 +00:00
|
|
|
|
|
|
|
%description
|
2013-09-30 15:31:21 +00:00
|
|
|
Falcon is a high-performance Python framework for building cloud
|
2013-09-09 08:28:22 +00:00
|
|
|
APIs. It encourages the REST architectural style, and tries to do
|
2013-09-30 15:31:21 +00:00
|
|
|
as little as possible while remaining highly effective.
|
2013-09-09 08:28:22 +00:00
|
|
|
|
2017-08-19 05:56:06 +00:00
|
|
|
%description -n %{name}-doc
|
|
|
|
HTML documentation including API documentation and changelog for %name.
|
|
|
|
|
2013-09-09 08:28:22 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n falcon-%{version}
|
2015-05-06 23:30:53 +00:00
|
|
|
# remove unwanted shebang
|
2017-08-19 05:56:06 +00:00
|
|
|
sed -i '1s/^#!.*//' falcon/bench/bench.py falcon/cmd/print_routes.py
|
2013-09-09 08:28:22 +00:00
|
|
|
|
|
|
|
%build
|
2017-08-19 05:56:06 +00:00
|
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
|
|
%python_build
|
|
|
|
pushd docs
|
|
|
|
PYTHONPATH=$PATH:.. make html
|
|
|
|
rm _build/html/.buildinfo
|
|
|
|
popd
|
2013-09-09 08:28:22 +00:00
|
|
|
|
|
|
|
%install
|
2017-08-19 05:56:06 +00:00
|
|
|
%{python_install}
|
|
|
|
%python_clone -a %{buildroot}%{_bindir}/falcon-bench
|
|
|
|
%python_clone -a %{buildroot}%{_bindir}/falcon-print-routes
|
|
|
|
%{python_expand %fdupes %{buildroot}%{$python_sitelib}/falcon/}
|
2013-09-09 08:28:22 +00:00
|
|
|
|
|
|
|
%check
|
2017-08-19 05:56:06 +00:00
|
|
|
%{python_exec setup.py -q test}
|
2013-09-09 08:28:22 +00:00
|
|
|
|
2017-08-19 05:56:06 +00:00
|
|
|
%post
|
|
|
|
%{python_install_alternative falcon-bench falcon-print-routes}
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%{python_uninstall_alternative falcon-bench falcon-print-routes}
|
|
|
|
|
|
|
|
%files %{python_files}
|
2013-09-09 08:28:22 +00:00
|
|
|
%defattr(-,root,root,-)
|
2017-08-19 05:56:06 +00:00
|
|
|
%doc README.rst LICENSE
|
|
|
|
%python_alternative %{_bindir}/falcon-bench
|
|
|
|
%python_alternative %{_bindir}/falcon-print-routes
|
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
%files -n %{name}-doc
|
|
|
|
%doc docs/_build/html
|
2013-09-09 08:28:22 +00:00
|
|
|
|
|
|
|
%changelog
|