blob: 80b7fb5c9d228d97e6771e1c221994fbc509cf5f [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08002
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -07003from waflib import Logs, Utils, Context
4import os
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -07005
Alexander Afanasyev2e52d7c2016-03-24 13:13:11 -07006VERSION = "0.4.1"
Alexander Afanasyev766cea72014-04-24 19:16:42 -07007APPNAME = "ndn-cxx"
8PACKAGE_BUGREPORT = "http://redmine.named-data.net/projects/ndn-cxx"
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -07009PACKAGE_URL = "http://named-data.net/doc/ndn-cxx/"
Alexander Afanasyev6c632302014-10-31 12:34:11 -070010GIT_TAG_PREFIX = "ndn-cxx-"
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070011
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080012def options(opt):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070013 opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx'])
14 opt.load(['default-compiler-flags', 'coverage', 'osx-security', 'pch',
Alexander Afanasyev01515792014-12-16 14:20:01 -080015 'boost', 'cryptopp', 'sqlite3',
Junxiao Shi8d71fdb2014-12-07 21:55:19 -070016 'doxygen', 'sphinx_build', 'type_traits', 'compiler-features'],
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070017 tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080018
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070019 opt = opt.add_option_group('Library Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080020
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070021 opt.add_option('--with-tests', action='store_true', default=False, dest='with_tests',
Alexander Afanasyev224044f2016-07-18 10:45:08 +020022 help='''Build unit tests''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080023
Yingdi Yue6bfab22014-02-06 16:01:19 -080024 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
25 help='''Do not build tools''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080026
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -070027 opt.add_option('--with-examples', action='store_true', default=False, dest='with_examples',
28 help='''Build examples''')
29
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070030 opt.add_option('--without-sqlite-locking', action='store_false', default=True,
31 dest='with_sqlite_locking',
32 help='''Disable filesystem locking in sqlite3 database '''
33 '''(use unix-dot locking mechanism instead). '''
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080034 '''This option may be necessary if home directory is hosted on NFS.''')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080035
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070036 opt.add_option('--without-osx-keychain', action='store_false', default=True,
37 dest='with_osx_keychain',
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080038 help='''On Darwin, do not use OSX keychain as a default TPM''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080039
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070040 opt.add_option('--enable-static', action='store_true', default=False,
41 dest='enable_static', help='''Build static library (disabled by default)''')
42 opt.add_option('--disable-static', action='store_false', default=False,
43 dest='enable_static', help='''Do not build static library (disabled by default)''')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080044
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070045 opt.add_option('--enable-shared', action='store_true', default=True,
46 dest='enable_shared', help='''Build shared library (enabled by default)''')
47 opt.add_option('--disable-shared', action='store_false', default=True,
48 dest='enable_shared', help='''Do not build shared library (enabled by default)''')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080049
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080050def configure(conf):
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080051 conf.start_msg('Building static library')
52 if conf.options.enable_static:
53 conf.end_msg('yes')
54 else:
55 conf.end_msg('no', color='YELLOW')
56 conf.env.enable_static = conf.options.enable_static
57
58 conf.start_msg('Building shared library')
59 if conf.options.enable_shared:
60 conf.end_msg('yes')
61 else:
62 conf.end_msg('no', color='YELLOW')
63 conf.env.enable_shared = conf.options.enable_shared
64
65 if not conf.options.enable_shared and not conf.options.enable_static:
66 conf.fatal("Either static library or shared library must be enabled")
67
Davide Pesavento9a8bae52016-02-24 20:33:08 +010068 conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx', 'default-compiler-flags',
69 'osx-security', 'pch', 'boost', 'cryptopp', 'sqlite3',
70 'type_traits', 'compiler-features', 'doxygen', 'sphinx_build'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080071
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070072 conf.env['WITH_TESTS'] = conf.options.with_tests
73 conf.env['WITH_TOOLS'] = conf.options.with_tools
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -070074 conf.env['WITH_EXAMPLES'] = conf.options.with_examples
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080075
Alexander Afanasyev95de62e2014-04-11 18:26:33 -070076 conf.find_program('sh', var='SH', mandatory=True)
77
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070078 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD',
79 mandatory=False)
80 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Alexander Afanasyev3188c40f2015-01-28 14:49:42 -080081 conf.check_cxx(msg='Checking for function getpass', mandatory=False,
82 define_name='HAVE_GETPASS', fragment='''
83#include <unistd.h>
84int
85main(int, char**)
86{
87 char* pass = getpass("test prompt");
88 (void)(pass);
89 return 0;
90}
91''')
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070092
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -080093 conf.check_cxx(msg='Checking for rtnetlink', mandatory=False,
94 define_name='HAVE_RTNETLINK',
95 header_name=['netinet/in.h', 'linux/netlink.h', 'linux/rtnetlink.h', 'net/if.h'])
96
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070097 conf.check_osx_security(mandatory=False)
Yingdi Yue6bfab22014-02-06 16:01:19 -080098
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070099 conf.check_sqlite3(mandatory=True)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -0700100 conf.check_cryptopp(mandatory=True, use='PTHREAD')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800101
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700102 USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams',
Alexander Afanasyev75088672014-07-14 11:58:30 -0700103 'regex', 'program_options', 'chrono', 'random']
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000104 if conf.env['WITH_TESTS']:
105 USED_BOOST_LIBS += ['unit_test_framework']
Yingdi Yuf56c68f2014-04-24 21:50:13 -0700106 conf.define('HAVE_TESTS', 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800107
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000108 conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True)
Davide Pesaventoe6e6fde2016-04-16 14:44:45 +0200109 if conf.env.BOOST_VERSION_NUMBER < 105400:
110 Logs.error("Minimum required boost version is 1.54.0")
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700111 Logs.error("Please upgrade your distribution or install custom boost libraries" +
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000112 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
113 return
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800114
Alexander Afanasyev5b60f702014-02-07 12:55:24 -0800115 if not conf.options.with_sqlite_locking:
116 conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800117
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700118 if conf.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -0800119 conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain
120 if conf.options.with_osx_keychain:
121 conf.define('WITH_OSX_KEYCHAIN', 1)
122 else:
123 conf.env['WITH_OSX_KEYCHAIN'] = False
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800124
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700125 # Loading "late" to prevent tests to be compiled with profiling flags
126 conf.load('coverage')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800127
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600128 conf.define('SYSCONFDIR', conf.env['SYSCONFDIR'])
129
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200130 if not conf.env.enable_static:
131 # If there happens to be a static library, waf will put the corresponding -L flags
132 # before dynamic library flags. This can result in compilation failure when the
133 # system has a different version of the ndn-cxx library installed.
134 conf.env['STLIBPATH'] = ['.'] + conf.env['STLIBPATH']
135
Alexander Afanasyev3e7d2ac2015-02-10 19:39:28 -0800136 # config file will contain all defines that were added using conf.define('xxx'...)
137 # Everything that was added directly to conf.env['DEFINES'] will not appear in the
138 # config file and will be added using compiler directives in the command line.
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700139 conf.write_config_header('src/ndn-cxx-config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800140
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700141def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700142 version(bld)
143
144 bld(features="subst",
145 name='version',
146 source='src/version.hpp.in',
147 target='src/version.hpp',
148 install_path=None,
149 VERSION_STRING=VERSION_BASE,
150 VERSION_BUILD=VERSION,
151 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
152 int(VERSION_SPLIT[1]) * 1000 +
153 int(VERSION_SPLIT[2]),
154 VERSION_MAJOR=VERSION_SPLIT[0],
155 VERSION_MINOR=VERSION_SPLIT[1],
156 VERSION_PATCH=VERSION_SPLIT[2],
157 )
158
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800159 libndn_cxx = dict(
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700160 target="ndn-cxx",
161 name="ndn-cxx",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700162 source=bld.path.ant_glob('src/**/*.cpp',
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100163 excl=['src/security/**/*-osx.cpp',
164 'src/**/*-sqlite3.cpp']),
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -0700165 headers='src/common-pch.hpp',
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800166 use='version BOOST CRYPTOPP SQLITE3 RT PTHREAD',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700167 includes=". src",
168 export_includes="src",
169 install_path='${LIBDIR}',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800170 )
171
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700172 if bld.env['HAVE_OSX_SECURITY']:
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100173 libndn_cxx['source'] += bld.path.ant_glob('src/security/**/*-osx.cpp')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800174 libndn_cxx['mac_app'] = True
175 libndn_cxx['use'] += " OSX_COREFOUNDATION OSX_SECURITY"
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800176
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800177 # In case we want to make it optional later
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800178 libndn_cxx['source'] += bld.path.ant_glob('src/**/*-sqlite3.cpp')
179
180 if bld.env.enable_shared:
181 bld(features=['pch', 'cxx', 'cxxshlib'],
182 vnum=VERSION_BASE,
183 cnum=VERSION_BASE,
184 **libndn_cxx)
185
186 if bld.env.enable_static:
187 bld(features=['pch', 'cxx', 'cxxstlib'],
188 **libndn_cxx)
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800189
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700190 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800191 pkgconfig_libs = []
192 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800193 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800194 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800195 pkgconfig_cxxflags = []
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800196 for lib in Utils.to_list(libndn_cxx['use']):
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800197 if bld.env['LIB_%s' % lib]:
198 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
199 if bld.env['LIBPATH_%s' % lib]:
200 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
201 if bld.env['INCLUDES_%s' % lib]:
202 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800203 if bld.env['LINKFLAGS_%s' % lib]:
204 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
205 if bld.env['CXXFLAGS_%s' % lib]:
206 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800207
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800208 EXTRA_FRAMEWORKS = "";
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700209 if bld.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800210 EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800211
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800212 def uniq(alist):
213 set = {}
214 return [set.setdefault(e,e) for e in alist if e not in set]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800215
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700216 pkconfig = bld(features="subst",
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700217 source="libndn-cxx.pc.in",
218 target="libndn-cxx.pc",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700219 install_path="${LIBDIR}/pkgconfig",
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700220 VERSION=VERSION_BASE,
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800221
222 # This probably not the right thing to do, but to simplify life of apps
223 # that use the library
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700224 EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
225 EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
226 EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)),
227 EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
228 EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)),
229 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS,
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800230 )
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800231
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800232 # Unit tests
233 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800234 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800235
Yingdi Yue6bfab22014-02-06 16:01:19 -0800236 if bld.env['WITH_TOOLS']:
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -0700237 bld.recurse("tools")
238
239 if bld.env['WITH_EXAMPLES']:
Yingdi Yue6bfab22014-02-06 16:01:19 -0800240 bld.recurse("examples")
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800241
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100242 headers = bld.path.ant_glob('src/**/*.hpp',
243 excl=['src/security/**/*-osx.hpp',
244 'src/detail/**/*',
245 'src/util/detail/**/*'])
Junxiao Shie30aaea2014-12-03 20:48:34 -0700246 if bld.env['HAVE_OSX_SECURITY']:
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100247 headers += bld.path.ant_glob('src/security/**/*-osx.hpp')
Junxiao Shie30aaea2014-12-03 20:48:34 -0700248
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700249 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], headers,
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700250 relative_trick=True, cwd=bld.path.find_node('src'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800251
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700252 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'],
253 bld.path.find_resource('src/ndn-cxx-config.hpp'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800254
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700255 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'],
256 bld.path.find_resource('src/version.hpp'))
257
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600258 bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample")
259
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700260 if bld.env['SPHINX_BUILD']:
261 bld(features="sphinx",
262 builder="man",
263 outdir="docs/manpages",
264 config="docs/conf.py",
265 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700266 install_path="${MANDIR}/",
267 VERSION=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700268
269def docs(bld):
270 from waflib import Options
271 Options.commands = ['doxygen', 'sphinx'] + Options.commands
272
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000273def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700274 version(bld)
275
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800276 if not bld.env.DOXYGEN:
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700277 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
278 else:
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700279 bld(features="subst",
280 name="doxygen-conf",
Alexander Afanasyev9b0e1142014-05-08 00:17:34 -0700281 source=["docs/doxygen.conf.in",
282 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
283 target=["docs/doxygen.conf",
284 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700285 VERSION=VERSION,
Alexander Afanasyev9b0e1142014-05-08 00:17:34 -0700286 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
287 if os.getenv('GOOGLE_ANALYTICS', None) \
288 else "../docs/named_data_theme/named_data_footer.html",
289 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700290 )
291
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700292 bld(features="doxygen",
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700293 doxyfile='docs/doxygen.conf',
294 use="doxygen-conf")
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800295
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700296def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700297 version(bld)
298
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700299 if not bld.env.SPHINX_BUILD:
300 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700301 else:
302 bld(features="sphinx",
303 outdir="docs",
304 source=bld.path.ant_glob("docs/**/*.rst"),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700305 config="docs/conf.py",
306 VERSION=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700307
308
309def version(ctx):
310 if getattr(Context.g_module, 'VERSION_BASE', None):
311 return
312
313 Context.g_module.VERSION_BASE = Context.g_module.VERSION
314 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
315
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700316 didGetVersion = False
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700317 try:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700318 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700319 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
320 stderr=None, stdin=None)
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700321 out = str(p.communicate()[0].strip())
322 didGetVersion = (p.returncode == 0 and out != "")
323 if didGetVersion:
324 if out.startswith(GIT_TAG_PREFIX):
325 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
326 else:
327 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
328 except OSError:
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700329 pass
330
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700331 versionFile = ctx.path.find_node('VERSION')
332
333 if not didGetVersion and versionFile is not None:
334 try:
335 Context.g_module.VERSION = versionFile.read()
336 return
337 except (OSError, IOError):
338 pass
339
340 # version was obtained from git, update VERSION file if necessary
341 if versionFile is not None:
342 try:
343 version = versionFile.read()
344 if version == Context.g_module.VERSION:
345 return # no need to update
346 except (OSError, IOError):
347 Logs.warn("VERSION file exists, but not readable")
348 else:
349 versionFile = ctx.path.make_node('VERSION')
350
351 if versionFile is None:
352 return
353
354 try:
355 versionFile.write(Context.g_module.VERSION)
356 except (OSError, IOError):
357 Logs.warn("VERSION file is not writeable")
358
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700359def dist(ctx):
360 version(ctx)
361
362def distcheck(ctx):
363 version(ctx)