python-tornado/python-tornado.spec

103 lines
3.0 KiB
RPMSpec
Raw Normal View History

2009-11-02 13:45:03 +00:00
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%global pkgname tornado
Name: python-%{pkgname}
2010-08-04 07:00:23 +00:00
Version: 1.0
2010-08-04 08:48:14 +00:00
Release: 2%{?dist}
2009-11-02 13:45:03 +00:00
Summary: Scalable, non-blocking web server and tools
Group: Development/Libraries
License: ASL 2.0
URL: http://www.tornadoweb.org
2010-08-04 08:48:14 +00:00
Source0: http://github.com/downloads/facebook/${pkgname}/%{pkgname}-%{version}.tar.gz
2009-11-02 13:45:03 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: python-devel
Requires: python-pycurl
Requires: python-simplejson
%description
Tornado is an open source version of the scalable, non-blocking web server and
and tools.
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.
%package doc
Summary: Examples for python-tornado
Group: Documentation
Requires: python-tornado = %{version}-%{release}
%description doc
Tornado is an open source version of the scalable, non-blocking web server and
and tools. This package contains some example applications.
%prep
%setup -q -n %{pkgname}-%{version}
# remove shebang from files
for File in `find %{pkgname} -name "*py"`; do
%{__sed} -i.orig -e 1d ${File}
touch -r ${File}.orig ${File}
%{__rm} ${File}.orig
done
%build
python setup.py build
%install
rm -rf %{buildroot}
PATH=$PATH:%{buildroot}%{python_sitelib}/%{pkgname}
python setup.py install --root=%{buildroot}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README PKG-INFO
%{python_sitelib}/%{pkgname}/
%{python_sitelib}/%{pkgname}-%{version}-*.egg-info
%files doc
%defattr(-,root,root,-)
%doc demos
%changelog
2010-08-04 08:48:14 +00:00
* Wed Aug 4 2010 Ionuț C. Arțăriși <mapleoin@fedoraproject.org> - 1.0-2
- changed upstream source url
2010-08-04 07:00:23 +00:00
* Wed Aug 4 2010 Ionuț C. Arțăriși <mapleoin@fedoraproject.org> - 1.0-1
- new upstream release 1.0
- there's no longer a problem with spurious permissions, so remove that fix
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.2-4
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2009-11-02 13:45:03 +00:00
* Wed Oct 21 2009 Ionuț Arțăriși <mapleoin@fedoraproject.org> - 0.2-3
- changed -doc package group to Documentation
- use global instead of define
* Tue Oct 20 2009 Ionuț Arțăriși <mapleoin@fedoraproject.org> - 0.2-2
- create -doc package for examples
- altered description to not include references to FriendFeed
- rename to python-tornado
* Fri Sep 25 2009 Ionuț Arțăriși <mapleoin@lavabit.com> - 0.2-1
- New upstream version
- Fixed macro usage and directory ownership in spec
* Thu Sep 10 2009 Ionuț Arțăriși <mapleoin@lavabit.com> - 0.1-1
- Initial release