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

Revision 5738, 35.1 KB checked in by Takemikaduchi, 12 years ago (diff)

python: add configure option
others: new upstream release

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