sphinx-pre-install: use a requirements file
Instead of using 3 commands to install a virtualenv, use a single one, reading the requirements from this file: Documentation/sphinx/requirements.txt Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
parent
5be33182d4
commit
fb947f3f47
3
Documentation/sphinx/requirements.txt
Normal file
3
Documentation/sphinx/requirements.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
docutils==0.12
|
||||
Sphinx==1.4.9
|
||||
sphinx_rtd_theme
|
|
@ -14,6 +14,7 @@ use strict;
|
|||
# GNU General Public License for more details.
|
||||
|
||||
my $virtenv_dir = "sphinx_1.4";
|
||||
my $requirement_file = "Documentation/sphinx/requirements.txt";
|
||||
|
||||
#
|
||||
# Static vars
|
||||
|
@ -467,9 +468,7 @@ sub check_needs()
|
|||
|
||||
printf "\t$virtualenv $virtenv_dir\n";
|
||||
printf "\t. $activate\n";
|
||||
printf "\tpip install 'docutils==0.12'\n";
|
||||
printf "\tpip install 'Sphinx==1.4.9'\n";
|
||||
printf "\tpip install sphinx_rtd_theme\n";
|
||||
printf "\tpip install -r $requirement_file\n";
|
||||
$need++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user