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

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