File python-pylons.spec of Package python-pylons
#
# spec file for package python-pylons (Version 0.9.7)
#
# Copyright 2008 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.
# norootforbuild
%define real_name Pylons
Name: python-pylons
Version: 0.9.7
Release: 0
License: BSD
Source: %{real_name}-%{version}.tar.gz
Group: Development/Libraries/Python
Summary: Pylons Web Framework
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Autoreqprov: on
Url: http://www.pylons.org
%{py_requires}
Recommends: apache2-mod_wsgi
# question - do we really need all these build requires?
BuildRequires: python-setuptools
BuildRequires: python-beaker
BuildRequires: python-decorator
BuildRequires: python-devel
BuildRequires: python-formencode
BuildRequires: python-mako
BuildRequires: python-nose
BuildRequires: python-paste
BuildRequires: python-pastedeploy
BuildRequires: python-pastescript
BuildRequires: python-routes
BuildRequires: python-simplejson
BuildRequires: python-tempita
BuildRequires: python-WebError
BuildRequires: python-webhelpers
BuildRequires: python-webob
BuildRequires: python-webtest
Requires: python-beaker
Requires: python-decorator >= 3.0.0
Requires: python-formencode
Requires: python-mako
Requires: python-nose
Requires: python-paste
Requires: python-pastedeploy
Requires: python-pastescript
Requires: python-routes
Requires: python-tempita
Requires: python-webhelpers
Requires: python-webob
Requires: python-webtest
Requires: python-WebError >= 0.10.0
Requires: python-simplejson >= 2.0.8
%description
The Pylons web framework is aimed at making webapps and large programmatic website development in Python easy. Several key points:
* A framework to make writing web applications in Python easy
* Utilizes a minimalist, component-based philosophy that makes it easy to expand on
* Harness existing knowledge about Python
%prep
%setup -q -n %real_name-%version
%build
python setup.py build
%install
python setup.py install --prefix=%_prefix --root=%buildroot --record-rpm=filelist
%clean
rm -rf %buildroot
%files -f filelist
%defattr(-,root,root)
%doc
#PKG-INFO docs
%changelog
* Fri Mar 06 2009 cfarrell1980@gmail.com
- Updated to 0.9.7
* Wed Mar 04 2009 cfarrell1980@gmail.com
- Initial build