Update of /cvsroot/fink/dists/10.2-gcc3.3/unstable/crypto/finkinfo
In directory sc8-pr-cvs1:/tmp/cvs-serv7819

Added Files:
        python23-socket-ssl-2.3-11.info 
        python23-socket-ssl-2.3-11.patch 
Log Message:
OK

--- NEW FILE: python23-socket-ssl-2.3-11.info ---
Package: python23-socket-ssl
Version: 2.3
Revision: 11
Epoch: 1
Description: Socket plugin for python (SSL version)
Maintainer: Jeffrey Whitaker <[EMAIL PROTECTED]>
Replaces: python23-socket, python23-socket-nox
Depends: openssl097-shlibs
BuildDepends: python23 | python23-nox, readline-shlibs (>= 4.3-15), dlcompat, 
expat-shlibs, gdbm-shlibs (>= 1.8.0-4), gmp-shlibs, db4-shlibs (>= 4.0.14-22), 
tcltk-shlibs (>= 8.4.1), libpoll-shlibs, tcltk (>= 8.4.1-1), readline (>= 4.3-5), db4 
(>= 4.0.14-22), gdbm (>= 1.8.0-4), gmp, libpoll, tcltk-dev, expat, openssl097-dev, 
dlcompat-dev
Source: http://python.org/ftp/python/2.3/Python-%v.tgz
Source-MD5: 595620a4769073a812e353597585c4e8
PatchScript: (sed 's|@PREFIX@|%p|g' < %a/%f.patch | patch -p1)
GCC: 3.3
CompileScript: <<
 %p/bin/python2.3 setup_socket_ssl.py build
<<
InstallScript: <<
 mkdir -p %i/lib/python2.3/lib-dynload
 cp build/lib.*/_socket.so %i/lib/python2.3/lib-dynload
 cp build/lib.*/_ssl.so %i/lib/python2.3/lib-dynload
<<
DocFiles: README LICENSE 
License: OSI-Approved
Homepage: http://www.python.org

--- NEW FILE: python23-socket-ssl-2.3-11.patch ---
--- Python-2.3b2/setup_socket_ssl.py.orig       Tue Apr  1 11:31:13 2003
+++ Python-2.3b2/setup_socket_ssl.py    Tue Apr  1 11:31:05 2003
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+
+from distutils.core import setup, Extension
+import os
+import sys
+
+try:
+    setup (name = "python-sockets-ssl",
+           version = "2.3b2",
+           description = "socket module w/ssl enabled",
+           ext_modules = [
+            Extension('_socket', ['Modules/socketmodule.c'],
+                                   include_dirs = ["@PREFIX@/include/openssl"],
+                                   library_dirs = ["@PREFIX@/lib/"],
+                                   libraries = ['ssl', 'crypto'],
+                                   define_macros = [('USE_SSL',1)] ),
+            Extension('_ssl', ['Modules/_ssl.c'],
+                                   include_dirs = ["@PREFIX@/include/openssl"],
+                                   library_dirs = ["@PREFIX@/lib/"],
+                                   libraries = ['ssl', 'crypto'],
+                                   depends = ['socketmodule.h'] )
+            ]
+           )
+except:
+    import sys
+    import traceback
+    traceback.print_exc()
+    sys.exit(1)




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to