blob: f3052b9fb5738179bd0662db91b59243b0109e1f [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',
Eric Newberry27bdd1a2016-11-01 18:02:54 -070069 'pch', 'boost', 'boost-kqueue', 'dependency-checker', 'websocket',
Davide Pesavento67f30272016-08-10 01:55:16 +000070 'doxygen', 'sphinx_build'])
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -070071
Davide Pesaventof0ae4422014-05-05 16:32:12 +020072 conf.find_program('bash', var='BASH')
73
taylorchu5ae28772015-03-08 17:45:52 -070074 if 'PKG_CONFIG_PATH' not in os.environ:
Alexander Afanasyevcdb8f362015-03-30 10:52:54 -070075 os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env)
Alexander Afanasyev4a771362014-04-24 21:29:33 -070076 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
77 uselib_store='NDN_CXX', mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +010078
Davide Pesaventob499a602014-11-18 22:36:56 +010079 conf.checkDependency(name='librt', lib='rt', mandatory=False)
80 conf.checkDependency(name='libresolv', lib='resolv', mandatory=False)
81
Alexander Afanasyev748e9892015-01-28 15:07:41 -080082 if not conf.check_cxx(msg='Checking if privilege drop/elevation is supported', mandatory=False,
83 define_name='HAVE_PRIVILEGE_DROP_AND_ELEVATE', fragment='''
84#include <unistd.h>
85#include <pwd.h>
86#include <grp.h>
87int
88main(int, char**)
89{
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070090 char buffer[100];
Alexander Afanasyev748e9892015-01-28 15:07:41 -080091 ::sysconf(_SC_GETGR_R_SIZE_MAX);
92 group grp;
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070093 group* grpRes;
94 getgrnam_r("nogroup", &grp, buffer, 100, &grpRes);
Alexander Afanasyev748e9892015-01-28 15:07:41 -080095 passwd pwd;
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070096 passwd* pwdRes;
97 getpwnam_r("nobody", &pwd, buffer, 100, &pwdRes);
Alexander Afanasyev748e9892015-01-28 15:07:41 -080098
99 int ret = setegid(grp.gr_gid);
100 ret = seteuid(pwd.pw_uid);
101 (void)(ret);
Weiwei Liuf5aee942016-03-19 07:00:42 +0000102
103 getegid();
104 geteuid();
Alexander Afanasyev748e9892015-01-28 15:07:41 -0800105 return 0;
106}
107'''):
108 Logs.warn('Dropping privileges is not supported on this platform')
109
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800110 conf.check_cxx(header_name='ifaddrs.h', mandatory=False)
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000111 conf.check_cxx(header_name='valgrind/valgrind.h', define_name='HAVE_VALGRIND', mandatory=False)
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800112
Davide Pesavento5f47aa62016-10-07 22:09:09 +0200113 boost_libs = 'system chrono program_options thread log log_setup'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800114 if conf.options.with_tests:
115 conf.env['WITH_TESTS'] = 1
Davide Pesavento67f30272016-08-10 01:55:16 +0000116 conf.define('WITH_TESTS', 1)
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700117 boost_libs += ' unit_test_framework'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800118
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400119 if conf.options.with_other_tests:
120 conf.env['WITH_OTHER_TESTS'] = 1
121
Yumin Xiaab497452016-05-10 20:23:24 +0800122 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesaventocafae242016-04-22 02:21:35 +0200123 if conf.env.BOOST_VERSION_NUMBER < 105400:
124 Logs.error("Minimum required boost version is 1.54.0")
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700125 Logs.error("Please upgrade your distribution or install custom boost libraries" +
126 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800127 return
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800128
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -0700129 if conf.env['CXX_NAME'] == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800:
130 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 -0700131 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 -0700132
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800133 conf.load('unix-socket')
Wentao Shang53df1632014-04-21 12:01:32 -0700134 conf.checkWebsocket(mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100135
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700136 if not conf.options.without_libpcap:
Alexander Afanasyeve9186212014-08-23 20:15:48 -0700137 conf.check_asio_pcap_support()
138 if conf.env['HAVE_ASIO_PCAP_SUPPORT']:
139 conf.checkDependency(name='libpcap', lib='pcap', mandatory=True,
140 errmsg='not found, but required for Ethernet face support. '
141 'Specify --without-libpcap to disable Ethernet face support.')
142 else:
143 Logs.warn('Warning: Ethernet face support is not supported on this platform with Boost libraries version 1.56. '
144 'See http://redmine.named-data.net/issues/1877 for more details')
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200145 if conf.env['HAVE_LIBPCAP']:
146 conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h',
147 cxxflags='-Wno-error', use='LIBPCAP', mandatory=False)
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -0700148
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800149 if conf.options.with_custom_logger:
150 conf.define('HAVE_CUSTOM_LOGGER', 1)
151 conf.env['INCLUDES_CUSTOM_LOGGER'] = [conf.options.with_custom_logger]
152 conf.env['HAVE_CUSTOM_LOGGER'] = 1
153
Alexander Afanasyev689569b2014-02-16 20:20:07 -0800154 conf.load('coverage')
155
Eric Newberry27bdd1a2016-11-01 18:02:54 -0700156 conf.load('sanitizers')
157
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600158 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR'])
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -0700159
Junxiao Shi759f7062014-11-29 10:19:22 -0700160 # disable assertions in release builds
161 if not conf.options.debug:
162 conf.define('NDEBUG', 1)
163
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000164 conf.write_config_header('core/config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800165
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700166def build(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700167 version(bld)
168
169 bld(features="subst",
170 name='version',
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000171 source='core/version.hpp.in',
172 target='core/version.hpp',
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700173 install_path=None,
174 VERSION_STRING=VERSION_BASE,
175 VERSION_BUILD=VERSION,
176 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
177 int(VERSION_SPLIT[1]) * 1000 +
178 int(VERSION_SPLIT[2]),
179 VERSION_MAJOR=VERSION_SPLIT[0],
180 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento67f30272016-08-10 01:55:16 +0000181 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700182
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700183 core = bld(
184 target='core-objects',
185 name='core-objects',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300186 features='cxx pch',
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800187 source=bld.path.ant_glob(['core/**/*.cpp'],
188 excl=['core/logger*.cpp']),
Alexander Afanasyev3d1874a2016-06-15 12:25:01 -0700189 use='version NDN_CXX BOOST LIBRT',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700190 includes='. core',
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000191 export_includes='.',
Davide Pesavento67f30272016-08-10 01:55:16 +0000192 headers='core/common.hpp')
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700193
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800194 if bld.env['HAVE_CUSTOM_LOGGER']:
195 core.use += " CUSTOM_LOGGER"
196 else:
197 core.source += bld.path.ant_glob(['core/logger*.cpp'])
198
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800199 nfd_objects = bld(
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700200 target='daemon-objects',
201 name='daemon-objects',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700202 features='cxx',
203 source=bld.path.ant_glob(['daemon/**/*.cpp'],
204 excl=['daemon/face/ethernet-*.cpp',
205 'daemon/face/unix-*.cpp',
Wentao Shang53df1632014-04-21 12:01:32 -0700206 'daemon/face/websocket-*.cpp',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700207 'daemon/main.cpp']),
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600208 use='core-objects WEBSOCKET',
209 includes='daemon',
Davide Pesavento67f30272016-08-10 01:55:16 +0000210 export_includes='daemon')
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700211
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700212 if bld.env['HAVE_LIBPCAP']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100213 nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp')
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -0700214 nfd_objects.use += ' LIBPCAP'
Davide Pesavento44deacc2014-02-19 10:48:07 +0100215
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800216 if bld.env['HAVE_UNIX_SOCKETS']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100217 nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800218
Wentao Shang53df1632014-04-21 12:01:32 -0700219 if bld.env['HAVE_WEBSOCKET']:
220 nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
221
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700222 rib_objects = bld(
223 target='rib-objects',
224 name='rib-objects',
225 features='cxx',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800226 source=bld.path.ant_glob(['rib/**/*.cpp']),
Davide Pesavento67f30272016-08-10 01:55:16 +0000227 use='core-objects')
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700228
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800229 bld(target='bin/nfd',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700230 features='cxx cxxprogram',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800231 source='daemon/main.cpp',
Davide Pesavento67f30272016-08-10 01:55:16 +0000232 use='daemon-objects rib-objects')
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700233
Alexander Afanasyev262203b2015-01-26 16:39:59 -0800234 bld.recurse("tools")
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700235 bld.recurse("tests")
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400236
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700237 bld(features="subst",
238 source='nfd.conf.sample.in',
239 target='nfd.conf.sample',
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700240 install_path="${SYSCONFDIR}/ndn",
Wentao Shang53df1632014-04-21 12:01:32 -0700241 IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ",
242 IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800243
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700244 if bld.env['SPHINX_BUILD']:
245 bld(features="sphinx",
246 builder="man",
247 outdir="docs/manpages",
248 config="docs/conf.py",
249 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700250 install_path="${MANDIR}/",
251 VERSION=VERSION)
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700252
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800253 bld.install_files("${SYSCONFDIR}/ndn", "autoconfig.conf.sample")
254
Alexander Afanasyev284257b2014-04-11 14:16:51 -0700255def docs(bld):
256 from waflib import Options
257 Options.commands = ['doxygen', 'sphinx'] + Options.commands
258
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800259def doxygen(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700260 version(bld)
261
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800262 if not bld.env.DOXYGEN:
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700263 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
264 else:
265 bld(features="subst",
266 name="doxygen-conf",
Alexander Afanasyev20757882014-08-25 22:39:08 -0700267 source=["docs/doxygen.conf.in",
268 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
269 target=["docs/doxygen.conf",
270 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700271 VERSION=VERSION,
Alexander Afanasyev20757882014-08-25 22:39:08 -0700272 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
273 if os.getenv('GOOGLE_ANALYTICS', None) \
274 else "../docs/named_data_theme/named_data_footer.html",
Davide Pesavento67f30272016-08-10 01:55:16 +0000275 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""))
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700276
277 bld(features="doxygen",
278 doxyfile='docs/doxygen.conf',
279 use="doxygen-conf")
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700280
281def sphinx(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700282 version(bld)
283
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700284 if not bld.env.SPHINX_BUILD:
285 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
286 else:
287 bld(features="sphinx",
288 outdir="docs",
289 source=bld.path.ant_glob('docs/**/*.rst'),
290 config="docs/conf.py",
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700291 VERSION=VERSION)
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700292
293def version(ctx):
Alexander Afanasyev26181532014-05-07 23:38:51 -0700294 if getattr(Context.g_module, 'VERSION_BASE', None):
295 return
296
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700297 Context.g_module.VERSION_BASE = Context.g_module.VERSION
298 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
299
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700300 didGetVersion = False
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700301 try:
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700302 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700303 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
304 stderr=None, stdin=None)
Alexander Afanasyev3b21fa32014-09-01 13:25:20 -0700305 out = str(p.communicate()[0].strip())
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700306 didGetVersion = (p.returncode == 0 and out != "")
307 if didGetVersion:
308 if out.startswith(GIT_TAG_PREFIX):
309 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
310 else:
311 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
312 except OSError:
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700313 pass
314
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700315 versionFile = ctx.path.find_node('VERSION')
316
317 if not didGetVersion and versionFile is not None:
318 try:
319 Context.g_module.VERSION = versionFile.read()
320 return
321 except (OSError, IOError):
322 pass
323
324 # version was obtained from git, update VERSION file if necessary
325 if versionFile is not None:
326 try:
327 version = versionFile.read()
328 if version == Context.g_module.VERSION:
329 return # no need to update
330 except (OSError, IOError):
331 Logs.warn("VERSION file exists, but not readable")
332 else:
333 versionFile = ctx.path.make_node('VERSION')
334
335 if versionFile is None:
336 return
337
338 try:
339 versionFile.write(Context.g_module.VERSION)
340 except (OSError, IOError):
341 Logs.warn("VERSION file is not writeable")
342
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700343def dist(ctx):
344 version(ctx)
345
346def distcheck(ctx):
347 version(ctx)