source: projects/specs/trunk/p/python/python-vl.spec @ 5757

Revision 5757, 35.3 KB checked in by daisuke, 12 years ago (diff)

python:

  • tkinter obsoletes python27-tkinter < 2.7.2
  • python-* obsoletes python-* < 2.7.2
Line 
1# if you wanna test, add " --define '_run_test 1' " option to rpmbuild command
2%define run_test %{?_run_test:1}%{!?_run_test:0}
3%define unicode ucs4
4%define bsddb_ver 4.8
5%define tcl_major 8.4
6%define tk_major 8.4
7%define tix_major 8.4
8%define pybasever 2.7
9%define python_lib %{_libdir}/python%{pybasever}
10
11Summary: An interpreted, interactive, object-oriented programming language.
12Summary(ja): オブジェクト指向言語 Python インタプリタ
13Name: python
14Version: %{pybasever}.2
15Release: 4%{?_dist_release}
16License: PSF
17Group: Development/Languages
18URL: http://www.python.org/%{pybasever}/
19Source0: http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.bz2
20Source1: http://docs.python.org/archives/python-%{version}-docs-html.tar.bz2
21Source2: http://python-doc-ja.googlecode.com/files/python-doc-%{pybasever}ja1-html.zip
22Source6: shmmodule.c
23Patch0: python-2.7.1-Setup.dist.patch
24Patch3: python-2.2.1-pydocnogui.patch
25Patch4: python-2.3.3-distutilrpm.patch
26Patch10: python-2.6-db48.patch
27Patch11: http://bugs.python.org/file16549/python-support_bdb-4.8-v2.patch
28
29## from fedora
30Patch20: make-pydoc-more-robust-001.patch
31Patch21: python-2.3.4-lib64-regex.patch
32Patch22: python-2.5-cflags.patch
33Patch23: python-2.5.1-plural-fix.patch
34Patch24: python-2.5.1-sqlite-encoding.patch
35Patch25: python-2.6-rpath.patch
36Patch26: python-2.6.4-distutils-rpath.patch
37Patch27: python-2.6.4-setup-db48.patch
38Patch28: python-2.6.5-fix-expat-issue9054.patch
39Patch29: python-2.6.5-more-configuration-flags.patch
40Patch30: python-2.7-autotool-intermediates.patch
41Patch31: python-2.7rc1-binutils-no-dep.patch
42Patch32: python-2.7rc1-codec-ascii-tolower.patch
43Patch33: python-2.7rc1-ctypes-noexecmem.patch
44Patch34: python-2.7rc1-debug-build.patch
45Patch35: python-2.7rc1-dtrace.patch
46Patch36: python-2.7rc1-no-static-lib.patch
47Patch37: python-2.7rc1-socketmodule-constants.patch
48Patch38: python-2.7rc1-socketmodule-constants2.patch
49Patch39: python-2.7rc1-statvfs-f_flag-constants.patch
50Patch40: python-2.7rc2-r79310.patch
51Patch41: 00145-force-sys-platform-to-be-linux2.patch
52
53## from mandriva
54Patch50: Python-2.7-CVE-2010-3493.diff
55Patch51: Python-2.7-CVE-2010-3492.diff
56Patch52: python-2.5.2-fix_UTF-8_name.patch
57Patch53: python-2.7-module-linkage.patch
58
59## for lib64
60Patch100: python-2.7-lib64-Makefile.patch
61Patch101: python-2.7-lib64-setup.patch
62Patch102: python-2.7-lib64-getpath.patch
63Patch103: python-2.7-lib64-site.patch
64Patch104: python-2.7-lib64-install.patch
65Patch105: python-2.7-lib64-sysconfig.patch
66Patch106: python-2.7-lib64-distutils_sysconfig.patch
67Patch107: python-2.7-lib64-test_install.patch
68Patch108: python-2.7.1-lib64-test_site.patch
69
70Obsoletes: python2
71Obsoletes: python27 < 2.7.2
72Provides: python27
73Obsoletes: Distutils
74Obsoletes: python-base
75Provides: Distutils
76# <BTS:VineLinux:1121>
77Obsoletes: pysqlite <= 2.6.1-1vl6
78Provides: pysqlite
79
80BuildRequires: db4-devel >= 4.8
81BuildRequires: readline-devel
82BuildRequires: libtermcap-devel
83BuildRequires: openssl-devel
84BuildRequires: gmp-devel
85BuildRequires: ncurses-devel
86BuildRequires: gdbm-devel
87BuildRequires: zlib-devel
88BuildRequires: bzip2-devel
89BuildRequires: expat-devel
90BuildRequires: libGL-devel
91BuildRequires: libX11-devel
92BuildRequires: libffi-devel
93BuildRequires: sqlite3-devel
94BuildRequires: tk
95BuildRequires: tix
96BuildRequires: findutils
97BuildRequires: pkgconfig
98BuildRequires: nkf
99BuildRoot: %{_tmppath}/%{name}-%{version}-root
100
101Vendor: Project Vine
102Distribution: Vine Linux
103
104
105%description
106Python is an interpreted, interactive, object-oriented programming
107language often compared to Tcl, Perl, Scheme or Java. Python includes
108modules, classes, exceptions, very high level dynamic data types and
109dynamic typing. Python supports interfaces to many system calls and
110libraries, as well as to various windowing systems (X11, Motif, Tk,
111Mac and MFC).
112
113Programmers can write new built-in modules for Python in C or C++.
114Python can be used as an extension language for applications that need
115a programmable interface. This package contains most of the standard
116Python modules, as well as modules for interfacing to the Tix widget
117set for Tk and RPM.
118
119Note that documentation for Python is provided in the python-docs
120package.
121
122%package devel
123Summary: The libraries and header files needed for Python development.
124Summary(ja): Python での開発に必要なライブラリやヘッダファイル
125Group: Development/Libraries
126Obsoletes: python2-devel
127Obsoletes: python27-devel < 2.7.2
128
129%description devel
130The Python programming language's interpreter can be extended with
131dynamically loaded extensions and can be embedded in other programs.
132This package contains the header files and libraries needed to do
133these types of tasks.
134
135Install python-devel if you want to develop Python extensions.  The
136python package will also need to be installed.  You'll probably also
137want to install the python-docs package, which contains Python
138documentation.
139
140%package tools
141Summary: A collection of development tools included with Python.
142Summary(ja): Python に含まれる開発ツール一式
143Group: Development/Tools
144Requires: %{name} = %{version}
145Requires: tkinter = %{version}
146Obsoletes: python2-tools
147Obsoletes: python27-tools < 2.7.2
148
149%description tools
150The Python package includes several development tools that are used
151to build python programs. This package contains a selection of those
152tools, including the IDLE Python IDE.
153
154Install python-tools if you want to use these tools to develop
155Python programs.  You will also need to install the python and
156tkinter packages.
157
158%package docs
159Summary: Documentation for the Python programming language.
160Summary(ja): Python プログラミング言語のドキュメント
161Group: Applications/Documentation
162Obsoletes: python2-docs
163Obsoletes: python27-docs < 2.7.2
164
165%description docs
166The python-docs package contains documentation on the Python
167programming language and interpreter.  The documentation is provided
168in ASCII text files and in LaTeX source files.
169
170Install the python-docs package if you'd like to use the documentation
171for the Python language.
172
173%package -n tkinter
174Summary: A graphical user interface for the Python scripting language.
175Summary(ja): Python スクリプト言語のグラフィカルインターフェイス
176Group: Development/Languages
177Obsoletes: tkinter2
178BuildRequires: tcl, tk
179Requires: %{name} = %{version}-%{release}
180Requires: tix
181Obsoletes: python27-tkinter < 2.7.2
182Provides: python27-tkinter = %{version}-%{release}
183
184%description -n tkinter
185The Tkinter (Tk interface) program is an graphical user interface for
186the Python scripting language.
187
188You should install the tkinter package if you'd like to use a graphical
189user interface for Python programming.
190
191
192%prep
193%setup -q -n Python-%{version} -a 1
194%patch0 -p1 -b .Setup
195%patch3 -p1 -b .no_gui
196%patch4 -p1 -b .distutilrpm
197
198## for bsddb-4.8
199#%patch10 -p1 -b .db48
200#%patch11 -p0 -b .db48-v2
201
202## from fedora-14
203%patch20 -p0 -b .make-pydoc-more-robust-001
204%patch21 -p1 -b .lib64-regex
205%patch22 -p1 -b .cflags
206%patch23 -p1 -b .plural-fix
207%patch24 -p1 -b .sqlite-encoding
208%patch25 -p1 -b .rpath
209##%patch26 -p1 -b .distutils-rpath
210###%patch27 -p1 -b .setup-db48
211###%patch28 -p0 -b .fix-expat-issue9054
212%patch29 -p1 -b .more-configuration-flags
213###%patch30 -p0 -b .autotool-intermediates
214%patch31 -p1 -b .binutils-no-dep
215%patch32 -p1 -b .codec-ascii-tolower
216##%patch33 -p1 -b .ctypes-noexecmem
217###%patch34 -p1 -b .debug-build
218###%patch35 -p1 -b .dtrace
219%patch36 -p1 -b .no-static-lib
220%patch37 -p1 -b .socketmodule-constants
221%patch38 -p1 -b .socketmodule-constants2
222%patch39 -p1 -b .statvfs-f_flag-constants
223%patch40 -p0 -R -b .r79310
224%patch41 -p1 -b .linux2
225
226## from mandriva
227###%patch50 -p0 -b .CVE-2010-3493
228###%patch51 -p1 -b .CVE-2010-3492
229###%patch52 -p1 -b .fix_UTF-8_name
230%patch53 -p0 -b .module-linkage.patch
231
232%if %{_lib} == lib64
233%patch100 -p1 -b .Makefile
234%patch101 -p1 -b .setup
235%patch102 -p1 -b .getpath
236%patch103 -p1 -b .site
237%patch104 -p1 -b .install
238%patch105 -p1 -b .sysconfig
239%patch106 -p1 -b .distutils_sysconfig
240%patch107 -p1 -b .test_install
241#%patch108 -p1 -b .test_site
242%endif
243
244## shm module
245cp %{SOURCE6} Modules
246cat >> Modules/Setup.dist << EOF
247
248## Shared memory module
249shm shmmodule.c
250EOF
251
252## Fix library flags
253pushd Modules
254mv Setup.dist Setup.dist.tmp
255cat Setup.dist.tmp \
256        | sed "s^-ldb-4.?^-ldb-%{bsddb_ver}^" \
257        | sed "s^-ltcl^-ltcl%{tcl_major}^" \
258        | sed "s^-ltk^-ltk%{tk_major}^" \
259        | sed "s^-ltix^-ltix%{tix_major}^" \
260        > Setup.dist
261rm -f Setup.dist.tmp
262popd
263
264##
265autoconf
266
267
268%build
269topdir=`pwd`
270export CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -fPIC"
271export CXXFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -fPIC"
272export OPT="$RPM_OPT_FLAGS -D_GNU_SOURCE -fPIC"
273export LINKCC="gcc"
274export CC=gcc
275if pkg-config openssl ; then
276        export CFLAGS="$CFLAGS $(pkg-config --cflags openssl)"
277        export LDFLAGS="$LDFLAGS $(pkg-config --libs-only-L openssl)"
278fi
279%configure \
280        --enable-ipv6 \
281        --enable-unicode=%{unicode} \
282        --enable-shared \
283        --with-system-ffi \
284        --with-system-expat \
285        ;
286make OPT="$CFLAGS" %{?_smp_mflags}
287
288## rebuild with new python
289export LD_LIBRARY_PATH=$topdir
290export PATH="$topdir:$PATH"
291ln -s $topdir/python $topdir/python%{pybasever}
292#$topdir/python Tools/scripts/pathfix.py -i "/usr/bin/env python%{pybasever}" .
293make OPT="$CFLAGS" %{?_smp_mflags}
294
295
296%if %{run_test}
297#%%check
298# This runs the test set twice (once with no compiled files, once with
299# the compiled files left by the previous test run).
300find ./Lib -name '*.py[co]' -print | xargs rm -f
301LD_LIBRARY_PATH=$topdir:$topdir/Modules:$topdir/build/lib.linux-%{_host_cpu}-%{pybasever}
302PYTHONHOME=$topdir
303PYTHONPATH=$topdir/Lib:$topdir/Lib/test:$topdir/Lib/lib-tk:$topdir/Lib/site-packages
304PYTHONPATH=$PYTHONPATH:$LD_LIBRARY_PATH
305export PYTHONHOME PYTHONPATH LD_LIBRARY_PATH
306#SKIPLIST="-x test___all__ -x test_dl -x test_gdb -x test_pydoc"
307SKIPLIST=""
308./python -tt -E ./Lib/test/regrtest.py -l -w $SKIPLIST 2>&1 | tee make.check1.log
309./python -tt -E ./Lib/test/regrtest.py -l -w $SKIPLIST 2>&1 | tee make.check2.log
310#-------------------------------##
311# Sat Nov 27 2010 ...last tested
312# 344 tests OK.
313# 4 tests failed:
314#     test___all__ test_dl test_gdb test_pydoc
315# 36 tests skipped:
316# 2 skips unexpected on linux2:
317#-------------------------------##
318%endif
319
320
321%install
322rm -fr $RPM_BUILD_ROOT
323mkdir -p $RPM_BUILD_ROOT/usr $RPM_BUILD_ROOT%{_mandir}
324
325# Temporary workaround to avoid confusing find-requires: don't ship the tests
326# as executable files
327chmod 0644 Lib/test/test_*.py
328
329make DESTDIR=$RPM_BUILD_ROOT install
330
331install -d $RPM_BUILD_ROOT%{python_lib}/site-packages
332install -d $RPM_BUILD_ROOT%{python_lib}/config
333ln -s ../../libpython%{pybasever}.so $RPM_BUILD_ROOT%{python_lib}/config/libpython%{pybasever}.so
334%if %{_lib} == lib64
335install -d $RPM_BUILD_ROOT%{_prefix}/lib/python%{pybasever}/site-packages
336%endif
337
338# Fix the interpreter path in binaries installed by distutils
339# (which changes them by itself)
340# Make sure we preserve the file permissions
341for fixed in $RPM_BUILD_ROOT/usr/bin/pydoc; do
342    sed 's,#!.*/python$,#!/usr/bin/env python%{pybasever},' $fixed > $fixed- \
343        && cat $fixed- > $fixed && rm -f $fixed-
344done
345
346
347## tools
348echo "#!/bin/bash
349exec %{python_lib}/site-packages/pynche/pynche" \
350        > $RPM_BUILD_ROOT%{_bindir}/pynche
351chmod 755 $RPM_BUILD_ROOT%{_bindir}/pynche
352
353echo "#!/bin/bash
354exec %{python_lib}/site-packages/modulator/modulator.py" \
355        > $RPM_BUILD_ROOT%{_bindir}/modulator
356chmod 755 $RPM_BUILD_ROOT%{_bindir}/modulator
357
358## idle
359mkdir -p $RPM_BUILD_ROOT%{python_lib}/site-packages/idle
360install -m 755 ./Lib/idlelib/idle.py $RPM_BUILD_ROOT%{python_lib}/site-packages/idle
361
362##pynche
363rm -f Tools/pynche/*.pyw
364cp -r Tools/pynche $RPM_BUILD_ROOT%{python_lib}/site-packages/
365
366##gettext
367install -m755  Tools/i18n/pygettext.py $RPM_BUILD_ROOT%{_bindir}/
368install -m755  Tools/i18n/msgfmt.py $RPM_BUILD_ROOT%{_bindir}/
369
370## Get rid of crap
371find $RPM_BUILD_ROOT/ -name "*~"|xargs rm -f
372find $RPM_BUILD_ROOT/ -name ".cvsignore"|xargs rm -f
373find . -name "*~"|xargs rm -f
374find . -name ".cvsignore"|xargs rm -f
375
376##zero length
377rm -f $RPM_BUILD_ROOT%{python_lib}/site-packages/modulator/Templates/copyright
378
379## Clean up the testsuite - we don't need compiled files for it
380find $RPM_BUILD_ROOT%{python_lib}/test \
381    -name "*.pyc" -o -name "*.pyo" | xargs rm -f
382rm -f $RPM_BUILD_ROOT%{python_lib}/LICENSE.txt
383
384find $RPM_BUILD_ROOT%{python_lib}/lib-dynload -type f \
385        | grep -v _tkinter.so \
386        | sed "s|$RPM_BUILD_ROOT||" \
387        > dynfiles
388
389## Fix the file permissions
390chmod 755 $RPM_BUILD_ROOT%{python_lib}/lib-dynload/*.so
391chmod 755 $RPM_BUILD_ROOT%{_libdir}/libpython*.so.*
392find $RPM_BUILD_ROOT%{python_lib} -type f -name '*.py' | xargs chmod -x
393
394## docs
395if [ -d Doc/html ] ; then
396        rm -rf Doc/html
397fi
398tar xvzf %SOURCE1
399mv python-%{version}-docs-html Doc/html
400unzip %SOURCE2
401mkdir Doc.ja
402mv python-doc-%{pybasever}ja1-html Doc.ja/html
403
404%clean
405rm -fr $RPM_BUILD_ROOT
406
407
408%files -f dynfiles
409%defattr(-, root, root)
410%doc LICENSE README
411%{_bindir}/python
412%{_bindir}/python%{pybasever}
413%{_libdir}/libpython%{pybasever}.so.*
414%{_mandir}/man1/python*
415%dir %{python_lib}
416%dir %{python_lib}/lib-dynload
417%dir %{python_lib}/site-packages
418%{python_lib}/*.py*
419%{python_lib}/*.doc
420%{python_lib}/bsddb
421%{python_lib}/compiler
422%{python_lib}/ctypes
423%{python_lib}/curses
424%{python_lib}/distutils
425%exclude %{python_lib}/distutils/command/wininst-*.exe
426%{python_lib}/email
427%{python_lib}/encodings
428%{python_lib}/hotshot
429%{python_lib}/idlelib
430%{python_lib}/importlib
431%{python_lib}/json
432%{python_lib}/lib2to3
433%{python_lib}/logging
434%{python_lib}/multiprocessing
435%{python_lib}/plat-linux2
436%{python_lib}/pydoc_data
437%{python_lib}/sqlite3
438%{python_lib}/unittest
439%{python_lib}/wsgiref
440%{python_lib}/wsgiref.egg-info
441%{python_lib}/xml
442
443%dir %{python_lib}/config
444%{python_lib}/config/Makefile
445%dir %{_includedir}/python%{pybasever}
446%{_includedir}/python%{pybasever}/pyconfig.h
447%if %{_lib} == lib64
448%dir %{_prefix}/lib/python%{pybasever}
449%dir %{_prefix}/lib/python%{pybasever}/site-packages
450%endif
451
452%files devel
453%defattr(-,root,root)
454%{_bindir}/python-config
455%{_bindir}/python%{pybasever}-config
456%{_includedir}/python%{pybasever}/*
457%exclude %{_includedir}/python%{pybasever}/pyconfig.h
458%{_libdir}/libpython%{pybasever}.so
459%{_libdir}/pkgconfig/python-%{pybasever}.pc
460%{_libdir}/pkgconfig/python.pc
461%{python_lib}/config
462%exclude %{python_lib}/config/Makefile
463%{python_lib}/distutils/command/wininst-*.exe
464%{python_lib}/test
465
466%files tools
467%defattr(-,root,root,755)
468%{python_lib}/site-packages
469%{_bindir}/idle
470%{_bindir}/2to3
471%{_bindir}/modulator
472%{_bindir}/msgfmt.py
473%{_bindir}/pydoc
474%{_bindir}/pygettext.py
475%{_bindir}/pynche
476%{_bindir}/smtpd.py
477
478%files docs
479%defattr(-,root,root,755)
480%doc Misc/NEWS Misc/README Misc/cheatsheet Misc/HISTORY
481%doc Doc/html
482%doc Doc.ja/html
483
484%files -n tkinter
485%defattr(-,root,root,755)
486%{python_lib}/lib-tk
487%{python_lib}/lib-dynload/_tkinter.so
488
489
490%changelog
491* Sat Feb 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.2-4
492- tkinter obsoletes python27-tkinter < 2.7.2
493- python-* obsoletes python-* < 2.7.2
494
495* Wed Feb 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.7.2-3
496- add configure option (--with-system-expat)
497
498* Wed Feb 22 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.2-2
499- add BR: sqlite3-devel
500- add BR: libX11-devel instead of xorg-x11-devel
501- remove unneeded BRs
502
503* Wed Feb 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.7.2-1
504- new upstream release
505- merge spec file with python27
506  * Sun Apr 03 2011 Shu KONNO <owa@bg.wakwak.com> 2.7.1-1
507  - initial python27 package which splited from pyhton-2.6.5-3
508  - updated python to 2.7.1
509  - updated python-2.7*-Setup.dist.patch
510  - dorpt Patch28: python-2.6.5-fix-expat-issue9054.patch
511  - dropt Patch50: Python-2.7-CVE-2010-3493.diff
512  - dropt Patch51: Python-2.7-CVE-2010-3492.diff
513  - added Path20-Patch40 from fedora-14
514  - added Path5.x from mandriva
515  - split python-2.7-lib64.patch to below
516    python-2.7-lib64-Makefile.patch
517    python-2.7-lib64-setup.patch
518    python-2.7-lib64-getpath.patch
519    python-2.7-lib64-site.patch
520    python-2.7-lib64-install.patch
521    python-2.7-lib64-sysconfig.patch
522    python-2.7-lib64-test_install.patch
523  - added python-2.7-lib64-test_site.patch
524
525- add Source2 (python-doc-2.7ja1-html.zip)
526- add Patch41 (00145-force-sys-platform-to-be-linux2.patch) from fedora
527
528* Sun Apr 17 2011 IWAI, Masaharu <iwai@alib.jp> 2.6.6-4
529- add Obsoletes: pysqlite <= 2.6.1-1vl6 (<BTS:VineLinux:1121>)
530- add Provides: pysqlite (<BTS:VineLinux:1121>)
531
532* Tue Feb 22 2011 Shu KONNO <owa@bg.wakwak.com> 2.6.6-3
533- rebuild with tix-8.4.3, file-5.05-2
534
535* Tue Jan 11 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.6-2
536- rebuild with openssl-1.0.0c
537
538* Wed Aug 25 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.6-1
539- updated python to 2.6.6
540- updated python-docs to 2.6.6
541- updated python-2.6.?-lib64.patch
542
543* Tue Jun 29 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.5-4
544- rebuilt with tcl/tk-8.4.19-2
545
546* Mon Mar 22 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.5-3
547- fixed missing of python-docs files
548- dropt '--with doc' option
549- dropt BR: latex2html
550- replaced descriptions (from Misc/RPM/python-2.6.spec in tar-ball)
551
552* Sun Mar 21 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.5-2
553- replaced Patch0: python-2.6.?-Setup.dist.patch
554- replaced Patch1: python-2.6.?-lib64.patch
555- added python-2.6.5-docs-html.tar.bz2
556- dropt Python-2.6.4-Doc.78718.tgz
557
558* Sat Mar 20 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.5-1
559- updated python to 2.6.5
560- updated Patch0: Python-2.6.4-Setup.dist.patch
561- added macro bsddb_ver
562- added Patch11: python-support_bdb-4.8-v2.patch (instead of Patch10: python-2.6-db48.patch)
563
564* Sat Mar 06 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.4-5
565- added Python-2.6.4-Doc.78718.tgz (documents from http://svn.python.org/projects)
566- changed default to '--with doc' again
567
568* Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.4-4
569- rebuilt with gcc-4.4.3-3 on ppc
570- s/BuildPreReq/BuildRequires/
571
572* Thu Feb 04 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.4-3
573- replaced Python-%%{version}-Setup.dist.patch
574- added BR: sqlite3-devel
575
576* Tue Feb 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.4-2
577- add Patch10 to build with db-4.8
578
579* Mon Feb 01 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.4-1
580- updated python to 2.6.4
581- changed default to '--without doc'
582- added Setup.dist.patch instead of Setup.dist{32,64}.patch
583- updated python-*-lib64.patch to 2.6.3
584
585* Mon Feb 01 2010 Shu KONNO <owa@bg.wakwak.com> 2.5.5-1
586- updated python to 2.5.5
587
588* Wed May 06 2009 Shu KONNO <owa@bg.wakwak.com> 2.5.4-4vl5
589- added Python-2.5.4-{Setup,Setup64}.patch
590  - added _bsddb module
591  - dropt patch{0,9,10}
592
593* Sun May  3 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.5.4-3vl5
594- updated Patch0 for building with db-4.6.21
595
596* Thu Feb 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.4-2vl5
597- add patch10
598  - add -lcrypt for cryptmodule
599
600* Wed Dec 24 2008 Shu KONNO <owa@bg.wakwak.com> 2.5.4-1vl5
601- new upstream release
602- changed typo of summary(ja)
603
604* Sat Dec 20 2008 Shu KONNO <owa@bg.wakwak.com> 2.5.3-1vl5
605- new upstream release
606- dropt python-2.4.4_CVE-2007-4965.patch
607- dropt python-2.4.4_CVE-2008-1721.patch
608- dropt python-2.4.4-CVE-2008-1679.patch
609
610* Fri Jul 18 2008 Shu KONNO <owa@bg.wakwak.com> 2.5.2-1vl5
611- updated python to 2.5.2
612- added python-2.5.2-config.patch instead of python-2.5c1-config.patch
613- added python-2.5.2-config64.patch instead of python-2.4.3-config.lib64.patch
614- added python-2.5.2-lib64.patch instead of python-2.4.2-lib64.patch
615- added modules ctypes, sqlite3, and wsgiref
616- dropt modules lib-old
617- dropt python-2.4.4_CVE-2008-1887.patch
618- dropt python-2.4.4_CVE-2007-2052.patch
619- fixed the file permissions
620
621* Sun Jun 08 2008 Shu KONNO <owa@bg.wakwak.com> 2.4.5-1vl5
622- applied new versioning policy and spec in utf-8
623- added BuildPrereq: xorg-x11-devel
624- imported updates from Vine4.2
625        * Fri Apr 25 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.4-1.4vl4
626        - add patch120 for fix CVE-2008-1679 (added fix of CVE-2007-4965)
627        - add patch130 for fix CVE-2008-1887 (PyString_FromStringAndSize)
628        - add patch140 for fix CVE-2007-2052 (_localemodule.c off-by-one err)
629        * Mon Apr 21 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.4-1.3vl4
630        - add patch110 CVE-2008-1721 (zlib module)
631        - add remove unneeded files in Lib/test/
632        #- new versioning policy
633
634* Wed Mar 12 2008 Shu KONNO <owa@bg.wakwak.com> 2.4.5-0vl1
635- updated python to 2.4.5
636
637* Wed Feb 20 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.4-0vl7
638- rebuild with expat-2.0.1
639
640* Mon Feb 18 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.4.4-0vl6
641- fix typo on Patch0 (s/db-4.2/db-4.3/)
642
643* Sun Feb 17 2008 Shu KONNO <owa@bg.wakwak.com> 2.4.4-0vl5
644- rebuild with tcl/tk-8.4.18
645
646* Sat Dec 01 2007 Shu KONNO <owa@bg.wakwak.com> 2.4.4-0vl4
647- imported updates from Vine4.2 Plus
648        * Thu Nov 01 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.4-0vl1.2
649        - add BuildPrereq: nkf
650        * Wed Oct 31 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.4-0vl1.1
651        - add patch100 for fix CVE-2007-4965 (imageop Module integer OF)
652
653* Sat Jun 16 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.4-0vl3
654- rebuilt with openssl-0.9.8e and tix-8.4.2
655- fixed spec file encoding
656
657* Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.4.4-0vl2
658- rebuilt with new toolchain and db4-4.3.x
659- modified Patch0 (s/db-4.2/db-4.3/)
660
661* Thu Oct 19 2006 Shu KONNO <owa@bg.wakwak.com> 2.4.4-0vl1
662- updated python to 2.4.4 (included security fix PSF-2006-001)
663- added japanese summary
664- updated patch8 (python-2.4.2-lib64.patch)
665- added patch9 (python-2.4.4c1-setup.lib64.patch)
666
667* Wed Sep 13 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.4.3-0vl4
668- change docs Group to Applications/Documentation. <BTS:VineLinux:163>
669
670* Fri Aug 18 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.4.3-0vl3
671- rebuild with readline-5.1 (x86_64)
672
673* Fri Apr 14 2006 Shu KONNO <owa@bg.wakwak.com> 2.4.3-0vl2
674- fixed python-2.4.3-config.patch cause undefined symbol: crypt
675
676* Thu Mar 30 2006 Shu KONNO <owa@bg.wakwak.com> 2.4.3-0vl1
677- updated python to 2.4.3
678- added python-2.4.3-config.patch instead of python-2.4.1c1-config.patch
679
680* Wed Feb 15 2006 Shu KONNO <owa@bg.wakwak.com> 2.4.2-0vl5
681- set permition of lib-dynload/*.so to 755
682- added without_doc option
683- rebuilt with x86_64
684
685* Thu Nov 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.2-0vl4
686- add run_test option
687
688* Fri Nov  4 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.2-0vl3.2
689- add BuildPrereq: bzip2-devel
690- arrange testing script
691
692* Wed Nov 02 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.2-0vl3.1
693- back to %%configure macro
694- change testing script
695
696* Mon Oct 31 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.2-0vl3
697- update Patch8 (VineSeed:10306)
698- use ./configure instead of %%configure script
699- add forgotten popd
700
701* Fri Oct 28 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.2-0vl2
702- add --enable-shared to confiugre option
703- add %%{_libdir}/libpython2.4.so* to python package
704- add LD_LIBRARY_PATH=$topdir to use pathfix.py
705- change build method of Doc
706- add files for make test
707- change install method
708
709* Wed Sep 28 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.2-0vl1
710- update python to 2.4.2 (final)
711
712* Wed Mar 30 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.1-0vl1
713- update python to 2.4.1 (final)
714
715* Sat Mar 19 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.1-0vl0.c2
716- update python to 2.4.1c2
717- moved all site-packages files to python-tools package
718
719* Sat Mar 12 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.1-0vl0.c1
720- update python to 2.4.1c1
721- droped aspython2 macros
722- droped japanese-codecs module
723- droped Source2 idle, now it's provided from original source
724- droped Source3 modulator, now it's generated in a spec file
725- droped Source4 pynche, now it's generated in a spec file
726- droped Python-2.3.3-buildroot-bytecode.patch
727- changed python-2.3.3-config2.patch to python-2.4.1c1-config.patch
728
729* Wed Feb 09 2005 Shu KONNO <owa@bg.wakwak.com> 2.3.5-0vl1
730- update python to 2.3.5
731
732* Fri Feb 04 2005 Shu KONNO <owa@bg.wakwak.com> 2.3.4-0vl6
733- add PSF-2005-001.patch
734
735* Wed Nov 17 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.4-0vl4
736- rebuilt
737
738* Wed Oct 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.3.4-0vl3
739- modified Patch0 and Patch8 (-ldb-4.0 -> -ldb-4.2)
740
741* Wed Oct 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.3.4-0vl2
742- rebuilt with db4-4.2.25
743
744* Thu May 27 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.4-0vl1
745- updated python to 2.3.4
746- fixed patch10, patch11
747
748* Sat Apr 17 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.3-0vl1
749- rebuild
750
751* Thu Apr 08 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.3-0vl0.3
752- updated python-2.3.3-config2.patch
753
754* Thu Apr 08 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.3-0vl0.2
755- added librarys 'logging, bsddb, idlelib' to /usr/lib/python2.3
756
757* Wed Apr 07 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.3-0vl0.1
758- updated python to 2.3.3
759- changed version code 2.2.3 to 2.3.3 in source{2,3,4}
760- updated config2.patch for 2.3.3
761- updated nowhatsnew.patch for 2.3.3
762- updated distutilrpm.patch in which tabstops have made indent error
763- updated buildroot-bytecode.patch for 2.3.3
764- deleted buildroot.patch which fixed in 2.3.3
765- changed Tools/idle with Lib/idlelib
766
767* Wed Mar 31 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.2.3-3vl3
768- rebuild with openssl-0.9.7d
769
770* Wed Mar 03 2004 Shu KONNO <owa@bg.wakwak.com> 2.2.3-3vl2
771- updated JapaneseCodecs to 1.4.10
772
773* Wed Jul 09 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 2.2.3-3vl1
774- synced with RawHide 2.2.3-3 (substantially source ver up)
775
776* Mon Mar 31 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 2.2.2-26vl1
777- rebuild with tcltk-8.4.2
778- synced with RawHide 2.2.2-26
779  * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
780  - rebuilt
781
782  * Mon Feb 24 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-25
783  - Fixed bug #84886: pydoc dies when run w/o arguments
784  - Fixed bug #84205: add python shm module back (used to be shipped with 1.5.2)
785  - Fixed bug #84966: path in byte-compiled code still wrong
786
787  * Thu Feb 20 2003 Jeremy Katz <katzj@redhat.com> 2.2.2-23
788  - ftp uri's should be able to specify being rooted at the root instead of
789    where you login via ftp (#84692)
790
791  * Mon Feb 10 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-22
792  - Using newer Japanese codecs (1.4.9). Thanks to
793    Peter Bowen <pzb@datastacks.com> for pointing this out.
794
795  * Thu Feb  6 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-21
796  - Rebuild
797
798  * Wed Feb  5 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-20
799  - Release number bumped really high: turning on UCS4 (ABI compatibility
800    breakage)
801
802  * Fri Jan 31 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-13
803  - Attempt to look both in /usr/lib64 and /usr/lib/python2.2/site-packages/:
804    some work on python-2.2.2-lib64.patch
805
806  * Thu Jan 30 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-12
807  - Rebuild to incorporate the removal of .lib64 and - files.
808
809  * Thu Jan 30 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-11.7.3
810  - Fixed bug #82544: Errata removes most tools
811  - Fixed bug #82435: Python 2.2.2 errata breaks redhat-config-users
812  - Removed .lib64 and - files that get installed after we fix the multilib
813    .py files.
814
815  * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
816  - rebuilt
817
818  * Wed Jan 15 2003 Jens Petersen <petersen@redhat.com> 2.2.2-10
819  - rebuild to update tkinter's tcltk deps
820  - convert changelog to utf-8
821
822
823* Wed Jan 15 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.2.2-9vl0
824- rebuilt for Vine Linux against db4
825- obsolete python-base (which comes with python-2.2.1 of TestPkg)
826
827* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.2-9
828- rebuild
829
830* Fri Jan  3 2003 Nalin Dahyabhai <nalin@redhat.com>
831- pick up OpenSSL cflags and ldflags from pkgconfig if available
832
833* Thu Jan  2 2003 Jeremy Katz <katzj@redhat.com> 2.2.2-8
834- urllib2 didn't support non-anonymous ftp.  add support based on how
835  urllib did it (#80676, #78168)
836
837* Mon Dec 16 2002 Mihai Ibanescu <misa@redhat.com> 2.2.2-7
838- Fix bug #79647 (Rebuild of SRPM fails if python isn't installed)
839- Added a bunch of missing BuildRequires found while fixing the
840  above-mentioned bug
841
842* Tue Dec 10 2002 Tim Powers <timp@redhat.com> 2.2.2-6
843- rebuild to fix broken tcltk deps for tkinter
844
845* Fri Nov 22 2002 Mihai Ibanescu <misa@redhat.com>
8462.2.2-3.7.3
847- Recompiled for 7.3 (to fix the -lcrypt bug)
848- Fix for the spurious error message at the end of the build (build-requires
849  gets confused by executable files starting with """"): make the tests
850  non-executable.
851
852* Wed Nov 20 2002 Mihai Ibanescu <misa@redhat.com>
8532.2.2-5
854- Fixed configuration patch to add -lcrypt when compiling cryptmodule.c
855
8562.2.2-4
857- Spec file change from Matt Wilson <msw@redhat.com> to disable linking
858  with the C++ compiler.
859
860* Mon Nov 11 2002 Mihai Ibanescu <misa@redhat.com>
8612.2.2-3.*
862- Merged patch from Karsten Hopp <karsten@redhat.de> from 2.2.1-17hammer to
863  use %%{_libdir}
864- Added XFree86-libs as BuildRequires (because of tkinter)
865- Fixed duplicate listing of plat-linux2
866- Fixed exclusion of lib-dynload/japanese
867- Added lib64 patch for the japanese codecs
868- Use setup magic instead of using tar directly on JapaneseCodecs
869
870* Tue Nov  5 2002 Mihai Ibanescu <misa@redhat.com>
8712.2.2-2
872- Fix #76912 (python-tools contains idle, which uses tkinter, but there is no
873  requirement of tkinter from python-tools).
874- Fix #74013 (rpm is missing the /usr/lib/python2.2/test directory)
875
876* Mon Nov  4 2002 Mihai Ibanescu <misa@redhat.com>
877- builds as python2 require a different libdb
878- changed the buildroot name of python to match python2 builds
879
880* Fri Nov  1 2002 Mihai Ibanescu <misa@redhat.com>
881- updated python to 2.2.2 and adjusted the patches accordingly
882
883* Mon Oct 21 2002 Mihai Ibanescu <misa@redhat.com>
884- Fix #53930 (Python-2.2.1-buildroot-bytecode.patch)
885- Added BuildPrereq dependency on gcc-c++
886
887* Fri Aug 30 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-17
888- security fix for _execvpe
889
890* Tue Aug 13 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-16
891- Fix  #71011,#71134, #58157
892
893* Wed Aug  7 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-15
894- Resurrect tkinter
895- Fix for distutils (#67671)
896- Fix #69962
897
898* Thu Jul 25 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-14
899- Obsolete tkinter/tkinter2 (#69838)
900
901* Tue Jul 23 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-13
902- Doc fixes (#53951) - not on alpha at the momemt
903
904* Mon Jul  8 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-12
905- fix pydoc (#68082)
906
907* Mon Jul  8 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-11
908- Add db4-devel as a BuildPrereq
909
910* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.2.1-10
911- automated rebuild
912
913* Mon Jun 17 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-9
914- Add Japanese codecs (#66352)
915
916* Tue Jun 11 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-8
917- No more tkinter...
918
919* Wed May 29 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-7
920- Rebuild
921
922* Tue May 21 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-6
923- Add the email subcomponent (#65301)
924
925* Fri May 10 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-5
926- Rebuild
927
928* Thu May 02 2002 Than Ngo <than@redhat.com> 2.2.1-4
929- rebuild i new enviroment
930
931* Tue Apr 23 2002 Trond Eivind Glomsroed <teg@redhat.com>
932- Use ucs2, not ucs4, to avoid breaking tkinter (#63965)
933
934* Mon Apr 22 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-2
935- Make it use db4
936
937* Fri Apr 12 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-1
938- 2.2.1 - a bugfix-only release
939
940* Fri Apr 12 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-16
941- the same, but in builddirs - this will remove them from the
942  docs package, which doesn't look in the buildroot for files.
943
944* Fri Apr 12 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-15
945- Get rid of temporary files and .cvsignores included
946  in the tarball and make install
947
948* Fri Apr  5 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-14
949- Don't own lib-tk in main package, only in tkinter (#62753)
950
951* Mon Mar 25 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-13
952- rebuild
953
954* Mon Mar 25 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-12
955- rebuild
956
957* Fri Mar  1 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-11
958- Add a not to the Distutils obsoletes test (doh!)
959
960* Fri Mar  1 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-10
961- Rebuild
962
963* Mon Feb 25 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-9
964- Only obsolete Distutils when built as python
965
966* Thu Feb 21 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-8
967- Make files in /usr/bin install side by side with python 1.5 when
968- Drop explicit requirement of db4
969  built as python2
970
971* Thu Jan 31 2002 Elliot Lee <sopwith@redhat.com> 2.2-7
972- Use version and pybasever macros to make updating easy
973- Use _smp_mflags macro
974
975* Tue Jan 29 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-6
976- Add db4-devel to BuildPrereq
977
978* Fri Jan 25 2002 Nalin Dahyabhai <nalin@redhat.com> 2.2-5
979- disable ndbm support, which is db2 in disguise (really interesting things
980  can happen when you mix db2 and db4 in a single application)
981
982* Thu Jan 24 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-4
983- Obsolete subpackages if necesarry
984- provide versioned python2
985- build with db4
986
987* Wed Jan 16 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-3
988- Alpha toolchain broken. Disable build on alpha.
989- New openssl
990
991* Wed Dec 26 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-1
992- 2.2 final
993
994* Fri Dec 14 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.11c1
995- 2.2 RC 1
996- Don't include the _tkinter module in the main package - it's
997  already in the tkiter packace
998- Turn off the mpzmodule, something broke in the buildroot
999
1000* Wed Nov 28 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.10b2
1001- Use -fPIC for OPT as well, in lack of a proper libpython.so
1002
1003* Mon Nov 26 2001 Matt Wilson <msw@redhat.com> 2.2-0.9b2
1004- changed DESTDIR to point to / so that distutils will install dynload
1005  modules properly in the installroot
1006
1007* Fri Nov 16 2001 Matt Wilson <msw@redhat.com> 2.2-0.8b2
1008- 2.2b2
1009
1010* Fri Oct 26 2001 Matt Wilson <msw@redhat.com> 2.2-0.7b1
1011- python2ify
1012
1013* Fri Oct 19 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.5b1
1014- 2.2b1
1015
1016* Sun Sep 30 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.4a4
1017- 2.2a4
1018- Enable UCS4 support
1019- Enable IPv6
1020- Provide distutils
1021- Include msgfmt.py and pygettext.py
1022
1023* Fri Sep 14 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.3a3
1024- Obsolete Distutils, which is now part of the main package
1025- Obsolete python2
1026
1027* Thu Sep 13 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.2a3
1028- Add docs, tools and tkinter subpackages, to match the 1.5 layout
1029
1030* Wed Sep 12 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.1a3
1031- 2.2a3
1032- don't build tix and blt extensions
1033
1034* Mon Aug 13 2001 Trond Eivind Glomsroed <teg@redhat.com>
1035- Add tk and tix to build dependencies
1036
1037* Sat Jul 21 2001 Trond Eivind Glomsroed <teg@redhat.com>
1038- 2.1.1 bugfix release - with a GPL compatible license
1039
1040* Fri Jul 20 2001 Trond Eivind Glomsroed <teg@redhat.com>
1041- Add new build dependencies (#49753)
1042
1043* Tue Jun 26 2001 Nalin Dahyabhai <nalin@redhat.com>
1044- build with -fPIC
1045
1046* Fri Jun  1 2001 Trond Eivind Glomsroed <teg@redhat.com>
1047- 2.1
1048- reorganization of file includes
1049
1050* Wed Dec 20 2000 Trond Eivind Glomsroed <teg@redhat.com>
1051- fix the "requires" clause, it lacked a space causing problems
1052- use %%{_tmppath}
1053- don't define name, version etc
1054- add the available patches from the Python home page
1055
1056* Fri Dec 15 2000 Matt Wilson <msw@redhat.com>
1057- added devel subpackage
1058
1059* Fri Dec 15 2000 Matt Wilson <msw@redhat.com>
1060- modify all files to use "python2.0" as the intrepter
1061- don't build the Expat bindings
1062- build against db1
1063
1064* Mon Oct 16 2000 Jeremy Hylton <jeremy@beopen.com>
1065- updated for 2.0 final
1066
1067* Mon Oct  9 2000 Jeremy Hylton <jeremy@beopen.com>
1068- updated for 2.0c1
1069- build audioop, imageop, and rgbimg extension modules
1070- include xml.parsers subpackage
1071- add test.xml.out to files list
1072
1073* Thu Oct  5 2000 Jeremy Hylton <jeremy@beopen.com>
1074- added bin/python2.0 to files list (suggested by Martin v. Loewis)
1075
1076* Tue Sep 26 2000 Jeremy Hylton <jeremy@beopen.com>
1077- updated for release 1 of 2.0b2
1078- use .bz2 version of Python source
1079
1080* Tue Sep 12 2000 Jeremy Hylton <jeremy@beopen.com>
1081- Version 2 of 2.0b1
1082- Make the package relocatable.  Thanks to Suchandra Thapa.
1083- Exclude Tkinter from main RPM.  If it is in a separate RPM, it is
1084  easier to track Tk releases.
Note: See TracBrowser for help on using the repository browser.