python-stevedore-vl.spec 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. %define pkgname stevedore
  2. # Basic Information
  3. Name: python-stevedore
  4. Version: 1.0.0.0a1
  5. Release: 1%{?_dist_release}
  6. License: Apache
  7. Group: Development/Libraries
  8. URL: https://github.com/dreamhost/stevedore
  9. Source0: %{pkgname}-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildArch: noarch
  12. Vendor: Project Vine
  13. Distribution: Vine Linux
  14. Packager: yasumichi
  15. Summary: Manage dynamic plugins for Python applications
  16. Summary(ja): Python アプリケーションのための動的プラグイン管理
  17. # Dependency
  18. Requires: python
  19. BuildRequires: python-setuptools
  20. %description
  21. =========
  22. Manage dynamic plugins for Python applications
  23. * Free software: Apache license
  24. * Documentation: http://stevedore.readthedocs.org
  25. * Source: http://git.openstack.org/cgit/openstack/stevedore
  26. * Bugs: https://bugs.launchpad.net/python-stevedore
  27. #%%description -l ja
  28. #ここに日本語で詳細を記述してください。
  29. %prep
  30. %setup -q -n stevedore-1.0.0.0a1
  31. %build
  32. %{__python} setup.py build
  33. %install
  34. %{__rm} -rf ${RPM_BUILD_ROOT}
  35. %{__python} setup.py install --root=${RPM_BUILD_ROOT}
  36. %clean
  37. %{__rm} -rf ${RPM_BUILD_ROOT}
  38. %files
  39. %defattr(-,root,root)
  40. %doc AUTHORS ChangeLog LICENSE
  41. %{python_sitelib}/%{pkgname}*
  42. %changelog
  43. * Sun Aug 03 2014 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.0.0.0a1-1
  44. - initial build for Vine Linux