forked from pool/python-CherryPy
update to 3.2.2, python3 package added OBS-URL: https://build.opensuse.org/request/show/121837 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-CherryPy?expand=0&rev=4
78 lines
2.6 KiB
RPMSpec
78 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-CherryPy
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products 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/
|
|
#
|
|
|
|
|
|
|
|
Name: python-CherryPy
|
|
Version: 3.2.2
|
|
Release: 1
|
|
Url: http://www.cherrypy.org
|
|
Summary: Object-Oriented HTTP framework
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
Source: CherryPy-%{version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: python-devel
|
|
%if 0%{?suse_version}
|
|
%py_requires
|
|
%if 0%{?suse_version} > 1110
|
|
BuildArch: noarch
|
|
%endif
|
|
%endif
|
|
%{!?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)")}
|
|
Provides: python-cherrypy = %{version}
|
|
#TODO Change <= back to < after version update
|
|
Obsoletes: python-cherrypy <= %{version}
|
|
|
|
%description
|
|
CherryPy is a pythonic, object-oriented HTTP framework.
|
|
|
|
CherryPy allows developers to build web applications in much the same way they
|
|
would build any other object-oriented Python program. This usually results in
|
|
smaller source code developed in less time.
|
|
|
|
CherryPy is now more than three years old and it is has proven very fast and
|
|
stable. It is being used in production by many sites, from the simplest ones
|
|
to the most demanding ones.
|
|
|
|
Oh, and most importantly: CherryPy is fun to work with :-)
|
|
|
|
%prep
|
|
%setup -q -n CherryPy-%{version}
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
python setup.py build
|
|
|
|
%install
|
|
sed -i 's|\r||' README.txt # Fix wrong EOL encoding
|
|
find . -name sessiondemo.py -type f -exec chmod 0755 {} \; # Fix non-executable bit rpmlint warning
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc README.txt
|
|
%{_bindir}/cherryd
|
|
%{python_sitelib}/cherrypy/
|
|
%{python_sitelib}/CherryPy-%{version}-py%{py_ver}.egg-info
|
|
|
|
%changelog
|