actdiag-vl.spec 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. Summary: simple activity-diagram image generator
  2. Summary(ja): シンプルなテキストからアクティビティ図を生成するツール
  3. Name: actdiag
  4. Version: 0.5.4
  5. Release: 1%{?_dist_release}
  6. License: Apache License 2.0
  7. Group: Applications/Text
  8. URL: http://blockdiag.com/ja/actdiag/
  9. Source0: https://pypi.python.org/packages/source/a/actdiag/%{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. actdiag generate activity-diagram image file from spec-text file.
  23. %package -n python3-actdiag
  24. Summary: simple activity-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-actdiag
  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 README*
  48. %{_bindir}/actdiag
  49. %{python_sitelib}/actdiag-%{version}-py*.egg-info
  50. %{python_sitelib}/actdiag
  51. %{python_sitelib}/actdiag_sphinxhelper.*
  52. %files -n python3-actdiag
  53. %defattr(-,root,root,-)
  54. %license LICENSE
  55. %doc README*
  56. %{_bindir}/actdiag
  57. %{python3_sitelib}/actdiag*
  58. %{python3_sitelib}/__pycache__/*
  59. %changelog
  60. * Thu Nov 21 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.5.4-1
  61. - new upstream release.
  62. - added python3 support.
  63. * Mon Dec 30 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 0.5.1-1
  64. - update to 0.5.1
  65. * Sun Mar 3 2013 IWAI, Masaharu <iwai@alib.jp> 0.4.3-1
  66. - new upstream release
  67. - drop sphinxcontrib_actdiag.*: upstream removed
  68. - add Requires: python(abi) = %%pyver
  69. - add Summary(ja)
  70. - update URL: upstream moved
  71. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.5-2
  72. - rebuild with python-2.7.2
  73. * Mon May 16 2011 IWAI, Masaharu <iwai@alib.jp> 0.1.5-1
  74. - Initial build.