You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ja...@apache.org on 2020/03/31 01:16:49 UTC

svn commit: r1875903 - in /subversion/trunk/tools: buildbot/slaves/ buildbot/slaves/svn-x64-macosx/ dev/ dev/mergegraph/ dist/ examples/

Author: jamessan
Date: Tue Mar 31 01:16:49 2020
New Revision: 1875903

URL: http://svn.apache.org/viewvc?rev=1875903&view=rev
Log:
* tools/buildbot/slaves/README, tools/buildbot/slaves/svn-x64-macosx/setenv.sh,
  tools/dev/build-svn-deps-win.pl, tools/dev/find-control-statements.py,
  tools/dev/mergegraph/mergegraph.py, tools/dev/stress.pl,
  tools/dev/x509-parser.c, tools/dist/backport.pl, tools/dist/dist.sh,
  tools/dist/release.py, tools/examples/get-location-segments.py:
  (): Fix various typos detected by codespell.


Modified:
    subversion/trunk/tools/buildbot/slaves/README
    subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/setenv.sh
    subversion/trunk/tools/dev/build-svn-deps-win.pl
    subversion/trunk/tools/dev/find-control-statements.py
    subversion/trunk/tools/dev/mergegraph/mergegraph.py
    subversion/trunk/tools/dev/stress.pl
    subversion/trunk/tools/dev/x509-parser.c
    subversion/trunk/tools/dist/backport.pl
    subversion/trunk/tools/dist/dist.sh
    subversion/trunk/tools/dist/release.py
    subversion/trunk/tools/examples/get-location-segments.py

Modified: subversion/trunk/tools/buildbot/slaves/README
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/README?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/README (original)
+++ subversion/trunk/tools/buildbot/slaves/README Tue Mar 31 01:16:49 2020
@@ -63,7 +63,7 @@ branches/1.4.x. If the buildslave is not
 stored in the queue and started when the buildslave connects.
 
 Normally each build only includes the changes of one commit. However, when 
-multiple changes arive during a previous build, those will be combined in 
+multiple changes arrive during a previous build, those will be combined in 
 a next build.
 
 The buildmaster looks at each commit and decides if they are important enough

Modified: subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/setenv.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/setenv.sh?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/setenv.sh (original)
+++ subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/setenv.sh Tue Mar 31 01:16:49 2020
@@ -15,7 +15,7 @@
 #  specific language governing permissions and limitations
 #  under the License.
 
-## This script calls a helper that provides the folloing environemnt
+## This script calls a helper that provides the following environment
 ## variables:
 ##
 ##     PATH                     The search path

Modified: subversion/trunk/tools/dev/build-svn-deps-win.pl
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/build-svn-deps-win.pl?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/dev/build-svn-deps-win.pl (original)
+++ subversion/trunk/tools/dev/build-svn-deps-win.pl Tue Mar 31 01:16:49 2020
@@ -61,7 +61,7 @@
 ######   V A R I A B L E S   ######
 ###################################
 package Vars;
-# variables in the Vars package can be overriden from the command
+# variables in the Vars package can be overridden from the command
 # line with the FOO=BAR syntax.  If you want any defaults to reference
 # other variables the defaults need to be in set_defaults() below to
 # allow the defaults to be set after processing user set variables.
@@ -108,9 +108,9 @@ our $PROJREF_URL = 'https://downloads.re
 
 # Location of the already downloaded file.
 # by default these are undefined and set by the downloader.
-# However, they can be overriden from the commandline and then
+# However, they can be overridden from the commandline and then
 # the downloader is skipped.  Note that BDB has no downloader
-# so it must be overriden from the command line.
+# so it must be overridden from the command line.
 our $AWK_FILE;
 our $HTTPD_FILE;
 our $APR_FILE;
@@ -861,7 +861,7 @@ sub main {
     # Look for variable assignment
     if (my ($lhs, $rhs) = $arg =~ /([^=]+)=(.*)/) {
       # Bit of hackery to allow the global values in the
-      # Vars package to be overriden from the command line.
+      # Vars package to be overridden from the command line.
       # E.G. "CMAKE=C:\CMake\cmake.exe" would replace the
       # default value with this value.
       if (exists($Vars::{$lhs})) {

Modified: subversion/trunk/tools/dev/find-control-statements.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/find-control-statements.py?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/dev/find-control-statements.py (original)
+++ subversion/trunk/tools/dev/find-control-statements.py Tue Mar 31 01:16:49 2020
@@ -56,7 +56,7 @@ def print_line(fname, line_num, line):
 def is_control(line, index, word):
   """ Return whether LINE[INDEX] is actual the start position of
   control statement WORD.  It must be followed by an opening
-  parantheses and only whitespace in between WORD and the '('.
+  parentheses and only whitespace in between WORD and the '('.
   """
   if index > 0:
     if not (line[index-1] in [' ', '\t', ';']):
@@ -117,7 +117,7 @@ def find_control(line):
 
 def parantheses_delta(line):
   """ Return the number of opening minus the number of closing
-  parantheses in LINE.  Don't count those inside strings or chars.
+  parentheses in LINE.  Don't count those inside strings or chars.
   """
   escaped = False
   in_squote = False

Modified: subversion/trunk/tools/dev/mergegraph/mergegraph.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/mergegraph/mergegraph.py?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/dev/mergegraph/mergegraph.py (original)
+++ subversion/trunk/tools/dev/mergegraph/mergegraph.py Tue Mar 31 01:16:49 2020
@@ -177,7 +177,7 @@ class MergeGraph(pydot.Graph):
 
     def get_subgraph(graph, name):
       """Equivalent to pydot.Graph.get_subgraph() when there is no more than
-         one subgraph of the given name, but working aroung a bug in
+         one subgraph of the given name, but working around a bug in
          pydot.Graph.get_subgraph().
       """
       for subg in graph.get_subgraph_list():

Modified: subversion/trunk/tools/dev/stress.pl
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/stress.pl?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/dev/stress.pl (original)
+++ subversion/trunk/tools/dev/stress.pl Tue Mar 31 01:16:49 2020
@@ -43,7 +43,7 @@
 #    9
 #
 # The script runs with an ID in the range 0-9, and when it modifies a
-# file it modifes the line that starts with its ID. Thus scripts with
+# file it modifies the line that starts with its ID. Thus scripts with
 # different IDs will make changes that can be merged automatically.
 #
 # The main loop is then:
@@ -430,7 +430,7 @@ where
 # stress testing one could remove this fixed seed and Perl will
 # automatically use a pseudo-random seed.  However it doesn't much
 # matter, the stress testing really depends on the real-time timing
-# differences between mutiple instances of the script, rather than the
+# differences between multiple instances of the script, rather than the
 # randomness of the chosen files.
 srand 123456789;
 

Modified: subversion/trunk/tools/dev/x509-parser.c
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/x509-parser.c?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/dev/x509-parser.c (original)
+++ subversion/trunk/tools/dev/x509-parser.c Tue Mar 31 01:16:49 2020
@@ -118,7 +118,7 @@ get_der_cert_from_stream(const svn_strin
           return SVN_NO_ERROR;
         }
 
-      /* Try decoding as a PEM with begining and ending headers. */
+      /* Try decoding as a PEM with beginning and ending headers. */
       start = strstr(raw->data, PEM_BEGIN_CERT);
       end = strstr(raw->data, PEM_END_CERT);
       if (start && end && end > start)

Modified: subversion/trunk/tools/dist/backport.pl
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport.pl?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Tue Mar 31 01:16:49 2020
@@ -570,7 +570,7 @@ sub parse_entry {
   my (@revisions, @logsummary, $branch, @votes);
   # @lines = @_;
 
-  # strip spaces to match up with the indention
+  # strip spaces to match up with the indentation
   $_[0] =~ s/^( *)\* //;
   my $indentation = ' ' x (length($1) + 2);
   s/^$indentation// for @_;

Modified: subversion/trunk/tools/dist/dist.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/dist.sh?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/dist/dist.sh (original)
+++ subversion/trunk/tools/dist/dist.sh Tue Mar 31 01:16:49 2020
@@ -327,7 +327,7 @@ if [ -z "$ZIP" ]; then
   # Use the gzip -n flag - this prevents it from storing the original name of
   # the .tar file, and far more importantly, the mtime of the .tar file, in the
   # produced .tar.gz file. This is important, because it makes the gzip
-  # encoding reproducable by anyone else who has an similar version of gzip,
+  # encoding reproducible by anyone else who has an similar version of gzip,
   # and also uses "gzip -9n". This means that committers who want to GPG-sign
   # both the .tar.gz and the .tar.bz2 can download the .tar.bz2 (which is
   # smaller), and locally generate an exact duplicate of the official .tar.gz

Modified: subversion/trunk/tools/dist/release.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/release.py?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/dist/release.py (original)
+++ subversion/trunk/tools/dist/release.py Tue Mar 31 01:16:49 2020
@@ -932,7 +932,7 @@ def roll_tarballs(args):
     # Use the gzip -n flag - this prevents it from storing the
     # original name of the .tar file, and far more importantly, the
     # mtime of the .tar file, in the produced .tar.gz file. This is
-    # important, because it makes the gzip encoding reproducable by
+    # important, because it makes the gzip encoding reproducible by
     # anyone else who has an similar version of gzip, and also uses
     # "gzip -9n". This means that committers who want to GPG-sign both
     # the .tar.gz and the .tar.bz2 can download the .tar.bz2 (which is
@@ -1807,7 +1807,7 @@ def main():
 
     # The move-to-dist subcommand
     subparser = subparsers.add_parser('move-to-dist',
-                    help='''Move candiates and signatures from the temporary
+                    help='''Move candidates and signatures from the temporary
                             release dev location to the permanent distribution
                             directory.''')
     subparser.set_defaults(func=move_to_dist)

Modified: subversion/trunk/tools/examples/get-location-segments.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/examples/get-location-segments.py?rev=1875903&r1=1875902&r2=1875903&view=diff
==============================================================================
--- subversion/trunk/tools/examples/get-location-segments.py (original)
+++ subversion/trunk/tools/examples/get-location-segments.py Tue Mar 31 01:16:49 2020
@@ -73,7 +73,7 @@ def parse_args(args):
 
 
 def prompt_func_ssl_unknown_cert(realm, failures, cert_info, may_save, pool):
-  print( "The certficate details are as follows:")
+  print( "The certificate details are as follows:")
   print("--------------------------------------")
   print("Issuer     : " + str(cert_info.issuer_dname))
   print("Hostname   : " + str(cert_info.hostname))