Distutils-vl.spec 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. Summary: Python Distribution Utilities
  2. Name: Distutils
  3. Version: 1.0.2
  4. Release: 1vl1
  5. Source: http://www.python.org/sigs/distutils-sig/download/Distutils-%{version}.tar.gz
  6. Patch: Distutils-1.0.2-docfiles.patch
  7. License: Python
  8. Requires: python
  9. Buildrequires: python
  10. Group: Development/Libraries
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
  12. BuildArchitectures: noarch
  13. URL: http://www.python.org/sigs/distutils-sig/
  14. %description
  15. A collection of modules to aid in the distribution and installation of
  16. Python modules, extensions, and (ultimately) applications. A standard
  17. part of Python 1.6 and 2.0, but also distributed separately for use with
  18. Python 1.5.
  19. %prep
  20. %setup
  21. %patch0 -p1
  22. %build
  23. python setup.py build
  24. %install
  25. rm -fr $RPM_BUILD_ROOT
  26. python setup.py install --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
  27. %clean
  28. rm -rf $RPM_BUILD_ROOT
  29. %files -f INSTALLED_FILES
  30. %defattr(-,root,root)
  31. %doc CHANGES.txt README.txt USAGE.txt doc/ examples/
  32. %changelog
  33. * Fri Feb 1 2002 Jun Nishii <jun@vinelinux.org> 1.0.2-0vl1
  34. - rebuild for Vine Linux
  35. * Fri Jun 1 2001 Trond Eivind Glomsrød <teg@redhat.com>
  36. - 1.0.2
  37. - Add patch from alane@geeksrus.net for bdist_rpm
  38. * Fri Dec 01 2000 Trond Eivind Glomsrød <teg@redhat.com>
  39. - rebuild
  40. * Thu Nov 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
  41. - cleaned up the specfile, remove unnecesarry macros.
  42. * Thu Jun 29 2000 Greg Ward <gward@python.net> 0.9
  43. - Made myself the packager, since I can now create the RPM on my own
  44. * Sun Jun 04 2000 Harry Henry Gebel <hgebel@inet.net> 0.9pre-1
  45. - Made sure scripts are file names, filled in some help strings, formatted
  46. changelog correctly
  47. * Wed May 31 2000 Greg Ward <gward@python.net> 0.8.3pre-1
  48. - Hacked up bdist_rpm.py, moved meta-data into setup.cfg
  49. * Thu May 10 2000 Harry Henry Gebel <hgebel@inet.net> 0.8.2-3
  50. - Added new options to package_data
  51. * Tue May 09 2000 Harry Henry Gebel <hgebel@inet.net> 0.8.2-2
  52. - Include RPM_OPT_FLAGS in distutils
  53. * Wed Apr 26 2000 Harry Henry Gebel <hgebel@inet.net> 0.8.2-1
  54. - First test of bdist_rpm