File python-tornado.spec of Package python-tornado.38783
#
# spec file for package python-tornado
#
# Copyright (c) 2025 SUSE LLC
#
# 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-%{**}}
Name: python-tornado
Version: 4.2.1
Release: 0
URL: http://www.tornadoweb.org
Summary: Open source version of scalable, non-blocking web server that power FriendFeed
License: Apache-2.0
Group: Development/Languages/Python
Provides: python-tornado = %{version}
Source: https://pypi.python.org/packages/source/t/tornado/tornado-%{version}.tar.gz
# PATFH-FIX-UPSTREAM tornado-Fix-an-open-redirect-in-StaticFileHandler.patch CVE-2023-28370 bsc#1211741 qzhao@suse.com -- Fix an open redirect in StaticFileHandler.
Patch0: tornado-Fix-an-open-redirect-in-StaticFileHandler.patch
# PATCH-FIX-UPSTREAM CVE-2025-47287.patch gh#tornadoweb/tornado#3497/files bsc#1243268
Patch1: CVE-2025-47287.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: %{python_module devel}
# BuildRequires: python3-futures
BuildRequires: %{python_module pycurl}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module simplejson}
BuildRequires: python-rpm-macros
# Tornado requires python-certifi when the ssl module
# does not provide the 'create_default_context' function.
# The ssl module is part of the python package.
# Starting from python 2.7.9 the ssl module satisfies
# tornado's requirement, making the python-certifi package
# optional.
# Python 2.7.9 is availalbe on SLE12 Updates channel and is going
# to be available also on openSUSE leap.
%if 0%{?suse_version} >= 1315
Requires: python-base
%else
BuildRequires: %{python_module certify}
Requires: python-certifi
%endif
Requires: python-simplejson
%if 0%{?suse_version}
Recommends: python-Twisted
Recommends: python-futures
Recommends: python-pycares
Recommends: python-pycurl
Recommends: python-service_identity
%endif
BuildRequires: fdupes
%if 0%{?suse_version} <= 1110
%{!?python_sitearch: %global python_sitearch %(%python_exec -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True)")}
%endif
%{!?py_ver: %global py_ver %(%python_exec -c "import sys; v=sys.version_info[:2]; print '%%d.%%d'%%v" 2>/dev/null || echo PYTHON-NOT-FOUND)}
%python_subpackages
%description
Tornado is an open source version of the scalable, non-blocking web server and
tools that power FriendFeed. The FriendFeed application is written using a web
framework that looks a bit like web.py or Google's webapp, but with additional
tools and optimizations to take advantage of the underlying non-blocking
infrastructure.
The framework is distinct from most mainstream web server frameworks (and
certainly most Python frameworks) because it is non-blocking and reasonably
fast. Because it is non-blocking and uses epoll, it can handle thousands of
simultaneous standing connections, which means it is ideal for real-time web
services. We built the web server specifically to handle FriendFeed's real-time
features — every active user of FriendFeed maintains an open connection to the
FriendFeed servers. (For more information on scaling servers to support
thousands of clients, see The C10K problem.)
%prep
%setup -q -n tornado-%{version}
# Fix non-executable script rpmlint issue:
find demos tornado -name "*.py" -exec sed -i "/#\!\/usr\/bin\/.*/d" {} \;
%patch0 -p1
%patch1 -p1
%build
%python_build
%install
%python_install
%fdupes demos
%files %{python_files}
%defattr(-,root,root,-)
%doc demos
%{python_sitearch}/tornado
%{python_sitearch}/tornado-%{version}-py%{python_bin_suffix}.egg-info
%changelog