]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/_auto_deps.py
Eliminate direct dependencies of Tahoe-LAFS on pywin32 (rebased to trunk). refs ...
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / _auto_deps.py
1 # Note: do not import any module from Tahoe-LAFS itself in this
2 # file. Also please avoid importing modules from other packages than
3 # the Python Standard Library if at all possible (exception: we rely
4 # on importing pkg_resources, which is provided by setuptools,
5 # zetuptoolz, distribute, and perhaps in the future distutils2, for
6 # the require_auto_deps() function.)
7
8 install_requires=[
9                   # we require newer versions of setuptools (actually
10                   # zetuptoolz) to build, but can handle older versions to run
11                   "setuptools >= 0.6c6",
12
13                   "zfec >= 1.1.0",
14
15                   # Feisty has simplejson 1.4
16                   "simplejson >= 1.4",
17
18                   "zope.interface",
19                   "Twisted >= 2.4.0",
20
21                   # foolscap < 0.5.1 had a performance bug which spent
22                   # O(N**2) CPU for transferring large mutable files
23                   # of size N.
24                   # foolscap < 0.6 is incompatible with Twisted 10.2.0.
25                   # foolscap 0.6.1 quiets a DeprecationWarning.
26                   "foolscap[secure_connections] >= 0.6.1",
27                   "Nevow >= 0.6.0",
28
29                   # Needed for SFTP. pyasn1 is needed by twisted.conch in Twisted >= 9.0.
30                   # pycrypto 2.2 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/620253
31                   "pycrypto == 2.0.1, == 2.1, >= 2.3",
32                   "pyasn1 >= 0.0.8a",
33
34                   # http://www.voidspace.org.uk/python/mock/
35                   "mock",
36
37                   # Will be needed to test web apps, but not yet. See #1001.
38                   #"windmill >= 1.3",
39                   ]
40
41 import platform
42 if platform.machine().lower() in ['i386', 'x86_64', 'amd64', 'x86', '']:
43     # pycryptopp v0.5.20 fixes bugs in SHA-256 and AES on x86 or amd64
44     # (from Crypto++ revisions 470, 471, 480, 492).  The '' is there
45     # in case platform.machine is broken and this is actually an x86
46     # or amd64 machine.
47     install_requires.append("pycryptopp >= 0.5.20")
48 else:
49     # pycryptopp v0.5.13 had a new bundled version of Crypto++
50     # (v5.6.0) and a new bundled version of setuptools (although that
51     # shouldn't make any different to users of pycryptopp).
52     install_requires.append("pycryptopp >= 0.5.14")
53
54
55 # Sqlite comes built into Python >= 2.5, and is provided by the "pysqlite"
56 # distribution for Python 2.4.
57 import sys
58 if sys.version_info < (2, 5):
59     # pysqlite v2.0.5 was shipped in Ubuntu 6.06 LTS "dapper" and Nexenta NCP 1.
60     install_requires.append("pysqlite >= 2.0.5")
61
62 ## The following block is commented-out because there is not currently a pywin32 package which
63 ## can be easy_install'ed and also which actually makes "import win32api" succeed.
64 ## See http://sourceforge.net/tracker/index.php?func=detail&aid=1799934&group_id=78018&atid=551954
65 ## Users have to manually install pywin32 on Windows before installing Tahoe.
66 ##import platform
67 ##if platform.system() == "Windows":
68 ##    # Twisted requires pywin32 if it is going to offer process management functionality, or if
69 ##    # it is going to offer iocp reactor.  We currently require process management.  It would be
70 ##    # better if Twisted would declare that it requires pywin32 if it is going to offer process
71 ##    # management.  That is twisted ticket #3238 -- http://twistedmatrix.com/trac/ticket/3238 .
72 ##    install_requires.append('pywin32')
73
74 if hasattr(sys, 'frozen'): # for py2exe
75     install_requires=[]
76 del sys # clean up namespace
77
78 def require_python_version():
79     import sys, platform
80
81     # we require 2.4.4 on non-UCS-2, non-Redhat builds to avoid <http://www.python.org/news/security/PSF-2006-001/>
82     # we require 2.4.3 on non-UCS-2 Redhat, because 2.4.3 is common on Redhat-based distros and will have patched the above bug
83     # we require at least 2.4.2 in any case to avoid a bug in the base64 module: <http://bugs.python.org/issue1171487>
84     if sys.maxunicode == 65535:
85         if sys.version_info < (2, 4, 2) or sys.version_info[0] > 2:
86             raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.2 or greater "
87                                       "for a UCS-2 build (but less than v3), not %r" %
88                                       (sys.version_info,))
89     elif platform.platform().lower().find('redhat') >= 0:
90         if sys.version_info < (2, 4, 3) or sys.version_info[0] > 2:
91             raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.3 or greater "
92                                       "on Redhat-based distributions (but less than v3), not %r" %
93                                       (sys.version_info,))
94     else:
95         if sys.version_info < (2, 4, 4) or sys.version_info[0] > 2:
96             raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.4 or greater "
97                                       "for a non-UCS-2 build (but less than v3), not %r" %
98                                       (sys.version_info,))
99
100 def require_auto_deps():
101     """
102     The purpose of this function is to raise a pkg_resources exception if any of the
103     requirements can't be imported.  This is just to give earlier and more explicit error
104     messages, as opposed to waiting until the source code tries to import some module from one
105     of these packages and gets an ImportError.  This function gets called from
106     src/allmydata/__init__.py .
107     """
108     require_python_version()
109
110     import pkg_resources
111     for requirement in install_requires:
112         try:
113             pkg_resources.require(requirement)
114         except pkg_resources.DistributionNotFound:
115             # there is no .egg-info present for this requirement, which
116             # either means that it isn't installed, or it is installed in a
117             # way that pkg_resources can't find it (but regular python
118             # might).  There are several older Linux distributions which
119             # provide our dependencies just fine, but they don't ship
120             # .egg-info files. Note that if there *is* an .egg-info file,
121             # but it shows a too-old version, then we'll get a
122             # VersionConflict error instead of DistributionNotFound.
123             pass