[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250625162237.3996-1-saivishnu725@gmail.com>
Date: Wed, 25 Jun 2025 21:52:34 +0530
From: Sai Vishnu M <saivishnu725@...il.com>
To: corbet@....net,
mchehab@...nel.org
Cc: linux-doc@...r.kernel.org,
linux-kernel@...r.kernel.org,
shuah@...nel.org,
Sai Vishnu M <saivishnu725@...il.com>
Subject: [PATCH 1/4] scripts: sphinx-pre-install: Add --interactive flag
From: Sai Vishnu M <saivishnu725@...il.com>
Introduce the --interactive flag to enable prompting for package
installation commands. Add $interactive variable and update the usage
message to include the new flag. Check for terminal input (-t STDIN) to
skip interactive feature in a non-interactive session.
Signed-off-by: Sai Vishnu M <saivishnu725@...il.com>
---
The RFC proposes 4 patches that will integrate the interactive feature
into the sphinx-pre-install script.
Link: https://lore.kernel.org/linux-doc/CAFttn56VFPjikxjhgds6LjphinStm_cN+7ZhAzsieT0gnBqBDQ@mail.gmail.com/
scripts/sphinx-pre-install | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/scripts/sphinx-pre-install b/scripts/sphinx-pre-install
index ad9945ccb0cf..6e6e5bda6186 100755
--- a/scripts/sphinx-pre-install
+++ b/scripts/sphinx-pre-install
@@ -42,6 +42,7 @@ my $latest_avail_ver;
my $pdf = 1;
my $virtualenv = 1;
my $version_check = 0;
+my $interactive = 0;
#
# List of required texlive packages on Fedora and OpenSuse
@@ -1002,12 +1003,18 @@ while (@ARGV) {
$pdf = 0;
} elsif ($arg eq "--version-check"){
$version_check = 1;
+ } elsif ($arg eq "--interactive") {
+ # check if the user can interact with the script
+ if (-t STDIN) {
+ $interactive = 1;
+ }
} else {
- print "Usage:\n\t$0 <--no-virtualenv> <--no-pdf> <--version-check>\n\n";
+ print "Usage:\n\t$0 <--no-virtualenv> <--no-pdf> <--version-check> <--interactive>\n\n";
print "Where:\n";
print "\t--no-virtualenv\t- Recommend installing Sphinx instead of using a virtualenv\n";
print "\t--version-check\t- if version is compatible, don't check for missing dependencies\n";
- print "\t--no-pdf\t- don't check for dependencies required to build PDF docs\n\n";
+ print "\t--no-pdf\t- don't check for dependencies required to build PDF docs\n";
+ print "\t--interactive\t- ask to install missing dependencies\n\n";
exit -1;
}
}
--
2.49.0
Powered by blists - more mailing lists