forked from pool/python-tornado
- Update to 2.0:
Major changes: * Template output is automatically escaped by default; see backwards compatibility note below. * The default AsyncHTTPClient implementation is now simple_httpclient. * Python 3.2 is now supported. For backwards compatibility and other changes in this release, please read http://www.tornadoweb.org/documentation/releases/v2.0.0.html - Regenerate spec file with py2pack. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tornado?expand=0&rev=8
This commit is contained in:
committed by
Git OBS Bridge
parent
9d33219e78
commit
4ddc7d6a7b
@@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 22 11:47:26 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 2.0:
|
||||||
|
Major changes:
|
||||||
|
* Template output is automatically escaped by default; see backwards
|
||||||
|
compatibility note below.
|
||||||
|
* The default AsyncHTTPClient implementation is now simple_httpclient.
|
||||||
|
* Python 3.2 is now supported.
|
||||||
|
For backwards compatibility and other changes in this release,
|
||||||
|
please read http://www.tornadoweb.org/documentation/releases/v2.0.0.html
|
||||||
|
- Regenerate spec file with py2pack.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 4 04:10:43 UTC 2011 - alexandre@exatati.com.br
|
Fri Mar 4 04:10:43 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
@@ -11,29 +11,31 @@
|
|||||||
# case the license is the MIT License). An "Open Source License" is a
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
#
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
|
|
||||||
Name: python-tornado
|
Name: python-tornado
|
||||||
Version: 1.2.1
|
Version: 2.0
|
||||||
Release: 1
|
Release: 0
|
||||||
License: Apache 2.0
|
|
||||||
Summary: Open source version of scalable, non-blocking web server that power FriendFeed
|
|
||||||
Url: http://www.tornadoweb.org
|
Url: http://www.tornadoweb.org
|
||||||
Group: Development/Libraries/Python
|
Summary: Open source version of scalable, non-blocking web server that power FriendFeed
|
||||||
|
License: http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
Group: Development/Languages/Python
|
||||||
Source: tornado-%{version}.tar.bz2
|
Source: tornado-%{version}.tar.bz2
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-setuptools
|
|
||||||
Requires: python-curl
|
Requires: python-curl
|
||||||
Requires: python-simplejson
|
Requires: python-simplejson
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
%if 0%{?suse_version}
|
||||||
%{py_requires}
|
%py_requires
|
||||||
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
|
%if 0%{?suse_version} > 1110
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Tornado is an open source version of the scalable, non-blocking web server and tools that power FriendFeed.
|
Tornado is an open source version of the scalable, non-blocking web server and tools that power FriendFeed.
|
||||||
@@ -47,19 +49,21 @@ the web server specifically to handle FriendFeed's real-time features — every
|
|||||||
maintains an open connection to the FriendFeed servers. (For more information on scaling servers to support
|
maintains an open connection to the FriendFeed servers. (For more information on scaling servers to support
|
||||||
thousands of clients, see The C10K problem.)
|
thousands of clients, see The C10K problem.)
|
||||||
|
|
||||||
Author:
|
|
||||||
--------
|
|
||||||
Facebook
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n tornado-%{version}
|
%setup -q -n tornado-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__python} setup.py build
|
export CFLAGS="%{optflags}"
|
||||||
|
python setup.py build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{python_sitelib}/*
|
||||||
|
|
||||||
%files -f INSTALLED_FILES
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:048788c2ab84835efb86baa416cfff194135f651513fd247ae71c538820a6a09
|
|
||||||
size 234245
|
|
3
tornado-2.0.tar.bz2
Normal file
3
tornado-2.0.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cefecc0cf23c49f8ca0f71fb6e951eac8ff3555092f8d8d3b3b2862b1c8fbec0
|
||||||
|
size 248453
|
Reference in New Issue
Block a user