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

Revision 5701, 34.7 KB checked in by Takemikaduchi, 12 years ago (diff)

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