bzr-explorer-vl.spec 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. %define ver 1.3.0
  2. %define rel 2
  3. Summary: GUI application for using Bazaar
  4. Summary(ja): Bazaar のための GUI アプリケーション
  5. Name: bzr-explorer
  6. Version: %{ver}
  7. Release: %{rel}%{?_dist_release}
  8. License: GPLv2
  9. Group: Development/Tools
  10. URL: http://doc.bazaar.canonical.com/explorer/en/
  11. Source0: %{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
  13. BuildArch: noarch
  14. Requires: python >= 2.4, bzr >= 2.3
  15. Requires: qbzr >= 0.19
  16. Requires: PyQt4 >= 4.4
  17. BuildRequires: python-devel >= 2.4
  18. Vendor: Project Vine
  19. Distribution: Vine Linux
  20. Packager: iwaim
  21. %description
  22. GUI application for using Bazaar.
  23. %description -l ja
  24. Bazaar のための GUI アプリケーション
  25. %prep
  26. %setup -q
  27. %build
  28. %__python setup.py build
  29. %install
  30. %__rm -rf %{buildroot}
  31. %__python setup.py install --root %{buildroot}
  32. %clean
  33. %__rm -rf %{buildroot}
  34. %files
  35. %defattr(-,root,root,-)
  36. %doc COPYING.txt NEWS README.txt
  37. %{python_sitelib}/bzrlib/plugins/explorer
  38. %{python_sitelib}/explorer-%{version}*.egg-info
  39. %changelog
  40. * Mon Dec 30 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 1.3.0-2
  41. - fix %%files path: using python_sitelib
  42. - add Vendor, Distribution, Packager tags
  43. * Thu Jan 3 2013 IWAI, Masaharu <iwai@alib.jp> 1.3.0-1
  44. - new upstream release
  45. - update Requires packages version
  46. * Wed Mar 16 2011 IWAI, Masaharu <iwai@alib.jp> 1.1.2-1
  47. - Initial build.