.gitlab-ci.yml: add var SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE
[bbaumbach/samba-autobuild/.git] / docs-xml / wscript_build
1 #!/usr/bin/env python
2 from samba_utils import save_file
3 import os
4 manpages='''
5          manpages/cifsdd.8
6          manpages/dbwrap_tool.1
7          manpages/eventlogadm.8
8          manpages/findsmb.1
9          manpages/idmap_ad.8
10          manpages/idmap_autorid.8
11          manpages/idmap_hash.8
12          manpages/idmap_ldap.8
13          manpages/idmap_nss.8
14          manpages/idmap_rfc2307.8
15          manpages/idmap_rid.8
16          manpages/idmap_script.8
17          manpages/idmap_tdb.8
18          manpages/idmap_tdb2.8
19          manpages/libsmbclient.7
20          manpages/lmhosts.5
21          manpages/log2pcap.1
22          manpages/mvxattr.1
23          manpages/net.8
24          manpages/nmbd.8
25          manpages/nmblookup.1
26          manpages/ntlm_auth.1
27          manpages/pdbedit.8
28          manpages/profiles.1
29          manpages/rpcclient.1
30          manpages/samba-regedit.8
31          manpages/samba-tool.8
32          manpages/samba.7
33          manpages/samba.8
34          manpages/sharesec.1
35          manpages/smbcacls.1
36          manpages/smbclient.1
37          manpages/smbcontrol.1
38          manpages/smbcquotas.1
39          manpages/smbd.8
40          manpages/smbget.1
41          manpages/smbgetrc.5
42          manpages/smbpasswd.5
43          manpages/smbpasswd.8
44          manpages/smbspool_krb5_wrapper.8
45          manpages/smbspool.8
46          manpages/smbstatus.1
47          manpages/smbtar.1
48          manpages/smbtree.1
49          manpages/testparm.1
50          manpages/traffic_learner.7
51          manpages/traffic_replay.7
52          manpages/vfstest.1
53          manpages/wbinfo.1
54          manpages/winbindd.8
55          '''
56
57 pam_winbind_manpages = '''
58                        manpages/pam_winbind.8
59                        manpages/pam_winbind.conf.5
60                        '''
61
62 krb5_locator_manpages = 'manpages/winbind_krb5_locator.8'
63 krb5_localauth_manpages = 'manpages/winbind_krb5_localauth.8'
64
65 vfs_module_manpages = ['vfs_acl_tdb',
66                        'vfs_acl_xattr',
67                        'vfs_aio_fork',
68                        'vfs_aio_pthread',
69                        'vfs_audit',
70                        'vfs_btrfs',
71                        'vfs_cacheprime',
72                        'vfs_cap',
73                        'vfs_catia',
74                        'vfs_ceph',
75                        'vfs_commit',
76                        'vfs_crossrename',
77                        'vfs_default_quota',
78                        'vfs_dirsort',
79                        'vfs_extd_audit',
80                        'vfs_fake_perms',
81                        'vfs_fileid',
82                        'vfs_fruit',
83                        'vfs_full_audit',
84                        'vfs_glusterfs',
85                        'vfs_glusterfs_fuse',
86                        'vfs_gpfs',
87                        'vfs_linux_xfs_sgid',
88                        'vfs_media_harmony',
89                        'vfs_netatalk',
90                        'vfs_nfs4acl_xattr',
91                        'vfs_offline',
92                        'vfs_prealloc',
93                        'vfs_preopen',
94                        'vfs_readahead',
95                        'vfs_readonly',
96                        'vfs_recycle',
97                        'vfs_shadow_copy',
98                        'vfs_shadow_copy2',
99                        'vfs_shell_snap',
100                        'vfs_snapper',
101                        'vfs_streams_depot',
102                        'vfs_streams_xattr',
103                        'vfs_syncops',
104                        'vfs_time_audit',
105                        'vfs_tsmsm',
106                        'vfs_unityed_media',
107                        'vfs_virusfilter',
108                        'vfs_worm',
109                        'vfs_xattr_tdb',
110                        'vfs_zfsacl' ]
111
112 def smbdotconf_generate_parameter_list(task):
113     parameter_all = task.outputs[0].bldpath(task.env)
114     articles = task.inputs
115
116     entities = bld.pathconfig_entities()
117     t = "<!DOCTYPE section [\n"
118
119     for entity in entities:
120         t += "%s\n" % entity
121
122     # We need this if we build with Heimdal
123     mit_kdc_path = '"/usr/sbin/krb5kdc"'
124
125     # The MIT krb5kdc path is set if we build with MIT Kerberos
126     if bld.CONFIG_SET('MIT_KDC_PATH'):
127         mit_kdc_path = bld.CONFIG_GET('MIT_KDC_PATH')
128
129     t += "<!ENTITY pathconfig.MITKDCPATH   %s>\n" % mit_kdc_path
130
131     t += "]>\n"
132     t += "<section>\n"
133     for article in articles:
134         t += article.read()
135
136     t += "</section>\n"
137     save_file(parameter_all, t , create_dir=True)
138     return 0
139
140 # Since nothing really forces sorting in glob, we have to sort by file name
141 # POSIX file systems aren't required to return sorted content but we want
142 # smb.conf parameters to be sorted alphabetically
143 parameter_all = 'smbdotconf/parameters.all.xml'
144 sources = bld.path.ant_glob("smbdotconf/**/*.xml", flat=False, excl=parameter_all)
145 articles = " ".join(sorted([x.path_from(bld.path) for x in sources],
146                            key=lambda m: m.split(os.sep)[-1]))
147
148 bld.SAMBA_GENERATOR(parameter_all,
149                     source=articles,
150                     target=parameter_all,
151                     rule=smbdotconf_generate_parameter_list,
152                     dep_vars=bld.dynconfig_varnames())
153
154 def SMBDOTCONF_MANPAGE(bld, target):
155     ''' assemble and build smb.conf.5 manual page'''
156     bld.SAMBAMANPAGES(target, parameter_all)
157
158 if ('XSLTPROC_MANPAGES' in bld.env and bld.env['XSLTPROC_MANPAGES']):
159
160     SMBDOTCONF_MANPAGE(bld, 'manpages/smb.conf.5')
161     bld.SAMBAMANPAGES(manpages)
162
163     if bld.CONFIG_SET('WITH_PAM_MODULES') and bld.CONFIG_SET('HAVE_PAM_START'):
164         bld.SAMBAMANPAGES(pam_winbind_manpages)
165
166     if bld.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
167         bld.SAMBAMANPAGES(krb5_locator_manpages)
168
169     if bld.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
170         bld.SAMBAMANPAGES(krb5_localauth_manpages)
171
172     for manpage in vfs_module_manpages:
173         if bld.SAMBA3_IS_ENABLED_MODULE(manpage):
174             bld.SAMBAMANPAGES('manpages/%s.8' % manpage)