blob: 68385fa62ff4b67bb620abdb1c71de394607e0ec [file] [log] [blame]
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -03001#!/usr/bin/perl
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02002# SPDX-License-Identifier: GPL-2.0-or-later
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -03003use strict;
4
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -03005# Copyright (c) 2017-2019 Mauro Carvalho Chehab <mchehab@kernel.org>
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -03006#
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -03007
Mike Rapoport8c69b772019-06-24 08:25:07 +03008my $prefix = "./";
9$prefix = "$ENV{'srctree'}/" if ($ENV{'srctree'});
10
11my $conf = $prefix . "Documentation/conf.py";
12my $requirement_file = $prefix . "Documentation/sphinx/requirements.txt";
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -030013my $virtenv_prefix = "sphinx_";
Mauro Carvalho Chehab5be33182017-07-17 18:46:37 -030014
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -030015#
16# Static vars
17#
18
19my %missing;
20my $system_release;
21my $need = 0;
22my $optional = 0;
23my $need_symlink = 0;
24my $need_sphinx = 0;
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -030025my $rec_sphinx_upgrade = 0;
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -030026my $install = "";
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -030027my $virtenv_dir = "";
28my $min_version;
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -030029
30#
31# Command line arguments
32#
33
34my $pdf = 1;
35my $virtualenv = 1;
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -030036my $version_check = 0;
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -030037
38#
39# List of required texlive packages on Fedora and OpenSuse
40#
41
42my %texlive = (
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -030043 'amsfonts.sty' => 'texlive-amsfonts',
44 'amsmath.sty' => 'texlive-amsmath',
45 'amssymb.sty' => 'texlive-amsfonts',
46 'amsthm.sty' => 'texlive-amscls',
47 'anyfontsize.sty' => 'texlive-anyfontsize',
48 'atbegshi.sty' => 'texlive-oberdiek',
49 'bm.sty' => 'texlive-tools',
50 'capt-of.sty' => 'texlive-capt-of',
51 'cmap.sty' => 'texlive-cmap',
52 'ecrm1000.tfm' => 'texlive-ec',
53 'eqparbox.sty' => 'texlive-eqparbox',
54 'eu1enc.def' => 'texlive-euenc',
55 'fancybox.sty' => 'texlive-fancybox',
56 'fancyvrb.sty' => 'texlive-fancyvrb',
57 'float.sty' => 'texlive-float',
58 'fncychap.sty' => 'texlive-fncychap',
59 'footnote.sty' => 'texlive-mdwtools',
60 'framed.sty' => 'texlive-framed',
61 'luatex85.sty' => 'texlive-luatex85',
62 'multirow.sty' => 'texlive-multirow',
63 'needspace.sty' => 'texlive-needspace',
64 'palatino.sty' => 'texlive-psnfss',
65 'parskip.sty' => 'texlive-parskip',
66 'polyglossia.sty' => 'texlive-polyglossia',
67 'tabulary.sty' => 'texlive-tabulary',
68 'threeparttable.sty' => 'texlive-threeparttable',
69 'titlesec.sty' => 'texlive-titlesec',
70 'ucs.sty' => 'texlive-ucs',
71 'upquote.sty' => 'texlive-upquote',
72 'wrapfig.sty' => 'texlive-wrapfig',
73);
74
75#
76# Subroutines that checks if a feature exists
77#
78
79sub check_missing(%)
80{
81 my %map = %{$_[0]};
82
83 foreach my $prog (sort keys %missing) {
84 my $is_optional = $missing{$prog};
85
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -030086 # At least on some LTS distros like CentOS 7, texlive doesn't
87 # provide all packages we need. When such distros are
88 # detected, we have to disable PDF output.
89 #
90 # So, we need to ignore the packages that distros would
91 # need for LaTeX to work
92 if ($is_optional == 2 && !$pdf) {
93 $optional--;
94 next;
95 }
96
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -030097 if ($is_optional) {
98 print "Warning: better to also install \"$prog\".\n";
99 } else {
100 print "ERROR: please install \"$prog\", otherwise, build won't work.\n";
101 }
102 if (defined($map{$prog})) {
103 $install .= " " . $map{$prog};
104 } else {
105 $install .= " " . $prog;
106 }
107 }
108
109 $install =~ s/^\s//;
110}
111
112sub add_package($$)
113{
114 my $package = shift;
115 my $is_optional = shift;
116
117 $missing{$package} = $is_optional;
118 if ($is_optional) {
119 $optional++;
120 } else {
121 $need++;
122 }
123}
124
125sub check_missing_file($$$)
126{
Jeremy MAUROff8fdb32019-10-02 15:33:39 +0200127 my $files = shift;
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300128 my $package = shift;
129 my $is_optional = shift;
130
Jeremy MAUROff8fdb32019-10-02 15:33:39 +0200131 for (@$files) {
132 return if(-e $_);
133 }
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300134
135 add_package($package, $is_optional);
136}
137
138sub findprog($)
139{
140 foreach(split(/:/, $ENV{PATH})) {
141 return "$_/$_[0]" if(-x "$_/$_[0]");
142 }
143}
144
145sub check_program($$)
146{
147 my $prog = shift;
148 my $is_optional = shift;
149
150 return if findprog($prog);
151
152 add_package($prog, $is_optional);
153}
154
155sub check_perl_module($$)
156{
157 my $prog = shift;
158 my $is_optional = shift;
159
160 my $err = system("perl -M$prog -e 1 2>/dev/null /dev/null");
161 return if ($err == 0);
162
163 add_package($prog, $is_optional);
164}
165
166sub check_python_module($$)
167{
168 my $prog = shift;
169 my $is_optional = shift;
170
171 my $err = system("python3 -c 'import $prog' 2>/dev/null /dev/null");
172 return if ($err == 0);
173 my $err = system("python -c 'import $prog' 2>/dev/null /dev/null");
174 return if ($err == 0);
175
176 add_package($prog, $is_optional);
177}
178
179sub check_rpm_missing($$)
180{
181 my @pkgs = @{$_[0]};
182 my $is_optional = $_[1];
183
184 foreach my $prog(@pkgs) {
185 my $err = system("rpm -q '$prog' 2>/dev/null >/dev/null");
186 add_package($prog, $is_optional) if ($err);
187 }
188}
189
190sub check_pacman_missing($$)
191{
192 my @pkgs = @{$_[0]};
193 my $is_optional = $_[1];
194
195 foreach my $prog(@pkgs) {
196 my $err = system("pacman -Q '$prog' 2>/dev/null >/dev/null");
197 add_package($prog, $is_optional) if ($err);
198 }
199}
200
201sub check_missing_tex($)
202{
203 my $is_optional = shift;
204 my $kpsewhich = findprog("kpsewhich");
205
206 foreach my $prog(keys %texlive) {
207 my $package = $texlive{$prog};
208 if (!$kpsewhich) {
209 add_package($package, $is_optional);
210 next;
211 }
212 my $file = qx($kpsewhich $prog);
213 add_package($package, $is_optional) if ($file =~ /^\s*$/);
214 }
215}
216
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300217sub get_sphinx_fname()
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300218{
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300219 my $fname = "sphinx-build";
220 return $fname if findprog($fname);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300221
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300222 $fname = "sphinx-build-3";
223 if (findprog($fname)) {
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300224 $need_symlink = 1;
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300225 return $fname;
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300226 }
227
228 if ($virtualenv) {
Mauro Carvalho Chehab800d4082017-07-21 13:20:41 -0300229 my $prog = findprog("virtualenv-3");
230 $prog = findprog("virtualenv-3.5") if (!$prog);
231
232 check_program("virtualenv", 0) if (!$prog);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300233 $need_sphinx = 1;
234 } else {
235 add_package("python-sphinx", 0);
236 }
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300237
238 return "";
239}
240
241sub check_sphinx()
242{
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300243 my $rec_version;
244 my $cur_version;
245
246 open IN, $conf or die "Can't open $conf";
247 while (<IN>) {
248 if (m/^\s*needs_sphinx\s*=\s*[\'\"]([\d\.]+)[\'\"]/) {
249 $min_version=$1;
250 last;
251 }
252 }
253 close IN;
254
255 die "Can't get needs_sphinx version from $conf" if (!$min_version);
256
257 open IN, $requirement_file or die "Can't open $requirement_file";
258 while (<IN>) {
259 if (m/^\s*Sphinx\s*==\s*([\d\.]+)$/) {
260 $rec_version=$1;
261 last;
262 }
263 }
264 close IN;
265
266 die "Can't get recommended sphinx version from $requirement_file" if (!$min_version);
267
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -0300268 $virtenv_dir = $virtenv_prefix . $rec_version;
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300269
270 my $sphinx = get_sphinx_fname();
271 return if ($sphinx eq "");
272
273 open IN, "$sphinx --version 2>&1 |" or die "$sphinx returned an error";
274 while (<IN>) {
275 if (m/^\s*sphinx-build\s+([\d\.]+)$/) {
276 $cur_version=$1;
277 last;
278 }
279 # Sphinx 1.2.x uses a different format
280 if (m/^\s*Sphinx.*\s+([\d\.]+)$/) {
281 $cur_version=$1;
282 last;
283 }
284 }
285 close IN;
286
287 die "$sphinx didn't return its version" if (!$cur_version);
288
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300289 if ($cur_version lt $min_version) {
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300290 printf "ERROR: Sphinx version is %s. It should be >= %s (recommended >= %s)\n",
291 $cur_version, $min_version, $rec_version;;
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300292 $need_sphinx = 1;
293 return;
294 }
295
296 if ($cur_version lt $rec_version) {
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300297 printf "Sphinx version %s\n", $cur_version;
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300298 print "Warning: It is recommended at least Sphinx version $rec_version.\n";
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300299 $rec_sphinx_upgrade = 1;
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300300 return;
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300301 }
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300302
303 # On version check mode, just assume Sphinx has all mandatory deps
304 exit (0) if ($version_check);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300305}
306
307#
308# Ancillary subroutines
309#
310
311sub catcheck($)
312{
313 my $res = "";
314 $res = qx(cat $_[0]) if (-r $_[0]);
315 return $res;
316}
317
318sub which($)
319{
320 my $file = shift;
321 my @path = split ":", $ENV{PATH};
322
323 foreach my $dir(@path) {
324 my $name = $dir.'/'.$file;
325 return $name if (-x $name );
326 }
327 return undef;
328}
329
330#
331# Subroutines that check distro-specific hints
332#
333
334sub give_debian_hints()
335{
336 my %map = (
337 "python-sphinx" => "python3-sphinx",
338 "sphinx_rtd_theme" => "python3-sphinx-rtd-theme",
339 "virtualenv" => "virtualenv",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300340 "dot" => "graphviz",
341 "convert" => "imagemagick",
342 "Pod::Usage" => "perl-modules",
343 "xelatex" => "texlive-xetex",
Mauro Carvalho Chehab8e7d5d12017-07-17 18:46:40 -0300344 "rsvg-convert" => "librsvg2-bin",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300345 );
346
347 if ($pdf) {
Jeremy MAUROff8fdb32019-10-02 15:33:39 +0200348 check_missing_file(["/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf"],
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300349 "fonts-dejavu", 2);
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300350
Jeremy MAURO9692f2f2019-10-02 15:35:42 +0200351 check_missing_file(["/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc",
352 "/usr/share/fonts/opentype/noto/NotoSerifCJK-Regular.ttc"],
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300353 "fonts-noto-cjk", 2);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300354 }
355
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300356 check_program("dvipng", 2) if ($pdf);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300357 check_missing(\%map);
358
359 return if (!$need && !$optional);
360 printf("You should run:\n\n\tsudo apt-get install $install\n");
361}
362
363sub give_redhat_hints()
364{
365 my %map = (
366 "python-sphinx" => "python3-sphinx",
367 "sphinx_rtd_theme" => "python3-sphinx_rtd_theme",
368 "virtualenv" => "python3-virtualenv",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300369 "dot" => "graphviz",
370 "convert" => "ImageMagick",
371 "Pod::Usage" => "perl-Pod-Usage",
372 "xelatex" => "texlive-xetex-bin",
Mauro Carvalho Chehab8e7d5d12017-07-17 18:46:40 -0300373 "rsvg-convert" => "librsvg2-tools",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300374 );
375
Mauro Carvalho Chehab5d889532017-07-17 18:46:39 -0300376 my @fedora26_opt_pkgs = (
377 "graphviz-gd", # Fedora 26: needed for PDF support
378 );
379
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300380 my @fedora_tex_pkgs = (
381 "texlive-collection-fontsrecommended",
382 "texlive-collection-latex",
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300383 "texlive-xecjk",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300384 "dejavu-sans-fonts",
385 "dejavu-serif-fonts",
386 "dejavu-sans-mono-fonts",
387 );
388
Mauro Carvalho Chehab9b756a92017-07-24 09:09:24 -0300389 #
390 # Checks valid for RHEL/CentOS version 7.x.
391 #
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300392 my $old = 0;
393 my $rel;
394 $rel = $1 if ($system_release =~ /release\s+(\d+)/);
395
Mauro Carvalho Chehabb3084672019-07-13 08:50:24 -0300396 if (!($system_release =~ /Fedora/)) {
Mauro Carvalho Chehab9b756a92017-07-24 09:09:24 -0300397 $map{"virtualenv"} = "python-virtualenv";
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300398
399 if ($rel && $rel < 8) {
400 $old = 1;
401 $pdf = 0;
402
403 printf("Note: texlive packages on RHEL/CENTOS <= 7 are incomplete. Can't support PDF output\n");
404 printf("If you want to build PDF, please read:\n");
405 printf("\thttps://www.systutorials.com/241660/how-to-install-tex-live-on-centos-7-linux/\n");
406 }
407 } else {
408 if ($rel && $rel < 26) {
409 $old = 1;
410 }
411 }
412 if (!$rel) {
413 printf("Couldn't identify release number\n");
414 $old = 1;
415 $pdf = 0;
Mauro Carvalho Chehab9b756a92017-07-24 09:09:24 -0300416 }
417
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300418 if ($pdf) {
Jeremy MAUROff8fdb32019-10-02 15:33:39 +0200419 check_missing_file(["/usr/share/fonts/google-noto-cjk/NotoSansCJK-Regular.ttc"],
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300420 "google-noto-sans-cjk-ttc-fonts", 2);
421 }
422
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300423 check_rpm_missing(\@fedora26_opt_pkgs, 2) if ($pdf && !$old);
424 check_rpm_missing(\@fedora_tex_pkgs, 2) if ($pdf);
425 check_missing_tex(2) if ($pdf);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300426 check_missing(\%map);
427
428 return if (!$need && !$optional);
Mauro Carvalho Chehab9b756a92017-07-24 09:09:24 -0300429
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300430 if (!$old) {
Mauro Carvalho Chehab9b756a92017-07-24 09:09:24 -0300431 # dnf, for Fedora 18+
432 printf("You should run:\n\n\tsudo dnf install -y $install\n");
433 } else {
434 # yum, for RHEL (and clones) or Fedora version < 18
435 printf("You should run:\n\n\tsudo yum install -y $install\n");
436 }
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300437}
438
439sub give_opensuse_hints()
440{
441 my %map = (
442 "python-sphinx" => "python3-sphinx",
443 "sphinx_rtd_theme" => "python3-sphinx_rtd_theme",
444 "virtualenv" => "python3-virtualenv",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300445 "dot" => "graphviz",
446 "convert" => "ImageMagick",
447 "Pod::Usage" => "perl-Pod-Usage",
448 "xelatex" => "texlive-xetex-bin",
Mauro Carvalho Chehab8e7d5d12017-07-17 18:46:40 -0300449 "rsvg-convert" => "rsvg-view",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300450 );
451
452 my @suse_tex_pkgs = (
453 "texlive-babel-english",
454 "texlive-caption",
455 "texlive-colortbl",
456 "texlive-courier",
457 "texlive-dvips",
458 "texlive-helvetic",
459 "texlive-makeindex",
460 "texlive-metafont",
461 "texlive-metapost",
462 "texlive-palatino",
463 "texlive-preview",
464 "texlive-times",
465 "texlive-zapfchan",
466 "texlive-zapfding",
467 );
468
Mauro Carvalho Chehab353290a2019-07-13 08:19:44 -0300469 $map{"latexmk"} = "texlive-latexmk-bin";
470
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300471 # FIXME: add support for installing CJK fonts
472 #
473 # I tried hard, but was unable to find a way to install
474 # "Noto Sans CJK SC" on openSUSE
475
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300476 check_rpm_missing(\@suse_tex_pkgs, 2) if ($pdf);
477 check_missing_tex(2) if ($pdf);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300478 check_missing(\%map);
479
480 return if (!$need && !$optional);
481 printf("You should run:\n\n\tsudo zypper install --no-recommends $install\n");
482}
483
Mauro Carvalho Chehab800d4082017-07-21 13:20:41 -0300484sub give_mageia_hints()
485{
486 my %map = (
487 "python-sphinx" => "python3-sphinx",
488 "sphinx_rtd_theme" => "python3-sphinx_rtd_theme",
489 "virtualenv" => "python3-virtualenv",
Mauro Carvalho Chehab800d4082017-07-21 13:20:41 -0300490 "dot" => "graphviz",
491 "convert" => "ImageMagick",
492 "Pod::Usage" => "perl-Pod-Usage",
493 "xelatex" => "texlive",
494 "rsvg-convert" => "librsvg2-tools",
495 );
496
497 my @tex_pkgs = (
498 "texlive-fontsextra",
499 );
500
Mauro Carvalho Chehab353290a2019-07-13 08:19:44 -0300501 $map{"latexmk"} = "texlive-collection-basic";
502
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300503 if ($pdf) {
Jeremy MAUROff8fdb32019-10-02 15:33:39 +0200504 check_missing_file(["/usr/share/fonts/google-noto-cjk/NotoSansCJK-Regular.ttc"],
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300505 "google-noto-sans-cjk-ttc-fonts", 2);
506 }
507
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300508 check_rpm_missing(\@tex_pkgs, 2) if ($pdf);
Mauro Carvalho Chehab800d4082017-07-21 13:20:41 -0300509 check_missing(\%map);
510
511 return if (!$need && !$optional);
512 printf("You should run:\n\n\tsudo urpmi $install\n");
513}
514
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300515sub give_arch_linux_hints()
516{
517 my %map = (
518 "sphinx_rtd_theme" => "python-sphinx_rtd_theme",
519 "virtualenv" => "python-virtualenv",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300520 "dot" => "graphviz",
521 "convert" => "imagemagick",
522 "xelatex" => "texlive-bin",
Mauro Carvalho Chehab8e7d5d12017-07-17 18:46:40 -0300523 "rsvg-convert" => "extra/librsvg",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300524 );
525
526 my @archlinux_tex_pkgs = (
527 "texlive-core",
528 "texlive-latexextra",
529 "ttf-dejavu",
530 );
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300531 check_pacman_missing(\@archlinux_tex_pkgs, 2) if ($pdf);
532
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300533 if ($pdf) {
Jeremy MAUROff8fdb32019-10-02 15:33:39 +0200534 check_missing_file(["/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc"],
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300535 "noto-fonts-cjk", 2);
536 }
537
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300538 check_missing(\%map);
539
540 return if (!$need && !$optional);
541 printf("You should run:\n\n\tsudo pacman -S $install\n");
542}
543
544sub give_gentoo_hints()
545{
546 my %map = (
547 "sphinx_rtd_theme" => "dev-python/sphinx_rtd_theme",
548 "virtualenv" => "dev-python/virtualenv",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300549 "dot" => "media-gfx/graphviz",
550 "convert" => "media-gfx/imagemagick",
551 "xelatex" => "dev-texlive/texlive-xetex media-fonts/dejavu",
Mauro Carvalho Chehab8e7d5d12017-07-17 18:46:40 -0300552 "rsvg-convert" => "gnome-base/librsvg",
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300553 );
554
Jeremy MAUROff8fdb32019-10-02 15:33:39 +0200555 check_missing_file(["/usr/share/fonts/dejavu/DejaVuSans.ttf"],
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300556 "media-fonts/dejavu", 2) if ($pdf);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300557
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300558 if ($pdf) {
Jeremy MAUROff8fdb32019-10-02 15:33:39 +0200559 check_missing_file(["/usr/share/fonts/noto-cjk/NotoSansCJKsc-Regular.otf"],
Mauro Carvalho Chehab27eed922019-07-13 08:19:44 -0300560 "media-fonts/noto-cjk", 2);
561 }
562
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300563 check_missing(\%map);
564
565 return if (!$need && !$optional);
Mauro Carvalho Chehabbba1e4c2017-07-17 18:46:41 -0300566
567 printf("You should run:\n\n");
Mauro Carvalho Chehab4ea96d52019-07-13 08:19:44 -0300568
569 my $imagemagick = "media-gfx/imagemagick svg png";
570 my $cairo = "media-gfx/graphviz cairo pdf";
571 my $portage_imagemagick = "/etc/portage/package.use/imagemagick";
572 my $portage_cairo = "/etc/portage/package.use/graphviz";
573
574 if (qx(cat $portage_imagemagick) ne "$imagemagick\n") {
575 printf("\tsudo su -c 'echo \"$imagemagick\" > $portage_imagemagick'\n")
576 }
577 if (qx(cat $portage_cairo) ne "$cairo\n") {
578 printf("\tsudo su -c 'echo \"$cairo\" > $portage_cairo'\n");
579 }
580
Mauro Carvalho Chehabbba1e4c2017-07-17 18:46:41 -0300581 printf("\tsudo emerge --ask $install\n");
582
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300583}
584
585sub check_distros()
586{
587 # Distro-specific hints
588 if ($system_release =~ /Red Hat Enterprise Linux/) {
589 give_redhat_hints;
590 return;
591 }
Mauro Carvalho Chehab9b756a92017-07-24 09:09:24 -0300592 if ($system_release =~ /CentOS/) {
593 give_redhat_hints;
594 return;
595 }
596 if ($system_release =~ /Scientific Linux/) {
597 give_redhat_hints;
598 return;
599 }
600 if ($system_release =~ /Oracle Linux Server/) {
601 give_redhat_hints;
602 return;
603 }
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300604 if ($system_release =~ /Fedora/) {
605 give_redhat_hints;
606 return;
607 }
608 if ($system_release =~ /Ubuntu/) {
609 give_debian_hints;
610 return;
611 }
612 if ($system_release =~ /Debian/) {
613 give_debian_hints;
614 return;
615 }
616 if ($system_release =~ /openSUSE/) {
617 give_opensuse_hints;
618 return;
619 }
Mauro Carvalho Chehab800d4082017-07-21 13:20:41 -0300620 if ($system_release =~ /Mageia/) {
621 give_mageia_hints;
622 return;
623 }
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300624 if ($system_release =~ /Arch Linux/) {
625 give_arch_linux_hints;
626 return;
627 }
628 if ($system_release =~ /Gentoo/) {
629 give_gentoo_hints;
630 return;
631 }
632
633 #
634 # Fall-back to generic hint code for other distros
635 # That's far from ideal, specially for LaTeX dependencies.
636 #
637 my %map = (
638 "sphinx-build" => "sphinx"
639 );
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300640 check_missing_tex(2) if ($pdf);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300641 check_missing(\%map);
642 print "I don't know distro $system_release.\n";
643 print "So, I can't provide you a hint with the install procedure.\n";
644 print "There are likely missing dependencies.\n";
645}
646
647#
648# Common dependencies
649#
650
Shuah Khan2730ce02019-09-18 18:37:54 -0600651sub deactivate_help()
652{
653 printf "\tIf you want to exit the virtualenv, you can use:\n";
654 printf "\tdeactivate\n";
655}
656
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300657sub check_needs()
658{
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300659 # Check for needed programs/tools
660 check_sphinx();
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300661
662 if ($system_release) {
663 print "Detected OS: $system_release.\n\n";
664 } else {
665 print "Unknown OS\n\n";
666 }
667
668 print "To upgrade Sphinx, use:\n\n" if ($rec_sphinx_upgrade);
669
670 # Check for needed programs/tools
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300671 check_perl_module("Pod::Usage", 0);
672 check_program("make", 0);
673 check_program("gcc", 0);
674 check_python_module("sphinx_rtd_theme", 1) if (!$virtualenv);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300675 check_program("dot", 1);
676 check_program("convert", 1);
Mauro Carvalho Chehab56e5a632019-07-13 09:37:16 -0300677
678 # Extra PDF files - should use 2 for is_optional
679 check_program("xelatex", 2) if ($pdf);
680 check_program("rsvg-convert", 2) if ($pdf);
681 check_program("latexmk", 2) if ($pdf);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300682
683 check_distros();
684
685 if ($need_symlink) {
686 printf "\tsudo ln -sf %s /usr/bin/sphinx-build\n\n",
687 which("sphinx-build-3");
688 }
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300689 if ($need_sphinx || $rec_sphinx_upgrade) {
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -0300690 my $min_activate = "$ENV{'PWD'}/${virtenv_prefix}${min_version}/bin/activate";
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300691 my @activates = glob "$ENV{'PWD'}/${virtenv_prefix}*/bin/activate";
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -0300692
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300693 @activates = sort {$b cmp $a} @activates;
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -0300694
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300695 if ($need_sphinx && scalar @activates > 0 && $activates[0] ge $min_activate) {
696 printf "\nNeed to activate a compatible Sphinx version on virtualenv with:\n";
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -0300697 printf "\t. $activates[0]\n";
Shuah Khan2730ce02019-09-18 18:37:54 -0600698 deactivate_help();
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300699 exit (1);
Mauro Carvalho Chehab5be33182017-07-17 18:46:37 -0300700 } else {
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -0300701 my $rec_activate = "$virtenv_dir/bin/activate";
Mauro Carvalho Chehab5be33182017-07-17 18:46:37 -0300702 my $virtualenv = findprog("virtualenv-3");
Mauro Carvalho Chehab800d4082017-07-21 13:20:41 -0300703 $virtualenv = findprog("virtualenv-3.5") if (!$virtualenv);
Mauro Carvalho Chehab5be33182017-07-17 18:46:37 -0300704 $virtualenv = findprog("virtualenv") if (!$virtualenv);
705 $virtualenv = "virtualenv" if (!$virtualenv);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300706
Mauro Carvalho Chehab5be33182017-07-17 18:46:37 -0300707 printf "\t$virtualenv $virtenv_dir\n";
Mauro Carvalho Chehab44f42162019-05-29 20:09:24 -0300708 printf "\t. $rec_activate\n";
Mauro Carvalho Chehabfb947f32017-07-17 18:46:38 -0300709 printf "\tpip install -r $requirement_file\n";
Shuah Khan2730ce02019-09-18 18:37:54 -0600710 deactivate_help();
Mauro Carvalho Chehab77d09ad2019-05-22 18:43:46 -0300711
712 $need++ if (!$rec_sphinx_upgrade);
Mauro Carvalho Chehab5be33182017-07-17 18:46:37 -0300713 }
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300714 }
715 printf "\n";
716
Bjorn Helgaas54002b52019-05-30 16:59:14 -0500717 print "All optional dependencies are met.\n" if (!$optional);
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300718
719 if ($need == 1) {
720 die "Can't build as $need mandatory dependency is missing";
721 } elsif ($need) {
722 die "Can't build as $need mandatory dependencies are missing";
723 }
724
725 print "Needed package dependencies are met.\n";
726}
727
728#
729# Main
730#
731
732while (@ARGV) {
733 my $arg = shift(@ARGV);
734
735 if ($arg eq "--no-virtualenv") {
736 $virtualenv = 0;
737 } elsif ($arg eq "--no-pdf"){
738 $pdf = 0;
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300739 } elsif ($arg eq "--version-check"){
740 $version_check = 1;
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300741 } else {
Mauro Carvalho Chehab9b88ad52019-05-29 20:09:26 -0300742 print "Usage:\n\t$0 <--no-virtualenv> <--no-pdf> <--version-check>\n\n";
743 print "Where:\n";
744 print "\t--no-virtualenv\t- Recommend installing Sphinx instead of using a virtualenv\n";
745 print "\t--version-check\t- if version is compatible, don't check for missing dependencies\n";
746 print "\t--no-pdf\t- don't check for dependencies required to build PDF docs\n\n";
Mauro Carvalho Chehab24071ac2017-07-17 18:46:36 -0300747 exit -1;
748 }
749}
750
751#
752# Determine the system type. There's no standard unique way that would
753# work with all distros with a minimal package install. So, several
754# methods are used here.
755#
756# By default, it will use lsb_release function. If not available, it will
757# fail back to reading the known different places where the distro name
758# is stored
759#
760
761$system_release = qx(lsb_release -d) if which("lsb_release");
762$system_release =~ s/Description:\s*// if ($system_release);
763$system_release = catcheck("/etc/system-release") if !$system_release;
764$system_release = catcheck("/etc/redhat-release") if !$system_release;
765$system_release = catcheck("/etc/lsb-release") if !$system_release;
766$system_release = catcheck("/etc/gentoo-release") if !$system_release;
767$system_release = catcheck("/etc/issue") if !$system_release;
768$system_release =~ s/\s+$//;
769
770check_needs;