From 9e50977fa3f205f6aea723348b16df791d4b44446be60d30f79156036b1694c0 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Tue, 21 Sep 2010 14:20:03 +0000 Subject: [PATCH] remove old files OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=83 --- Python-2.3.3-dirs.patch | 23 ----------------------- python-2.6.2-ssl_handshake_timeout.patch | 16 ---------------- python-2.6b3-ssl-compat.patch | 11 ----------- 3 files changed, 50 deletions(-) delete mode 100644 Python-2.3.3-dirs.patch delete mode 100644 python-2.6.2-ssl_handshake_timeout.patch delete mode 100644 python-2.6b3-ssl-compat.patch diff --git a/Python-2.3.3-dirs.patch b/Python-2.3.3-dirs.patch deleted file mode 100644 index 7189bf5..0000000 --- a/Python-2.3.3-dirs.patch +++ /dev/null @@ -1,23 +0,0 @@ -# force use of directories passed to configure script - -Index: Makefile.pre.in -=================================================================== ---- Makefile.pre.in.orig -+++ Makefile.pre.in -@@ -86,12 +86,12 @@ exec_prefix= @exec_prefix@ - datarootdir= @datarootdir@ - - # Expanded directories --BINDIR= $(exec_prefix)/bin --LIBDIR= $(exec_prefix)/lib -+BINDIR= @bindir@ -+LIBDIR= @libdir@ - MANDIR= @mandir@ - INCLUDEDIR= @includedir@ --CONFINCLUDEDIR= $(exec_prefix)/include --SCRIPTDIR= $(prefix)/lib -+CONFINCLUDEDIR= @includedir@ -+SCRIPTDIR= @libdir@ - - # Detailed destination directories - BINLIBDEST= $(LIBDIR)/python$(VERSION) diff --git a/python-2.6.2-ssl_handshake_timeout.patch b/python-2.6.2-ssl_handshake_timeout.patch deleted file mode 100644 index e758175..0000000 --- a/python-2.6.2-ssl_handshake_timeout.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- Lib/ssl.py -+++ Lib/ssl.py -@@ -112,12 +112,7 @@ - keyfile, certfile, - cert_reqs, ssl_version, ca_certs) - if do_handshake_on_connect: -- timeout = self.gettimeout() -- try: -- self.settimeout(None) -- self.do_handshake() -- finally: -- self.settimeout(timeout) -+ self.do_handshake() - self.keyfile = keyfile - self.certfile = certfile - self.cert_reqs = cert_reqs diff --git a/python-2.6b3-ssl-compat.patch b/python-2.6b3-ssl-compat.patch deleted file mode 100644 index 5d39a4e..0000000 --- a/python-2.6b3-ssl-compat.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Modules/_ssl.c -+++ Modules/_ssl.c -@@ -311,6 +311,8 @@ - goto fail; - } - -+ SSL_CTX_set_options(self->ctx, SSL_OP_ALL); /* ssl compatibility */ -+ - if (certreq != PY_SSL_CERT_NONE) { - if (cacerts_file == NULL) { - errstr = ERRSTR("No root certificates specified for "