libbpf: Fix perf_buffer__free() API for sparse allocs
[linux/fpc-iii.git] / scripts / sphinx-pre-install
blob09b38ee38ce8fe621e2e9dc27138c7a40895deb6
1 #!/usr/bin/perl
2 # SPDX-License-Identifier: GPL-2.0-or-later
3 use strict;
5 # Copyright (c) 2017-2019 Mauro Carvalho Chehab <mchehab@kernel.org>
8 my $prefix = "./";
9 $prefix = "$ENV{'srctree'}/" if ($ENV{'srctree'});
11 my $conf = $prefix . "Documentation/conf.py";
12 my $requirement_file = $prefix . "Documentation/sphinx/requirements.txt";
13 my $virtenv_prefix = "sphinx_";
16 # Static vars
19 my %missing;
20 my $system_release;
21 my $need = 0;
22 my $optional = 0;
23 my $need_symlink = 0;
24 my $need_sphinx = 0;
25 my $rec_sphinx_upgrade = 0;
26 my $install = "";
27 my $virtenv_dir = "";
28 my $min_version;
31 # Command line arguments
34 my $pdf = 1;
35 my $virtualenv = 1;
36 my $version_check = 0;
39 # List of required texlive packages on Fedora and OpenSuse
42 my %texlive = (
43 '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',
76 # Subroutines that checks if a feature exists
79 sub check_missing(%)
81 my %map = %{$_[0]};
83 foreach my $prog (sort keys %missing) {
84 my $is_optional = $missing{$prog};
86 # 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.
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;
97 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";
102 if (defined($map{$prog})) {
103 $install .= " " . $map{$prog};
104 } else {
105 $install .= " " . $prog;
109 $install =~ s/^\s//;
112 sub add_package($$)
114 my $package = shift;
115 my $is_optional = shift;
117 $missing{$package} = $is_optional;
118 if ($is_optional) {
119 $optional++;
120 } else {
121 $need++;
125 sub check_missing_file($$$)
127 my $files = shift;
128 my $package = shift;
129 my $is_optional = shift;
131 for (@$files) {
132 return if(-e $_);
135 add_package($package, $is_optional);
138 sub findprog($)
140 foreach(split(/:/, $ENV{PATH})) {
141 return "$_/$_[0]" if(-x "$_/$_[0]");
145 sub check_program($$)
147 my $prog = shift;
148 my $is_optional = shift;
150 return if findprog($prog);
152 add_package($prog, $is_optional);
155 sub check_perl_module($$)
157 my $prog = shift;
158 my $is_optional = shift;
160 my $err = system("perl -M$prog -e 1 2>/dev/null /dev/null");
161 return if ($err == 0);
163 add_package($prog, $is_optional);
166 sub check_python_module($$)
168 my $prog = shift;
169 my $is_optional = shift;
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);
176 add_package($prog, $is_optional);
179 sub check_rpm_missing($$)
181 my @pkgs = @{$_[0]};
182 my $is_optional = $_[1];
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);
190 sub check_pacman_missing($$)
192 my @pkgs = @{$_[0]};
193 my $is_optional = $_[1];
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);
201 sub check_missing_tex($)
203 my $is_optional = shift;
204 my $kpsewhich = findprog("kpsewhich");
206 foreach my $prog(keys %texlive) {
207 my $package = $texlive{$prog};
208 if (!$kpsewhich) {
209 add_package($package, $is_optional);
210 next;
212 my $file = qx($kpsewhich $prog);
213 add_package($package, $is_optional) if ($file =~ /^\s*$/);
217 sub get_sphinx_fname()
219 my $fname = "sphinx-build";
220 return $fname if findprog($fname);
222 $fname = "sphinx-build-3";
223 if (findprog($fname)) {
224 $need_symlink = 1;
225 return $fname;
228 if ($virtualenv) {
229 my $prog = findprog("virtualenv-3");
230 $prog = findprog("virtualenv-3.5") if (!$prog);
232 check_program("virtualenv", 0) if (!$prog);
233 $need_sphinx = 1;
234 } else {
235 add_package("python-sphinx", 0);
238 return "";
241 sub check_sphinx()
243 my $rec_version;
244 my $cur_version;
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;
253 close IN;
255 die "Can't get needs_sphinx version from $conf" if (!$min_version);
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;
264 close IN;
266 die "Can't get recommended sphinx version from $requirement_file" if (!$min_version);
268 $virtenv_dir = $virtenv_prefix . $rec_version;
270 my $sphinx = get_sphinx_fname();
271 return if ($sphinx eq "");
273 open IN, "$sphinx --version 2>&1 |" or die "$sphinx returned an error";
274 while (<IN>) {
275 if (m/^\s*sphinx-build\s+([\d\.]+)(\+\/[\da-f]+)?$/) {
276 $cur_version=$1;
277 last;
279 # Sphinx 1.2.x uses a different format
280 if (m/^\s*Sphinx.*\s+([\d\.]+)$/) {
281 $cur_version=$1;
282 last;
285 close IN;
287 die "$sphinx didn't return its version" if (!$cur_version);
289 if ($cur_version lt $min_version) {
290 printf "ERROR: Sphinx version is %s. It should be >= %s (recommended >= %s)\n",
291 $cur_version, $min_version, $rec_version;;
292 $need_sphinx = 1;
293 return;
296 if ($cur_version lt $rec_version) {
297 printf "Sphinx version %s\n", $cur_version;
298 print "Warning: It is recommended at least Sphinx version $rec_version.\n";
299 $rec_sphinx_upgrade = 1;
300 return;
303 # On version check mode, just assume Sphinx has all mandatory deps
304 exit (0) if ($version_check);
308 # Ancillary subroutines
311 sub catcheck($)
313 my $res = "";
314 $res = qx(cat $_[0]) if (-r $_[0]);
315 return $res;
318 sub which($)
320 my $file = shift;
321 my @path = split ":", $ENV{PATH};
323 foreach my $dir(@path) {
324 my $name = $dir.'/'.$file;
325 return $name if (-x $name );
327 return undef;
331 # Subroutines that check distro-specific hints
334 sub give_debian_hints()
336 my %map = (
337 "python-sphinx" => "python3-sphinx",
338 "sphinx_rtd_theme" => "python3-sphinx-rtd-theme",
339 "virtualenv" => "virtualenv",
340 "dot" => "graphviz",
341 "convert" => "imagemagick",
342 "Pod::Usage" => "perl-modules",
343 "xelatex" => "texlive-xetex",
344 "rsvg-convert" => "librsvg2-bin",
347 if ($pdf) {
348 check_missing_file(["/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf"],
349 "fonts-dejavu", 2);
351 check_missing_file(["/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc",
352 "/usr/share/fonts/opentype/noto/NotoSerifCJK-Regular.ttc"],
353 "fonts-noto-cjk", 2);
356 check_program("dvipng", 2) if ($pdf);
357 check_missing(\%map);
359 return if (!$need && !$optional);
360 printf("You should run:\n\n\tsudo apt-get install $install\n");
363 sub give_redhat_hints()
365 my %map = (
366 "python-sphinx" => "python3-sphinx",
367 "sphinx_rtd_theme" => "python3-sphinx_rtd_theme",
368 "virtualenv" => "python3-virtualenv",
369 "dot" => "graphviz",
370 "convert" => "ImageMagick",
371 "Pod::Usage" => "perl-Pod-Usage",
372 "xelatex" => "texlive-xetex-bin",
373 "rsvg-convert" => "librsvg2-tools",
376 my @fedora26_opt_pkgs = (
377 "graphviz-gd", # Fedora 26: needed for PDF support
380 my @fedora_tex_pkgs = (
381 "texlive-collection-fontsrecommended",
382 "texlive-collection-latex",
383 "texlive-xecjk",
384 "dejavu-sans-fonts",
385 "dejavu-serif-fonts",
386 "dejavu-sans-mono-fonts",
390 # Checks valid for RHEL/CentOS version 7.x.
392 my $old = 0;
393 my $rel;
394 $rel = $1 if ($system_release =~ /release\s+(\d+)/);
396 if (!($system_release =~ /Fedora/)) {
397 $map{"virtualenv"} = "python-virtualenv";
399 if ($rel && $rel < 8) {
400 $old = 1;
401 $pdf = 0;
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");
407 } else {
408 if ($rel && $rel < 26) {
409 $old = 1;
412 if (!$rel) {
413 printf("Couldn't identify release number\n");
414 $old = 1;
415 $pdf = 0;
418 if ($pdf) {
419 check_missing_file(["/usr/share/fonts/google-noto-cjk/NotoSansCJK-Regular.ttc"],
420 "google-noto-sans-cjk-ttc-fonts", 2);
423 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);
426 check_missing(\%map);
428 return if (!$need && !$optional);
430 if (!$old) {
431 # 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");
439 sub give_opensuse_hints()
441 my %map = (
442 "python-sphinx" => "python3-sphinx",
443 "sphinx_rtd_theme" => "python3-sphinx_rtd_theme",
444 "virtualenv" => "python3-virtualenv",
445 "dot" => "graphviz",
446 "convert" => "ImageMagick",
447 "Pod::Usage" => "perl-Pod-Usage",
448 "xelatex" => "texlive-xetex-bin",
449 "rsvg-convert" => "rsvg-view",
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",
469 $map{"latexmk"} = "texlive-latexmk-bin";
471 # FIXME: add support for installing CJK fonts
473 # I tried hard, but was unable to find a way to install
474 # "Noto Sans CJK SC" on openSUSE
476 check_rpm_missing(\@suse_tex_pkgs, 2) if ($pdf);
477 check_missing_tex(2) if ($pdf);
478 check_missing(\%map);
480 return if (!$need && !$optional);
481 printf("You should run:\n\n\tsudo zypper install --no-recommends $install\n");
484 sub give_mageia_hints()
486 my %map = (
487 "python-sphinx" => "python3-sphinx",
488 "sphinx_rtd_theme" => "python3-sphinx_rtd_theme",
489 "virtualenv" => "python3-virtualenv",
490 "dot" => "graphviz",
491 "convert" => "ImageMagick",
492 "Pod::Usage" => "perl-Pod-Usage",
493 "xelatex" => "texlive",
494 "rsvg-convert" => "librsvg2-tools",
497 my @tex_pkgs = (
498 "texlive-fontsextra",
501 $map{"latexmk"} = "texlive-collection-basic";
503 if ($pdf) {
504 check_missing_file(["/usr/share/fonts/google-noto-cjk/NotoSansCJK-Regular.ttc"],
505 "google-noto-sans-cjk-ttc-fonts", 2);
508 check_rpm_missing(\@tex_pkgs, 2) if ($pdf);
509 check_missing(\%map);
511 return if (!$need && !$optional);
512 printf("You should run:\n\n\tsudo urpmi $install\n");
515 sub give_arch_linux_hints()
517 my %map = (
518 "sphinx_rtd_theme" => "python-sphinx_rtd_theme",
519 "virtualenv" => "python-virtualenv",
520 "dot" => "graphviz",
521 "convert" => "imagemagick",
522 "xelatex" => "texlive-bin",
523 "latexmk" => "texlive-core",
524 "rsvg-convert" => "extra/librsvg",
527 my @archlinux_tex_pkgs = (
528 "texlive-core",
529 "texlive-latexextra",
530 "ttf-dejavu",
532 check_pacman_missing(\@archlinux_tex_pkgs, 2) if ($pdf);
534 if ($pdf) {
535 check_missing_file(["/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc"],
536 "noto-fonts-cjk", 2);
539 check_missing(\%map);
541 return if (!$need && !$optional);
542 printf("You should run:\n\n\tsudo pacman -S $install\n");
545 sub give_gentoo_hints()
547 my %map = (
548 "sphinx_rtd_theme" => "dev-python/sphinx_rtd_theme",
549 "virtualenv" => "dev-python/virtualenv",
550 "dot" => "media-gfx/graphviz",
551 "convert" => "media-gfx/imagemagick",
552 "xelatex" => "dev-texlive/texlive-xetex media-fonts/dejavu",
553 "rsvg-convert" => "gnome-base/librsvg",
556 check_missing_file(["/usr/share/fonts/dejavu/DejaVuSans.ttf"],
557 "media-fonts/dejavu", 2) if ($pdf);
559 if ($pdf) {
560 check_missing_file(["/usr/share/fonts/noto-cjk/NotoSansCJKsc-Regular.otf",
561 "/usr/share/fonts/noto-cjk/NotoSerifCJK-Regular.ttc"],
562 "media-fonts/noto-cjk", 2);
565 check_missing(\%map);
567 return if (!$need && !$optional);
569 printf("You should run:\n\n");
571 my $imagemagick = "media-gfx/imagemagick svg png";
572 my $cairo = "media-gfx/graphviz cairo pdf";
573 my $portage_imagemagick = "/etc/portage/package.use/imagemagick";
574 my $portage_cairo = "/etc/portage/package.use/graphviz";
576 if (qx(grep imagemagick $portage_imagemagick 2>/dev/null) eq "") {
577 printf("\tsudo su -c 'echo \"$imagemagick\" > $portage_imagemagick'\n")
579 if (qx(grep graphviz $portage_cairo 2>/dev/null) eq "") {
580 printf("\tsudo su -c 'echo \"$cairo\" > $portage_cairo'\n");
583 printf("\tsudo emerge --ask $install\n");
587 sub check_distros()
589 # Distro-specific hints
590 if ($system_release =~ /Red Hat Enterprise Linux/) {
591 give_redhat_hints;
592 return;
594 if ($system_release =~ /CentOS/) {
595 give_redhat_hints;
596 return;
598 if ($system_release =~ /Scientific Linux/) {
599 give_redhat_hints;
600 return;
602 if ($system_release =~ /Oracle Linux Server/) {
603 give_redhat_hints;
604 return;
606 if ($system_release =~ /Fedora/) {
607 give_redhat_hints;
608 return;
610 if ($system_release =~ /Ubuntu/) {
611 give_debian_hints;
612 return;
614 if ($system_release =~ /Debian/) {
615 give_debian_hints;
616 return;
618 if ($system_release =~ /openSUSE/) {
619 give_opensuse_hints;
620 return;
622 if ($system_release =~ /Mageia/) {
623 give_mageia_hints;
624 return;
626 if ($system_release =~ /Arch Linux/) {
627 give_arch_linux_hints;
628 return;
630 if ($system_release =~ /Gentoo/) {
631 give_gentoo_hints;
632 return;
636 # Fall-back to generic hint code for other distros
637 # That's far from ideal, specially for LaTeX dependencies.
639 my %map = (
640 "sphinx-build" => "sphinx"
642 check_missing_tex(2) if ($pdf);
643 check_missing(\%map);
644 print "I don't know distro $system_release.\n";
645 print "So, I can't provide you a hint with the install procedure.\n";
646 print "There are likely missing dependencies.\n";
650 # Common dependencies
653 sub deactivate_help()
655 printf "\tIf you want to exit the virtualenv, you can use:\n";
656 printf "\tdeactivate\n";
659 sub check_needs()
661 # Check for needed programs/tools
662 check_sphinx();
664 if ($system_release) {
665 print "Detected OS: $system_release.\n\n";
666 } else {
667 print "Unknown OS\n\n";
670 print "To upgrade Sphinx, use:\n\n" if ($rec_sphinx_upgrade);
672 # Check for needed programs/tools
673 check_perl_module("Pod::Usage", 0);
674 check_program("make", 0);
675 check_program("gcc", 0);
676 check_python_module("sphinx_rtd_theme", 1) if (!$virtualenv);
677 check_program("dot", 1);
678 check_program("convert", 1);
680 # Extra PDF files - should use 2 for is_optional
681 check_program("xelatex", 2) if ($pdf);
682 check_program("rsvg-convert", 2) if ($pdf);
683 check_program("latexmk", 2) if ($pdf);
685 check_distros();
687 if ($need_symlink) {
688 printf "\tsudo ln -sf %s /usr/bin/sphinx-build\n\n",
689 which("sphinx-build-3");
691 if ($need_sphinx || $rec_sphinx_upgrade) {
692 my $min_activate = "$ENV{'PWD'}/${virtenv_prefix}${min_version}/bin/activate";
693 my @activates = glob "$ENV{'PWD'}/${virtenv_prefix}*/bin/activate";
695 @activates = sort {$b cmp $a} @activates;
697 if ($need_sphinx && scalar @activates > 0 && $activates[0] ge $min_activate) {
698 printf "\nNeed to activate a compatible Sphinx version on virtualenv with:\n";
699 printf "\t. $activates[0]\n";
700 deactivate_help();
701 exit (1);
702 } else {
703 my $rec_activate = "$virtenv_dir/bin/activate";
704 my $virtualenv = findprog("virtualenv-3");
705 my $rec_python3 = "";
706 $virtualenv = findprog("virtualenv-3.5") if (!$virtualenv);
707 $virtualenv = findprog("virtualenv") if (!$virtualenv);
708 $virtualenv = "virtualenv" if (!$virtualenv);
710 my $rel = "";
711 if (index($system_release, "Ubuntu") != -1) {
712 $rel = $1 if ($system_release =~ /Ubuntu\s+(\d+)[.]/);
713 if ($rel && $rel >= 16) {
714 $rec_python3 = " -p python3";
717 if (index($system_release, "Debian") != -1) {
718 $rel = $1 if ($system_release =~ /Debian\s+(\d+)/);
719 if ($rel && $rel >= 7) {
720 $rec_python3 = " -p python3";
724 printf "\t$virtualenv$rec_python3 $virtenv_dir\n";
725 printf "\t. $rec_activate\n";
726 printf "\tpip install -r $requirement_file\n";
727 deactivate_help();
729 $need++ if (!$rec_sphinx_upgrade);
732 printf "\n";
734 print "All optional dependencies are met.\n" if (!$optional);
736 if ($need == 1) {
737 die "Can't build as $need mandatory dependency is missing";
738 } elsif ($need) {
739 die "Can't build as $need mandatory dependencies are missing";
742 print "Needed package dependencies are met.\n";
746 # Main
749 while (@ARGV) {
750 my $arg = shift(@ARGV);
752 if ($arg eq "--no-virtualenv") {
753 $virtualenv = 0;
754 } elsif ($arg eq "--no-pdf"){
755 $pdf = 0;
756 } elsif ($arg eq "--version-check"){
757 $version_check = 1;
758 } else {
759 print "Usage:\n\t$0 <--no-virtualenv> <--no-pdf> <--version-check>\n\n";
760 print "Where:\n";
761 print "\t--no-virtualenv\t- Recommend installing Sphinx instead of using a virtualenv\n";
762 print "\t--version-check\t- if version is compatible, don't check for missing dependencies\n";
763 print "\t--no-pdf\t- don't check for dependencies required to build PDF docs\n\n";
764 exit -1;
769 # Determine the system type. There's no standard unique way that would
770 # work with all distros with a minimal package install. So, several
771 # methods are used here.
773 # By default, it will use lsb_release function. If not available, it will
774 # fail back to reading the known different places where the distro name
775 # is stored
778 $system_release = qx(lsb_release -d) if which("lsb_release");
779 $system_release =~ s/Description:\s*// if ($system_release);
780 $system_release = catcheck("/etc/system-release") if !$system_release;
781 $system_release = catcheck("/etc/redhat-release") if !$system_release;
782 $system_release = catcheck("/etc/lsb-release") if !$system_release;
783 $system_release = catcheck("/etc/gentoo-release") if !$system_release;
784 $system_release = catcheck("/etc/issue") if !$system_release;
785 $system_release =~ s/\s+$//;
787 check_needs;