2006-12-19 00:17:38 +01:00
|
|
|
#
|
2008-03-11 17:57:23 +01:00
|
|
|
# spec file for package python (Version 2.5.2)
|
2006-12-19 00:17:38 +01:00
|
|
|
#
|
2008-03-11 17:57:23 +01:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2006-12-19 00:17:38 +01:00
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
#
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2008-03-11 17:57:23 +01:00
|
|
|
|
2006-12-19 00:17:38 +01:00
|
|
|
Name: python
|
2007-08-06 22:02:29 +02:00
|
|
|
BuildRequires: blt db-devel fdupes gcc-c++ gdbm-devel gmp-devel libbz2-devel libopenssl-devel ncurses-devel readline-devel sqlite-devel tk-devel xorg-x11-devel
|
|
|
|
#Requires: openssl >= 0.9.8e
|
2007-11-13 21:29:48 +01:00
|
|
|
Url: http://www.python.org/
|
|
|
|
License: X11/MIT
|
2006-12-19 00:17:38 +01:00
|
|
|
Group: Development/Languages/Python
|
2007-11-13 21:29:48 +01:00
|
|
|
AutoReqProv: on
|
2007-09-13 18:55:59 +02:00
|
|
|
Obsoletes: python-nothreads python21 python-elementtree python-sqlite
|
2006-12-19 00:17:38 +01:00
|
|
|
Summary: Python Interpreter
|
2008-03-11 17:57:23 +01:00
|
|
|
Version: 2.5.2
|
2008-06-25 22:15:15 +02:00
|
|
|
Release: 28
|
2006-12-19 00:17:38 +01:00
|
|
|
%define tarname Python-%{version}
|
|
|
|
Source0: %{tarname}.tar.bz2
|
|
|
|
Source6: README.SUSE
|
|
|
|
Source8: pythonstart
|
|
|
|
Source9: python.sh
|
|
|
|
Source10: python.csh
|
|
|
|
#Source11: testfiles.tar.bz2
|
2007-07-27 15:45:45 +02:00
|
|
|
# issues with copyrighted Unicode testing files
|
2006-12-19 00:17:38 +01:00
|
|
|
Source13: distutils.cfg
|
|
|
|
Patch01: Python-2.3.3-dirs.patch
|
|
|
|
Patch10: python-distutils-rpm-8.patch
|
|
|
|
Patch21: Python-2.5c1-multilib.patch
|
|
|
|
Patch23: ssl-compat.diff
|
|
|
|
Patch25: python-2.4.2-canonicalize2.patch
|
|
|
|
Patch26: python-2.4-localpath.patch
|
2007-05-25 00:42:28 +02:00
|
|
|
Patch27: python-2.5-https_warn.patch
|
2008-03-11 17:57:23 +01:00
|
|
|
Patch28: python-2.5.2-subprocess-eintr-safety.patch
|
2007-11-13 21:29:48 +01:00
|
|
|
Patch30: python-2.5.1-sqlite.patch
|
2008-03-11 17:57:23 +01:00
|
|
|
Patch31: python-2.5.2-fwrapv.patch
|
2008-04-25 16:40:24 +02:00
|
|
|
Patch32: disable-dns-test.diff
|
|
|
|
Patch33: python-2.5.2-from-string-and-size.patch
|
2008-05-07 00:09:21 +02:00
|
|
|
Patch34: python-2.5.2-docdirs.patch
|
2008-06-25 22:15:15 +02:00
|
|
|
Patch35: python-2.5.2-configure.patch
|
2006-12-19 00:17:38 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%define python_version %(echo %{version} | head -c 3)
|
|
|
|
%define idle_name idle
|
|
|
|
|
|
|
|
%description
|
|
|
|
Python is an interpreted, object-oriented programming language, and is
|
|
|
|
often compared to Tcl, Perl, Scheme, or Java. You can find an overview
|
|
|
|
of Python in the documentation and tutorials included in the python-doc
|
|
|
|
(HTML) or python-doc-pdf (PDF) packages.
|
|
|
|
|
|
|
|
If you want to install third party modules using distutils, you need to
|
|
|
|
install python-devel package.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Guido van Rossum <guido@python.org>
|
|
|
|
|
|
|
|
%package idle
|
2008-04-09 00:44:31 +02:00
|
|
|
License: Python Copyright
|
2006-12-19 00:17:38 +01:00
|
|
|
Requires: python = %{version} python-tk
|
|
|
|
Summary: An Integrated Development Environment for Python
|
|
|
|
Group: Development/Languages/Python
|
2007-11-13 21:29:48 +01:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:17:38 +01:00
|
|
|
|
|
|
|
%description idle
|
|
|
|
IDLE is a Tkinter based integrated development environment for Python.
|
|
|
|
It features a multi-window text editor with multiple undo, Python
|
|
|
|
colorizing, and many other things, as well as a Python shell window and
|
|
|
|
a debugger.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Guido van Rossum <guido@python.org>
|
|
|
|
|
|
|
|
%package demo
|
2008-04-09 00:44:31 +02:00
|
|
|
License: Python Copyright
|
2006-12-19 00:17:38 +01:00
|
|
|
Provides: pyth_dmo
|
|
|
|
Obsoletes: pyth_dmo
|
|
|
|
Requires: python = %{version}
|
|
|
|
Summary: Python Demonstration Scripts
|
|
|
|
Group: Development/Languages/Python
|
2007-11-13 21:29:48 +01:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:17:38 +01:00
|
|
|
|
|
|
|
%description demo
|
|
|
|
Various demonstrations of what you can do with Python and a number of
|
|
|
|
programs that are useful for building or extending Python.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Guido van Rossum <guido@python.org>
|
|
|
|
|
|
|
|
%package devel
|
2008-04-09 00:44:31 +02:00
|
|
|
License: Python Copyright
|
2006-12-19 00:17:38 +01:00
|
|
|
Requires: python = %{version} python-tk
|
2007-07-27 15:45:45 +02:00
|
|
|
Summary: Include Files and Libraries Mandatory for Building Python Modules
|
2006-12-19 00:17:38 +01:00
|
|
|
Group: Development/Languages/Python
|
2007-11-13 21:29:48 +01:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:17:38 +01:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The Python programming language's interpreter can be extended with
|
|
|
|
dynamically loaded extensions and can be embedded in other programs.
|
|
|
|
|
|
|
|
This package contains header files, a static library, and development
|
|
|
|
tools for building Python modules, extending the Python interpreter or
|
|
|
|
embedding Python in applications.
|
|
|
|
|
|
|
|
This also includes the Python distutils, which were in the Python
|
|
|
|
package up to version 2.2.2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Guido van Rossum <guido@python.org>
|
|
|
|
|
|
|
|
%package tk
|
2008-04-09 00:44:31 +02:00
|
|
|
License: Python Copyright
|
2006-12-19 00:17:38 +01:00
|
|
|
Provides: pyth_tk python_tkinter_lib pyth_tkl python-tkinter
|
2007-05-25 00:42:28 +02:00
|
|
|
#%ifarch %ix86
|
|
|
|
#Provides: _tkinter.so
|
|
|
|
#%endif
|
2006-12-19 00:17:38 +01:00
|
|
|
Obsoletes: pyth_tk pyth_tkl python-tkinter
|
|
|
|
Requires: python = %{version}
|
|
|
|
Summary: TkInter - Python Tk Interface
|
|
|
|
Group: Development/Libraries/Python
|
2007-11-13 21:29:48 +01:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:17:38 +01:00
|
|
|
|
|
|
|
%description tk
|
|
|
|
Python interface to Tk. Tk is the GUI toolkit that comes with Tcl. The
|
|
|
|
"xrpm" package uses this Python interface.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Guido van Rossum <guido@python.org>
|
|
|
|
|
|
|
|
%package curses
|
2008-04-09 00:44:31 +02:00
|
|
|
License: Python Copyright
|
2006-12-19 00:17:38 +01:00
|
|
|
Requires: python = %{version}
|
|
|
|
Obsoletes: pyth_cur
|
|
|
|
Provides: pyth_cur
|
|
|
|
Summary: Python Interface to the (N)Curses Library
|
|
|
|
Group: Development/Libraries/Python
|
2007-11-13 21:29:48 +01:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:17:38 +01:00
|
|
|
|
|
|
|
%description curses
|
|
|
|
An easy to use interface to the (n)curses CUI library. CUI stands for
|
|
|
|
Console User Interface.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Guido van Rossum <guido@python.org>
|
|
|
|
|
|
|
|
%package gdbm
|
2008-04-09 00:44:31 +02:00
|
|
|
License: X11/MIT
|
2006-12-19 00:17:38 +01:00
|
|
|
Requires: python = %{version}
|
|
|
|
Obsoletes: pygdmod
|
|
|
|
Provides: pygdmod
|
|
|
|
Summary: Python Interface to the GDBM Library
|
|
|
|
Group: Development/Libraries/Python
|
2007-11-13 21:29:48 +01:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:17:38 +01:00
|
|
|
|
|
|
|
%description gdbm
|
|
|
|
An easy to use interface for GDBM databases. GDBM is the GNU
|
|
|
|
implementation of the standard Unix DBM databases.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Guido van Rossum <guido@python.org>
|
|
|
|
|
|
|
|
%package xml
|
2008-04-09 00:44:31 +02:00
|
|
|
License: Python Copyright
|
2006-12-19 00:17:38 +01:00
|
|
|
Requires: python = %{version}
|
|
|
|
Summary: A Python XML Interface
|
|
|
|
Group: Development/Libraries/Python
|
2007-11-13 21:29:48 +01:00
|
|
|
AutoReqProv: on
|
2006-12-19 00:17:38 +01:00
|
|
|
|
|
|
|
%description xml
|
|
|
|
The expat module is a Python interface to the expat XML parser. Since
|
|
|
|
Python2.x, it is part of the core Python distribution.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
#%%setup -q -n %{tarname} -a11
|
|
|
|
%setup -q -n %{tarname}
|
|
|
|
# patching
|
|
|
|
%patch01
|
|
|
|
%patch10 -p1
|
|
|
|
%patch21 -p1
|
|
|
|
%patch23
|
|
|
|
%patch25
|
|
|
|
%patch26
|
|
|
|
%patch27
|
2007-07-27 15:45:45 +02:00
|
|
|
%patch28
|
2007-11-13 21:29:48 +01:00
|
|
|
%patch30
|
2008-03-11 17:57:23 +01:00
|
|
|
%patch31
|
2008-04-25 16:40:24 +02:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%patch32
|
|
|
|
%endif
|
|
|
|
%patch33 -p2
|
2008-05-07 00:09:21 +02:00
|
|
|
%patch34
|
2008-06-25 22:15:15 +02:00
|
|
|
%patch35
|
2006-12-19 00:17:38 +01:00
|
|
|
# some cleanup
|
|
|
|
find . -name .cvsignore -type f -print0 | xargs -0 rm -f
|
|
|
|
find . -name CVS -type d -print0 | xargs -0 rm -rf
|
|
|
|
|
|
|
|
%build
|
|
|
|
########################################
|
|
|
|
# use rpm_opt_flags
|
|
|
|
########################################
|
|
|
|
export OPT="$RPM_OPT_FLAGS"
|
|
|
|
########################################
|
|
|
|
# regenerate
|
|
|
|
########################################
|
2007-08-24 23:53:36 +02:00
|
|
|
autoreconf -f -i . Modules/_ctypes/libffi
|
2006-12-19 00:17:38 +01:00
|
|
|
########################################
|
|
|
|
# configure
|
|
|
|
########################################
|
|
|
|
./configure \
|
|
|
|
--prefix=%{_prefix} \
|
|
|
|
--libdir=%{_libdir} \
|
|
|
|
--mandir=%{_mandir} \
|
2008-05-07 00:09:21 +02:00
|
|
|
--docdir=%{_docdir}/python \
|
2006-12-19 00:17:38 +01:00
|
|
|
--enable-ipv6 \
|
|
|
|
--with-fpectl \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-unicode=ucs4
|
|
|
|
########################################
|
|
|
|
# compile
|
|
|
|
########################################
|
|
|
|
make %{?jobs:-j%jobs} DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
########################################
|
|
|
|
# test
|
|
|
|
########################################
|
|
|
|
# on hppa, the threading of glibc is quite broken. The tests just stop
|
|
|
|
# at some point, and the machine does not build anything more until a
|
|
|
|
# timeout several hours later.
|
|
|
|
%ifnarch hppa %arm
|
|
|
|
# extensive bsddb test fails (probably on all 64-bit arches):
|
|
|
|
# Berkeley DB library configured to support only private environments
|
2007-07-27 15:45:45 +02:00
|
|
|
# test_file fails in autobuild env - "stdin.seek(-1)" wrongly succeeds. probably an issue with autobuild's stdin
|
2006-12-19 00:17:38 +01:00
|
|
|
# test_nis fails in autobuild env. probably a misconfiguration of mbuild servers
|
2008-03-11 17:57:23 +01:00
|
|
|
EXCLUDE="-x test_file -x test_nis -x"
|
2008-04-09 00:44:31 +02:00
|
|
|
# Limit virtual memory to avoid spurious failures
|
|
|
|
if test $(ulimit -v) = unlimited || test $(ulimit -v) -gt 10000000; then
|
|
|
|
ulimit -v 10000000 || :
|
|
|
|
fi
|
2006-12-19 00:17:38 +01:00
|
|
|
make test TESTOPTS="-l $EXCLUDE"
|
|
|
|
# test bsddb:
|
|
|
|
#make test TESTOPTS="-l -u bsddb"
|
|
|
|
# use network, be verbose:
|
|
|
|
#make test TESTOPTS="-l -u network -v"
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%install
|
2007-07-27 15:45:45 +02:00
|
|
|
# replace rest of /usr/local/bin/python with /usr/bin/env python
|
|
|
|
find . -wholename "./Parser" -prune -o -name '*.py' -type f -print0 | xargs -0 grep -lE '^#! *(/usr/.*bin/(env +)?)?python' | xargs sed -r -i -e '1s@^#![[:space:]]*(/usr/(local/)?bin/(env +)?)?python@#!/usr/bin/python@'
|
|
|
|
# the grep inbetween makes it much faster
|
2006-12-19 00:17:38 +01:00
|
|
|
########################################
|
|
|
|
# install it
|
|
|
|
########################################
|
|
|
|
make \
|
|
|
|
OPT="$RPM_OPT_FLAGS -fPIC" \
|
|
|
|
DESTDIR=$RPM_BUILD_ROOT \
|
|
|
|
install
|
|
|
|
# install site-specific tweaks
|
|
|
|
# install -m 644 %{S:12} ${RPM_BUILD_ROOT}%{_libdir}/python%{python_version}
|
|
|
|
install -m 644 %{S:13} ${RPM_BUILD_ROOT}%{_libdir}/python%{python_version}/distutils
|
2007-09-13 18:55:59 +02:00
|
|
|
ln -s python%{python_version} ${RPM_BUILD_ROOT}%{_bindir}/python2
|
2006-12-19 00:17:38 +01:00
|
|
|
########################################
|
|
|
|
# some cleanups
|
|
|
|
########################################
|
|
|
|
# remove hard links and replace them with symlinks
|
|
|
|
for dir in bin include %{_lib} ; do
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_prefix}/$dir/python
|
|
|
|
ln -s python%{python_version} $RPM_BUILD_ROOT/%{_prefix}/$dir/python
|
|
|
|
done
|
2007-08-06 22:02:29 +02:00
|
|
|
# replace duplicate .pyo/.pyc with hardlinks
|
2007-09-13 18:55:59 +02:00
|
|
|
%fdupes $RPM_BUILD_ROOT/%{_libdir}/python%{python_version}
|
|
|
|
#fdupes -qr1 $RPM_BUILD_ROOT/%{_libdir}/python%{python_version} | \
|
|
|
|
# grep '^.*py[oc] .*py[oc] $' | \
|
|
|
|
# sed -r 's#^(.*\.py)[oc] .+$#\1c \1o#' | \
|
|
|
|
# xargs -L 1 ln -f
|
2006-12-19 00:17:38 +01:00
|
|
|
########################################
|
|
|
|
# documentation
|
|
|
|
########################################
|
|
|
|
export PDOCS=${RPM_BUILD_ROOT}%{_docdir}/%{name}
|
|
|
|
install -d -m 755 $PDOCS
|
|
|
|
install -c -m 644 %{SOURCE6} $PDOCS/
|
|
|
|
install -c -m 644 LICENSE $PDOCS/
|
|
|
|
install -c -m 644 README $PDOCS/
|
|
|
|
########################################
|
|
|
|
# tools and demos
|
|
|
|
########################################
|
|
|
|
find Tools/ Demo/ -type d \( -regex ".*/.cvsignore" \) -exec rm -f \{\} \;
|
|
|
|
for x in `find Tools/ Demo/ \( -not -name Makefile \) -print | sort` ; do
|
|
|
|
test -d $x && ( install -c -m 755 -d $PDOCS/$x ) \
|
|
|
|
|| ( install -c -m 644 $x $PDOCS/$x )
|
|
|
|
done
|
|
|
|
########################################
|
|
|
|
# idle
|
|
|
|
########################################
|
|
|
|
# move idle config into /etc
|
|
|
|
install -d -m755 ${RPM_BUILD_ROOT}/etc/%{idle_name}
|
|
|
|
(
|
|
|
|
cd ${RPM_BUILD_ROOT}/%{_libdir}/python%{python_version}/idlelib/
|
|
|
|
for file in *.def ; do
|
|
|
|
mv $file ${RPM_BUILD_ROOT}/etc/%{idle_name}/
|
|
|
|
ln -sf /etc/%{idle_name}/$file ${RPM_BUILD_ROOT}/%{_libdir}/python%{python_version}/idlelib/
|
|
|
|
done
|
|
|
|
)
|
|
|
|
########################################
|
|
|
|
# devel
|
|
|
|
########################################
|
|
|
|
# install Makefile.pre.in and Makefile.pre
|
|
|
|
cp Makefile Makefile.pre.in Makefile.pre $RPM_BUILD_ROOT%{_libdir}/python%{python_version}/config/
|
|
|
|
########################################
|
|
|
|
# startup script
|
|
|
|
########################################
|
|
|
|
install -m 644 %{S:8} $RPM_BUILD_ROOT/etc
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT/etc/profile.d
|
|
|
|
install -m 644 %{S:9} %{S:10} $RPM_BUILD_ROOT/etc/profile.d
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
|
|
|
%{run_ldconfig}
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%{run_ldconfig}
|
|
|
|
|
|
|
|
%files idle
|
|
|
|
%defattr(644, root, root, 755)
|
|
|
|
%dir /etc/%{idle_name}
|
|
|
|
%config /etc/%{idle_name}/*
|
|
|
|
%doc Lib/idlelib/NEWS.txt
|
|
|
|
%doc Lib/idlelib/README.txt
|
|
|
|
%doc Lib/idlelib/TODO.txt
|
|
|
|
%doc Lib/idlelib/extend.txt
|
|
|
|
%doc Lib/idlelib/ChangeLog
|
|
|
|
%{_libdir}/python%{python_version}/idlelib
|
|
|
|
%attr(755, root, root) %{_bindir}/%{idle_name}
|
|
|
|
|
|
|
|
%files demo
|
|
|
|
%defattr(644, root, root, 755)
|
|
|
|
%doc %{_docdir}/%{name}/Demo
|
|
|
|
%doc %{_docdir}/%{name}/Tools
|
|
|
|
|
|
|
|
%files tk
|
|
|
|
%defattr(644, root, root, 755)
|
|
|
|
%{_libdir}/python%{python_version}/lib-tk/
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_tkinter.so
|
|
|
|
|
|
|
|
%files curses
|
|
|
|
%defattr(644, root, root, 755)
|
|
|
|
%{_libdir}/python%{python_version}/curses
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_curses.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_curses_panel.so
|
|
|
|
|
|
|
|
%files gdbm
|
|
|
|
%defattr(644, root, root, 755)
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/gdbm.so
|
|
|
|
|
|
|
|
%files xml
|
|
|
|
%defattr(644, root, root, 755)
|
|
|
|
%{_libdir}/python%{python_version}/xml
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/pyexpat.so
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{_libdir}/python%{python_version}/config
|
|
|
|
%defattr(644, root, root, 755)
|
|
|
|
%{_libdir}/libpython*.so
|
|
|
|
%{_prefix}/include/python*
|
|
|
|
%{_libdir}/python%{python_version}/test
|
|
|
|
%defattr(755, root, root)
|
|
|
|
%{_bindir}/python-config
|
|
|
|
%{_bindir}/python%{python_version}-config
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(644, root, root, 755)
|
|
|
|
%config /etc/pythonstart
|
|
|
|
%config /etc/profile.d/python.*
|
|
|
|
%dir %{_docdir}/%{name}
|
|
|
|
%doc %{_docdir}/%{name}/README
|
|
|
|
%doc %{_docdir}/%{name}/LICENSE
|
|
|
|
%doc %{_docdir}/%{name}/README.SUSE
|
|
|
|
%doc %{_mandir}/man1/python.1*
|
|
|
|
%{_libdir}/libpython*.so.*
|
|
|
|
%{_libdir}/python
|
|
|
|
%dir %{_libdir}/python%{python_version}
|
|
|
|
%{_libdir}/python%{python_version}/*.*
|
|
|
|
%{_libdir}/python%{python_version}/bsddb
|
|
|
|
%{_libdir}/python%{python_version}/compiler
|
|
|
|
%{_libdir}/python%{python_version}/ctypes
|
|
|
|
%{_libdir}/python%{python_version}/distutils
|
|
|
|
%{_libdir}/python%{python_version}/email
|
|
|
|
%{_libdir}/python%{python_version}/encodings
|
|
|
|
%{_libdir}/python%{python_version}/hotshot
|
|
|
|
%{_libdir}/python%{python_version}/logging
|
|
|
|
%{_libdir}/python%{python_version}/plat-*
|
|
|
|
%{_libdir}/python%{python_version}/sqlite3
|
|
|
|
%{_libdir}/python%{python_version}/wsgiref
|
|
|
|
%dir %{_libdir}/python%{python_version}/site-packages
|
|
|
|
%{_libdir}/python%{python_version}/site-packages/README
|
|
|
|
%dir %{_libdir}/python%{python_version}/lib-dynload
|
2007-01-08 22:55:18 +01:00
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_sqlite3.so
|
2006-12-19 00:17:38 +01:00
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_bisect.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_bsddb.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_csv.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_ctypes.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_ctypes_test.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_elementtree.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_functools.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_hashlib.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_heapq.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_hotshot.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_locale.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_lsprof.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_random.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_socket.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_ssl.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_struct.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_testcapi.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_weakref.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/array.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/binascii.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/bz2.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/cPickle.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/cStringIO.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/collections.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/cmath.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/crypt.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/datetime.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/dbm.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/fcntl.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/grp.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/itertools.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/linuxaudiodev.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/math.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/mmap.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/nis.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/operator.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/ossaudiodev.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/parser.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/readline.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/resource.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/select.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/spwd.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/strop.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/syslog.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/termios.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/time.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/unicodedata.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/zlib.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_codecs*.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/_multibytecodec.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/audioop.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/Python-%{version}-py%{python_version}.egg-info
|
|
|
|
# these modules don't support 64-bit arches (disabled by setup.py)
|
|
|
|
%ifnarch alpha ia64 x86_64 s390x ppc64
|
|
|
|
# represent audio samples or images as strings, needs 32-bit int
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/imageop.so
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/rgbimg.so
|
|
|
|
# requires sizeof(int) == sizeof(long) == sizeof(char*)
|
|
|
|
%{_libdir}/python%{python_version}/lib-dynload/dl.so
|
|
|
|
%endif
|
|
|
|
%attr(755, root, root) %{_bindir}/pydoc
|
|
|
|
%attr(755, root, root) %{_bindir}/python
|
|
|
|
%attr(755, root, root) %{_bindir}/python%{python_version}
|
|
|
|
%attr(755, root, root) %{_bindir}/smtpd.py
|
2007-09-13 18:55:59 +02:00
|
|
|
%{_bindir}/python2
|
2008-03-11 17:57:23 +01:00
|
|
|
|
2007-03-23 21:32:32 +01:00
|
|
|
%changelog
|
2008-06-25 22:15:15 +02:00
|
|
|
* Fri Jun 13 2008 schwab@suse.de
|
|
|
|
- Fix configure script.
|
2008-05-07 00:09:21 +02:00
|
|
|
* Thu Apr 24 2008 matejcik@suse.cz
|
|
|
|
- proper path for html documentation from python-doc,
|
|
|
|
help text mentioning python-doc package in pydoc
|
|
|
|
(bnc#380942)
|
2008-04-25 16:40:24 +02:00
|
|
|
* Wed Apr 16 2008 matejcik@suse.cz
|
|
|
|
- PyString_FromStringAndSize now checks size parameter
|
|
|
|
(bnc#379534, CVE-2008-1721)
|
|
|
|
* Tue Apr 15 2008 adrian@suse.de
|
|
|
|
- disable DNS lookup test when running in build service.
|
|
|
|
The XEN build hosts have no network.
|
2008-04-10 15:30:29 +02:00
|
|
|
* Thu Apr 10 2008 ro@suse.de
|
|
|
|
- added baselibs.conf file to build xxbit packages
|
|
|
|
for multilib support
|
2008-04-09 00:44:31 +02:00
|
|
|
* Mon Apr 07 2008 schwab@suse.de
|
|
|
|
- Limit virtual memory to avoid spurious testsuite failures.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Mar 10 2008 matejcik@suse.cz
|
|
|
|
- bnc#367853 turned out to be invalid, upstream is already on to
|
|
|
|
the real problem
|
|
|
|
- forcing -fwrapv to compiler flags until upstream has a solution
|
|
|
|
* Wed Feb 27 2008 matejcik@suse.cz
|
|
|
|
- update to 2.5.2
|
|
|
|
- bugfix-only release, over 100 bugs fixed
|
|
|
|
- removed hppa patch (already included)
|
|
|
|
- disabled test_str until gcc issue bnc#367853 is resolved
|
|
|
|
* Tue Nov 13 2007 matejcik@suse.cz
|
2007-11-13 21:29:48 +01:00
|
|
|
- patched a bug in sqlite module that would cause segfault on
|
|
|
|
call to executescript()
|
|
|
|
-> TODO return and improve the patch
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Sep 03 2007 matejcik@suse.cz
|
2007-09-13 18:55:59 +02:00
|
|
|
- replaced fdupes oneliner with %%fdupes macro
|
|
|
|
- added /usr/bin/python2 symlink (#307097)
|
|
|
|
- obsoletes python-elementtree and python-sqlite (#301182)
|
|
|
|
(obsoletes, but doesn't provide - the modules that obsolete those
|
|
|
|
packages are renamed and dependent packages need to be changed)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Aug 24 2007 bg@suse.de
|
2007-08-24 23:53:36 +02:00
|
|
|
- fix build on hppa
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Aug 03 2007 jmatejek@suse.cz
|
2007-08-06 22:02:29 +02:00
|
|
|
- replaced duplicate files with hardlinks
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Jul 27 2007 jmatejek@suse.cz
|
2007-07-27 15:45:45 +02:00
|
|
|
- removed emacs python-mode and dependency on emacs
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Jun 08 2007 jmatejek@suse.cz
|
2007-07-27 15:45:45 +02:00
|
|
|
- revisited & explained failing tests
|
|
|
|
- applied EINTR recovery patch (#278622)
|
|
|
|
- experimental replacement of shebang strings,
|
|
|
|
removing dependency on /usr/bin/env
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu May 24 2007 jmatejek@suse.cz
|
2007-05-25 00:42:28 +02:00
|
|
|
- update to 2.5.1
|
|
|
|
- bugfix only release, over 150 bugs fixed
|
|
|
|
- fixes off-by-one memory leak in _localemodule.c
|
|
|
|
(#276889, CVE-2007-2052)
|
|
|
|
- unnecessary patches removed, minor build cleanup
|
|
|
|
- warns when attempting to use https proxy (#214983)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue May 22 2007 ro@suse.de
|
2007-05-22 02:06:27 +02:00
|
|
|
- make setup.py accept db-4.5
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Mar 29 2007 aj@suse.de
|
2007-03-29 18:26:27 +02:00
|
|
|
- Add ncurses-devel to BuildRequires.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sat Mar 24 2007 aj@suse.de
|
2007-03-24 19:53:29 +01:00
|
|
|
- Add libbz2-devel to BuildRequires.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Mar 23 2007 rguenther@suse.de
|
2007-03-23 21:32:32 +01:00
|
|
|
- add gdbm-devel BuildRequires
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jan 08 2007 cthiel@suse.de
|
2007-01-08 22:55:18 +01:00
|
|
|
- fix sqlite3 support (#228733)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Sep 19 2006 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.5 final, going into STABLE dist
|
|
|
|
- issue with lib/python/config is not caused by dirs patch
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Sep 13 2006 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.5c2
|
2007-01-08 22:55:18 +01:00
|
|
|
- 2.5 final is expected next week
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed testfiles.tar.bz2 from package due to copyright issues
|
|
|
|
(see #204867). Reminder: enable urlfetch or put it back (or both,
|
|
|
|
using Nosource)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Sep 05 2006 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.5c1
|
|
|
|
- many new features, see http://www.python.org/dev/peps/pep-0356/
|
|
|
|
- 64bit indices issue will require changes of modules, see
|
|
|
|
http://www.python.org/dev/peps/pep-0353/ for transition guidelines
|
|
|
|
- non-backwards-compatible changes, see
|
|
|
|
http://docs.python.org/dev/whatsnew/section-other.html
|
|
|
|
(this link is expected to die, so just search for "what's new in 2.5")
|
|
|
|
- open issues in build process:
|
2007-01-08 22:55:18 +01:00
|
|
|
- sed'ing out /usr/local/bin/python from files causes build to fail
|
2006-12-19 00:17:38 +01:00
|
|
|
if not filtered by grep (see %%prep section) - might be a bug in sed
|
2007-01-08 22:55:18 +01:00
|
|
|
- 2.3.3-dirs patch + --enable-shared + --libdir breaks build,
|
2006-12-19 00:17:38 +01:00
|
|
|
because "-L/usr/lib*/python2.5/config" is added instead of "-L."
|
|
|
|
Workaround in 2.5c1-dirs-fix, should be replaced soon
|
2007-01-08 22:55:18 +01:00
|
|
|
- test_file fails in autobuild, but is OK when building manually
|
|
|
|
- test_nis fails in autobuild, probably due to a misconfiguration
|
2006-12-19 00:17:38 +01:00
|
|
|
on autobuild servers
|
2007-01-08 22:55:18 +01:00
|
|
|
- it might be good to create python-sqlite3 subpackage
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Apr 24 2006 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.4.3
|
2007-01-08 22:55:18 +01:00
|
|
|
- no big changes, bugfix-only release (about 50 bugs fixed)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Mar 15 2006 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- moved -doc and -doc-pdf into separate noarch specfile
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Feb 27 2006 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- implemented /usr/local path schemes for bug #149809
|
2007-01-08 22:55:18 +01:00
|
|
|
- python now recognizes packages in /usr/local/lib/python2.4
|
|
|
|
- distutils install by default into /usr/local/lib/python2.4/site-packages
|
|
|
|
- on 64bit systems that is of course lib64
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sat Jan 14 2006 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Add gmp-devel to nfb
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Nov 28 2005 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- reenabled optimization on ppc64
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Nov 11 2005 nadvornik@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed another bug in canonicalize patch [#133267]
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Oct 05 2005 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.4.2
|
|
|
|
- additional fixes to canonicalize patch, restored interactive mode
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Sep 26 2005 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- replaced the previous patch with a new one
|
2007-01-08 22:55:18 +01:00
|
|
|
- it now tries to use canonical_file_name(), falling back to realpath()
|
2006-12-19 00:17:38 +01:00
|
|
|
and eventually readlink
|
2007-01-08 22:55:18 +01:00
|
|
|
- canonical_file_name() branch now sets the buffer length
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Sep 23 2005 jmatejek@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed to build with gcc's new buffer overflow checking
|
2007-01-08 22:55:18 +01:00
|
|
|
- added patch from https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=169046
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Apr 22 2005 schwab@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Always enable SSL bug workarounds.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Apr 05 2005 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.4.1
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Mar 24 2005 uli@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed to build on ARM
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Mar 01 2005 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- skip some test on ia64 for now
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Feb 08 2005 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- mark configuration files as %%config
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Feb 01 2005 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fix vulnerability in SimpleXMLRPCServer (bug #50321, CAN-2005-0089)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Dec 28 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- disable bsddb tests, it fails probably on all 64-bit
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Dec 23 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- make lib64 installation also work on others than x86_64
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Dec 20 2004 mcihar@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed build on ppc64
|
2007-01-08 22:55:18 +01:00
|
|
|
- update multiarch patch
|
|
|
|
- do not test bsddb internals
|
|
|
|
- remove optimalisation from flags, it breaks at least math
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Dec 20 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- added extra files needed for some tests (codecmaps and unicode normalisation)
|
|
|
|
- enabled bsddb tests
|
|
|
|
- reenabled test_shelve, as it works now
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Dec 16 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update db 4.3 patch
|
|
|
|
- fix bdist_rpm when spec file generates more than one rpm
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Dec 14 2004 bg@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- disable tests for hppa
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Dec 06 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fix bsddb module for current bsddb
|
|
|
|
- improved readline detection
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Dec 03 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated documentation to 2.4
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Dec 01 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- don't use wctype functions from glibc, it breaks at some situations
|
|
|
|
- enable tests during compilation, removing currently known failures
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Nov 30 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.4 final
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Nov 24 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- yet another ignore list update, ignore man and locale dirs
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Nov 24 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- ignore /etc and avoid infinite loop while generating directory list
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Nov 24 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- ignore one more directories in file list generating
|
|
|
|
- handle correctly headers path in file list generating
|
|
|
|
- handle extra_dir in file list generating
|
|
|
|
- use same way as mandrake to support lib64, at least it's a bit cleaner
|
|
|
|
solution than we had, so we now also have sys.lib
|
|
|
|
- audioop is now enabled on 64-bit
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Nov 23 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to 2.4c1 (2.4 release candidate 1)
|
|
|
|
- dropped python-mpz package as it was dropped by upstream
|
|
|
|
- completely rewritten and much simplified rpm file list generation, if you
|
|
|
|
have problems with new version, please drop me a note
|
|
|
|
- install also /etc/profile.d/python.csh
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Aug 24 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated README.SUSE
|
|
|
|
- added startup script, which enables saving of history and completion
|
|
|
|
for interactive usage
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu May 27 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.3.4 final (no changes from rc 1)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed May 19 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to 2.3.4 release candidate 1 (obsoletes some patches taken from cvs)
|
|
|
|
- forcing of large file support is not needed (for quite a long time)
|
|
|
|
- updated README.SUSE
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Mar 16 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- included some fixes from cvs:
|
2007-01-08 22:55:18 +01:00
|
|
|
- fix possible segfault in bsddb
|
|
|
|
- urllib2 supports non-anonymous ftp and absolute paths
|
|
|
|
- fixed GC problems in PyWeakref_NewRef
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Mar 11 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fix readline with utf-8 (bug #34302)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Mar 03 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- obsoletes python21
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Feb 26 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- all subpackages depend on current python version
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Feb 19 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fix Lib/email/Charset.py for use in some locales
|
|
|
|
- fix format string in zipimport module
|
|
|
|
- use system readline
|
|
|
|
- add more IPV6 socket options
|
|
|
|
- use sed instead of perl for replacing
|
|
|
|
- include LICENSE
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sat Jan 10 2004 adrian@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- build as user
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jan 05 2004 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to 2.3.3 (final)
|
|
|
|
- call %%{run_ldconfig} in post and postun
|
|
|
|
- libpython.2.3.so symlink moved to devel package (bug #33779)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Dec 12 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to 2.3.3 (release candidate 1)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Nov 18 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- use wchar_t functions from libc, this reduces size of interpreter
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Oct 27 2003 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Remove useless Requires
|
|
|
|
- Remove not used packages from neededforbuild
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Oct 03 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to 2.3.2
|
2007-01-08 22:55:18 +01:00
|
|
|
- A bug in autoconf that broke building on HP/UX systems is fixed.
|
|
|
|
- A bug in the Python configure script that meant os.fsync() was
|
2006-12-19 00:17:38 +01:00
|
|
|
never available is fixed.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Oct 02 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- force use of directories passed to configure script (-dirs.patch), bug #31947
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Sep 29 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to 2.3.1, most of changes were alredy included in -cvs.patch
|
|
|
|
- not so verbose untaring
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Sep 11 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- included fixes from cvs (branch release23-maint), this fixes some
|
|
|
|
memory leaks and other bugs (-cvs.patch)
|
|
|
|
- nicer output from pydoc (-pydoc.patch)
|
|
|
|
- cleaned up configure parameters
|
|
|
|
- compiling with -Wall
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Sep 10 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- build as shared
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Sep 03 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- python now obsoletes python-nothreads (bug #29907)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Aug 14 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed symlinks to configuration files
|
|
|
|
- cleaned up spec file
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Aug 06 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated lib64 patch
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Aug 05 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to final 2.3, some highlights:
|
|
|
|
* Python 2.3 is about 20-30%% faster than Python 2.2.3
|
|
|
|
* Brand new IDLE
|
|
|
|
* Some new or upgraded built-ins, includes better support for
|
|
|
|
unicode, new bool type...
|
|
|
|
* Lots of upgraded or new modules and packages.
|
|
|
|
* PYTHONINSPECT variabale that can cause python to behave as it
|
|
|
|
was executed with -i parameter.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jul 29 2003 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added tk-devel to neededforbuild
|
2008-04-09 00:44:31 +02:00
|
|
|
* Fri Jun 27 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to cvs snapshot, mostly because of finally correct DESTDIR
|
|
|
|
support, to avoid buildroot leftovers
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jun 24 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- better excluding site-packages from generated dirlist
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jun 17 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- ignore site-packages and share directories for filelists
|
|
|
|
- include install dir if not site-packages in filelists
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jun 17 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- better handle mutliple level of install directories when
|
|
|
|
generating %%dir entries
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jun 16 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- one more distutils patch update:
|
|
|
|
* fix generating of dirs in chrooted installs for install_data
|
|
|
|
* don't include directory for install_scripts
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jun 16 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated patch to work around problems with self defined get_outputs
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jun 16 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- modified distutils to allow generating complete file list for rpm
|
|
|
|
(including directories with %%dir macro), to use this use
|
2007-01-08 22:55:18 +01:00
|
|
|
--record-rpm= instead of --record=
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Jun 05 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- move documentation where it was in 2.2 versions
|
|
|
|
- fixed permissions for some scripts in devel package
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu May 29 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- cleaned up specfile
|
|
|
|
- make executable only files that should be
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon May 19 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed .cvsignore files
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Apr 29 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated lib64 patch
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Apr 28 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to 2.3b1, some highlights:
|
2007-01-08 22:55:18 +01:00
|
|
|
- sum() builtin, adds a sequence of numbers, beats reduce().
|
|
|
|
- csv module, reads comma-separated-value files (and more).
|
|
|
|
- timeit module, times code snippets.
|
|
|
|
- os.walk(), a generator slated to replace os.path.walk().
|
|
|
|
- platform module, by Marc-Andre Lemburg, returns detailed platform
|
2006-12-19 00:17:38 +01:00
|
|
|
information.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Apr 10 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- added DEFS to config/Makefile as it was in 2.2
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Apr 02 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated lib64 patch
|
|
|
|
- fixed list of built modules for 64-bit arches
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Apr 01 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to python 2.3 alpha 2
|
2007-01-08 22:55:18 +01:00
|
|
|
- updated many builtins and modules
|
|
|
|
- new modules: bsddb, bz2, datetime, logging, optparse, sets,
|
2006-12-19 00:17:38 +01:00
|
|
|
textwrap, zipimport,
|
2007-01-08 22:55:18 +01:00
|
|
|
- some general things have changed:
|
|
|
|
- Hex/oct literals prefixed with a minus sign were handled
|
2006-12-19 00:17:38 +01:00
|
|
|
inconsistently.
|
2007-01-08 22:55:18 +01:00
|
|
|
- Package index and metadata for distutils.
|
|
|
|
- Encoding declarations - you can put a comment of the form
|
2006-12-19 00:17:38 +01:00
|
|
|
"# -*- coding: -*-" in the first or second line of a Python
|
|
|
|
source file to indicate the encoding (e.g. utf-8).
|
2007-01-08 22:55:18 +01:00
|
|
|
- Import from zipfiles.
|
|
|
|
- see Misc/NEWS in documentation or python website -
|
2006-12-19 00:17:38 +01:00
|
|
|
http://python.org/2.3/highlights.html for more details
|
|
|
|
- moved distutils into -devel package
|
|
|
|
- cleaned up specfile
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Apr 01 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed RPM_BUILD_ROOT leftovers (bug #25963)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Mar 06 2003 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Provide/Obsolete python-tkinter
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jan 28 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- idle symlink corrected for lib64
|
|
|
|
- fixed LIBDEST path for distutils, closes #22322
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Jan 10 2003 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed distutils for lib64
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Dec 18 2002 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- improved blt detection for tkinter
|
|
|
|
- build with detected version of tix
|
|
|
|
- enabled SIGFPE catching
|
|
|
|
- enabled signal module
|
|
|
|
- enabled C++ support
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Nov 29 2002 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- enabled ipv6 support
|
|
|
|
- no apache is needed for building
|
|
|
|
- python-nothreads is not built anymore as is seems that mod_python
|
|
|
|
works correctly woth python 2.2.2 and threads
|
|
|
|
- Makefile also copied to config directory in rpm
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Nov 27 2002 adrian@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Makefile.pre* to config directory
|
|
|
|
(following the official spec file change)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Nov 08 2002 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed bad source number for suse-start-python-mode.el
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Nov 07 2002 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed %%files section for idle on lib64 arches
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Nov 06 2002 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- included python-mode.el for emacs
|
|
|
|
- idle moved from demos to separate package
|
|
|
|
- merged tk and tkinter
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Oct 30 2002 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed not needed l2h and tetex from neededforbuild
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Oct 30 2002 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- changed neededforbuild <l2h> to <latex2html>
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Oct 23 2002 mcihar@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to 2.2.2 (bugfix release)
|
|
|
|
- moved python-korean into separate source package
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Sep 17 2002 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed bogus self-provides
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Sep 10 2002 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Add provides for correct update
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Sep 05 2002 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- remove l2h from neededforbuild (apparently no longer used)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Aug 15 2002 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- no fpectl.so on alpha
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Aug 13 2002 uli@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- rediffed lib64 patch
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Aug 08 2002 vinil@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- new version 2.2.1
|
|
|
|
- new version of Korean codes 2.0.5
|
|
|
|
and splitted to standalone package 'python-korean'
|
|
|
|
- get rid of Makefile.pre.in
|
|
|
|
- clean part added to spec
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sun Jul 28 2002 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed termcap and tetex from neededforbuild (not used)
|
2008-04-09 00:44:31 +02:00
|
|
|
* Sat Jul 27 2002 adrian@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fix neededforbuild
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jun 11 2002 meissner@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- add ppc64 to list of 64bit archs that don't compile 3 of the plugins.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jun 04 2002 stepan@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- change more locations of lib to %%{_lib} on platforms
|
|
|
|
that need it.
|
|
|
|
- change Makefile to use install -d instead of mkdir
|
|
|
|
to solve trouble when installing in buildroots.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jun 03 2002 stepan@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Change config/Makefile and config/Makefile.pre.in
|
|
|
|
to use %%_lib instead of lib (fixes i.e. zope)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri May 17 2002 sf@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- changed site.py to detect the correct location (is needed at least for
|
|
|
|
postresql to build
|
|
|
|
- it still needs to be corrected, as only 64-bit excutable shlibs
|
|
|
|
have to reside in */lib64
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed May 15 2002 coolo@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixing file list for s390x
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed May 15 2002 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- use libdir
|
|
|
|
- try to get this working with lib64
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon May 06 2002 schwab@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Build python library with -fPIC, for inclusion in shared library.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Apr 17 2002 schwab@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Fix detection of readline library (use -lncurses instead of -ltermcap).
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sat Mar 23 2002 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- changed neededforbuild <l2h> to <l2h l2h-pngicons>
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Feb 01 2002 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- changed neededforbuild <libpng> to <libpng-devel-packages>
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Jan 09 2002 rvasice@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- used correct Makefile.pre.in
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Jan 09 2002 rvasice@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- added Makefile.pre.in to enable build other python packages
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jan 07 2002 rvasice@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to version 2.2
|
|
|
|
- recreated modules list
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Dec 17 2001 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed for gmp-4.x
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Sep 03 2001 rvasice@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- added patch for Large File Support
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Aug 27 2001 rvasice@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed conflicting file /etc/susehelp.d/pythonhtml.conf from
|
|
|
|
subpackage python-doc
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Aug 17 2001 schwab@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Compile python library with -fPIC to allow inclusion in shared
|
|
|
|
libraries.
|
|
|
|
- Fix configure check for rl_completion_matches.
|
|
|
|
- Replace use of config.guess by %%ifarch.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Aug 13 2001 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added regex module (needed for yodl)
|
|
|
|
- filelist probably needs re-check
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jul 30 2001 rvasice@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- fix /usr/local path
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Jul 27 2001 rvasice@suse.cz
|
2006-12-19 00:17:38 +01:00
|
|
|
- update to version 2.1.1
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue May 08 2001 mfabian@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- bzip2 sources
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Apr 13 2001 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fix build with new readline library
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Apr 11 2001 utuerk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added pythonhtml.conf for susehelp
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Feb 23 2001 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- changed neededforbuild <apache> to <apache apache-devel>
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Feb 23 2001 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added readline/readline-devel to neededforbuild (split from bash)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jan 22 2001 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Use -fPIC
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jan 16 2001 schwab@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Compile python library with -fpic so that it can be included in a
|
|
|
|
shared library (for mod_python).
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jan 15 2001 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added uc-kr codec, thanks to Hwang, SangJin <violiet@susekorea.net>
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sun Dec 31 2000 schwab@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Fix filelist for ia64.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Dec 18 2000 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added sub-package python-nothreads for mod_python apache-module
|
|
|
|
- added Obsoletes for old 8.3 packages names
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Dec 06 2000 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- cleaned up pythons tk dependencies
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Nov 30 2000 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed tix-link
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Nov 29 2000 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- changed neededforbuild <tcld> to <tcl-devel>
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Nov 27 2000 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- changed libnetpb to libnetpbm in neededforbuild
|
|
|
|
- changed file-list in python-devel
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Nov 23 2000 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added openssl-devel to neededforbuild
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Nov 22 2000 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed site-packages from Setup.in patch
|
|
|
|
- python-64bit.patch should be used on all 64bit platforms
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sun Nov 19 2000 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- updated to BeOpen-Python-2.0
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Oct 27 2000 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Use long filenames
|
|
|
|
- Fix some paths
|
|
|
|
- Include <db3/db_185.h>
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Jul 06 2000 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added anydbm (whichdb.py) patch from www.tummy.com
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sat May 27 2000 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Use libtk8.3.so and libtcl8.3.so
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu May 04 2000 kukuk@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Fix filelist for new doc dir
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Mar 14 2000 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed filelist for alpha
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Mar 01 2000 werner@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Fix config.guess selection
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Feb 16 2000 uli@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- passing MANDIR to "make install libinstall" (seems like it gets
|
|
|
|
lost somewhere)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Feb 16 2000 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- man to /usr/share using macro
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Feb 15 2000 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- stripped the python binary
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Oct 11 1999 max@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- ready for the new Tcl/Tk packages
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Sep 27 1999 bs@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed requirements for sub packages
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Sep 20 1999 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added python_image_lib as requires to pyth_tk and as provides to pyth_tkl
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Sep 13 1999 bs@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Jun 07 1999 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- disabled pyth_dvi module in spec-file
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed May 26 1999 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added libpng to neededforbuild
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed May 26 1999 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added blt to neededforbuild
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue May 25 1999 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- new version 1.5.2
|
|
|
|
- splited into sub-packages: pyth_doc, pyth_ps, pyth_pdf,
|
|
|
|
pyth_dvi, pyth_dmo, pyth_tk, pyth_tkl, pyth_cur, pythgdbm
|
|
|
|
to have better base-package compatibility to andrich.net.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Mar 18 1999 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- don't set POSIXLY_CORRECT for second patch
|
2008-03-11 17:57:23 +01:00
|
|
|
* Tue Jan 19 1999 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added automake to neededforbuild
|
|
|
|
- alpha-fix: don't mix up dec-osf with linux-alpha
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Dec 02 1998 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- removed TkInter into a separate package - pyth_tk - to make it
|
|
|
|
possible to replace it with a PIL based TkInter (Python Imaging
|
|
|
|
Lib) and better package dependecies (not each app needs TkInter)
|
|
|
|
- removed Makefile.Linux - all build is done from spec file now
|
|
|
|
- more /usr/local path fixes
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Nov 06 1998 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added automake to neededforbuild
|
|
|
|
- configure with threads
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Nov 05 1998 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- use db_185.h only for glibc-2.1
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Sep 23 1998 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- two hacks to compile for glibc:
|
|
|
|
Modules/bsddbmodule.c include db_185.h for glibc
|
|
|
|
Modules/mpzmodule.c gmp-mparam.h dont exist for glibc / use define
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sun Aug 23 1998 ke@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- Compress PostScript docu.
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Aug 17 1998 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- linked readline- and curses-modules with ncurses
|
2008-03-11 17:57:23 +01:00
|
|
|
* Fri Aug 07 1998 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- python modules - file permissions changed (-x)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Sat Jul 11 1998 bs@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed neededforbuild
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Jul 09 1998 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- new revision 1.5.1
|
|
|
|
- docu in a separate package (pyth_doc)
|
|
|
|
- Tkinter uses tk8.0/tcl8.0 now
|
|
|
|
- first attempt to make it "alpha ready" (spec- & dif-file)
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Mar 02 1998 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- fixed dependency to /usr/local/bin/python
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Feb 09 1998 ro@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added some in neededforbuild
|
2008-03-11 17:57:23 +01:00
|
|
|
* Wed Feb 04 1998 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- new Version 1.5 with more features, html documentation and new modules
|
2008-03-11 17:57:23 +01:00
|
|
|
* Mon Sep 15 1997 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- added support for readline and (shared) modules: tkinter, dbm, gdbm,
|
|
|
|
syslog, ncurses, ... - see /usr/lib/python1.4/config/Setup for details
|
2008-03-11 17:57:23 +01:00
|
|
|
* Thu Jun 05 1997 mt@suse.de
|
2006-12-19 00:17:38 +01:00
|
|
|
- new Version 1.4
|
|
|
|
- a symlink (python -> python1.4) will be used instead of a hardlink
|