source: projects/specs/trunk/D/Distutils/Distutils-vl.spec @ 521

Revision 521, 2.0 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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