blob: ca0e461f9dd221a33b863f47a7c52210aee418f5 [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 Afanasyev5946ed12015-01-19 23:41:39 -08006VERSION = "0.3.0"
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 Afanasyeva1ae0a12014-01-28 15:21:02 -080022 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 Afanasyev5e1288e2014-03-28 11:11:48 -070035 opt.add_option('--without-osx-keychain', action='store_false', default=True,
36 dest='with_osx_keychain',
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080037 help='''On Darwin, do not use OSX keychain as a default TPM''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080038
39def configure(conf):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070040 conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx',
41 'default-compiler-flags', 'osx-security', 'pch',
Alexander Afanasyev01515792014-12-16 14:20:01 -080042 'boost', 'cryptopp', 'sqlite3',
Junxiao Shi8d71fdb2014-12-07 21:55:19 -070043 'doxygen', 'sphinx_build', 'type_traits', 'compiler-features'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080044
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070045 conf.env['WITH_TESTS'] = conf.options.with_tests
46 conf.env['WITH_TOOLS'] = conf.options.with_tools
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -070047 conf.env['WITH_EXAMPLES'] = conf.options.with_examples
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080048
Alexander Afanasyev95de62e2014-04-11 18:26:33 -070049 conf.find_program('sh', var='SH', mandatory=True)
50
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070051 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD',
52 mandatory=False)
53 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -070054 conf.check_cxx(cxxflags=['-fPIC'], uselib_store='PIC', mandatory=False)
Alexander Afanasyev3188c40f2015-01-28 14:49:42 -080055 conf.check_cxx(msg='Checking for function getpass', mandatory=False,
56 define_name='HAVE_GETPASS', fragment='''
57#include <unistd.h>
58int
59main(int, char**)
60{
61 char* pass = getpass("test prompt");
62 (void)(pass);
63 return 0;
64}
65''')
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070066
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -080067 conf.check_cxx(msg='Checking for rtnetlink', mandatory=False,
68 define_name='HAVE_RTNETLINK',
69 header_name=['netinet/in.h', 'linux/netlink.h', 'linux/rtnetlink.h', 'net/if.h'])
70
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070071 conf.check_osx_security(mandatory=False)
Yingdi Yue6bfab22014-02-06 16:01:19 -080072
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070073 conf.check_sqlite3(mandatory=True)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070074 conf.check_cryptopp(mandatory=True, use='PTHREAD')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080075
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070076 USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams',
Alexander Afanasyev75088672014-07-14 11:58:30 -070077 'regex', 'program_options', 'chrono', 'random']
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000078 if conf.env['WITH_TESTS']:
79 USED_BOOST_LIBS += ['unit_test_framework']
Yingdi Yuf56c68f2014-04-24 21:50:13 -070080 conf.define('HAVE_TESTS', 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080081
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000082 conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True)
83 if conf.env.BOOST_VERSION_NUMBER < 104800:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070084 Logs.error("Minimum required boost version is 1.48.0")
85 Logs.error("Please upgrade your distribution or install custom boost libraries" +
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000086 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
87 return
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080088
Alexander Afanasyev5b60f702014-02-07 12:55:24 -080089 if not conf.options.with_sqlite_locking:
90 conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080091
Alexander Afanasyev59d67a52014-04-03 16:09:31 -070092 if conf.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080093 conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain
94 if conf.options.with_osx_keychain:
95 conf.define('WITH_OSX_KEYCHAIN', 1)
96 else:
97 conf.env['WITH_OSX_KEYCHAIN'] = False
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080098
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070099 # Loading "late" to prevent tests to be compiled with profiling flags
100 conf.load('coverage')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800101
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600102 conf.define('SYSCONFDIR', conf.env['SYSCONFDIR'])
103
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700104 conf.write_config_header('src/ndn-cxx-config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800105
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700106def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700107 version(bld)
108
109 bld(features="subst",
110 name='version',
111 source='src/version.hpp.in',
112 target='src/version.hpp',
113 install_path=None,
114 VERSION_STRING=VERSION_BASE,
115 VERSION_BUILD=VERSION,
116 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
117 int(VERSION_SPLIT[1]) * 1000 +
118 int(VERSION_SPLIT[2]),
119 VERSION_MAJOR=VERSION_SPLIT[0],
120 VERSION_MINOR=VERSION_SPLIT[1],
121 VERSION_PATCH=VERSION_SPLIT[2],
122 )
123
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700124 libndn_cxx = bld(
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -0700125 features=['pch', 'cxx', 'cxxstlib'], # 'cxxshlib',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700126 # vnum=VERSION,
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700127 target="ndn-cxx",
128 name="ndn-cxx",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700129 source=bld.path.ant_glob('src/**/*.cpp',
Junxiao Shie30aaea2014-12-03 20:48:34 -0700130 excl=['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']),
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -0700131 headers='src/common-pch.hpp',
Alexander Afanasyev01515792014-12-16 14:20:01 -0800132 use='version BOOST CRYPTOPP SQLITE3 RT PIC PTHREAD',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700133 includes=". src",
134 export_includes="src",
135 install_path='${LIBDIR}',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800136 )
137
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700138 if bld.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700139 libndn_cxx.source += bld.path.ant_glob('src/**/*-osx.cpp')
140 libndn_cxx.mac_app = True
141 libndn_cxx.use += " OSX_COREFOUNDATION OSX_SECURITY"
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800142
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800143 # In case we want to make it optional later
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700144 libndn_cxx.source += bld.path.ant_glob('src/**/*-sqlite3.cpp')
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800145
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700146 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800147 pkgconfig_libs = []
148 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800149 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800150 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800151 pkgconfig_cxxflags = []
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700152 for lib in Utils.to_list(libndn_cxx.use):
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800153 if bld.env['LIB_%s' % lib]:
154 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
155 if bld.env['LIBPATH_%s' % lib]:
156 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
157 if bld.env['INCLUDES_%s' % lib]:
158 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800159 if bld.env['LINKFLAGS_%s' % lib]:
160 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
161 if bld.env['CXXFLAGS_%s' % lib]:
162 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800163
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800164 EXTRA_FRAMEWORKS = "";
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700165 if bld.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800166 EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800167
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800168 def uniq(alist):
169 set = {}
170 return [set.setdefault(e,e) for e in alist if e not in set]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800171
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700172 pkconfig = bld(features="subst",
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700173 source="libndn-cxx.pc.in",
174 target="libndn-cxx.pc",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700175 install_path="${LIBDIR}/pkgconfig",
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700176 VERSION=VERSION_BASE,
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800177
178 # This probably not the right thing to do, but to simplify life of apps
179 # that use the library
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700180 EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
181 EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
182 EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)),
183 EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
184 EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)),
185 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS,
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800186 )
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800187
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800188 # Unit tests
189 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800190 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800191
Yingdi Yue6bfab22014-02-06 16:01:19 -0800192 if bld.env['WITH_TOOLS']:
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -0700193 bld.recurse("tools")
194
195 if bld.env['WITH_EXAMPLES']:
Yingdi Yue6bfab22014-02-06 16:01:19 -0800196 bld.recurse("examples")
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800197
Junxiao Shie30aaea2014-12-03 20:48:34 -0700198 headers = bld.path.ant_glob(['src/**/*.hpp'],
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -0800199 excl=['src/**/*-osx.hpp', 'src/detail/**/*'])
Junxiao Shie30aaea2014-12-03 20:48:34 -0700200 if bld.env['HAVE_OSX_SECURITY']:
201 headers += bld.path.ant_glob('src/**/*-osx.hpp')
202
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700203 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], headers,
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700204 relative_trick=True, cwd=bld.path.find_node('src'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800205
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700206 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'],
207 bld.path.find_resource('src/ndn-cxx-config.hpp'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800208
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700209 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'],
210 bld.path.find_resource('src/version.hpp'))
211
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600212 bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample")
213
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700214 if bld.env['SPHINX_BUILD']:
215 bld(features="sphinx",
216 builder="man",
217 outdir="docs/manpages",
218 config="docs/conf.py",
219 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700220 install_path="${MANDIR}/",
221 VERSION=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700222
223def docs(bld):
224 from waflib import Options
225 Options.commands = ['doxygen', 'sphinx'] + Options.commands
226
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000227def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700228 version(bld)
229
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800230 if not bld.env.DOXYGEN:
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700231 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
232 else:
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700233 bld(features="subst",
234 name="doxygen-conf",
Alexander Afanasyev9b0e1142014-05-08 00:17:34 -0700235 source=["docs/doxygen.conf.in",
236 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
237 target=["docs/doxygen.conf",
238 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700239 VERSION=VERSION,
Alexander Afanasyev9b0e1142014-05-08 00:17:34 -0700240 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
241 if os.getenv('GOOGLE_ANALYTICS', None) \
242 else "../docs/named_data_theme/named_data_footer.html",
243 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700244 )
245
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700246 bld(features="doxygen",
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700247 doxyfile='docs/doxygen.conf',
248 use="doxygen-conf")
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800249
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700250def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700251 version(bld)
252
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700253 if not bld.env.SPHINX_BUILD:
254 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700255 else:
256 bld(features="sphinx",
257 outdir="docs",
258 source=bld.path.ant_glob("docs/**/*.rst"),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700259 config="docs/conf.py",
260 VERSION=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700261
262
263def version(ctx):
264 if getattr(Context.g_module, 'VERSION_BASE', None):
265 return
266
267 Context.g_module.VERSION_BASE = Context.g_module.VERSION
268 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
269
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700270 didGetVersion = False
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700271 try:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700272 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700273 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
274 stderr=None, stdin=None)
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700275 out = str(p.communicate()[0].strip())
276 didGetVersion = (p.returncode == 0 and out != "")
277 if didGetVersion:
278 if out.startswith(GIT_TAG_PREFIX):
279 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
280 else:
281 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
282 except OSError:
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700283 pass
284
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700285 versionFile = ctx.path.find_node('VERSION')
286
287 if not didGetVersion and versionFile is not None:
288 try:
289 Context.g_module.VERSION = versionFile.read()
290 return
291 except (OSError, IOError):
292 pass
293
294 # version was obtained from git, update VERSION file if necessary
295 if versionFile is not None:
296 try:
297 version = versionFile.read()
298 if version == Context.g_module.VERSION:
299 return # no need to update
300 except (OSError, IOError):
301 Logs.warn("VERSION file exists, but not readable")
302 else:
303 versionFile = ctx.path.make_node('VERSION')
304
305 if versionFile is None:
306 return
307
308 try:
309 versionFile.write(Context.g_module.VERSION)
310 except (OSError, IOError):
311 Logs.warn("VERSION file is not writeable")
312
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700313def dist(ctx):
314 version(ctx)
315
316def distcheck(ctx):
317 version(ctx)