2015-10-17 15:05:58 +00:00
|
|
|
#!/usr/bin/env python
|
2015-04-10 15:39:09 +00:00
|
|
|
# Build the documentation.
|
|
|
|
|
|
|
|
from __future__ import print_function
|
2015-10-16 15:28:58 +00:00
|
|
|
import errno, os, shutil, sys, tempfile
|
2015-10-13 15:45:49 +00:00
|
|
|
from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE
|
2015-10-14 15:17:39 +00:00
|
|
|
from distutils.version import LooseVersion
|
2015-04-10 15:39:09 +00:00
|
|
|
|
2019-08-26 13:23:37 +00:00
|
|
|
versions = ['1.0.0', '1.1.0', '2.0.0', '3.0.2', '4.0.0', '4.1.0', '5.0.0', '5.1.0', '5.2.0', '5.2.1', '5.3.0', '6.0.0']
|
2017-07-01 14:30:51 +00:00
|
|
|
|
2015-10-13 15:24:16 +00:00
|
|
|
def pip_install(package, commit=None, **kwargs):
|
2015-04-10 15:39:09 +00:00
|
|
|
"Install package using pip."
|
2016-05-31 15:40:29 +00:00
|
|
|
min_version = kwargs.get('min_version')
|
|
|
|
if min_version:
|
2016-05-31 15:49:34 +00:00
|
|
|
from pkg_resources import get_distribution, DistributionNotFound
|
|
|
|
try:
|
|
|
|
installed_version = get_distribution(os.path.basename(package)).version
|
|
|
|
if LooseVersion(installed_version) >= min_version:
|
|
|
|
print('{} {} already installed'.format(package, min_version))
|
|
|
|
return
|
|
|
|
except DistributionNotFound:
|
|
|
|
pass
|
2015-04-10 15:39:09 +00:00
|
|
|
if commit:
|
2016-12-29 18:44:02 +00:00
|
|
|
package = 'git+https://github.com/{0}.git@{1}'.format(package, commit)
|
2016-06-03 14:19:05 +00:00
|
|
|
print('Installing {0}'.format(package))
|
2016-05-25 14:46:47 +00:00
|
|
|
check_call(['pip', 'install', package])
|
2015-04-10 15:39:09 +00:00
|
|
|
|
2016-05-26 13:52:51 +00:00
|
|
|
def create_build_env(dirname='virtualenv'):
|
2015-04-10 15:39:09 +00:00
|
|
|
# Create virtualenv.
|
2016-05-26 15:00:41 +00:00
|
|
|
if not os.path.exists(dirname):
|
|
|
|
check_call(['virtualenv', dirname])
|
2015-10-28 19:21:57 +00:00
|
|
|
import sysconfig
|
|
|
|
scripts_dir = os.path.basename(sysconfig.get_path('scripts'))
|
2016-05-26 15:00:41 +00:00
|
|
|
activate_this_file = os.path.join(dirname, scripts_dir, 'activate_this.py')
|
2015-10-17 15:05:58 +00:00
|
|
|
with open(activate_this_file) as f:
|
|
|
|
exec(f.read(), dict(__file__=activate_this_file))
|
2016-05-31 15:40:29 +00:00
|
|
|
# Import get_distribution after activating virtualenv to get info about
|
|
|
|
# the correct packages.
|
|
|
|
from pkg_resources import get_distribution, DistributionNotFound
|
2015-10-14 15:31:54 +00:00
|
|
|
# Upgrade pip because installation of sphinx with pip 1.1 available on Travis
|
|
|
|
# is broken (see #207) and it doesn't support the show command.
|
2015-10-16 15:07:44 +00:00
|
|
|
pip_version = get_distribution('pip').version
|
2015-10-15 15:09:19 +00:00
|
|
|
if LooseVersion(pip_version) < LooseVersion('1.5.4'):
|
2015-10-15 13:41:16 +00:00
|
|
|
print("Updating pip")
|
2015-10-15 14:40:34 +00:00
|
|
|
check_call(['pip', 'install', '--upgrade', 'pip'])
|
2015-10-16 15:07:44 +00:00
|
|
|
# Upgrade distribute because installation of sphinx with distribute 0.6.24
|
|
|
|
# available on Travis is broken (see #207).
|
|
|
|
try:
|
|
|
|
distribute_version = get_distribution('distribute').version
|
|
|
|
if LooseVersion(distribute_version) <= LooseVersion('0.6.24'):
|
|
|
|
print("Updating distribute")
|
|
|
|
check_call(['pip', 'install', '--upgrade', 'distribute'])
|
|
|
|
except DistributionNotFound:
|
|
|
|
pass
|
2015-05-19 15:13:13 +00:00
|
|
|
# Install Sphinx and Breathe.
|
2016-05-26 15:00:41 +00:00
|
|
|
pip_install('sphinx-doc/sphinx', '12b83372ac9316e8cbe86e7fed889296a4cc29ee',
|
2016-05-31 15:40:29 +00:00
|
|
|
min_version='1.4.1.dev20160531')
|
2015-10-21 23:08:50 +00:00
|
|
|
pip_install('michaeljones/breathe',
|
2018-06-04 17:56:22 +00:00
|
|
|
'129222318f7c8f865d2631e7da7b033567e7f56a',
|
2016-05-31 15:46:28 +00:00
|
|
|
min_version='4.2.0')
|
2016-05-08 15:03:01 +00:00
|
|
|
|
2016-05-09 15:36:16 +00:00
|
|
|
def build_docs(version='dev', **kwargs):
|
|
|
|
doc_dir = kwargs.get('doc_dir', os.path.dirname(os.path.realpath(__file__)))
|
2016-05-26 14:35:10 +00:00
|
|
|
work_dir = kwargs.get('work_dir', '.')
|
2018-02-11 17:23:17 +00:00
|
|
|
include_dir = kwargs.get(
|
|
|
|
'include_dir', os.path.join(os.path.dirname(doc_dir), 'include', 'fmt'))
|
2015-04-10 15:39:09 +00:00
|
|
|
# Build docs.
|
2015-05-20 15:06:12 +00:00
|
|
|
cmd = ['doxygen', '-']
|
2015-06-22 13:40:21 +00:00
|
|
|
p = Popen(cmd, stdin=PIPE)
|
2016-05-26 14:35:10 +00:00
|
|
|
doxyxml_dir = os.path.join(work_dir, 'doxyxml')
|
2015-04-10 15:39:09 +00:00
|
|
|
p.communicate(input=r'''
|
2016-04-28 14:00:22 +00:00
|
|
|
PROJECT_NAME = fmt
|
2015-04-10 15:39:09 +00:00
|
|
|
GENERATE_LATEX = NO
|
|
|
|
GENERATE_MAN = NO
|
|
|
|
GENERATE_RTF = NO
|
|
|
|
CASE_SENSE_NAMES = NO
|
2018-02-11 17:23:17 +00:00
|
|
|
INPUT = {0}/core.h {0}/format.h {0}/ostream.h \
|
|
|
|
{0}/printf.h {0}/time.h
|
2015-04-10 15:39:09 +00:00
|
|
|
QUIET = YES
|
|
|
|
JAVADOC_AUTOBRIEF = YES
|
|
|
|
AUTOLINK_SUPPORT = NO
|
|
|
|
GENERATE_HTML = NO
|
|
|
|
GENERATE_XML = YES
|
2016-05-26 14:35:10 +00:00
|
|
|
XML_OUTPUT = {1}
|
2015-04-10 15:39:09 +00:00
|
|
|
ALIASES = "rst=\verbatim embed:rst"
|
|
|
|
ALIASES += "endrst=\endverbatim"
|
2015-12-24 14:54:37 +00:00
|
|
|
MACRO_EXPANSION = YES
|
2015-04-10 15:39:09 +00:00
|
|
|
PREDEFINED = _WIN32=1 \
|
|
|
|
FMT_USE_VARIADIC_TEMPLATES=1 \
|
2015-10-12 22:35:22 +00:00
|
|
|
FMT_USE_RVALUE_REFERENCES=1 \
|
2015-12-18 15:13:43 +00:00
|
|
|
FMT_USE_USER_DEFINED_LITERALS=1 \
|
2018-10-07 14:48:27 +00:00
|
|
|
FMT_USE_ALIAS_TEMPLATES=1 \
|
2018-05-12 19:57:16 +00:00
|
|
|
FMT_API= \
|
2018-05-12 20:12:04 +00:00
|
|
|
"FMT_BEGIN_NAMESPACE=namespace fmt {{" \
|
2018-09-13 14:20:43 +00:00
|
|
|
"FMT_END_NAMESPACE=}}" \
|
2018-12-13 01:50:50 +00:00
|
|
|
"FMT_STRING_ALIAS=1" \
|
2019-06-05 01:02:55 +00:00
|
|
|
"FMT_ENABLE_IF(B)="
|
2015-04-10 15:39:09 +00:00
|
|
|
EXCLUDE_SYMBOLS = fmt::internal::* StringValue write_str
|
2016-05-26 14:35:10 +00:00
|
|
|
'''.format(include_dir, doxyxml_dir).encode('UTF-8'))
|
2015-04-10 15:39:09 +00:00
|
|
|
if p.returncode != 0:
|
2015-05-20 15:06:12 +00:00
|
|
|
raise CalledProcessError(p.returncode, cmd)
|
2016-05-26 14:35:10 +00:00
|
|
|
html_dir = os.path.join(work_dir, 'html')
|
2017-07-01 14:30:51 +00:00
|
|
|
main_versions = reversed(versions[-3:])
|
2018-10-28 16:26:21 +00:00
|
|
|
check_call(['sphinx-build',
|
2016-06-02 13:52:07 +00:00
|
|
|
'-Dbreathe_projects.format=' + os.path.abspath(doxyxml_dir),
|
2016-05-26 13:52:51 +00:00
|
|
|
'-Dversion=' + version, '-Drelease=' + version,
|
2017-07-01 14:30:51 +00:00
|
|
|
'-Aversion=' + version, '-Aversions=' + ','.join(main_versions),
|
2016-06-02 13:41:25 +00:00
|
|
|
'-b', 'html', doc_dir, html_dir])
|
2015-10-16 15:28:58 +00:00
|
|
|
try:
|
2016-06-02 13:41:25 +00:00
|
|
|
check_call(['lessc', '--clean-css',
|
2015-10-16 15:28:58 +00:00
|
|
|
'--include-path=' + os.path.join(doc_dir, 'bootstrap'),
|
2016-04-24 17:39:33 +00:00
|
|
|
os.path.join(doc_dir, 'fmt.less'),
|
2016-05-26 14:35:10 +00:00
|
|
|
os.path.join(html_dir, '_static', 'fmt.css')])
|
2015-10-17 15:05:58 +00:00
|
|
|
except OSError as e:
|
2015-10-16 15:28:58 +00:00
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise
|
2016-05-26 13:52:51 +00:00
|
|
|
print('lessc not found; make sure that Less (http://lesscss.org/) ' +
|
|
|
|
'is installed')
|
2015-10-16 15:28:58 +00:00
|
|
|
sys.exit(1)
|
2016-05-26 14:35:10 +00:00
|
|
|
return html_dir
|
2015-04-10 15:39:09 +00:00
|
|
|
|
2015-05-20 15:06:12 +00:00
|
|
|
if __name__ == '__main__':
|
2016-05-08 15:03:01 +00:00
|
|
|
create_build_env()
|
2015-11-23 16:10:02 +00:00
|
|
|
build_docs(sys.argv[1])
|