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

Revision 7296, 35.3 KB checked in by iwaim, 11 years ago (diff)

python 2.7.3-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.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}.3
15Release: 2%{?_dist_release}
16License: PSF
17Group: Development/Languages
18URL: http://www.python.org/%{pybasever}/
19Source0: http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.bz2
20Source1: http://docs.python.org/archives/python-%{version}-docs-html.tar.bz2
21Source2: http://python-doc-ja.googlecode.com/files/python-doc-%{pybasever}ja1-html.zip
22Source6: shmmodule.c
23Patch0: python-2.7.1-Setup.dist.patch
24Patch3: python-2.2.1-pydocnogui.patch
25Patch4: python-2.3.3-distutilrpm.patch
26Patch10: python-2.6-db48.patch
27Patch11: http://bugs.python.org/file16549/python-support_bdb-4.8-v2.patch
28
29## from fedora
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* Sun Jan  6 2013 IWAI, Masaharu <iwai@alib.jp> 2.7.3-2
489- build with Tcl/Tk 8.5.7-1
490
491* Thu Apr 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.7.3-1
492- new upstream release
493- remove Patch20,32,41
494
495* Sat Feb 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.2-4
496- tkinter obsoletes python27-tkinter < 2.7.2
497- python-* obsoletes python-* < 2.7.2
498
499* Wed Feb 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.7.2-3
500- add configure option (--with-system-expat)
501
502* Wed Feb 22 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.2-2
503- add BR: sqlite3-devel
504- add BR: libX11-devel instead of xorg-x11-devel
505- remove unneeded BRs
506
507* Wed Feb 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.7.2-1
508- new upstream release
509- merge spec file with python27
510  * Sun Apr 03 2011 Shu KONNO <owa@bg.wakwak.com> 2.7.1-1
511  - initial python27 package which splited from pyhton-2.6.5-3
512  - updated python to 2.7.1
513  - updated python-2.7*-Setup.dist.patch
514  - dorpt Patch28: python-2.6.5-fix-expat-issue9054.patch
515  - dropt Patch50: Python-2.7-CVE-2010-3493.diff
516  - dropt Patch51: Python-2.7-CVE-2010-3492.diff
517  - added Path20-Patch40 from fedora-14
518  - added Path5.x from mandriva
519  - split python-2.7-lib64.patch to below
520    python-2.7-lib64-Makefile.patch
521    python-2.7-lib64-setup.patch
522    python-2.7-lib64-getpath.patch
523    python-2.7-lib64-site.patch
524    python-2.7-lib64-install.patch
525    python-2.7-lib64-sysconfig.patch
526    python-2.7-lib64-test_install.patch
527  - added python-2.7-lib64-test_site.patch
528
529- add Source2 (python-doc-2.7ja1-html.zip)
530- add Patch41 (00145-force-sys-platform-to-be-linux2.patch) from fedora
531
532* Sun Apr 17 2011 IWAI, Masaharu <iwai@alib.jp> 2.6.6-4
533- add Obsoletes: pysqlite <= 2.6.1-1vl6 (<BTS:VineLinux:1121>)
534- add Provides: pysqlite (<BTS:VineLinux:1121>)
535
536* Tue Feb 22 2011 Shu KONNO <owa@bg.wakwak.com> 2.6.6-3
537- rebuild with tix-8.4.3, file-5.05-2
538
539* Tue Jan 11 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.6-2
540- rebuild with openssl-1.0.0c
541
542* Wed Aug 25 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.6-1
543- updated python to 2.6.6
544- updated python-docs to 2.6.6
545- updated python-2.6.?-lib64.patch
546
547* Tue Jun 29 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.5-4
548- rebuilt with tcl/tk-8.4.19-2
549
550* Mon Mar 22 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.5-3
551- fixed missing of python-docs files
552- dropt '--with doc' option
553- dropt BR: latex2html
554- replaced descriptions (from Misc/RPM/python-2.6.spec in tar-ball)
555
556* Sun Mar 21 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.5-2
557- replaced Patch0: python-2.6.?-Setup.dist.patch
558- replaced Patch1: python-2.6.?-lib64.patch
559- added python-2.6.5-docs-html.tar.bz2
560- dropt Python-2.6.4-Doc.78718.tgz
561
562* Sat Mar 20 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.5-1
563- updated python to 2.6.5
564- updated Patch0: Python-2.6.4-Setup.dist.patch
565- added macro bsddb_ver
566- added Patch11: python-support_bdb-4.8-v2.patch (instead of Patch10: python-2.6-db48.patch)
567
568* Sat Mar 06 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.4-5
569- added Python-2.6.4-Doc.78718.tgz (documents from http://svn.python.org/projects)
570- changed default to '--with doc' again
571
572* Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.4-4
573- rebuilt with gcc-4.4.3-3 on ppc
574- s/BuildPreReq/BuildRequires/
575
576* Thu Feb 04 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.4-3
577- replaced Python-%%{version}-Setup.dist.patch
578- added BR: sqlite3-devel
579
580* Tue Feb 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.4-2
581- add Patch10 to build with db-4.8
582
583* Mon Feb 01 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.4-1
584- updated python to 2.6.4
585- changed default to '--without doc'
586- added Setup.dist.patch instead of Setup.dist{32,64}.patch
587- updated python-*-lib64.patch to 2.6.3
588
589* Mon Feb 01 2010 Shu KONNO <owa@bg.wakwak.com> 2.5.5-1
590- updated python to 2.5.5
591
592* Wed May 06 2009 Shu KONNO <owa@bg.wakwak.com> 2.5.4-4vl5
593- added Python-2.5.4-{Setup,Setup64}.patch
594  - added _bsddb module
595  - dropt patch{0,9,10}
596
597* Sun May  3 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.5.4-3vl5
598- updated Patch0 for building with db-4.6.21
599
600* Thu Feb 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.4-2vl5
601- add patch10
602  - add -lcrypt for cryptmodule
603
604* Wed Dec 24 2008 Shu KONNO <owa@bg.wakwak.com> 2.5.4-1vl5
605- new upstream release
606- changed typo of summary(ja)
607
608* Sat Dec 20 2008 Shu KONNO <owa@bg.wakwak.com> 2.5.3-1vl5
609- new upstream release
610- dropt python-2.4.4_CVE-2007-4965.patch
611- dropt python-2.4.4_CVE-2008-1721.patch
612- dropt python-2.4.4-CVE-2008-1679.patch
613
614* Fri Jul 18 2008 Shu KONNO <owa@bg.wakwak.com> 2.5.2-1vl5
615- updated python to 2.5.2
616- added python-2.5.2-config.patch instead of python-2.5c1-config.patch
617- added python-2.5.2-config64.patch instead of python-2.4.3-config.lib64.patch
618- added python-2.5.2-lib64.patch instead of python-2.4.2-lib64.patch
619- added modules ctypes, sqlite3, and wsgiref
620- dropt modules lib-old
621- dropt python-2.4.4_CVE-2008-1887.patch
622- dropt python-2.4.4_CVE-2007-2052.patch
623- fixed the file permissions
624
625* Sun Jun 08 2008 Shu KONNO <owa@bg.wakwak.com> 2.4.5-1vl5
626- applied new versioning policy and spec in utf-8
627- added BuildPrereq: xorg-x11-devel
628- imported updates from Vine4.2
629        * Fri Apr 25 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.4-1.4vl4
630        - add patch120 for fix CVE-2008-1679 (added fix of CVE-2007-4965)
631        - add patch130 for fix CVE-2008-1887 (PyString_FromStringAndSize)
632        - add patch140 for fix CVE-2007-2052 (_localemodule.c off-by-one err)
633        * Mon Apr 21 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.4-1.3vl4
634        - add patch110 CVE-2008-1721 (zlib module)
635        - add remove unneeded files in Lib/test/
636        #- new versioning policy
637
638* Wed Mar 12 2008 Shu KONNO <owa@bg.wakwak.com> 2.4.5-0vl1
639- updated python to 2.4.5
640
641* Wed Feb 20 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.4-0vl7
642- rebuild with expat-2.0.1
643
644* Mon Feb 18 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.4.4-0vl6
645- fix typo on Patch0 (s/db-4.2/db-4.3/)
646
647* Sun Feb 17 2008 Shu KONNO <owa@bg.wakwak.com> 2.4.4-0vl5
648- rebuild with tcl/tk-8.4.18
649
650* Sat Dec 01 2007 Shu KONNO <owa@bg.wakwak.com> 2.4.4-0vl4
651- imported updates from Vine4.2 Plus
652        * Thu Nov 01 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.4-0vl1.2
653        - add BuildPrereq: nkf
654        * Wed Oct 31 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.4-0vl1.1
655        - add patch100 for fix CVE-2007-4965 (imageop Module integer OF)
656
657* Sat Jun 16 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.4-0vl3
658- rebuilt with openssl-0.9.8e and tix-8.4.2
659- fixed spec file encoding
660
661* Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.4.4-0vl2
662- rebuilt with new toolchain and db4-4.3.x
663- modified Patch0 (s/db-4.2/db-4.3/)
664
665* Thu Oct 19 2006 Shu KONNO <owa@bg.wakwak.com> 2.4.4-0vl1
666- updated python to 2.4.4 (included security fix PSF-2006-001)
667- added japanese summary
668- updated patch8 (python-2.4.2-lib64.patch)
669- added patch9 (python-2.4.4c1-setup.lib64.patch)
670
671* Wed Sep 13 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.4.3-0vl4
672- change docs Group to Applications/Documentation. <BTS:VineLinux:163>
673
674* Fri Aug 18 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.4.3-0vl3
675- rebuild with readline-5.1 (x86_64)
676
677* Fri Apr 14 2006 Shu KONNO <owa@bg.wakwak.com> 2.4.3-0vl2
678- fixed python-2.4.3-config.patch cause undefined symbol: crypt
679
680* Thu Mar 30 2006 Shu KONNO <owa@bg.wakwak.com> 2.4.3-0vl1
681- updated python to 2.4.3
682- added python-2.4.3-config.patch instead of python-2.4.1c1-config.patch
683
684* Wed Feb 15 2006 Shu KONNO <owa@bg.wakwak.com> 2.4.2-0vl5
685- set permition of lib-dynload/*.so to 755
686- added without_doc option
687- rebuilt with x86_64
688
689* Thu Nov 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.2-0vl4
690- add run_test option
691
692* Fri Nov  4 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.2-0vl3.2
693- add BuildPrereq: bzip2-devel
694- arrange testing script
695
696* Wed Nov 02 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.2-0vl3.1
697- back to %%configure macro
698- change testing script
699
700* Mon Oct 31 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.2-0vl3
701- update Patch8 (VineSeed:10306)
702- use ./configure instead of %%configure script
703- add forgotten popd
704
705* Fri Oct 28 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.4.2-0vl2
706- add --enable-shared to confiugre option
707- add %%{_libdir}/libpython2.4.so* to python package
708- add LD_LIBRARY_PATH=$topdir to use pathfix.py
709- change build method of Doc
710- add files for make test
711- change install method
712
713* Wed Sep 28 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.2-0vl1
714- update python to 2.4.2 (final)
715
716* Wed Mar 30 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.1-0vl1
717- update python to 2.4.1 (final)
718
719* Sat Mar 19 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.1-0vl0.c2
720- update python to 2.4.1c2
721- moved all site-packages files to python-tools package
722
723* Sat Mar 12 2005 Shu KONNO <owa@bg.wakwak.com> 2.4.1-0vl0.c1
724- update python to 2.4.1c1
725- droped aspython2 macros
726- droped japanese-codecs module
727- droped Source2 idle, now it's provided from original source
728- droped Source3 modulator, now it's generated in a spec file
729- droped Source4 pynche, now it's generated in a spec file
730- droped Python-2.3.3-buildroot-bytecode.patch
731- changed python-2.3.3-config2.patch to python-2.4.1c1-config.patch
732
733* Wed Feb 09 2005 Shu KONNO <owa@bg.wakwak.com> 2.3.5-0vl1
734- update python to 2.3.5
735
736* Fri Feb 04 2005 Shu KONNO <owa@bg.wakwak.com> 2.3.4-0vl6
737- add PSF-2005-001.patch
738
739* Wed Nov 17 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.4-0vl4
740- rebuilt
741
742* Wed Oct 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.3.4-0vl3
743- modified Patch0 and Patch8 (-ldb-4.0 -> -ldb-4.2)
744
745* Wed Oct 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.3.4-0vl2
746- rebuilt with db4-4.2.25
747
748* Thu May 27 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.4-0vl1
749- updated python to 2.3.4
750- fixed patch10, patch11
751
752* Sat Apr 17 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.3-0vl1
753- rebuild
754
755* Thu Apr 08 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.3-0vl0.3
756- updated python-2.3.3-config2.patch
757
758* Thu Apr 08 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.3-0vl0.2
759- added librarys 'logging, bsddb, idlelib' to /usr/lib/python2.3
760
761* Wed Apr 07 2004 Shu KONNO <owa@bg.wakwak.com> 2.3.3-0vl0.1
762- updated python to 2.3.3
763- changed version code 2.2.3 to 2.3.3 in source{2,3,4}
764- updated config2.patch for 2.3.3
765- updated nowhatsnew.patch for 2.3.3
766- updated distutilrpm.patch in which tabstops have made indent error
767- updated buildroot-bytecode.patch for 2.3.3
768- deleted buildroot.patch which fixed in 2.3.3
769- changed Tools/idle with Lib/idlelib
770
771* Wed Mar 31 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.2.3-3vl3
772- rebuild with openssl-0.9.7d
773
774* Wed Mar 03 2004 Shu KONNO <owa@bg.wakwak.com> 2.2.3-3vl2
775- updated JapaneseCodecs to 1.4.10
776
777* Wed Jul 09 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 2.2.3-3vl1
778- synced with RawHide 2.2.3-3 (substantially source ver up)
779
780* Mon Mar 31 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 2.2.2-26vl1
781- rebuild with tcltk-8.4.2
782- synced with RawHide 2.2.2-26
783  * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
784  - rebuilt
785
786  * Mon Feb 24 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-25
787  - Fixed bug #84886: pydoc dies when run w/o arguments
788  - Fixed bug #84205: add python shm module back (used to be shipped with 1.5.2)
789  - Fixed bug #84966: path in byte-compiled code still wrong
790
791  * Thu Feb 20 2003 Jeremy Katz <katzj@redhat.com> 2.2.2-23
792  - ftp uri's should be able to specify being rooted at the root instead of
793    where you login via ftp (#84692)
794
795  * Mon Feb 10 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-22
796  - Using newer Japanese codecs (1.4.9). Thanks to
797    Peter Bowen <pzb@datastacks.com> for pointing this out.
798
799  * Thu Feb  6 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-21
800  - Rebuild
801
802  * Wed Feb  5 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-20
803  - Release number bumped really high: turning on UCS4 (ABI compatibility
804    breakage)
805
806  * Fri Jan 31 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-13
807  - Attempt to look both in /usr/lib64 and /usr/lib/python2.2/site-packages/:
808    some work on python-2.2.2-lib64.patch
809
810  * Thu Jan 30 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-12
811  - Rebuild to incorporate the removal of .lib64 and - files.
812
813  * Thu Jan 30 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-11.7.3
814  - Fixed bug #82544: Errata removes most tools
815  - Fixed bug #82435: Python 2.2.2 errata breaks redhat-config-users
816  - Removed .lib64 and - files that get installed after we fix the multilib
817    .py files.
818
819  * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
820  - rebuilt
821
822  * Wed Jan 15 2003 Jens Petersen <petersen@redhat.com> 2.2.2-10
823  - rebuild to update tkinter's tcltk deps
824  - convert changelog to utf-8
825
826
827* Wed Jan 15 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.2.2-9vl0
828- rebuilt for Vine Linux against db4
829- obsolete python-base (which comes with python-2.2.1 of TestPkg)
830
831* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.2-9
832- rebuild
833
834* Fri Jan  3 2003 Nalin Dahyabhai <nalin@redhat.com>
835- pick up OpenSSL cflags and ldflags from pkgconfig if available
836
837* Thu Jan  2 2003 Jeremy Katz <katzj@redhat.com> 2.2.2-8
838- urllib2 didn't support non-anonymous ftp.  add support based on how
839  urllib did it (#80676, #78168)
840
841* Mon Dec 16 2002 Mihai Ibanescu <misa@redhat.com> 2.2.2-7
842- Fix bug #79647 (Rebuild of SRPM fails if python isn't installed)
843- Added a bunch of missing BuildRequires found while fixing the
844  above-mentioned bug
845
846* Tue Dec 10 2002 Tim Powers <timp@redhat.com> 2.2.2-6
847- rebuild to fix broken tcltk deps for tkinter
848
849* Fri Nov 22 2002 Mihai Ibanescu <misa@redhat.com>
8502.2.2-3.7.3
851- Recompiled for 7.3 (to fix the -lcrypt bug)
852- Fix for the spurious error message at the end of the build (build-requires
853  gets confused by executable files starting with """"): make the tests
854  non-executable.
855
856* Wed Nov 20 2002 Mihai Ibanescu <misa@redhat.com>
8572.2.2-5
858- Fixed configuration patch to add -lcrypt when compiling cryptmodule.c
859
8602.2.2-4
861- Spec file change from Matt Wilson <msw@redhat.com> to disable linking
862  with the C++ compiler.
863
864* Mon Nov 11 2002 Mihai Ibanescu <misa@redhat.com>
8652.2.2-3.*
866- Merged patch from Karsten Hopp <karsten@redhat.de> from 2.2.1-17hammer to
867  use %%{_libdir}
868- Added XFree86-libs as BuildRequires (because of tkinter)
869- Fixed duplicate listing of plat-linux2
870- Fixed exclusion of lib-dynload/japanese
871- Added lib64 patch for the japanese codecs
872- Use setup magic instead of using tar directly on JapaneseCodecs
873
874* Tue Nov  5 2002 Mihai Ibanescu <misa@redhat.com>
8752.2.2-2
876- Fix #76912 (python-tools contains idle, which uses tkinter, but there is no
877  requirement of tkinter from python-tools).
878- Fix #74013 (rpm is missing the /usr/lib/python2.2/test directory)
879
880* Mon Nov  4 2002 Mihai Ibanescu <misa@redhat.com>
881- builds as python2 require a different libdb
882- changed the buildroot name of python to match python2 builds
883
884* Fri Nov  1 2002 Mihai Ibanescu <misa@redhat.com>
885- updated python to 2.2.2 and adjusted the patches accordingly
886
887* Mon Oct 21 2002 Mihai Ibanescu <misa@redhat.com>
888- Fix #53930 (Python-2.2.1-buildroot-bytecode.patch)
889- Added BuildPrereq dependency on gcc-c++
890
891* Fri Aug 30 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-17
892- security fix for _execvpe
893
894* Tue Aug 13 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-16
895- Fix  #71011,#71134, #58157
896
897* Wed Aug  7 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-15
898- Resurrect tkinter
899- Fix for distutils (#67671)
900- Fix #69962
901
902* Thu Jul 25 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-14
903- Obsolete tkinter/tkinter2 (#69838)
904
905* Tue Jul 23 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-13
906- Doc fixes (#53951) - not on alpha at the momemt
907
908* Mon Jul  8 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-12
909- fix pydoc (#68082)
910
911* Mon Jul  8 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-11
912- Add db4-devel as a BuildPrereq
913
914* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.2.1-10
915- automated rebuild
916
917* Mon Jun 17 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-9
918- Add Japanese codecs (#66352)
919
920* Tue Jun 11 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-8
921- No more tkinter...
922
923* Wed May 29 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-7
924- Rebuild
925
926* Tue May 21 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-6
927- Add the email subcomponent (#65301)
928
929* Fri May 10 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-5
930- Rebuild
931
932* Thu May 02 2002 Than Ngo <than@redhat.com> 2.2.1-4
933- rebuild i new enviroment
934
935* Tue Apr 23 2002 Trond Eivind Glomsroed <teg@redhat.com>
936- Use ucs2, not ucs4, to avoid breaking tkinter (#63965)
937
938* Mon Apr 22 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-2
939- Make it use db4
940
941* Fri Apr 12 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2.1-1
942- 2.2.1 - a bugfix-only release
943
944* Fri Apr 12 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-16
945- the same, but in builddirs - this will remove them from the
946  docs package, which doesn't look in the buildroot for files.
947
948* Fri Apr 12 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-15
949- Get rid of temporary files and .cvsignores included
950  in the tarball and make install
951
952* Fri Apr  5 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-14
953- Don't own lib-tk in main package, only in tkinter (#62753)
954
955* Mon Mar 25 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-13
956- rebuild
957
958* Mon Mar 25 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-12
959- rebuild
960
961* Fri Mar  1 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-11
962- Add a not to the Distutils obsoletes test (doh!)
963
964* Fri Mar  1 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-10
965- Rebuild
966
967* Mon Feb 25 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-9
968- Only obsolete Distutils when built as python
969
970* Thu Feb 21 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-8
971- Make files in /usr/bin install side by side with python 1.5 when
972- Drop explicit requirement of db4
973  built as python2
974
975* Thu Jan 31 2002 Elliot Lee <sopwith@redhat.com> 2.2-7
976- Use version and pybasever macros to make updating easy
977- Use _smp_mflags macro
978
979* Tue Jan 29 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-6
980- Add db4-devel to BuildPrereq
981
982* Fri Jan 25 2002 Nalin Dahyabhai <nalin@redhat.com> 2.2-5
983- disable ndbm support, which is db2 in disguise (really interesting things
984  can happen when you mix db2 and db4 in a single application)
985
986* Thu Jan 24 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-4
987- Obsolete subpackages if necesarry
988- provide versioned python2
989- build with db4
990
991* Wed Jan 16 2002 Trond Eivind Glomsroed <teg@redhat.com> 2.2-3
992- Alpha toolchain broken. Disable build on alpha.
993- New openssl
994
995* Wed Dec 26 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-1
996- 2.2 final
997
998* Fri Dec 14 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.11c1
999- 2.2 RC 1
1000- Don't include the _tkinter module in the main package - it's
1001  already in the tkiter packace
1002- Turn off the mpzmodule, something broke in the buildroot
1003
1004* Wed Nov 28 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.10b2
1005- Use -fPIC for OPT as well, in lack of a proper libpython.so
1006
1007* Mon Nov 26 2001 Matt Wilson <msw@redhat.com> 2.2-0.9b2
1008- changed DESTDIR to point to / so that distutils will install dynload
1009  modules properly in the installroot
1010
1011* Fri Nov 16 2001 Matt Wilson <msw@redhat.com> 2.2-0.8b2
1012- 2.2b2
1013
1014* Fri Oct 26 2001 Matt Wilson <msw@redhat.com> 2.2-0.7b1
1015- python2ify
1016
1017* Fri Oct 19 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.5b1
1018- 2.2b1
1019
1020* Sun Sep 30 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.4a4
1021- 2.2a4
1022- Enable UCS4 support
1023- Enable IPv6
1024- Provide distutils
1025- Include msgfmt.py and pygettext.py
1026
1027* Fri Sep 14 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.3a3
1028- Obsolete Distutils, which is now part of the main package
1029- Obsolete python2
1030
1031* Thu Sep 13 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.2a3
1032- Add docs, tools and tkinter subpackages, to match the 1.5 layout
1033
1034* Wed Sep 12 2001 Trond Eivind Glomsroed <teg@redhat.com> 2.2-0.1a3
1035- 2.2a3
1036- don't build tix and blt extensions
1037
1038* Mon Aug 13 2001 Trond Eivind Glomsroed <teg@redhat.com>
1039- Add tk and tix to build dependencies
1040
1041* Sat Jul 21 2001 Trond Eivind Glomsroed <teg@redhat.com>
1042- 2.1.1 bugfix release - with a GPL compatible license
1043
1044* Fri Jul 20 2001 Trond Eivind Glomsroed <teg@redhat.com>
1045- Add new build dependencies (#49753)
1046
1047* Tue Jun 26 2001 Nalin Dahyabhai <nalin@redhat.com>
1048- build with -fPIC
1049
1050* Fri Jun  1 2001 Trond Eivind Glomsroed <teg@redhat.com>
1051- 2.1
1052- reorganization of file includes
1053
1054* Wed Dec 20 2000 Trond Eivind Glomsroed <teg@redhat.com>
1055- fix the "requires" clause, it lacked a space causing problems
1056- use %%{_tmppath}
1057- don't define name, version etc
1058- add the available patches from the Python home page
1059
1060* Fri Dec 15 2000 Matt Wilson <msw@redhat.com>
1061- added devel subpackage
1062
1063* Fri Dec 15 2000 Matt Wilson <msw@redhat.com>
1064- modify all files to use "python2.0" as the intrepter
1065- don't build the Expat bindings
1066- build against db1
1067
1068* Mon Oct 16 2000 Jeremy Hylton <jeremy@beopen.com>
1069- updated for 2.0 final
1070
1071* Mon Oct  9 2000 Jeremy Hylton <jeremy@beopen.com>
1072- updated for 2.0c1
1073- build audioop, imageop, and rgbimg extension modules
1074- include xml.parsers subpackage
1075- add test.xml.out to files list
1076
1077* Thu Oct  5 2000 Jeremy Hylton <jeremy@beopen.com>
1078- added bin/python2.0 to files list (suggested by Martin v. Loewis)
1079
1080* Tue Sep 26 2000 Jeremy Hylton <jeremy@beopen.com>
1081- updated for release 1 of 2.0b2
1082- use .bz2 version of Python source
1083
1084* Tue Sep 12 2000 Jeremy Hylton <jeremy@beopen.com>
1085- Version 2 of 2.0b1
1086- Make the package relocatable.  Thanks to Suchandra Thapa.
1087- Exclude Tkinter from main RPM.  If it is in a separate RPM, it is
1088  easier to track Tk releases.
Note: See TracBrowser for help on using the repository browser.