Menu

[r317]: / trunk / setup.py  Maximize  Restore  History

Download this file

335 lines (297 with data), 13.3 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
#!/usr/bin/env python
#----------------------------------------------------------------------
# Setup script for the bsddb3 package
import os
import re
import sys
import glob
from distutils.core import setup, Extension
from distutils.dep_util import newer
import distutils.ccompiler
# read the module version number out of the .c file
VERSION = None
_ver_re = re.compile('^#\s*define\s+PY_BSDDB_VERSION\s+"(\d+\.\d+\.\d+)"')
try:
_srcFile = open('extsrc/bsddb.h', 'r')
except IOError:
print "Could not open module source to read the version number."
raise
for line in _srcFile.readlines():
m = _ver_re.match(line)
if m:
VERSION = m.group(1)
continue
del _srcFile
del _ver_re
del m
if not VERSION:
raise RuntimeError, "could not find PY_BSDDB_VERSION in extsrc/bsddb.h"
#----------------------------------------------------------------------
debug = '--debug' in sys.argv or '-g' in sys.argv
lflags_arg = []
if os.name == 'posix':
# Allow setting the DB dir and additional link flags either in
# the environment or on the command line.
# First check the environment...
BERKELEYDB_INCDIR = os.environ.get('BERKELEYDB_INCDIR', '')
BERKELEYDB_LIBDIR = os.environ.get('BERKELEYDB_LIBDIR', '')
BERKELEYDB_DIR = os.environ.get('BERKELEYDB_DIR', '')
LFLAGS = os.environ.get('LFLAGS', [])
LIBS = os.environ.get('LIBS', [])
# ...then the command line.
# Handle --berkeley-db=[PATH] and --lflags=[FLAGS]
args = sys.argv[:]
for arg in args:
if arg.startswith('--berkeley-db-incdir='):
BERKELEYDB_INCDIR = arg.split('=')[1]
sys.argv.remove(arg)
if arg.startswith('--berkeley-db-libdir='):
BERKELEYDB_LIBDIR = arg.split('=')[1]
sys.argv.remove(arg)
if arg.startswith('--berkeley-db='):
BERKELEYDB_DIR = arg.split('=')[1]
sys.argv.remove(arg)
elif arg.startswith('--lflags='):
LFLAGS = arg.split('=')[1].split()
sys.argv.remove(arg)
elif arg.startswith('--libs='):
LIBS = arg.split('=')[1].split()
sys.argv.remove(arg)
if LFLAGS or LIBS:
lflags_arg = LFLAGS + LIBS
# If we were not told where it is, go looking for it.
dblib = 'db'
incdir = libdir = None
if not BERKELEYDB_DIR and not BERKELEYDB_LIBDIR and not BERKELEYDB_INCDIR:
# NOTE: when updating these, also change the tuples in the for loops below
max_db_ver = (4, 6)
min_db_ver = (3, 3)
# construct a list of paths to look for the header file in on
# top of the normal inc_dirs.
db_inc_paths = [
'/usr/include/db4',
'/usr/local/include/db4',
'/opt/sfw/include/db4',
'/sw/include/db4',
'/usr/include/db3',
'/usr/local/include/db3',
'/opt/sfw/include/db3',
'/sw/include/db3',
]
# 4.x minor number specific paths
for x in range(max_db_ver[1]+1):
db_inc_paths.append('/usr/include/db4%d' % x)
db_inc_paths.append('/usr/local/BerkeleyDB.4.%d/include' % x)
db_inc_paths.append('/usr/local/include/db4%d' % x)
db_inc_paths.append('/pkg/db-4.%d/include' % x)
db_inc_paths.append('/opt/db-4.%d/include' % x)
# 3.x minor number specific paths
for x in (2,3):
db_inc_paths.append('/usr/include/db3%d' % x)
db_inc_paths.append('/usr/local/BerkeleyDB.3.%d/include' % x)
db_inc_paths.append('/usr/local/include/db3%d' % x)
db_inc_paths.append('/pkg/db-3.%d/include' % x)
db_inc_paths.append('/opt/db-3.%d/include' % x)
db_ver_inc_map = {}
class db_found(Exception): pass
try:
# this CCompiler object is only used to locate include files
compiler = distutils.ccompiler.new_compiler()
lib_dirs = compiler.library_dirs + [
'/lib64', '/usr/lib64',
'/lib', '/usr/lib',
]
inc_dirs = compiler.include_dirs + ['/usr/include']
# See whether there is a Oracle or Sleepycat header in the standard
# search path.
for d in inc_dirs + db_inc_paths:
f = os.path.join(d, "db.h")
if debug: print "db: looking for db.h in", f
if os.path.exists(f):
f = open(f).read()
m = re.search(r"#define\WDB_VERSION_MAJOR\W(\d+)", f)
if m:
db_major = int(m.group(1))
m = re.search(r"#define\WDB_VERSION_MINOR\W(\d+)", f)
db_minor = int(m.group(1))
db_ver = (db_major, db_minor)
if ( (not db_ver_inc_map.has_key(db_ver)) and
(db_ver <= max_db_ver and db_ver >= min_db_ver) ):
# save the include directory with the db.h version
# (first occurrance only)
db_ver_inc_map[db_ver] = d
if debug: print "db.h: found", db_ver, "in", d
else:
# we already found a header for this library version
if debug: print "db.h: ignoring", d
else:
# ignore this header, it didn't contain a version number
if debug: print "db.h: unsupported version", db_ver, "in", d
db_found_vers = db_ver_inc_map.keys()
db_found_vers.sort()
while db_found_vers:
db_ver = db_found_vers.pop()
db_incdir = db_ver_inc_map[db_ver]
# check lib directories parallel to the location of the header
db_dirs_to_check = [
os.path.join(db_incdir, '..', 'lib64'),
os.path.join(db_incdir, '..', 'lib'),
os.path.join(db_incdir, '..', '..', 'lib64'),
os.path.join(db_incdir, '..', '..', 'lib'),
]
db_dirs_to_check = filter(os.path.isdir, db_dirs_to_check)
# Look for a version specific db-X.Y before an ambiguoius dbX
# XXX should we -ever- look for a dbX name? Do any
# systems really not name their library by version and
# symlink to more general names?
for dblib in (('db-%d.%d' % db_ver), ('db%d' % db_ver[0])):
dblib_file = compiler.find_library_file(
db_dirs_to_check + lib_dirs, dblib )
if dblib_file:
db_libdir = os.path.abspath(os.path.dirname(dblib_file))
raise db_found
else:
if debug: print "db lib: ", dblib, "not found"
except db_found:
print "Found BerkeleyDB %d.%d installation." % db_ver
print " include files in", db_incdir
print " library files in", db_libdir
print " library name is lib"+dblib
if debug: print "db: lib dir", db_libdir, "inc dir", db_incdir
incdir = db_incdir
libdir = db_libdir
else:
# this means BerkeleyDB could not be found
pass
if BERKELEYDB_LIBDIR or BERKELEYDB_INCDIR:
libdir = BERKELEYDB_LIBDIR or None
incdir = BERKELEYDB_INCDIR or None
if not BERKELEYDB_DIR and not incdir and not libdir:
print "Can't find a local BerkeleyDB installation."
print "(suggestion: try the --berkeley-db=/path/to/bsddb option)"
sys.exit(1)
# figure out from the base setting where the lib and .h are
if not incdir:
incdir = os.path.join(BERKELEYDB_DIR, 'include')
if not libdir:
libdir = os.path.join(BERKELEYDB_DIR, 'lib')
if not '-ldb' in LIBS:
libname = [dblib]
else:
if debug: print "LIBS already contains '-ldb' not adding our own", "'-l"+dblib+"'"
libname = []
utils = []
# Test if the old bsddb is built-in
static = 0
try:
import bsddb
if str(bsddb).find('built-in') >= 0:
static = 1
except ImportError:
pass
# On Un*x, double check that no other built-in module pulls libdb in as a
# side-effect. TBD: how/what to do on other platforms?
fp = os.popen('ldd %s 2>&1' % sys.executable)
results = fp.read()
status = fp.close()
if not status and results.find('libdb.') >= 0:
static = 1
if static:
print """\
\aWARNING:
\tIt appears that the old bsddb module is staticly linked in the
\tPython executable. This will cause various random problems for
\tbsddb3, up to and including segfaults. Please rebuild your
\tPython either with bsddb disabled, or with it built as a shared
\tdynamic extension. Watch out for other modules (e.g. dbm) that create
\tdependencies in the python executable to libdb as a side effect."""
st = raw_input("Build anyway? (yes/[no]) ")
if st != "yes":
sys.exit(1)
elif os.name == 'nt':
# The default build of Berkeley DB for windows just leaves
# everything in the build dirs in the db source tree. That means
# that we either have to hunt around to find it, (which would be
# even more difficult than the mess above for Unix...) or we make
# the builder specify everything here. Compounding the problem is
# version numbers in default path names, and different library
# names for debug/release or dll/static.
#
# So to make things easier, I'm just going to exepect that the DB stuff
# has been moved to the ./db directory. There's an updatedb.bat file to
# help.
#
# You'll need to edit the project file that comes with Berkeley DB so it
# uses "Multithreaded DLL" and "Debug Multithreaded DLL" (/MD and /MDd)
# settings as appropriate to build .lib file (the db_static project).
incdir = 'db/include'
libdir = 'db/lib'
# read db.h to figure out what version of Berkeley DB this is
ver = None
db_h_lines = open(os.path.join(incdir, 'db.h'), 'r').readlines()
db_ver_re = re.compile(
r'^#define\s+DB_VERSION_STRING\s.*Berkeley DB (\d+\.\d+).*')
for line in db_h_lines:
match = db_ver_re.match(line)
if not match:
continue
fullverstr = match.group(1)
ver = fullverstr[0] + fullverstr[2] # 31 == 3.1, 32 == 3.2, etc.
assert ver in ('33', '40', '41', '42', '43', '44', '45', '46'), (
"pybsddb untested with this Berkeley DB version", ver)
print 'Detected BerkeleyDB version', ver, 'from db.h'
if debug:
libname = ['libdb%ssd' % ver] # Debug, static
else:
libname = ['libdb%ss' % ver] # Release, static
utils = [("bsddb3/utils",
["db/bin/db_archive.exe",
"db/bin/db_checkpoint.exe",
"db/bin/db_deadlock.exe",
"db/bin/db_dump.exe",
"db/bin/db_load.exe",
"db/bin/db_printlog.exe",
"db/bin/db_recover.exe",
"db/bin/db_stat.exe",
"db/bin/db_upgrade.exe",
"db/bin/db_verify.exe",
"db/bin/libdb%s.dll" % ver,
]),
("bsddb3/test", glob.glob("test/*.py"))
]
# do the actual build, install, whatever...
setup(name = 'bsddb3',
version = VERSION,
description = 'Python interface for BerkeleyDB',
long_description = """\
This module provides a nearly complete wrapping
of the Oracle/Sleepycat C API for the Database
Environment, Database, Cursor, and Transaction
objects, and each of these is exposed as a Python
type in the bsddb3.db module. The databse objects
can use various access methods: btree, hash, recno,
and queue. Please see the documents in the docs
directory of the source distribution or at the
website for more details on the types and methods
provided. The goal is the mirror most of the real
BerkeleyDB API so fall back to the Oracle BerkeleyDB
documentation as appropriate. Not everything API
supported has been documented in the included docs.""",
author = 'Robin Dunn, Gregory P. Smith, Andrew Kuchling, Barry Warsaw',
author_email = 'pybsddb-users@lists.sourceforge.net',
url = 'http://pybsddb.sf.net/',
packages = ['bsddb3', 'bsddb3/tests'],
package_dir = {'bsddb3': 'bsddb',
'bsddb3/tests': 'bsddb/test'},
ext_modules = [Extension('bsddb3._pybsddb',
sources = ['extsrc/_bsddb.c'],
depends = ['extsrc/bsddb.h'],
include_dirs = [ incdir ],
define_macros = [('PYBSDDB_STANDALONE', 1)],
library_dirs = [ libdir ],
runtime_library_dirs = [ libdir ],
libraries = libname,
extra_link_args = lflags_arg,
)],
data_files = utils,
)