Accepting request 30832 from devel:languages:python:Factory
Copy from devel:languages:python:Factory/python based on submit request 30832 from user matejcik OBS-URL: https://build.opensuse.org/request/show/30832 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python?expand=0&rev=42
This commit is contained in:
parent
8d16680d12
commit
b557378c0d
@ -1,6 +1,8 @@
|
|||||||
--- configure.in
|
Index: configure.in
|
||||||
|
===================================================================
|
||||||
|
--- configure.in.orig
|
||||||
+++ configure.in
|
+++ configure.in
|
||||||
@@ -509,9 +509,6 @@
|
@@ -511,9 +511,6 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -10,7 +12,7 @@
|
|||||||
# Check for unsupported systems
|
# Check for unsupported systems
|
||||||
case $ac_sys_system/$ac_sys_release in
|
case $ac_sys_system/$ac_sys_release in
|
||||||
atheos*|Linux*/1*)
|
atheos*|Linux*/1*)
|
||||||
@@ -572,6 +569,9 @@
|
@@ -574,6 +571,9 @@ SunOS*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -20,7 +22,7 @@
|
|||||||
AC_SUBST(ARCH)
|
AC_SUBST(ARCH)
|
||||||
AC_MSG_CHECKING(ARCH)
|
AC_MSG_CHECKING(ARCH)
|
||||||
ARCH=`uname -m`
|
ARCH=`uname -m`
|
||||||
@@ -3406,9 +3406,18 @@
|
@@ -3413,9 +3413,18 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check for readline 4.0
|
# check for readline 4.0
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
--- Makefile.pre.in
|
Index: Makefile.pre.in
|
||||||
|
===================================================================
|
||||||
|
--- Makefile.pre.in.orig
|
||||||
+++ Makefile.pre.in
|
+++ Makefile.pre.in
|
||||||
@@ -57,7 +57,7 @@
|
@@ -57,7 +57,7 @@ MAKESETUP= $(srcdir)/Modules/makese
|
||||||
# Compiler options
|
# Compiler options
|
||||||
OPT= @OPT@
|
OPT= @OPT@
|
||||||
BASECFLAGS= @BASECFLAGS@
|
BASECFLAGS= @BASECFLAGS@
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
--- Lib/gettext.py
|
Index: Lib/gettext.py
|
||||||
|
===================================================================
|
||||||
|
--- Lib/gettext.py.orig
|
||||||
+++ Lib/gettext.py
|
+++ Lib/gettext.py
|
||||||
@@ -311,8 +311,9 @@
|
@@ -311,8 +311,9 @@ class GNUTranslations(NullTranslations):
|
||||||
self._charset = v.split('charset=')[1]
|
self._charset = v.split('charset=')[1]
|
||||||
elif k == 'plural-forms':
|
elif k == 'plural-forms':
|
||||||
v = v.split(';')
|
v = v.split(';')
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
Index: Lib/test/test_pyexpat.py
|
Index: Lib/test/test_pyexpat.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- Lib/test/test_pyexpat.py (revision 74428)
|
--- Lib/test/test_pyexpat.py.orig
|
||||||
+++ Lib/test/test_pyexpat.py (revision 74429)
|
+++ Lib/test/test_pyexpat.py
|
||||||
@@ -559,7 +559,25 @@
|
@@ -559,6 +559,24 @@ class ChardataBufferTest(unittest.TestCa
|
||||||
parser.Parse(xml2, 1)
|
parser.Parse(xml2, 1)
|
||||||
self.assertEquals(self.n, 4)
|
self.assertEquals(self.n, 4)
|
||||||
|
|
||||||
@ -15,7 +15,7 @@ Index: Lib/test/test_pyexpat.py
|
|||||||
+ self.fail()
|
+ self.fail()
|
||||||
+ except expat.ExpatError as e:
|
+ except expat.ExpatError as e:
|
||||||
+ self.assertEquals(str(e), 'no element found: line 2, column 1')
|
+ self.assertEquals(str(e), 'no element found: line 2, column 1')
|
||||||
|
+
|
||||||
+ def test2(self):
|
+ def test2(self):
|
||||||
+ xml = "<?xml version\xc2\x85='1.0'?>\r\n"
|
+ xml = "<?xml version\xc2\x85='1.0'?>\r\n"
|
||||||
+ parser = expat.ParserCreate()
|
+ parser = expat.ParserCreate()
|
||||||
@ -24,11 +24,10 @@ Index: Lib/test/test_pyexpat.py
|
|||||||
+ self.fail()
|
+ self.fail()
|
||||||
+ except expat.ExpatError as e:
|
+ except expat.ExpatError as e:
|
||||||
+ self.assertEquals(str(e), 'XML declaration not well-formed: line 1, column 14')
|
+ self.assertEquals(str(e), 'XML declaration not well-formed: line 1, column 14')
|
||||||
+
|
|
||||||
def test_main():
|
def test_main():
|
||||||
run_unittest(SetAttributeTest,
|
run_unittest(SetAttributeTest,
|
||||||
ParseTest,
|
@@ -569,7 +587,8 @@ def test_main():
|
||||||
@@ -569,7 +587,8 @@
|
|
||||||
HandlerExceptionTest,
|
HandlerExceptionTest,
|
||||||
PositionTest,
|
PositionTest,
|
||||||
sf1296433Test,
|
sf1296433Test,
|
||||||
@ -40,9 +39,9 @@ Index: Lib/test/test_pyexpat.py
|
|||||||
test_main()
|
test_main()
|
||||||
Index: Modules/expat/xmltok_impl.c
|
Index: Modules/expat/xmltok_impl.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- Modules/expat/xmltok_impl.c (revision 74428)
|
--- Modules/expat/xmltok_impl.c.orig
|
||||||
+++ Modules/expat/xmltok_impl.c (revision 74429)
|
+++ Modules/expat/xmltok_impl.c
|
||||||
@@ -1741,7 +1741,7 @@
|
@@ -1741,7 +1741,7 @@ PREFIX(updatePosition)(const ENCODING *e
|
||||||
const char *end,
|
const char *end,
|
||||||
POSITION *pos)
|
POSITION *pos)
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
--- Lib/distutils/tests/test_bdist_wininst.py
|
Index: Lib/distutils/tests/test_bdist_wininst.py
|
||||||
|
===================================================================
|
||||||
|
--- Lib/distutils/tests/test_bdist_wininst.py.orig
|
||||||
+++ Lib/distutils/tests/test_bdist_wininst.py
|
+++ Lib/distutils/tests/test_bdist_wininst.py
|
||||||
@@ -5,11 +5,13 @@
|
@@ -5,11 +5,13 @@ import os
|
||||||
from distutils.dist import Distribution
|
from distutils.dist import Distribution
|
||||||
from distutils.command.bdist_wininst import bdist_wininst
|
from distutils.command.bdist_wininst import bdist_wininst
|
||||||
from distutils.tests import support
|
from distutils.tests import support
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
--- Python/sysmodule.c
|
Index: Python/sysmodule.c
|
||||||
|
===================================================================
|
||||||
|
--- Python/sysmodule.c.orig
|
||||||
+++ Python/sysmodule.c
|
+++ Python/sysmodule.c
|
||||||
@@ -1532,7 +1532,20 @@
|
@@ -1550,7 +1550,20 @@ PySys_SetArgv(int argc, char **argv)
|
||||||
char *p = NULL;
|
char *p = NULL;
|
||||||
Py_ssize_t n = 0;
|
Py_ssize_t n = 0;
|
||||||
PyObject *a;
|
PyObject *a;
|
||||||
@ -22,7 +24,7 @@
|
|||||||
char link[MAXPATHLEN+1];
|
char link[MAXPATHLEN+1];
|
||||||
char argv0copy[2*MAXPATHLEN+1];
|
char argv0copy[2*MAXPATHLEN+1];
|
||||||
int nr = 0;
|
int nr = 0;
|
||||||
@@ -1559,7 +1572,8 @@
|
@@ -1577,7 +1590,8 @@ PySys_SetArgv(int argc, char **argv)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -32,7 +34,7 @@
|
|||||||
#if SEP == '\\' /* Special case for MS filename syntax */
|
#if SEP == '\\' /* Special case for MS filename syntax */
|
||||||
if (argc > 0 && argv0 != NULL && strcmp(argv0, "-c") != 0) {
|
if (argc > 0 && argv0 != NULL && strcmp(argv0, "-c") != 0) {
|
||||||
char *q;
|
char *q;
|
||||||
@@ -1585,11 +1599,6 @@
|
@@ -1606,11 +1620,6 @@ PySys_SetArgv(int argc, char **argv)
|
||||||
}
|
}
|
||||||
#else /* All other filename syntaxes */
|
#else /* All other filename syntaxes */
|
||||||
if (argc > 0 && argv0 != NULL && strcmp(argv0, "-c") != 0) {
|
if (argc > 0 && argv0 != NULL && strcmp(argv0, "-c") != 0) {
|
||||||
@ -44,7 +46,7 @@
|
|||||||
p = strrchr(argv0, SEP);
|
p = strrchr(argv0, SEP);
|
||||||
}
|
}
|
||||||
if (p != NULL) {
|
if (p != NULL) {
|
||||||
@@ -1607,6 +1616,9 @@
|
@@ -1628,6 +1637,9 @@ PySys_SetArgv(int argc, char **argv)
|
||||||
a = PyString_FromStringAndSize(argv0, n);
|
a = PyString_FromStringAndSize(argv0, n);
|
||||||
if (a == NULL)
|
if (a == NULL)
|
||||||
Py_FatalError("no mem for sys.path insertion");
|
Py_FatalError("no mem for sys.path insertion");
|
||||||
@ -54,9 +56,11 @@
|
|||||||
if (PyList_Insert(path, 0, a) < 0)
|
if (PyList_Insert(path, 0, a) < 0)
|
||||||
Py_FatalError("sys.path.insert(0) failed");
|
Py_FatalError("sys.path.insert(0) failed");
|
||||||
Py_DECREF(a);
|
Py_DECREF(a);
|
||||||
--- configure.in
|
Index: configure.in
|
||||||
|
===================================================================
|
||||||
|
--- configure.in.orig
|
||||||
+++ configure.in
|
+++ configure.in
|
||||||
@@ -2473,7 +2473,7 @@
|
@@ -2495,7 +2495,7 @@ AC_CHECK_FUNCS(alarm setitimer getitimer
|
||||||
getpriority getpwent getspnam getspent getsid getwd \
|
getpriority getpwent getspnam getspent getsid getwd \
|
||||||
kill killpg lchmod lchown lstat mkfifo mknod mktime \
|
kill killpg lchmod lchown lstat mkfifo mknod mktime \
|
||||||
mremap nice pathconf pause plock poll pthread_init \
|
mremap nice pathconf pause plock poll pthread_init \
|
||||||
@ -65,7 +69,9 @@
|
|||||||
select setegid seteuid setgid \
|
select setegid seteuid setgid \
|
||||||
setlocale setregid setreuid setsid setpgid setpgrp setuid setvbuf snprintf \
|
setlocale setregid setreuid setsid setpgid setpgrp setuid setvbuf snprintf \
|
||||||
sigaction siginterrupt sigrelse strftime \
|
sigaction siginterrupt sigrelse strftime \
|
||||||
--- pyconfig.h.in
|
Index: pyconfig.h.in
|
||||||
|
===================================================================
|
||||||
|
--- pyconfig.h.in.orig
|
||||||
+++ pyconfig.h.in
|
+++ pyconfig.h.in
|
||||||
@@ -79,6 +79,9 @@
|
@@ -79,6 +79,9 @@
|
||||||
/* Define to 1 if you have the `chflags' function. */
|
/* Define to 1 if you have the `chflags' function. */
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
Index: Lib/httplib.py
|
Index: Lib/httplib.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- Lib/httplib.py (revision 66111)
|
--- Lib/httplib.py.orig
|
||||||
+++ Lib/httplib.py (working copy)
|
+++ Lib/httplib.py
|
||||||
@@ -651,11 +651,17 @@
|
@@ -652,11 +652,17 @@ class HTTPConnection:
|
||||||
self.__response = None
|
self.__response = None
|
||||||
self.__state = _CS_IDLE
|
self.__state = _CS_IDLE
|
||||||
self._method = None
|
self._method = None
|
||||||
@ -20,7 +20,7 @@ Index: Lib/httplib.py
|
|||||||
def _set_hostport(self, host, port):
|
def _set_hostport(self, host, port):
|
||||||
if port is None:
|
if port is None:
|
||||||
i = host.rfind(':')
|
i = host.rfind(':')
|
||||||
@@ -676,10 +682,24 @@
|
@@ -677,10 +683,24 @@ class HTTPConnection:
|
||||||
def set_debuglevel(self, level):
|
def set_debuglevel(self, level):
|
||||||
self.debuglevel = level
|
self.debuglevel = level
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ Index: Lib/httplib.py
|
|||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
"""Close the connection to the HTTP server."""
|
"""Close the connection to the HTTP server."""
|
||||||
@@ -1069,6 +1089,9 @@
|
@@ -1070,6 +1090,9 @@ else:
|
||||||
"Connect to a host on a given (SSL) port."
|
"Connect to a host on a given (SSL) port."
|
||||||
|
|
||||||
sock = socket.create_connection((self.host, self.port), self.timeout)
|
sock = socket.create_connection((self.host, self.port), self.timeout)
|
||||||
@ -57,9 +57,9 @@ Index: Lib/httplib.py
|
|||||||
__all__.append("HTTPSConnection")
|
__all__.append("HTTPSConnection")
|
||||||
Index: Lib/urllib2.py
|
Index: Lib/urllib2.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- Lib/urllib2.py (revision 66111)
|
--- Lib/urllib2.py.orig
|
||||||
+++ Lib/urllib2.py (working copy)
|
+++ Lib/urllib2.py
|
||||||
@@ -192,6 +192,7 @@
|
@@ -192,6 +192,7 @@ class Request:
|
||||||
# self.__r_type is what's left after doing the splittype
|
# self.__r_type is what's left after doing the splittype
|
||||||
self.host = None
|
self.host = None
|
||||||
self.port = None
|
self.port = None
|
||||||
@ -67,7 +67,7 @@ Index: Lib/urllib2.py
|
|||||||
self.data = data
|
self.data = data
|
||||||
self.headers = {}
|
self.headers = {}
|
||||||
for key, value in headers.items():
|
for key, value in headers.items():
|
||||||
@@ -252,9 +253,14 @@
|
@@ -252,8 +253,13 @@ class Request:
|
||||||
return self.__r_host
|
return self.__r_host
|
||||||
|
|
||||||
def set_proxy(self, host, type):
|
def set_proxy(self, host, type):
|
||||||
@ -79,12 +79,11 @@ Index: Lib/urllib2.py
|
|||||||
+ self.type = type
|
+ self.type = type
|
||||||
+ self.__r_host = self.__original
|
+ self.__r_host = self.__original
|
||||||
+ self.host = host
|
+ self.host = host
|
||||||
|
|
||||||
+
|
+
|
||||||
|
|
||||||
def has_proxy(self):
|
def has_proxy(self):
|
||||||
return self.__r_host == self.__original
|
return self.__r_host == self.__original
|
||||||
|
@@ -700,7 +706,7 @@ class ProxyHandler(BaseHandler):
|
||||||
@@ -700,7 +706,7 @@
|
|
||||||
req.add_header('Proxy-authorization', 'Basic ' + creds)
|
req.add_header('Proxy-authorization', 'Basic ' + creds)
|
||||||
hostport = unquote(hostport)
|
hostport = unquote(hostport)
|
||||||
req.set_proxy(hostport, proxy_type)
|
req.set_proxy(hostport, proxy_type)
|
||||||
@ -93,7 +92,7 @@ Index: Lib/urllib2.py
|
|||||||
# let other handlers take care of it
|
# let other handlers take care of it
|
||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
@@ -1098,6 +1104,9 @@
|
@@ -1098,6 +1104,9 @@ class AbstractHTTPHandler(BaseHandler):
|
||||||
headers["Connection"] = "close"
|
headers["Connection"] = "close"
|
||||||
headers = dict(
|
headers = dict(
|
||||||
(name.title(), val) for name, val in headers.items())
|
(name.title(), val) for name, val in headers.items())
|
||||||
@ -105,9 +104,9 @@ Index: Lib/urllib2.py
|
|||||||
r = h.getresponse()
|
r = h.getresponse()
|
||||||
Index: Lib/test/test_urllib2.py
|
Index: Lib/test/test_urllib2.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- Lib/test/test_urllib2.py (revision 66111)
|
--- Lib/test/test_urllib2.py.orig
|
||||||
+++ Lib/test/test_urllib2.py (working copy)
|
+++ Lib/test/test_urllib2.py
|
||||||
@@ -939,6 +939,23 @@
|
@@ -939,6 +939,23 @@ class HandlerTests(unittest.TestCase):
|
||||||
self.assertEqual([(handlers[0], "http_open")],
|
self.assertEqual([(handlers[0], "http_open")],
|
||||||
[tup[0:2] for tup in o.calls])
|
[tup[0:2] for tup in o.calls])
|
||||||
|
|
||||||
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 29 15:44:15 CET 2010 - matejcik@suse.cz
|
||||||
|
|
||||||
|
- enabled ipv6 in configure (bnc#572673)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 23 08:36:29 UTC 2009 - aj@suse.de
|
||||||
|
|
||||||
|
- Apply patches with fuzz=0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 15 00:22:44 CET 2009 - jengelh@medozas.de
|
Tue Dec 15 00:22:44 CET 2009 - jengelh@medozas.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-base (Version 2.6.2)
|
# spec file for package python-base (Version 2.6.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -33,7 +33,7 @@ Obsoletes: python-64bit
|
|||||||
#
|
#
|
||||||
Summary: Python Interpreter base package
|
Summary: Python Interpreter base package
|
||||||
Version: 2.6.2
|
Version: 2.6.2
|
||||||
Release: 7
|
Release: 8
|
||||||
%define tarname Python-%{version}
|
%define tarname Python-%{version}
|
||||||
Source0: %{tarname}.tar.bz2
|
Source0: %{tarname}.tar.bz2
|
||||||
Source1: macros.python
|
Source1: macros.python
|
||||||
@ -168,6 +168,7 @@ touch Parser/asdl* Python/Python-ast.c Include/Python-ast.h
|
|||||||
--mandir=%{_mandir} \
|
--mandir=%{_mandir} \
|
||||||
--docdir=%{_docdir}/python \
|
--docdir=%{_docdir}/python \
|
||||||
--with-fpectl \
|
--with-fpectl \
|
||||||
|
--enable-ipv6 \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--enable-unicode=ucs4
|
--enable-unicode=ucs4
|
||||||
########################################
|
########################################
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
--- Python-2.4c1.orig/Lib/distutils/command/install.py 2004-11-23 12:03:25.394124018 +0100
|
Index: Python-2.6.2/Lib/distutils/command/install.py
|
||||||
+++ Python-2.4c1/Lib/distutils/command/install.py 2004-11-23 12:29:28.270687563 +0100
|
===================================================================
|
||||||
@@ -135,6 +135,8 @@
|
--- Python-2.6.2.orig/Lib/distutils/command/install.py
|
||||||
|
+++ Python-2.6.2/Lib/distutils/command/install.py
|
||||||
|
@@ -168,6 +168,8 @@ class install (Command):
|
||||||
|
|
||||||
('record=', None,
|
('record=', None,
|
||||||
"filename in which to record list of installed files"),
|
"filename in which to record list of installed files"),
|
||||||
@ -8,8 +10,8 @@
|
|||||||
+ "filename in which to record list of installed files and directories suitable as filelist for rpm"),
|
+ "filename in which to record list of installed files and directories suitable as filelist for rpm"),
|
||||||
]
|
]
|
||||||
|
|
||||||
boolean_options = ['compile', 'force', 'skip-build']
|
boolean_options = ['compile', 'force', 'skip-build', 'user']
|
||||||
@@ -207,6 +209,7 @@
|
@@ -243,6 +245,7 @@ class install (Command):
|
||||||
#self.install_info = None
|
#self.install_info = None
|
||||||
|
|
||||||
self.record = None
|
self.record = None
|
||||||
@ -17,7 +19,7 @@
|
|||||||
|
|
||||||
|
|
||||||
# -- Option finalizing methods -------------------------------------
|
# -- Option finalizing methods -------------------------------------
|
||||||
@@ -508,12 +511,61 @@
|
@@ -592,12 +595,61 @@ class install (Command):
|
||||||
self.create_path_file()
|
self.create_path_file()
|
||||||
|
|
||||||
# write list of installed files, if requested.
|
# write list of installed files, if requested.
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 23 08:36:27 UTC 2009 - aj@suse.de
|
||||||
|
|
||||||
|
- Apply patches with fuzz=0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 27 15:21:03 CEST 2009 - matejcik@suse.cz
|
Mon Apr 27 15:21:03 CEST 2009 - matejcik@suse.cz
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-doc (Version 2.6)
|
# spec file for package python-doc (Version 2.6)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -24,7 +24,7 @@ Group: Development/Languages/Python
|
|||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Summary: Additional Package Documentation for Python.
|
Summary: Additional Package Documentation for Python.
|
||||||
Version: 2.6
|
Version: 2.6
|
||||||
Release: 17
|
Release: 18
|
||||||
%define pyver 2.6.2
|
%define pyver 2.6.2
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%define tarname Python-%{pyver}
|
%define tarname Python-%{pyver}
|
||||||
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 29 15:44:28 CET 2010 - matejcik@suse.cz
|
||||||
|
|
||||||
|
- enabled ipv6 in configure (bnc#572673)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 23 08:36:32 UTC 2009 - aj@suse.de
|
||||||
|
|
||||||
|
- Apply patches with fuzz=0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 2 18:40:21 UTC 2009 - coolo@novell.com
|
Wed Dec 2 18:40:21 UTC 2009 - coolo@novell.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python (Version 2.6.2)
|
# spec file for package python (Version 2.6.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -35,7 +35,7 @@ Obsoletes: python-64bit
|
|||||||
Obsoletes: python-nothreads python21 python-elementtree python-sqlite
|
Obsoletes: python-nothreads python21 python-elementtree python-sqlite
|
||||||
Summary: Python Interpreter
|
Summary: Python Interpreter
|
||||||
Version: 2.6.2
|
Version: 2.6.2
|
||||||
Release: 7
|
Release: 8
|
||||||
Requires: python-base = %{version}
|
Requires: python-base = %{version}
|
||||||
%define tarname Python-%{version}
|
%define tarname Python-%{version}
|
||||||
Source0: %{tarname}.tar.bz2
|
Source0: %{tarname}.tar.bz2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user