blob: 767e18c952e7b1793c3778aa73f65679fca5fe1e [file] [log] [blame]
Alexander Afanasyev2aa39622014-01-22 11:51:11 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07002
3"""
Yumin Xiaab497452016-05-10 20:23:24 +08004Copyright (c) 2014-2016, Regents of the University of California,
taylorchu5ae28772015-03-08 17:45:52 -07005 Arizona Board of Regents,
6 Colorado State University,
7 University Pierre & Marie Curie, Sorbonne University,
8 Washington University in St. Louis,
9 Beijing Institute of Technology,
10 The University of Memphis.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070011
12This file is part of NFD (Named Data Networking Forwarding Daemon).
13See AUTHORS.md for complete list of NFD authors and contributors.
14
15NFD is free software: you can redistribute it and/or modify it under the terms
16of the GNU General Public License as published by the Free Software Foundation,
17either version 3 of the License, or (at your option) any later version.
18
19NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
20without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
21PURPOSE. See the GNU General Public License for more details.
22
23You should have received a copy of the GNU General Public License along with
24NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
25"""
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080026
Alexander Afanasyev67019112016-10-03 14:22:54 -070027VERSION = "0.5.0"
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070028APPNAME = "nfd"
29BUGREPORT = "http://redmine.named-data.net/projects/nfd"
Alexander Afanasyevb47d5382014-05-05 14:35:03 -070030URL = "http://named-data.net/doc/NFD/"
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -070031GIT_TAG_PREFIX = "NFD-"
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070032
Alexander Afanasyevb47d5382014-05-05 14:35:03 -070033from waflib import Logs, Utils, Context
Alexander Afanasyev20757882014-08-25 22:39:08 -070034import os
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080035
36def options(opt):
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -070037 opt.load(['compiler_cxx', 'gnu_dirs'])
Davide Pesavento67f30272016-08-10 01:55:16 +000038 opt.load(['default-compiler-flags', 'compiler-features', 'type_traits',
39 'coverage', 'pch', 'sanitizers', 'boost', 'boost-kqueue',
40 'dependency-checker', 'unix-socket', 'websocket',
41 'doxygen', 'sphinx_build'],
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070042 tooldir=['.waf-tools'])
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080043
44 nfdopt = opt.add_option_group('NFD Options')
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070045 opt.addUnixOptions(nfdopt)
Wentao Shang53df1632014-04-21 12:01:32 -070046 opt.addWebsocketOptions(nfdopt)
Davide Pesavento67f30272016-08-10 01:55:16 +000047
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070048 opt.addDependencyOptions(nfdopt, 'libpcap')
49 nfdopt.add_option('--without-libpcap', action='store_true', default=False,
50 dest='without_libpcap',
51 help='''Disable libpcap (Ethernet face support will be disabled)''')
52
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -070053 opt.addDependencyOptions(nfdopt, 'librt', '(optional)')
54 opt.addDependencyOptions(nfdopt, 'libresolv', '(optional)')
55
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070056 nfdopt.add_option('--with-tests', action='store_true', default=False,
57 dest='with_tests', help='''Build unit tests''')
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040058 nfdopt.add_option('--with-other-tests', action='store_true', default=False,
59 dest='with_other_tests', help='''Build other tests''')
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060060
Alexander Afanasyev8269a052015-02-09 16:25:36 -080061 nfdopt.add_option('--with-custom-logger', type='string', default=None,
62 dest='with_custom_logger',
63 help='''Path to custom-logger.hpp and custom-logger-factory.hpp '''
64 '''implementing Logger and LoggerFactory interfaces''')
65
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080066def configure(conf):
Beichuan Zhang55b8ed42014-04-26 22:25:44 -070067 conf.load(['compiler_cxx', 'gnu_dirs',
Davide Pesavento67f30272016-08-10 01:55:16 +000068 'default-compiler-flags', 'compiler-features', 'type_traits',
69 'pch', 'sanitizers', 'boost', 'boost-kqueue',
70 'dependency-checker', 'websocket',
71 'doxygen', 'sphinx_build'])
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -070072
Davide Pesaventof0ae4422014-05-05 16:32:12 +020073 conf.find_program('bash', var='BASH')
74
taylorchu5ae28772015-03-08 17:45:52 -070075 if 'PKG_CONFIG_PATH' not in os.environ:
Alexander Afanasyevcdb8f362015-03-30 10:52:54 -070076 os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env)
Alexander Afanasyev4a771362014-04-24 21:29:33 -070077 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
78 uselib_store='NDN_CXX', mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +010079
Davide Pesaventob499a602014-11-18 22:36:56 +010080 conf.checkDependency(name='librt', lib='rt', mandatory=False)
81 conf.checkDependency(name='libresolv', lib='resolv', mandatory=False)
82
Alexander Afanasyev748e9892015-01-28 15:07:41 -080083 if not conf.check_cxx(msg='Checking if privilege drop/elevation is supported', mandatory=False,
84 define_name='HAVE_PRIVILEGE_DROP_AND_ELEVATE', fragment='''
85#include <unistd.h>
86#include <pwd.h>
87#include <grp.h>
88int
89main(int, char**)
90{
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070091 char buffer[100];
Alexander Afanasyev748e9892015-01-28 15:07:41 -080092 ::sysconf(_SC_GETGR_R_SIZE_MAX);
93 group grp;
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070094 group* grpRes;
95 getgrnam_r("nogroup", &grp, buffer, 100, &grpRes);
Alexander Afanasyev748e9892015-01-28 15:07:41 -080096 passwd pwd;
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070097 passwd* pwdRes;
98 getpwnam_r("nobody", &pwd, buffer, 100, &pwdRes);
Alexander Afanasyev748e9892015-01-28 15:07:41 -080099
100 int ret = setegid(grp.gr_gid);
101 ret = seteuid(pwd.pw_uid);
102 (void)(ret);
Weiwei Liuf5aee942016-03-19 07:00:42 +0000103
104 getegid();
105 geteuid();
Alexander Afanasyev748e9892015-01-28 15:07:41 -0800106 return 0;
107}
108'''):
109 Logs.warn('Dropping privileges is not supported on this platform')
110
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800111 conf.check_cxx(header_name='ifaddrs.h', mandatory=False)
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000112 conf.check_cxx(header_name='valgrind/valgrind.h', define_name='HAVE_VALGRIND', mandatory=False)
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800113
Yumin Xiaab497452016-05-10 20:23:24 +0800114 boost_libs = 'system chrono program_options random thread log log_setup'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800115 if conf.options.with_tests:
116 conf.env['WITH_TESTS'] = 1
Davide Pesavento67f30272016-08-10 01:55:16 +0000117 conf.define('WITH_TESTS', 1)
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700118 boost_libs += ' unit_test_framework'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800119
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400120 if conf.options.with_other_tests:
121 conf.env['WITH_OTHER_TESTS'] = 1
122
Yumin Xiaab497452016-05-10 20:23:24 +0800123 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesaventocafae242016-04-22 02:21:35 +0200124 if conf.env.BOOST_VERSION_NUMBER < 105400:
125 Logs.error("Minimum required boost version is 1.54.0")
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700126 Logs.error("Please upgrade your distribution or install custom boost libraries" +
127 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800128 return
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800129
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -0700130 if conf.env['CXX_NAME'] == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800:
131 conf.define('BOOST_ASIO_HAS_STD_ARRAY', 1) # Workaround for http://redmine.named-data.net/issues/3360#note-14
Eric Newberrycb27ea82016-07-19 12:40:52 -0700132 conf.define('BOOST_ASIO_HAS_STD_CHRONO', 1) # Solution documented at https://redmine.named-data.net/issues/3588#note-10
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -0700133
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800134 conf.load('unix-socket')
Wentao Shang53df1632014-04-21 12:01:32 -0700135 conf.checkWebsocket(mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100136
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700137 if not conf.options.without_libpcap:
Alexander Afanasyeve9186212014-08-23 20:15:48 -0700138 conf.check_asio_pcap_support()
139 if conf.env['HAVE_ASIO_PCAP_SUPPORT']:
140 conf.checkDependency(name='libpcap', lib='pcap', mandatory=True,
141 errmsg='not found, but required for Ethernet face support. '
142 'Specify --without-libpcap to disable Ethernet face support.')
143 else:
144 Logs.warn('Warning: Ethernet face support is not supported on this platform with Boost libraries version 1.56. '
145 'See http://redmine.named-data.net/issues/1877 for more details')
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200146 if conf.env['HAVE_LIBPCAP']:
147 conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h',
148 cxxflags='-Wno-error', use='LIBPCAP', mandatory=False)
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -0700149
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800150 if conf.options.with_custom_logger:
151 conf.define('HAVE_CUSTOM_LOGGER', 1)
152 conf.env['INCLUDES_CUSTOM_LOGGER'] = [conf.options.with_custom_logger]
153 conf.env['HAVE_CUSTOM_LOGGER'] = 1
154
Alexander Afanasyev689569b2014-02-16 20:20:07 -0800155 conf.load('coverage')
156
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600157 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR'])
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -0700158
Junxiao Shi759f7062014-11-29 10:19:22 -0700159 # disable assertions in release builds
160 if not conf.options.debug:
161 conf.define('NDEBUG', 1)
162
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000163 conf.write_config_header('core/config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800164
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700165def build(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700166 version(bld)
167
168 bld(features="subst",
169 name='version',
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000170 source='core/version.hpp.in',
171 target='core/version.hpp',
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700172 install_path=None,
173 VERSION_STRING=VERSION_BASE,
174 VERSION_BUILD=VERSION,
175 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
176 int(VERSION_SPLIT[1]) * 1000 +
177 int(VERSION_SPLIT[2]),
178 VERSION_MAJOR=VERSION_SPLIT[0],
179 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento67f30272016-08-10 01:55:16 +0000180 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700181
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700182 core = bld(
183 target='core-objects',
184 name='core-objects',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300185 features='cxx pch',
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800186 source=bld.path.ant_glob(['core/**/*.cpp'],
187 excl=['core/logger*.cpp']),
Alexander Afanasyev3d1874a2016-06-15 12:25:01 -0700188 use='version NDN_CXX BOOST LIBRT',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700189 includes='. core',
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000190 export_includes='.',
Davide Pesavento67f30272016-08-10 01:55:16 +0000191 headers='core/common.hpp')
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700192
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800193 if bld.env['HAVE_CUSTOM_LOGGER']:
194 core.use += " CUSTOM_LOGGER"
195 else:
196 core.source += bld.path.ant_glob(['core/logger*.cpp'])
197
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800198 nfd_objects = bld(
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700199 target='daemon-objects',
200 name='daemon-objects',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700201 features='cxx',
202 source=bld.path.ant_glob(['daemon/**/*.cpp'],
203 excl=['daemon/face/ethernet-*.cpp',
204 'daemon/face/unix-*.cpp',
Wentao Shang53df1632014-04-21 12:01:32 -0700205 'daemon/face/websocket-*.cpp',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700206 'daemon/main.cpp']),
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600207 use='core-objects WEBSOCKET',
208 includes='daemon',
Davide Pesavento67f30272016-08-10 01:55:16 +0000209 export_includes='daemon')
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700210
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700211 if bld.env['HAVE_LIBPCAP']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100212 nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp')
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -0700213 nfd_objects.use += ' LIBPCAP'
Davide Pesavento44deacc2014-02-19 10:48:07 +0100214
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800215 if bld.env['HAVE_UNIX_SOCKETS']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100216 nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800217
Wentao Shang53df1632014-04-21 12:01:32 -0700218 if bld.env['HAVE_WEBSOCKET']:
219 nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
220
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700221 rib_objects = bld(
222 target='rib-objects',
223 name='rib-objects',
224 features='cxx',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800225 source=bld.path.ant_glob(['rib/**/*.cpp']),
Davide Pesavento67f30272016-08-10 01:55:16 +0000226 use='core-objects')
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700227
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800228 bld(target='bin/nfd',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700229 features='cxx cxxprogram',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800230 source='daemon/main.cpp',
Davide Pesavento67f30272016-08-10 01:55:16 +0000231 use='daemon-objects rib-objects')
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700232
Alexander Afanasyev262203b2015-01-26 16:39:59 -0800233 bld.recurse("tools")
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700234 bld.recurse("tests")
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400235
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700236 bld(features="subst",
237 source='nfd.conf.sample.in',
238 target='nfd.conf.sample',
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700239 install_path="${SYSCONFDIR}/ndn",
Wentao Shang53df1632014-04-21 12:01:32 -0700240 IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ",
241 IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800242
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700243 if bld.env['SPHINX_BUILD']:
244 bld(features="sphinx",
245 builder="man",
246 outdir="docs/manpages",
247 config="docs/conf.py",
248 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700249 install_path="${MANDIR}/",
250 VERSION=VERSION)
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700251
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800252 bld.install_files("${SYSCONFDIR}/ndn", "autoconfig.conf.sample")
253
Alexander Afanasyev284257b2014-04-11 14:16:51 -0700254def docs(bld):
255 from waflib import Options
256 Options.commands = ['doxygen', 'sphinx'] + Options.commands
257
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800258def doxygen(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700259 version(bld)
260
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800261 if not bld.env.DOXYGEN:
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700262 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
263 else:
264 bld(features="subst",
265 name="doxygen-conf",
Alexander Afanasyev20757882014-08-25 22:39:08 -0700266 source=["docs/doxygen.conf.in",
267 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
268 target=["docs/doxygen.conf",
269 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700270 VERSION=VERSION,
Alexander Afanasyev20757882014-08-25 22:39:08 -0700271 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
272 if os.getenv('GOOGLE_ANALYTICS', None) \
273 else "../docs/named_data_theme/named_data_footer.html",
Davide Pesavento67f30272016-08-10 01:55:16 +0000274 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""))
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700275
276 bld(features="doxygen",
277 doxyfile='docs/doxygen.conf',
278 use="doxygen-conf")
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700279
280def sphinx(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700281 version(bld)
282
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700283 if not bld.env.SPHINX_BUILD:
284 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
285 else:
286 bld(features="sphinx",
287 outdir="docs",
288 source=bld.path.ant_glob('docs/**/*.rst'),
289 config="docs/conf.py",
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700290 VERSION=VERSION)
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700291
292def version(ctx):
Alexander Afanasyev26181532014-05-07 23:38:51 -0700293 if getattr(Context.g_module, 'VERSION_BASE', None):
294 return
295
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700296 Context.g_module.VERSION_BASE = Context.g_module.VERSION
297 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
298
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700299 didGetVersion = False
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700300 try:
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700301 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700302 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
303 stderr=None, stdin=None)
Alexander Afanasyev3b21fa32014-09-01 13:25:20 -0700304 out = str(p.communicate()[0].strip())
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700305 didGetVersion = (p.returncode == 0 and out != "")
306 if didGetVersion:
307 if out.startswith(GIT_TAG_PREFIX):
308 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
309 else:
310 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
311 except OSError:
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700312 pass
313
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700314 versionFile = ctx.path.find_node('VERSION')
315
316 if not didGetVersion and versionFile is not None:
317 try:
318 Context.g_module.VERSION = versionFile.read()
319 return
320 except (OSError, IOError):
321 pass
322
323 # version was obtained from git, update VERSION file if necessary
324 if versionFile is not None:
325 try:
326 version = versionFile.read()
327 if version == Context.g_module.VERSION:
328 return # no need to update
329 except (OSError, IOError):
330 Logs.warn("VERSION file exists, but not readable")
331 else:
332 versionFile = ctx.path.make_node('VERSION')
333
334 if versionFile is None:
335 return
336
337 try:
338 versionFile.write(Context.g_module.VERSION)
339 except (OSError, IOError):
340 Logs.warn("VERSION file is not writeable")
341
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700342def dist(ctx):
343 version(ctx)
344
345def distcheck(ctx):
346 version(ctx)