qbzr-vl.spec 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. %define ver 0.23.1
  2. %define rel 2
  3. Summary: a cross-platform GUI front end for Bazaar, based on Qt toolkit
  4. Summary(ja): Bazaar のクロスプラットフォームな GUI フロントエンド
  5. Name: qbzr
  6. Version: %{ver}
  7. Release: %{rel}%{?_dist_release}
  8. License: GPLv2
  9. Group: Development/Tools
  10. URL: http://wiki.bazaar.canonical.com/QBzr
  11. Source0: %{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildArch: noarch
  14. Requires: python >= 2.4
  15. Requires: bzr >= 2.2
  16. Requires: PyQt4 >= 4.4
  17. Requires: python-pygments >= 1.0
  18. BuildRequires: python-devel >= 2.4
  19. Vendor: Project Vine
  20. Distribution: Vine Linux
  21. Packager: iwaim
  22. %description
  23. QBzr is a cross platform, Qt-based front-end for Bazaar, providing GUI
  24. applications for many core bzr commands. In addition, it provides several
  25. special dialogs and helper commands. Equivalents for core bzr commands have
  26. the same names as CLI commands but with a prefix of "q".
  27. %prep
  28. %setup -q -n %{name}
  29. %build
  30. %__python setup.py build
  31. %install
  32. rm -rf %{buildroot}
  33. %__python setup.py install --root %{buildroot}
  34. %clean
  35. rm -rf %{buildroot}
  36. %files
  37. %defattr(-,root,root,-)
  38. %doc *.txt
  39. %{python_sitelib}/bzrlib/plugins/qbzr
  40. %{python_sitelib}/qbzr-%{version}*.egg-info
  41. %changelog
  42. * Fri Nov 14 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.23.1-2
  43. - moved to Development/Tools Group
  44. * Mon Dec 30 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 0.23.1-1
  45. - update to 0.23.1
  46. - fix %%files path: using python_sitelib
  47. - add Vendor, Distribution, Packager tags
  48. * Thu Jan 3 2013 IWAI, Masaharu <iwai@alib.jp> 0.23.0-1
  49. - new upstream release
  50. * Mon Apr 4 2011 IWAI, Masaharu <iwai@alib.jp> 0.20.0-1
  51. - new upstream release
  52. * Fri Jan 7 2011 IWAI, Masaharu <iwai@alib.jp> 0.19.3-1
  53. - Initial build.