| 1 | %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} |
|---|
| 2 | |
|---|
| 3 | %define ver 0.6 |
|---|
| 4 | %define rel 4 |
|---|
| 5 | |
|---|
| 6 | Summary: Python toolkit for generation of output for the web |
|---|
| 7 | Name: python-genshi |
|---|
| 8 | Version: %{ver} |
|---|
| 9 | Release: %{rel}%{?_dist_release} |
|---|
| 10 | Source0: http://ftp.edgewall.com/pub/genshi/Genshi-%{version}.tar.gz |
|---|
| 11 | License: modified BSD-style License |
|---|
| 12 | Group: Development/Libraries |
|---|
| 13 | URL: http://genshi.edgewall.org/ |
|---|
| 14 | |
|---|
| 15 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
|---|
| 16 | Requires: python-babel >= 0.8 python-setuptools >= 0.6a2 |
|---|
| 17 | BuildRequires: python-devel |
|---|
| 18 | BuildRequires: python-babel >= 0.8 python-setuptools >= 0.6a2 |
|---|
| 19 | BuildArch: noarch |
|---|
| 20 | |
|---|
| 21 | Vendor: Project Vine |
|---|
| 22 | Distribution: Vine Linux |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | %description |
|---|
| 26 | Genshi is a Python library that provides an integrated set of components for parsing, generating, and processing HTML, XML or other textual content for output generation on the web. |
|---|
| 27 | |
|---|
| 28 | %prep |
|---|
| 29 | %setup -q -n Genshi-%{version} |
|---|
| 30 | |
|---|
| 31 | %build |
|---|
| 32 | python setup.py build |
|---|
| 33 | |
|---|
| 34 | %install |
|---|
| 35 | %{__rm} -rf ${RPM_BUILD_ROOT} |
|---|
| 36 | python setup.py install --root=${RPM_BUILD_ROOT} |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | %clean |
|---|
| 40 | %{__rm} -rf ${RPM_BUILD_ROOT} |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | %files |
|---|
| 44 | %defattr(-,root,root) |
|---|
| 45 | %doc COPYING ChangeLog README.txt doc examples |
|---|
| 46 | ##%{python_sitearch}/Genshi-*.egg-info |
|---|
| 47 | ##%{python_sitearch}/genshi |
|---|
| 48 | %{python_sitelib}/Genshi-*.egg-info |
|---|
| 49 | %{python_sitelib}/genshi |
|---|
| 50 | |
|---|
| 51 | |
|---|
| 52 | %changelog |
|---|
| 53 | * Sun Jan 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6-4 |
|---|
| 54 | - rebuild with VineSeed environment |
|---|
| 55 | |
|---|
| 56 | * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6-3 |
|---|
| 57 | - rebuild with python-2.7.2 |
|---|
| 58 | |
|---|
| 59 | * Wed Apr 13 2011 Shu KONNO <owa@bg.wakwak.com> 0.6-2 |
|---|
| 60 | - fixed python path |
|---|
| 61 | - added BuildArch: noarch |
|---|
| 62 | |
|---|
| 63 | * Sun Apr 10 2011 IWAI, Masaharu <iwai@alib.jp> 0.6-1 |
|---|
| 64 | - new upstream release |
|---|
| 65 | - add BuildRequires: python-devel |
|---|
| 66 | |
|---|
| 67 | * Tue Feb 02 2010 Shu KONNO <owa@bg.wakwak.com> 0.5.1-2 |
|---|
| 68 | - rebuild with python-2.6 |
|---|
| 69 | |
|---|
| 70 | * Sun Apr 5 2009 IWAI, Masaharu <iwai@alib.jp> 0.5.1-1 |
|---|
| 71 | - initial release |
|---|
| 72 | |
|---|