seqdiag-vl.spec 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. %define ver 0.3.3
  2. %define rel 2
  3. Summary: simple sequence-diagram image generator
  4. Name: seqdiag
  5. Version: %{ver}
  6. Release: %{rel}%{?_dist_release}
  7. License: Apache License 2.0
  8. Group: Applications/Text
  9. URL: https://bitbucket.org/tk0miya/seqdiag
  10. Source0: http://pypi.python.org/packages/source/s/seqdiag/%{name}-%{version}.tar.gz
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
  12. BuildArch: noarch
  13. BuildRequires: python-devel >= 2.4
  14. BuildRequires: python-setuptools
  15. Requires: python >= 2.4
  16. Requires: python-imaging >= 1.1.5
  17. Requires: python-funcparserlib >= 0.3.4
  18. Vendor: Project Vine
  19. Distribution: Vine Linux
  20. Packager: iwaim
  21. %description
  22. seqdiag generate sequence-diagram image file from spec-text file.
  23. %prep
  24. %setup -q
  25. %build
  26. %__python setup.py build
  27. %install
  28. %__rm -rf %{buildroot}
  29. %__python setup.py install --skip-build --root %{buildroot}
  30. %clean
  31. %__rm -rf %{buildroot}
  32. %files
  33. %defattr(-,root,root,-)
  34. %doc examples src/README.txt src/TODO.txt
  35. %{_bindir}/seqdiag
  36. %{python_sitelib}/seqdiag-%{ver}-py*.egg-info
  37. %{python_sitelib}/seqdiag
  38. %{python_sitelib}/sphinxcontrib_seqdiag.*
  39. %{python_sitelib}/seqdiag_sphinxhelper.*
  40. %changelog
  41. * Wed Feb 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-2
  42. - rebuild with python-2.7.2
  43. * Mon May 16 2011 IWAI, Masaharu <iwai@alib.jp> 0.3.3-1
  44. - Initial build.