seqdiag-vl.spec 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. %define ver 0.8.2
  2. %define rel 1
  3. Summary: simple sequence-diagram image generator
  4. Summary(ja): シンプルなテキストからシーケンス図を生成するツール
  5. Name: seqdiag
  6. Version: %{ver}
  7. Release: %{rel}%{?_dist_release}
  8. License: Apache License 2.0
  9. Group: Applications/Text
  10. URL: http://blockdiag.com/ja/seqdiag/
  11. Source0: http://pypi.python.org/packages/source/s/seqdiag/%{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
  13. BuildArch: noarch
  14. BuildRequires: python-devel >= 2.4
  15. BuildRequires: python-setuptools
  16. Requires: python >= 2.4
  17. Requires: python(abi) = %pyver
  18. Requires: python-imaging >= 1.1.5
  19. Requires: python-funcparserlib >= 0.3.4
  20. Vendor: Project Vine
  21. Distribution: Vine Linux
  22. Packager: iwaim
  23. %description
  24. seqdiag generate sequence-diagram image file from spec-text file.
  25. %prep
  26. %setup -q
  27. %build
  28. %__python setup.py build
  29. %install
  30. %__rm -rf %{buildroot}
  31. %__python setup.py install --skip-build --root %{buildroot}
  32. %clean
  33. %__rm -rf %{buildroot}
  34. %files
  35. %defattr(-,root,root,-)
  36. %doc examples src/README.txt src/TODO.txt
  37. %{_bindir}/seqdiag
  38. %{python_sitelib}/seqdiag-%{ver}-py*.egg-info
  39. %{python_sitelib}/seqdiag
  40. %{python_sitelib}/seqdiag_sphinxhelper.*
  41. %changelog
  42. * Sun Mar 3 2013 IWAI, Masaharu <iwai@alib.jp> 0.8.2-1
  43. - new upstream release
  44. - drop sphinxcontrib_seqdiag.*: upstream removed
  45. - add Requires: python(abi) = %%pyver
  46. - add Summary(ja)
  47. - update URL: upstream moved
  48. * Wed Feb 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-2
  49. - rebuild with python-2.7.2
  50. * Mon May 16 2011 IWAI, Masaharu <iwai@alib.jp> 0.3.3-1
  51. - Initial build.