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