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

Revision 6011, 35.3 KB checked in by Takemikaduchi, 12 years ago (diff)

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