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

Revision 12236, 37.6 KB checked in by tomop, 5 years ago (diff)

updated 8 packages

expect-5.45.4-1

postgresql-12.0-1

python-2.7.16-4

python3-3.5.7-3

rp-pppoe-3.13-3

tcl-8.6.9-1

tix-8.4.3-4

tk-8.6.9-1

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