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

Revision 7763, 36.2 KB checked in by kudoh, 11 years ago (diff)

--force-log

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