[tor-commits] [tor/main] Align and fix indentations in several maint scripts

nickm at torproject.org nickm at torproject.org
Wed Sep 8 18:09:59 UTC 2021


commit 82168e5e8bbd2600f99d37f85202c8126a959b24
Author: skaluzka <skaluzka at protonmail.com>
Date:   Tue Sep 7 23:44:44 2021 +0200

    Align and fix indentations in several maint scripts
    
    Use 4 spaces indentations, convert tabs to spaces.
    No real code changes.
---
 scripts/maint/checkOptionDocs.pl.in     |  2 +-
 scripts/maint/checkSpace.pl             | 14 +++++++-------
 scripts/maint/check_config_macros.pl    |  4 ++--
 scripts/maint/findMergedChanges.pl      | 16 ++++++++--------
 scripts/maint/gen_ccls_file.sh          | 10 +++++-----
 scripts/maint/run_calltool.sh           |  8 ++++----
 scripts/maint/updateRustDependencies.sh |  2 +-
 7 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/scripts/maint/checkOptionDocs.pl.in b/scripts/maint/checkOptionDocs.pl.in
index bb8008c2e8..2d4a7884f5 100644
--- a/scripts/maint/checkOptionDocs.pl.in
+++ b/scripts/maint/checkOptionDocs.pl.in
@@ -43,7 +43,7 @@ open(F, "@abs_top_srcdir@/doc/man/tor.1.txt") or die;
 while (<F>) {
     if (m!^(?:\[\[([A-za-z0-9_]+)\]\] *)?\*\*([A-Za-z0-9_]+)\*\*!) {
         $manPageOptions{$2} = 1;
-	print "Missing an anchor: $2\n" unless (defined $1 or $2 eq 'tor');
+        print "Missing an anchor: $2\n" unless (defined $1 or $2 eq 'tor');
     }
 }
 close F;
diff --git a/scripts/maint/checkSpace.pl b/scripts/maint/checkSpace.pl
index 857ce6f6f1..8ecbf414cf 100755
--- a/scripts/maint/checkSpace.pl
+++ b/scripts/maint/checkSpace.pl
@@ -7,13 +7,13 @@ my $found = 0;
 my $COLON_POS = 10;
 
 sub msg {
-  $found = 1;
-  my $v = shift;
-  $v =~ /^\s*([^:]+):(.*)$/;
-  chomp(my $errtype = $1);
-  my $rest = $2;
-  my $padding = ' ' x ($COLON_POS - length $errtype);
-  print "$padding$errtype:$rest\n";
+    $found = 1;
+    my $v = shift;
+    $v =~ /^\s*([^:]+):(.*)$/;
+    chomp(my $errtype = $1);
+    my $rest = $2;
+    my $padding = ' ' x ($COLON_POS - length $errtype);
+    print "$padding$errtype:$rest\n";
 }
 
 my $C = 0;
diff --git a/scripts/maint/check_config_macros.pl b/scripts/maint/check_config_macros.pl
index bcde2beccc..1398b9984a 100755
--- a/scripts/maint/check_config_macros.pl
+++ b/scripts/maint/check_config_macros.pl
@@ -7,7 +7,7 @@ my @macros = ();
 open(F, 'orconfig.h.in');
 while(<F>) {
     if (/^#undef +([A-Za-z0-9_]*)/) {
-	push @macros, $1;
+        push @macros, $1;
     }
 }
 close F;
@@ -15,6 +15,6 @@ close F;
 for my $m (@macros) {
     my $s = `git grep '$m' src`;
     if ($s eq '') {
-	print "Unused: $m\n";
+        print "Unused: $m\n";
     }
 }
diff --git a/scripts/maint/findMergedChanges.pl b/scripts/maint/findMergedChanges.pl
index 9b3496403d..427f2b111d 100755
--- a/scripts/maint/findMergedChanges.pl
+++ b/scripts/maint/findMergedChanges.pl
@@ -9,7 +9,7 @@ sub nChanges {
     # requires perl 5.8.  Avoids shell issues if we ever get a changes
     # file named by the parents of Little Johnny Tables.
     open F, "-|", "git", "log", "--no-merges", "--pretty=format:%H", $branches, "--", $fname
-       or die "$!";
+        or die "$!";
     my @changes = <F>;
     return scalar @changes
 }
@@ -42,13 +42,13 @@ my $head = "origin/main";
 while (@ARGV and $ARGV[0] =~ /^--/) {
     my $flag = shift @ARGV;
     if ($flag =~ /^--(weird|merged|unmerged|list)/) {
-       $look_for_type = $1;
+        $look_for_type = $1;
     } elsif ($flag =~ /^--branch=(\S+)/) {
         $target_branch = $1;
     } elsif ($flag =~ /^--head=(\S+)/) {
         $head = $1;
     } else {
-       die "Unrecognized flag $flag";
+        die "Unrecognized flag $flag";
     }
 }
 
@@ -58,16 +58,16 @@ for my $changefile (@ARGV) {
     my $type;
 
     if ($n_merged != 0 and $n_postmerged == 0) {
-       $type = "merged";
+        $type = "merged";
     } elsif ($n_merged == 0 and $n_postmerged != 0) {
-       $type = "unmerged";
+        $type = "unmerged";
     } else {
-       $type = "weird";
+        $type = "weird";
     }
 
     if ($type eq $look_for_type) {
-       print "$changefile\n";
+        print "$changefile\n";
     } elsif ($look_for_type eq 'list') {
-       printf "% 8s: %s\n", $type, $changefile;
+        printf "% 8s: %s\n", $type, $changefile;
     }
 }
diff --git a/scripts/maint/gen_ccls_file.sh b/scripts/maint/gen_ccls_file.sh
index b1fa55c973..04e31d22a8 100755
--- a/scripts/maint/gen_ccls_file.sh
+++ b/scripts/maint/gen_ccls_file.sh
@@ -19,13 +19,13 @@ echo "clang" > "$CCLS_FILE"
 # Add these include so the ccls server can properly check new files that are
 # not in the compile_commands.json yet
 {
-  echo "-I."
-  echo "-I./src"
-  echo "-I./src/ext"
-  echo "-I./src/ext/trunnel"
+    echo "-I."
+    echo "-I./src"
+    echo "-I./src/ext"
+    echo "-I./src/ext/trunnel"
 } >> "$CCLS_FILE"
 
 # Add all defines (-D).
 for p in $PRIVATE_DEFS; do
-  echo "-D$p" >> "$CCLS_FILE"
+    echo "-D$p" >> "$CCLS_FILE"
 done
diff --git a/scripts/maint/run_calltool.sh b/scripts/maint/run_calltool.sh
index b0268322f4..025a49cd03 100755
--- a/scripts/maint/run_calltool.sh
+++ b/scripts/maint/run_calltool.sh
@@ -5,8 +5,8 @@
 set -e
 
 if test "x$CALLTOOL_PATH" != "x"; then
-  PYTHONPATH="${CALLTOOL_PATH}:${PYTHONPATH}"
-  export PYTHONPATH
+    PYTHONPATH="${CALLTOOL_PATH}:${PYTHONPATH}"
+    export PYTHONPATH
 fi
 
 mkdir -p callgraph
@@ -14,8 +14,8 @@ mkdir -p callgraph
 SUBITEMS="fn_graph fn_invgraph fn_scc fn_scc_weaklinks module_graph module_invgraph module_scc module_scc_weaklinks"
 
 for calculation in $SUBITEMS; do
-  echo "======== $calculation"
-  python -m calltool "$calculation" > callgraph/"$calculation"
+    echo "======== $calculation"
+    python -m calltool "$calculation" > callgraph/"$calculation"
 done
 
 cat <<EOF > callgraph/README
diff --git a/scripts/maint/updateRustDependencies.sh b/scripts/maint/updateRustDependencies.sh
index 6d0587351f..e37a633675 100755
--- a/scripts/maint/updateRustDependencies.sh
+++ b/scripts/maint/updateRustDependencies.sh
@@ -26,7 +26,7 @@ TOML="$TOPLEVEL/src/rust/Cargo.toml"
 VENDORED="$TOPLEVEL/src/ext/rust/crates"
 CARGO=$(command -v cargo)
 
-if ! test -f "$TOML"  ; then
+if ! test -f "$TOML" ; then
     printf "Error: Couldn't find workspace Cargo.toml in expected location: %s\\n" "$TOML"
 fi
 



More information about the tor-commits mailing list