seqdiag-vl.spec 2.4 KB

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