blob: 899c80fbe631977b3cc3e60b0c3a7ddd82921550 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
##########################################################################
## # The Coq Proof Assistant / The Coq Development Team ##
## v # Copyright INRIA, CNRS and contributors ##
## <O___,, # (see version control and CREDITS file for authors & dates) ##
## \VV/ ###############################################################
## // # This file is distributed under the terms of the ##
## # GNU Lesser General Public License Version 2.1 ##
## # (see LICENSE file for the text of the license) ##
##########################################################################
from __future__ import print_function
import sys
missing_deps = []
def eprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)
def missing_dep(dep):
missing_deps.append(dep)
def report_missing_deps():
if len(missing_deps) > 0:
deps = " ".join(missing_deps)
eprint('Cannot find package(s) `%s` (needed to build documentation)' % deps)
eprint('You can run `pip3 install %s` to install it/them.' % deps)
sys.exit(1)
try:
import sphinx_rtd_theme
except:
missing_dep('sphinx_rtd_theme')
try:
import pexpect
except:
missing_dep('pexpect')
try:
import antlr4
except:
missing_dep('antlr4-python3-runtime')
try:
import bs4
except:
missing_dep('beautifulsoup4')
try:
import sphinxcontrib.bibtex
except:
missing_dep('sphinxcontrib-bibtex')
report_missing_deps()
|