seqdiag-vl.spec 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. Summary: simple sequence-diagram image generator
  2. Summary(ja): シンプルなテキストからシーケンス図を生成するツール
  3. Name: seqdiag
  4. Version: 0.9.6
  5. Release: 1%{?_dist_release}
  6. Group: Applications/Text
  7. License: Apache License 2.0
  8. URL: http://blockdiag.com/ja/seqdiag/
  9. Source0: https://pypi.python.org/packages/source/s/seqdiag/%{name}-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
  11. BuildArch: noarch
  12. BuildRequires: python-devel >= 2.4
  13. BuildRequires: python-setuptools
  14. BuildRequires: python-rpm-macros
  15. Requires: python >= 2.4
  16. Requires: python(abi) = %pyver
  17. Requires: blockdiag
  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. %package -n python3-seqdiag
  24. Summary: simple sequence-diagram image generator
  25. Summary(ja): シンプルなテキストからシーケンス図を生成するツール
  26. BuildRequires: python3-devel
  27. BuildRequires: python3-setuptools
  28. BuildRequires: python3-rpm-macros
  29. Requires: python3
  30. Requires: python3-blockdiag
  31. %description -n python3-seqdiag
  32. seqdiag generate sequence-diagram image file from spec-text file.
  33. %prep
  34. %setup -q
  35. %build
  36. %py_build
  37. %py3_build
  38. %install
  39. %__rm -rf %{buildroot}
  40. %py_install
  41. %py3_install
  42. %clean
  43. %__rm -rf %{buildroot}
  44. %files
  45. %defattr(-,root,root,-)
  46. %license LICENSE
  47. %doc examples README*
  48. #%{_bindir}/seqdiag
  49. %{python_sitelib}/seqdiag-%{version}-py*.egg-info
  50. %{python_sitelib}/seqdiag
  51. %{python_sitelib}/seqdiag_sphinxhelper.*
  52. %files -n python3-seqdiag
  53. %defattr(-,root,root,-)
  54. %license LICENSE
  55. %doc examples README*
  56. %{_bindir}/seqdiag
  57. %{python3_sitelib}/seqdiag*
  58. %{python3_sitelib}/__pycache__/*
  59. %changelog
  60. * Thu Nov 21 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.9.6-1
  61. - new upstream release.
  62. - added python3 support.
  63. * Mon Dec 30 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 0.9.0-1
  64. - update to 0.9.0
  65. - drop src/TODO.txt: upstream deleted
  66. * Sun Mar 3 2013 IWAI, Masaharu <iwai@alib.jp> 0.8.2-1
  67. - new upstream release
  68. - drop sphinxcontrib_seqdiag.*: upstream removed
  69. - add Requires: python(abi) = %%pyver
  70. - add Summary(ja)
  71. - update URL: upstream moved
  72. * Wed Feb 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.3-2
  73. - rebuild with python-2.7.2
  74. * Mon May 16 2011 IWAI, Masaharu <iwai@alib.jp> 0.3.3-1
  75. - Initial build.