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

Revision 5732, 34.9 KB checked in by daisuke, 12 years ago (diff)

python:

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