]> git.pld-linux.org Git - packages/python.git/commitdiff
- drop obsolete files
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 5 Jul 2009 17:27:49 +0000 (17:27 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    python-bug-978833.patch -> 1.4
    python-config -> 1.5
    python-poll-instead-of-select-fix.patch -> 1.2

python-bug-978833.patch [deleted file]
python-config [deleted file]
python-poll-instead-of-select-fix.patch [deleted file]

diff --git a/python-bug-978833.patch b/python-bug-978833.patch
deleted file mode 100644 (file)
index 5bdc2b4..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-Index: Lib/socket.py
-===================================================================
---- Lib/socket.py      (revision 54542)
-+++ Lib/socket.py      (working copy)
-@@ -145,6 +145,10 @@
-     send = recv = recv_into = sendto = recvfrom = recvfrom_into = _dummy
-     __getattr__ = _dummy
-+# Wrapper around platform socket objects. This implements
-+# a platform-independent dup() functionality. The 
-+# implementation currently relies on reference counting
-+# to close the underlying socket object.
- class _socketobject(object):
-     __doc__ = _realsocket.__doc__
-Index: Lib/httplib.py
-===================================================================
---- Lib/httplib.py     (revision 54542)
-+++ Lib/httplib.py     (working copy)
-@@ -1133,6 +1133,9 @@
-     def __getattr__(self, attr):
-         return getattr(self._sock, attr)
-+    def close(self):
-+        SharedSocketClient.close(self)
-+        self._ssl = None
- class HTTPSConnection(HTTPConnection):
-     "This class allows communication via SSL."
-
---- Lib/httplib.py     2006/05/03 18:03:22     45890
-+++ Lib/httplib.py     2006/07/26 12:12:56     50844
-@@ -926,8 +926,8 @@
-         self.__state = _CS_IDLE
-         if response.will_close:
--            # this effectively passes the connection to the response
--            self.close()
-+            # Pass the socket to the response
-+            self.sock = None
-         else:
-             # remember this, so we can tell when it is complete
-             self.__response = response
diff --git a/python-config b/python-config
deleted file mode 100644 (file)
index 44db456..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/python
-import sys
-import os
-import getopt
-from distutils import sysconfig
-
-valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags', 
-              'ldflags', 'help']
-
-def exit_with_usage(code=1):
-    print >>sys.stderr, "Usage: %s [%s]" % (sys.argv[0], 
-                                            '|'.join('--'+opt for opt in valid_opts))
-    sys.exit(code)
-
-try:
-    opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
-except getopt.error:
-    exit_with_usage()
-
-if not opts:
-    exit_with_usage()
-
-opt = opts[0][0]
-
-getvar = sysconfig.get_config_var
-pyver = getvar('VERSION')
-
-if opt == '--help':
-    exit_with_usage(0)
-
-elif opt == '--prefix':
-    print sysconfig.PREFIX
-
-elif opt == '--exec-prefix':
-    print sysconfig.EXEC_PREFIX
-
-elif opt in ('--includes', '--cflags'):
-    flags = ['-I'+dir for dir in getvar('INCLDIRSTOMAKE').split()]
-    if opt == '--cflags':
-        flags.extend(getvar('CFLAGS').split())
-    print ' '.join(flags)
-
-elif opt in ('--libs', '--ldflags'):
-    libs = sysconfig.get_config_var('LIBS').split()
-    libs.append('-lpython'+pyver)
-    if opt == '--ldflags':
-        libs.insert(0, '-L' + getvar('LIBPL'))
-    print ' '.join(libs)
-
diff --git a/python-poll-instead-of-select-fix.patch b/python-poll-instead-of-select-fix.patch
deleted file mode 100644 (file)
index c0361e5..0000000
+++ /dev/null
@@ -1,156 +0,0 @@
---- Python-2.4.3/Modules/_ssl.c.orig   2006-10-06 00:47:51.000000000 +0200
-+++ Python-2.4.3/Modules/_ssl.c        2006-10-06 00:48:31.000000000 +0200
-@@ -26,6 +26,12 @@
- /* Include symbols from _socket module */
- #include "socketmodule.h"
-+#if defined(HAVE_POLL_H) 
-+#include <poll.h>
-+#elif defined(HAVE_SYS_POLL_H)
-+#include <sys/poll.h>
-+#endif
-+
- /* Include OpenSSL header files */
- #include "openssl/rsa.h"
- #include "openssl/crypto.h"
-@@ -354,7 +360,7 @@
-       PyObject_Del(self);
- }
--/* If the socket has a timeout, do a select() on the socket.
-+/* If the socket has a timeout, do a select()/poll() on the socket.
-    The argument writing indicates the direction.
-    Returns one of the possibilities in the timeout_state enum (above).
-  */
-@@ -376,6 +382,26 @@
-       if (s->sock_fd < 0)
-               return SOCKET_HAS_BEEN_CLOSED;
-+      /* Prefer poll, if available, since you can poll() any fd
-+       * which can't be done with select(). */
-+#ifdef HAVE_POLL
-+      {
-+              struct pollfd pollfd;
-+              int timeout;
-+
-+              pollfd.fd = s->sock_fd;
-+              pollfd.events = writing ? POLLOUT : POLLIN;
-+
-+              /* s->sock_timeout is in seconds, timeout in ms */
-+              timeout = (int)(s->sock_timeout * 1000 + 0.5);
-+              Py_BEGIN_ALLOW_THREADS
-+              rc = poll(&pollfd, 1, timeout);
-+              Py_END_ALLOW_THREADS
-+
-+              goto normal_return;
-+      }
-+#endif
-+
-       /* Guard against socket too large for select*/
- #ifndef Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE
-       if (s->sock_fd >= FD_SETSIZE)
-@@ -396,6 +422,7 @@
-               rc = select(s->sock_fd+1, &fds, NULL, NULL, &tv);
-       Py_END_ALLOW_THREADS
-+normal_return:
-       /* Return SOCKET_TIMED_OUT on timeout, SOCKET_OPERATION_OK otherwise
-          (when we are able to write or when there's something to read) */
-       return rc == 0 ? SOCKET_HAS_TIMED_OUT : SOCKET_OPERATION_OK;
---- Python-2.4.3/Modules/socketmodule.c.orig   2006-02-20 10:42:37.000000000 +0100
-+++ Python-2.4.3/Modules/socketmodule.c        2006-10-06 00:48:31.000000000 +0200
-@@ -390,14 +390,24 @@
-    there has to be a circular reference. */
- static PyTypeObject sock_type;
--/* Can we call select() with this socket without a buffer overrun? */
-+#if defined(HAVE_POLL_H)
-+#include <poll.h>
-+#elif defined(HAVE_SYS_POLL_H)
-+#include <sys/poll.h>
-+#endif
-+
- #ifdef Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE
- /* Platform can select file descriptors beyond FD_SETSIZE */
- #define IS_SELECTABLE(s) 1
-+#elif defined(HAVE_POLL)
-+/* Instead of select(), we'll use poll() since poll() works on any fd. */
-+#define IS_SELECTABLE(s) 1
-+/* Can we call select() with this socket without a buffer overrun? */
- #else
- /* POSIX says selecting file descriptors beyond FD_SETSIZE
--   has undefined behaviour. */
--#define IS_SELECTABLE(s) ((s)->sock_fd < FD_SETSIZE)
-+   has undefined behaviour.  If there's no timeout left, we don't have to
-+   call select, so it's a safe, little white lie. */
-+#define IS_SELECTABLE(s) ((s)->sock_fd < FD_SETSIZE || s->sock_timeout <= 0.0)
- #endif
- static PyObject*
-@@ -640,7 +650,7 @@
-       return 1;
- }
--/* Do a select() on the socket, if necessary (sock_timeout > 0).
-+/* Do a select()/poll() on the socket, if necessary (sock_timeout > 0).
-    The argument writing indicates the direction.
-    This does not raise an exception; we'll let our caller do that
-    after they've reacquired the interpreter lock.
-@@ -648,8 +658,6 @@
- static int
- internal_select(PySocketSockObject *s, int writing)
- {
--      fd_set fds;
--      struct timeval tv;
-       int n;
-       /* Nothing to do unless we're in timeout mode (not non-blocking) */
-@@ -660,17 +668,37 @@
-       if (s->sock_fd < 0)
-               return 0;
--      /* Construct the arguments to select */
--      tv.tv_sec = (int)s->sock_timeout;
--      tv.tv_usec = (int)((s->sock_timeout - tv.tv_sec) * 1e6);
--      FD_ZERO(&fds);
--      FD_SET(s->sock_fd, &fds);
--
--      /* See if the socket is ready */
--      if (writing)
--              n = select(s->sock_fd+1, NULL, &fds, NULL, &tv);
--      else
--              n = select(s->sock_fd+1, &fds, NULL, NULL, &tv);
-+      /* Prefer poll, if available, since you can poll() any fd
-+       * which can't be done with select(). */
-+#ifdef HAVE_POLL
-+      {
-+              struct pollfd pollfd;
-+              int timeout;
-+
-+              pollfd.fd = s->sock_fd;
-+              pollfd.events = writing ? POLLOUT : POLLIN;
-+
-+              /* s->sock_timeout is in seconds, timeout in ms */
-+              timeout = (int)(s->sock_timeout * 1000 + 0.5); 
-+              n = poll(&pollfd, 1, timeout);
-+      }
-+#else
-+      {
-+              /* Construct the arguments to select */
-+              fd_set fds;
-+              struct timeval tv;
-+              tv.tv_sec = (int)s->sock_timeout;
-+              tv.tv_usec = (int)((s->sock_timeout - tv.tv_sec) * 1e6);
-+              FD_ZERO(&fds);
-+              FD_SET(s->sock_fd, &fds);
-+
-+              /* See if the socket is ready */
-+              if (writing)
-+                      n = select(s->sock_fd+1, NULL, &fds, NULL, &tv);
-+              else
-+                      n = select(s->sock_fd+1, &fds, NULL, NULL, &tv);
-+      }
-+#endif
-       if (n == 0)
-               return 1;
-       return 0;
This page took 0.039159 seconds and 4 git commands to generate.