bzr-explorer-vl.spec 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. %define ver 1.1.2
  2. %define rel 1
  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.1
  15. Requires: qbzr >= 0.18
  16. Requires: PyQt4 >= 4.4
  17. BuildRequires: python-devel >= 2.4
  18. %description
  19. GUI application for using Bazaar.
  20. %description -l ja
  21. Bazaar のための GUI アプリケーション
  22. %prep
  23. %setup -q -n explorer
  24. %build
  25. %__python setup.py build
  26. %install
  27. %__rm -rf %{buildroot}
  28. %__python setup.py install --root %{buildroot}
  29. %clean
  30. %__rm -rf %{buildroot}
  31. %files
  32. %defattr(-,root,root,-)
  33. %doc COPYING.txt NEWS README.txt
  34. %{python_sitearch}/bzrlib/plugins/explorer
  35. %{python_sitearch}/explorer-%{version}*.egg-info
  36. %changelog
  37. * Wed Mar 16 2011 IWAI, Masaharu <iwai@alib.jp> 1.1.2-1
  38. - Initial build.