python-babel-vl.spec 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
  2. %define ver 0.9.6
  3. %define rel 2
  4. Summary: A collection of tools for internationalizing Python applications
  5. Name: python-babel
  6. Version: %{ver}
  7. Release: %{rel}%{?_dist_release}
  8. Source0: http://ftp.edgewall.com/pub/babel/Babel-%{version}.tar.gz
  9. License: modified BSD-style License
  10. Group: Development/Libraries
  11. URL: http://babel.edgewall.org/
  12. BuildRequires: python-setuptools
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. BuildArch: noarch
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. %description
  18. Babel is composed of two major parts:
  19. * tools to build and work with gettext message catalogs
  20. * a Python interface to the CLDR (Common Locale Data Repository),
  21. providing access to various locale display names, localized number
  22. and date formatting, etc.
  23. %prep
  24. %setup -q -n Babel-%{version}
  25. %build
  26. %{__python} setup.py build
  27. %install
  28. %{__rm} -rf ${RPM_BUILD_ROOT}
  29. %{__python} setup.py install --root=${RPM_BUILD_ROOT}
  30. %clean
  31. %{__rm} -rf ${RPM_BUILD_ROOT}
  32. %files
  33. %defattr(-,root,root)
  34. %doc COPYING ChangeLog README.txt contrib doc scripts
  35. %{_bindir}/pybabel
  36. %{python_sitelib}/Babel-*.egg-info
  37. %{python_sitelib}/babel
  38. %changelog
  39. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.6-2
  40. - rebuild with python-2.7.2
  41. - add BuildRequires: python-setuptools
  42. * Sun Oct 30 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.9.6-1
  43. - new upstream release
  44. * Wed Feb 3 2010 Shu KONNO <owa@bg.wakwak.com> 0.9.4-2
  45. - rebuilt with python-2.6.4
  46. * Sun Apr 5 2009 IWAI, Masaharu <iwai@alib.jp> 0.9.4-1
  47. - initial release