actdiag-vl.spec 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. Summary: simple activity-diagram image generator
  2. Summary(ja): シンプルなテキストからアクティビティ図を生成するツール
  3. Name: actdiag
  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/actdiag/
  12. Source0: https://pypi.python.org/packages/source/a/actdiag/%{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. actdiag generate activity-diagram image file from spec-text file.
  24. %package -n python3-actdiag
  25. Summary: simple activity-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-actdiag
  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 README*
  50. %{_bindir}/actdiag
  51. %{python_sitelib}/actdiag-%{version}-py*.egg-info
  52. %{python_sitelib}/actdiag
  53. %{python_sitelib}/actdiag_sphinxhelper.*
  54. %files -n python3-actdiag
  55. %defattr(-,root,root,-)
  56. %license LICENSE
  57. %doc README*
  58. %{_bindir}/actdiag
  59. %{python3_sitelib}/actdiag*
  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.5.4-1
  65. - new upstream release.
  66. - added python3 support.
  67. * Mon Dec 30 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 0.5.1-1
  68. - update to 0.5.1
  69. * Sun Mar 3 2013 IWAI, Masaharu <iwai@alib.jp> 0.4.3-1
  70. - new upstream release
  71. - drop sphinxcontrib_actdiag.*: upstream removed
  72. - add Requires: python(abi) = %%pyver
  73. - add Summary(ja)
  74. - update URL: upstream moved
  75. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.5-2
  76. - rebuild with python-2.7.2
  77. * Mon May 16 2011 IWAI, Masaharu <iwai@alib.jp> 0.1.5-1
  78. - Initial build.