tegaki-python-vl.spec 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # -*- coding: utf-8 -*-
  2. Name: tegaki-python
  3. Version: 0.3.1
  4. Release: 2%{?_dist_release}
  5. Summary: Base Python library for the Tegaki project
  6. Summary(ja): Tegaki プロジェクトのための Python ベースライブラリ
  7. License: GPLv2
  8. Group: Development/Libraries
  9. URL: http://www.tegaki.org/
  10. Source0: http://www.tegaki.org/releases/%{version}/%{name}-%{version}.tar.gz
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. BuildArch: noarch
  13. BuildRequires: python-devel >= 2.4
  14. Requires: python >= 2.4
  15. Requires: zinnia-python >= 0.05
  16. Vendor: Project Vine
  17. Distribution: Vine Linux
  18. Packager: iwaim
  19. %description
  20. Base Python library for the Tegaki project.
  21. %description -l ja
  22. Tegaki プロジェクトのための Python ベースライブラリです.
  23. %prep
  24. %setup -q
  25. %build
  26. %{__python} setup.py build
  27. %install
  28. %{__rm} -rf %{buildroot}
  29. %{__python} setup.py install --root %{buildroot}
  30. %clean
  31. %{__rm} -rf %{buildroot}
  32. %files
  33. %defattr(-,root,root,-)
  34. %doc AUTHORS COPYRIGHT README COPYING ChangeLog TODO
  35. %{python_sitelib}/tegaki
  36. %{python_sitelib}/tegaki_python*.egg-info
  37. %changelog
  38. * Fri Jun 19 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.3.1-2
  39. - rebuilt on current VineSeed
  40. * Wed Jun 9 2010 IWAI, Masaharu <iwai@alib.jp> 0.3.1-1
  41. - Initial build.