Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 2 | |
| 3 | """ |
| 4 | Copyright (c) 2014 Regents of the University of California, |
| 5 | 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 | |
| 11 | This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | |
| 14 | NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | of the GNU General Public License as published by the Free Software Foundation, |
| 16 | either version 3 of the License, or (at your option) any later version. |
| 17 | |
| 18 | NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | PURPOSE. See the GNU General Public License for more details. |
| 21 | |
| 22 | You should have received a copy of the GNU General Public License along with |
| 23 | NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | """ |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 25 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 26 | VERSION = "0.1.0" |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 27 | APPNAME = "nfd" |
| 28 | BUGREPORT = "http://redmine.named-data.net/projects/nfd" |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 29 | URL = "http://named-data.net/doc/NFD/" |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 30 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 31 | from waflib import Logs, Utils, Context |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 32 | |
| 33 | def options(opt): |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 34 | opt.load(['compiler_cxx', 'gnu_dirs']) |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 35 | opt.load(['boost', 'unix-socket', 'dependency-checker', 'websocket', |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 36 | 'default-compiler-flags', 'coverage', 'pch', |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 37 | 'doxygen', 'sphinx_build'], |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 38 | tooldir=['.waf-tools']) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 39 | |
| 40 | nfdopt = opt.add_option_group('NFD Options') |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 41 | opt.addUnixOptions(nfdopt) |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 42 | opt.addWebsocketOptions(nfdopt) |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 43 | opt.addDependencyOptions(nfdopt, 'libpcap') |
| 44 | nfdopt.add_option('--without-libpcap', action='store_true', default=False, |
| 45 | dest='without_libpcap', |
| 46 | help='''Disable libpcap (Ethernet face support will be disabled)''') |
| 47 | |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 48 | opt.addDependencyOptions(nfdopt, 'librt', '(optional)') |
| 49 | opt.addDependencyOptions(nfdopt, 'libresolv', '(optional)') |
| 50 | |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 51 | nfdopt.add_option('--with-tests', action='store_true', default=False, |
| 52 | dest='with_tests', help='''Build unit tests''') |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 53 | nfdopt.add_option('--with-other-tests', action='store_true', default=False, |
| 54 | dest='with_other_tests', help='''Build other tests''') |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 55 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 56 | def configure(conf): |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 57 | conf.load(['compiler_cxx', 'gnu_dirs', |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 58 | 'default-compiler-flags', 'pch', |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 59 | 'boost', 'dependency-checker', 'websocket', |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 60 | 'doxygen', 'sphinx_build']) |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 61 | |
Davide Pesavento | f0ae442 | 2014-05-05 16:32:12 +0200 | [diff] [blame] | 62 | conf.find_program('bash', var='BASH') |
| 63 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 64 | conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'], |
| 65 | uselib_store='NDN_CXX', mandatory=True) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 66 | |
Wentao Shang | 93ef6c9 | 2014-06-19 11:59:17 -0400 | [diff] [blame^] | 67 | boost_libs = 'system chrono program_options random' |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 68 | if conf.options.with_tests: |
| 69 | conf.env['WITH_TESTS'] = 1 |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 70 | conf.define('WITH_TESTS', 1); |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 71 | boost_libs += ' unit_test_framework' |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 72 | |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 73 | if conf.options.with_other_tests: |
| 74 | conf.env['WITH_OTHER_TESTS'] = 1 |
| 75 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 76 | conf.check_boost(lib=boost_libs) |
Alexander Afanasyev | e1724c4 | 2014-02-26 22:00:54 -0800 | [diff] [blame] | 77 | if conf.env.BOOST_VERSION_NUMBER < 104800: |
Junxiao Shi | ea48d8b | 2014-03-16 13:53:47 -0700 | [diff] [blame] | 78 | Logs.error("Minimum required boost version is 1.48.0") |
| 79 | Logs.error("Please upgrade your distribution or install custom boost libraries" + |
| 80 | " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)") |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 81 | return |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 82 | |
| 83 | conf.load('unix-socket') |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 84 | conf.checkWebsocket(mandatory=True) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 85 | |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 86 | conf.checkDependency(name='librt', lib='rt', mandatory=False) |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 87 | conf.checkDependency(name='libresolv', lib='resolv', mandatory=False) |
Davide Pesavento | f0ae442 | 2014-05-05 16:32:12 +0200 | [diff] [blame] | 88 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 89 | if not conf.options.without_libpcap: |
| 90 | conf.checkDependency(name='libpcap', lib='pcap', mandatory=True, |
| 91 | errmsg='not found, but required for Ethernet face support. ' |
| 92 | 'Specify --without-libpcap to disable Ethernet face support.') |
Davide Pesavento | f0ae442 | 2014-05-05 16:32:12 +0200 | [diff] [blame] | 93 | if conf.env['HAVE_LIBPCAP']: |
| 94 | conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h', |
| 95 | cxxflags='-Wno-error', use='LIBPCAP', mandatory=False) |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 96 | |
Alexander Afanasyev | 689569b | 2014-02-16 20:20:07 -0800 | [diff] [blame] | 97 | conf.load('coverage') |
| 98 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 99 | conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR']) |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 100 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 101 | conf.write_config_header('config.hpp') |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 102 | |
Junxiao Shi | 09bf7c4 | 2014-01-31 11:10:25 -0700 | [diff] [blame] | 103 | def build(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 104 | version(bld) |
| 105 | |
| 106 | bld(features="subst", |
| 107 | name='version', |
| 108 | source='version.hpp.in', |
| 109 | target='version.hpp', |
| 110 | install_path=None, |
| 111 | VERSION_STRING=VERSION_BASE, |
| 112 | VERSION_BUILD=VERSION, |
| 113 | VERSION=int(VERSION_SPLIT[0]) * 1000000 + |
| 114 | int(VERSION_SPLIT[1]) * 1000 + |
| 115 | int(VERSION_SPLIT[2]), |
| 116 | VERSION_MAJOR=VERSION_SPLIT[0], |
| 117 | VERSION_MINOR=VERSION_SPLIT[1], |
| 118 | VERSION_PATCH=VERSION_SPLIT[2], |
| 119 | ) |
| 120 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 121 | core = bld( |
| 122 | target='core-objects', |
| 123 | name='core-objects', |
Alexander Afanasyev | 58ea458 | 2014-05-30 08:38:56 +0300 | [diff] [blame] | 124 | features='cxx pch', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 125 | source=bld.path.ant_glob(['core/**/*.cpp']), |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 126 | use='version BOOST NDN_CXX LIBRT', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 127 | includes='. core', |
| 128 | export_includes='. core', |
Alexander Afanasyev | 58ea458 | 2014-05-30 08:38:56 +0300 | [diff] [blame] | 129 | headers='common.hpp', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 130 | ) |
| 131 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 132 | nfd_objects = bld( |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 133 | target='daemon-objects', |
| 134 | name='daemon-objects', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 135 | features='cxx', |
| 136 | source=bld.path.ant_glob(['daemon/**/*.cpp'], |
| 137 | excl=['daemon/face/ethernet-*.cpp', |
| 138 | 'daemon/face/unix-*.cpp', |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 139 | 'daemon/face/websocket-*.cpp', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 140 | 'daemon/main.cpp']), |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 141 | use='core-objects WEBSOCKET', |
| 142 | includes='daemon', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 143 | export_includes='daemon', |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 144 | ) |
| 145 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 146 | if bld.env['HAVE_LIBPCAP']: |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 147 | nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp') |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 148 | nfd_objects.use += ' LIBPCAP' |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 149 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 150 | if bld.env['HAVE_UNIX_SOCKETS']: |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 151 | nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp') |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 152 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 153 | if bld.env['HAVE_WEBSOCKET']: |
| 154 | nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp') |
| 155 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 156 | bld(target='bin/nfd', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 157 | features='cxx cxxprogram', |
| 158 | source='daemon/main.cpp', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 159 | use='daemon-objects', |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 160 | ) |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 161 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 162 | rib_objects = bld( |
| 163 | target='rib-objects', |
| 164 | name='rib-objects', |
| 165 | features='cxx', |
| 166 | source=bld.path.ant_glob(['rib/**/*.cpp'], |
| 167 | excl=['rib/main.cpp']), |
| 168 | use='core-objects', |
| 169 | ) |
| 170 | |
| 171 | bld(target='bin/nrd', |
| 172 | features='cxx cxxprogram', |
| 173 | source='rib/main.cpp', |
| 174 | use='rib-objects', |
| 175 | ) |
| 176 | |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 177 | for app in bld.path.ant_glob('tools/*.cpp'): |
| 178 | bld(features=['cxx', 'cxxprogram'], |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 179 | target='bin/%s' % (str(app.change_ext(''))), |
| 180 | source=['tools/%s' % (str(app))], |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 181 | use='core-objects LIBRESOLV', |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 182 | ) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 183 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 184 | bld.recurse("tests") |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 185 | |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 186 | bld(features="subst", |
| 187 | source='nfd.conf.sample.in', |
| 188 | target='nfd.conf.sample', |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 189 | install_path="${SYSCONFDIR}/ndn", |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 190 | IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ", |
| 191 | IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ") |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 192 | |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 193 | bld(features='subst', |
| 194 | source='tools/nfd-status-http-server.py', |
Alexander Afanasyev | 03ea3eb | 2014-04-17 18:19:06 -0700 | [diff] [blame] | 195 | target='bin/nfd-status-http-server', |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 196 | install_path="${BINDIR}", |
Alexander Afanasyev | f7bbe47 | 2014-05-11 19:31:13 -0700 | [diff] [blame] | 197 | chmod=Utils.O755, |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 198 | VERSION=VERSION) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 199 | |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 200 | if bld.env['SPHINX_BUILD']: |
| 201 | bld(features="sphinx", |
| 202 | builder="man", |
| 203 | outdir="docs/manpages", |
| 204 | config="docs/conf.py", |
| 205 | source=bld.path.ant_glob('docs/manpages/**/*.rst'), |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 206 | install_path="${MANDIR}/", |
| 207 | VERSION=VERSION) |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 208 | |
Junxiao Shi | d71d84c | 2014-04-18 17:22:50 -0700 | [diff] [blame] | 209 | for script in bld.path.ant_glob('tools/*.sh'): |
| 210 | bld(features='subst', |
| 211 | source='tools/%s' % (str(script)), |
| 212 | target='bin/%s' % (str(script.change_ext(''))), |
| 213 | install_path="${BINDIR}", |
Alexander Afanasyev | f7bbe47 | 2014-05-11 19:31:13 -0700 | [diff] [blame] | 214 | chmod=Utils.O755, |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 215 | VERSION=VERSION) |
Junxiao Shi | d71d84c | 2014-04-18 17:22:50 -0700 | [diff] [blame] | 216 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 217 | def docs(bld): |
| 218 | from waflib import Options |
| 219 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 220 | |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 221 | def doxygen(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 222 | version(bld) |
| 223 | |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 224 | if not bld.env.DOXYGEN: |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 225 | Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 226 | else: |
| 227 | bld(features="subst", |
| 228 | name="doxygen-conf", |
| 229 | source="docs/doxygen.conf.in", |
| 230 | target="docs/doxygen.conf", |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 231 | VERSION=VERSION_BASE, |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 232 | ) |
| 233 | |
| 234 | bld(features="doxygen", |
| 235 | doxyfile='docs/doxygen.conf', |
| 236 | use="doxygen-conf") |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 237 | |
| 238 | def sphinx(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 239 | version(bld) |
| 240 | |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 241 | if not bld.env.SPHINX_BUILD: |
| 242 | bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)") |
| 243 | else: |
| 244 | bld(features="sphinx", |
| 245 | outdir="docs", |
| 246 | source=bld.path.ant_glob('docs/**/*.rst'), |
| 247 | config="docs/conf.py", |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 248 | VERSION=VERSION_BASE) |
| 249 | |
| 250 | def version(ctx): |
Alexander Afanasyev | 2618153 | 2014-05-07 23:38:51 -0700 | [diff] [blame] | 251 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 252 | return |
| 253 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 254 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
| 255 | Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')] |
| 256 | |
| 257 | try: |
| 258 | cmd = ['git', 'describe', '--match', 'NFD-*'] |
| 259 | p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE, |
| 260 | stderr=None, stdin=None) |
| 261 | out = p.communicate()[0].strip() |
| 262 | if p.returncode == 0 and out != "": |
| 263 | Context.g_module.VERSION = out[4:] |
| 264 | except: |
| 265 | pass |
| 266 | |
| 267 | def dist(ctx): |
| 268 | version(ctx) |
| 269 | |
| 270 | def distcheck(ctx): |
| 271 | version(ctx) |