build: Blacklist the release-4-0-0 provision as well
[bbaumbach/samba-autobuild/.git] / wscript
1 #!/usr/bin/env python
2
3 srcdir = '.'
4 blddir = 'bin'
5
6 APPNAME='samba'
7 VERSION=None
8
9 import sys, os, tempfile
10 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
11 import wafsamba, Options, samba_dist, Scripting, Utils, samba_version
12
13
14 samba_dist.DIST_DIRS('.')
15 samba_dist.DIST_BLACKLIST('.gitignore .bzrignore source4/selftest/provisions/alpha13 source4/selftest/provisions/release-4-0-0/')
16
17 # install in /usr/local/samba by default
18 Options.default_prefix = '/usr/local/samba'
19
20 # This callback optionally takes a list of paths as arguments:
21 # --with-system_mitkrb5 /path/to/krb5 /another/path
22 def system_mitkrb5_callback(option, opt, value, parser):
23     setattr(parser.values, option.dest, True)
24     value = []
25     for arg in parser.rargs:
26         # stop on --foo like options
27         if arg[:2] == "--" and len(arg) > 2:
28             break
29         value.append(arg)
30     if len(value)>0:
31         del parser.rargs[:len(value)]
32         setattr(parser.values, option.dest, value)
33
34 def set_options(opt):
35     opt.BUILTIN_DEFAULT('NONE')
36     opt.PRIVATE_EXTENSION_DEFAULT('samba4')
37     opt.RECURSE('lib/replace')
38     opt.RECURSE('dynconfig')
39     opt.RECURSE('lib/ldb')
40     opt.RECURSE('lib/ntdb')
41     opt.RECURSE('selftest')
42     opt.RECURSE('source4/lib/tls')
43     opt.RECURSE('lib/nss_wrapper')
44     opt.RECURSE('lib/socket_wrapper')
45     opt.RECURSE('lib/uid_wrapper')
46     opt.RECURSE('pidl')
47     opt.RECURSE('source3')
48     opt.RECURSE('lib/util')
49
50     opt.add_option('--with-system-mitkrb5',
51                    help='enable system MIT krb5 build (includes Samba 4 client and Samba 3 code base).'+
52                         'You may specify list of paths where Kerberos is installed (e.g. /usr/local /usr/kerberos) to search krb5-config',
53                    action='callback', callback=system_mitkrb5_callback, dest='with_system_mitkrb5', default=False)
54
55     opt.add_option('--without-ad-dc',
56                    help='disable AD DC functionality (enables Samba 4 client and Samba 3 code base).',
57                    action='store_true', dest='without_ad_dc', default=False)
58
59     gr = opt.option_group('developer options')
60
61
62     opt.tool_options('python') # options for disabling pyc or pyo compilation
63     # enable options related to building python extensions
64
65
66 def configure(conf):
67     version = samba_version.load_version(env=conf.env)
68
69     conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
70     conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)
71     conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
72
73     if Options.options.developer:
74         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
75         conf.env.DEVELOPER = True
76
77     conf.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace')
78
79     conf.RECURSE('lib/replace')
80
81     conf.find_program('perl', var='PERL', mandatory=True)
82     conf.find_program('xsltproc', var='XSLTPROC')
83
84     conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2,5,0))
85     conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
86
87     if sys.platform == 'darwin' and not conf.env['HAVE_ENVIRON_DECL']:
88         # Mac OSX needs to have this and it's also needed that the python is compiled with this
89         # otherwise you face errors about common symbols
90         if not conf.CHECK_SHLIB_W_PYTHON("Checking if -fno-common is needed"):
91             conf.ADD_CFLAGS('-fno-common')
92         if not conf.CHECK_SHLIB_W_PYTHON("Checking if -undefined dynamic_lookup is not need"):
93             conf.env.append_value('shlib_LINKFLAGS', ['-undefined', 'dynamic_lookup'])
94
95     if sys.platform == 'darwin':
96         conf.ADD_LDFLAGS('-framework CoreFoundation')
97
98     if int(conf.env['PYTHON_VERSION'][0]) >= 3:
99         raise Utils.WafError('Python version 3.x is not supported by Samba yet')
100
101     conf.RECURSE('dynconfig')
102     conf.RECURSE('lib/ldb')
103
104     if Options.options.with_system_mitkrb5:
105         conf.PROCESS_SEPARATE_RULE('system_mitkrb5')
106     if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5):
107         conf.DEFINE('AD_DC_BUILD_IS_ENABLED', 1)
108     # Only process heimdal_build for non-MIT KRB5 builds
109     # When MIT KRB5 checks are done as above, conf.env.KRB5_VENDOR will be set
110     # to the lowcased output of 'krb5-config --vendor'.
111     # If it is not set or the output is 'heimdal', we are dealing with
112     # system-provided or embedded Heimdal build
113     if conf.CONFIG_GET('KRB5_VENDOR') in (None, 'heimdal'):
114         conf.RECURSE('source4/heimdal_build')
115     conf.RECURSE('source4/lib/tls')
116     conf.RECURSE('source4/ntvfs/sysdep')
117     conf.RECURSE('lib/util')
118     conf.RECURSE('lib/ccan')
119     conf.RECURSE('lib/ntdb')
120     conf.RECURSE('lib/zlib')
121     conf.RECURSE('lib/util/charset')
122     conf.RECURSE('source4/auth')
123     conf.RECURSE('lib/nss_wrapper')
124     conf.RECURSE('nsswitch')
125     conf.RECURSE('lib/socket_wrapper')
126     conf.RECURSE('lib/uid_wrapper')
127     conf.RECURSE('lib/popt')
128     conf.RECURSE('lib/iniparser/src')
129     conf.RECURSE('lib/subunit/c')
130     conf.RECURSE('libcli/smbreadline')
131     conf.RECURSE('lib/crypto')
132     conf.RECURSE('pidl')
133     conf.RECURSE('selftest')
134     conf.RECURSE('source3')
135
136     conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
137
138     # gentoo always adds this. We want our normal build to be as
139     # strict as the strictest OS we support, so adding this here
140     # allows us to find problems on our development hosts faster.
141     # It also results in faster load time.
142
143     if sys.platform != "openbsd4":
144         conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
145
146     if not conf.CHECK_NEED_LC("-lc not needed"):
147         conf.ADD_LDFLAGS('-lc', testflags=False)
148
149     # we don't want PYTHONDIR in config.h, as otherwise changing
150     # --prefix causes a complete rebuild
151     del(conf.env.defines['PYTHONDIR'])
152     del(conf.env.defines['PYTHONARCHDIR'])
153
154     if not conf.CHECK_CODE('#include "tests/summary.c"',
155                            define='SUMMARY_PASSES',
156                            addmain=False,
157                            execute=True,
158                            msg='Checking configure summary'):
159         raise Utils.WafError('configure summary failed')
160     
161     conf.SAMBA_CONFIG_H('include/config.h')
162
163
164 def etags(ctx):
165     '''build TAGS file using etags'''
166     import Utils
167     source_root = os.path.dirname(Utils.g_module.root_path)
168     cmd = 'rm -f %s/TAGS && (find %s -name "*.[ch]" | egrep -v \.inst\. | xargs -n 100 etags -a)' % (source_root, source_root)
169     print("Running: %s" % cmd)
170     os.system(cmd)
171
172 def ctags(ctx):
173     "build 'tags' file using ctags"
174     import Utils
175     source_root = os.path.dirname(Utils.g_module.root_path)
176     cmd = 'ctags --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root, source_root)
177     print("Running: %s" % cmd)
178     os.system(cmd)
179
180 # putting this here enabled build in the list
181 # of commands in --help
182 def build(bld):
183     '''build all targets'''
184     samba_version.load_version(env=bld.env, is_install=bld.is_install)
185     pass
186
187
188 def pydoctor(ctx):
189     '''build python apidocs'''
190     bp = os.path.abspath('bin/python')
191     mpaths = {}
192     for m in ['talloc', 'tdb', 'ldb', 'ntdb']:
193         f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
194         try:
195             mpaths[m] = f.read().strip()
196         finally:
197             f.close()
198     cmd='PYTHONPATH=%s pydoctor --introspect-c-modules --project-name=Samba --project-url=http://www.samba.org --make-html --docformat=restructuredtext --add-package bin/python/samba --add-module %s --add-module %s --add-module %s' % (
199         bp, mpaths['tdb'], mpaths['ldb'], mpaths['talloc'], mpaths['ntdb'])
200     print("Running: %s" % cmd)
201     os.system(cmd)
202
203
204 def pep8(ctx):
205     '''run pep8 validator'''
206     cmd='PYTHONPATH=bin/python pep8 -r bin/python/samba'
207     print("Running: %s" % cmd)
208     os.system(cmd)
209
210
211 def wafdocs(ctx):
212     '''build wafsamba apidocs'''
213     from samba_utils import recursive_dirlist
214     os.system('pwd')
215     list = recursive_dirlist('../buildtools/wafsamba', '.', pattern='*.py')
216
217     cmd='PYTHONPATH=bin/python pydoctor --project-name=wafsamba --project-url=http://www.samba.org --make-html --docformat=restructuredtext'
218     print(list)
219     for f in list:
220         cmd += ' --add-module %s' % f
221     print("Running: %s" % cmd)
222     os.system(cmd)
223
224
225 def dist():
226     '''makes a tarball for distribution'''
227     sambaversion = samba_version.load_version(env=None)
228
229     os.system(srcdir + "/release-scripts/build-manpages-nogit")
230     samba_dist.DIST_FILES('bin/docs:docs', extend=True)
231
232     os.system(srcdir + "/source3/autogen.sh")
233     samba_dist.DIST_FILES('source3/configure', extend=True)
234     samba_dist.DIST_FILES('source3/autoconf', extend=True)
235     samba_dist.DIST_FILES('source3/include/autoconf', extend=True)
236     samba_dist.DIST_FILES('examples/VFS/configure', extend=True)
237     samba_dist.DIST_FILES('examples/VFS/module_config.h.in', extend=True)
238
239     if sambaversion.IS_SNAPSHOT:
240         # write .distversion file and add to tar
241         if not os.path.isdir(blddir):
242             os.makedirs(blddir)
243         distversionf = tempfile.NamedTemporaryFile(mode='w', prefix='.distversion',dir=blddir)
244         for field in sambaversion.vcs_fields:
245             distveroption = field + '=' + str(sambaversion.vcs_fields[field])
246             distversionf.write(distveroption + '\n')
247         distversionf.flush()
248         samba_dist.DIST_FILES('%s:.distversion' % distversionf.name, extend=True)
249
250         samba_dist.dist()
251         distversionf.close()
252     else:
253         samba_dist.dist()
254
255
256 def distcheck():
257     '''test that distribution tarball builds and installs'''
258     samba_version.load_version(env=None)
259     import Scripting
260     d = Scripting.distcheck
261     d()
262
263 def wildcard_cmd(cmd):
264     '''called on a unknown command'''
265     from samba_wildcard import run_named_build_task
266     run_named_build_task(cmd)
267
268 def main():
269     from samba_wildcard import wildcard_main
270     wildcard_main(wildcard_cmd)
271 Scripting.main = main
272
273 def reconfigure(ctx):
274     '''reconfigure if config scripts have changed'''
275     import samba_utils
276     samba_utils.reconfigure(ctx)