actdiag-vl.spec 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. %define ver 0.5.1
  2. %define rel 1
  3. Summary: simple activity-diagram image generator
  4. Summary(ja): シンプルなテキストからアクティビティ図を生成するツール
  5. Name: actdiag
  6. Version: %{ver}
  7. Release: %{rel}%{?_dist_release}
  8. License: Apache License 2.0
  9. Group: Applications/Text
  10. URL: http://blockdiag.com/ja/actdiag/
  11. Source0: http://pypi.python.org/packages/source/a/actdiag/%{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. actdiag generate activity-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 src/README.txt src/TODO.txt LICENSE
  37. %{_bindir}/actdiag
  38. %{python_sitelib}/actdiag-%{ver}-py*.egg-info
  39. %{python_sitelib}/actdiag
  40. %{python_sitelib}/actdiag_sphinxhelper.*
  41. %changelog
  42. * Mon Dec 30 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 0.5.1-1
  43. - update to 0.5.1
  44. * Sun Mar 3 2013 IWAI, Masaharu <iwai@alib.jp> 0.4.3-1
  45. - new upstream release
  46. - drop sphinxcontrib_actdiag.*: upstream removed
  47. - add Requires: python(abi) = %%pyver
  48. - add Summary(ja)
  49. - update URL: upstream moved
  50. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.5-2
  51. - rebuild with python-2.7.2
  52. * Mon May 16 2011 IWAI, Masaharu <iwai@alib.jp> 0.1.5-1
  53. - Initial build.