Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/6] utils/config: fix don't typo
@ 2024-09-20 15:59 Peter Korsgaard
  2024-09-20 15:59 ` [Buildroot] [PATCH 2/6] utils/docker-run: fix symmetry typo Peter Korsgaard
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Peter Korsgaard @ 2024-09-20 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Marcus Folkesson

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 utils/config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/config b/utils/config
index 5f5e4362e5..dfaaf46cd7 100755
--- a/utils/config
+++ b/utils/config
@@ -30,7 +30,7 @@ commands:
 
 options:
 	--file config-file   .config file to change (default .config)
-	--keep-case|-k       Keep next symbols' case (dont' upper-case it)
+	--keep-case|-k       Keep next symbols' case (don't upper-case it)
 	--package|-p         Operate on package (set prefix to BR2_PACKAGE_)
 
 $myname doesn't check the validity of the .config file. This is done at next
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 2/6] utils/docker-run: fix symmetry typo
  2024-09-20 15:59 [Buildroot] [PATCH 1/6] utils/config: fix don't typo Peter Korsgaard
@ 2024-09-20 15:59 ` Peter Korsgaard
  2024-09-20 15:59 ` [Buildroot] [PATCH 3/6] utils/getdeveloperlib.py: fix retrieve typo Peter Korsgaard
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2024-09-20 15:59 UTC (permalink / raw)
  To: buildroot; +Cc: Ricardo Martincoski

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 utils/docker-run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/docker-run b/utils/docker-run
index 1adb02d74e..849df66d54 100755
--- a/utils/docker-run
+++ b/utils/docker-run
@@ -78,7 +78,7 @@ if [ "${GIT_DIR}" ]; then
 
     # 'repo' stores .git/objects separately.
     if [ -L "${GIT_DIR}/objects" ]; then
-        # GITDIR is already an absolute path, but for symetry
+        # GITDIR is already an absolute path, but for symmetry
         # with the above, keep the same cd+readlink construct.
         OBJECTS_DIR="$(cd "${MAIN_DIR}"; readlink -e "${GIT_DIR}/objects")"
         mountpoints+=( "${OBJECTS_DIR}" )
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 3/6] utils/getdeveloperlib.py: fix retrieve typo
  2024-09-20 15:59 [Buildroot] [PATCH 1/6] utils/config: fix don't typo Peter Korsgaard
  2024-09-20 15:59 ` [Buildroot] [PATCH 2/6] utils/docker-run: fix symmetry typo Peter Korsgaard
@ 2024-09-20 15:59 ` Peter Korsgaard
  2024-09-20 15:59 ` [Buildroot] [PATCH 4/6] utils/readme.txt: fix 'typos' typo Peter Korsgaard
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2024-09-20 15:59 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 utils/getdeveloperlib.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/getdeveloperlib.py b/utils/getdeveloperlib.py
index 469360b801..b5e7b89e72 100644
--- a/utils/getdeveloperlib.py
+++ b/utils/getdeveloperlib.py
@@ -85,7 +85,7 @@ def get_all_test_cases(suite):
 
 
 def list_unittests():
-    """Use the unittest module to retreive all test cases from a given
+    """Use the unittest module to retrieve all test cases from a given
     directory"""
     loader = unittest.TestLoader()
     suite = loader.discover(os.path.join(brpath, "support", "testing"))
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 4/6] utils/readme.txt: fix 'typos' typo
  2024-09-20 15:59 [Buildroot] [PATCH 1/6] utils/config: fix don't typo Peter Korsgaard
  2024-09-20 15:59 ` [Buildroot] [PATCH 2/6] utils/docker-run: fix symmetry typo Peter Korsgaard
  2024-09-20 15:59 ` [Buildroot] [PATCH 3/6] utils/getdeveloperlib.py: fix retrieve typo Peter Korsgaard
@ 2024-09-20 15:59 ` Peter Korsgaard
  2024-09-20 15:59 ` [Buildroot] [PATCH 5/6] utils/scanpypi: fix typos Peter Korsgaard
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2024-09-20 15:59 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 utils/readme.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/readme.txt b/utils/readme.txt
index 6488d13c75..b5862f1fb9 100644
--- a/utils/readme.txt
+++ b/utils/readme.txt
@@ -14,7 +14,7 @@ brmake
 check-package
     a script that checks the coding style across the buildroot tree. It
     checks package's Config.in and .mk files, runs shellcheck for all shell
-    scripts, flake8 for python files, checks for typoes, etc.
+    scripts, flake8 for python files, checks for typos, etc.
     It checks the .checkpackageignore file if errors should be ignored and
     errors if there's a file listed that doesn't produce an error.
 
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 5/6] utils/scanpypi: fix typos
  2024-09-20 15:59 [Buildroot] [PATCH 1/6] utils/config: fix don't typo Peter Korsgaard
                   ` (2 preceding siblings ...)
  2024-09-20 15:59 ` [Buildroot] [PATCH 4/6] utils/readme.txt: fix 'typos' typo Peter Korsgaard
@ 2024-09-20 15:59 ` Peter Korsgaard
  2024-09-21 18:48   ` Yann E. MORIN
  2024-09-20 15:59 ` [Buildroot] [PATCH 6/6] utils/update-rust: fix 'following' typo Peter Korsgaard
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 9+ messages in thread
From: Peter Korsgaard @ 2024-09-20 15:59 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 utils/scanpypi | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/utils/scanpypi b/utils/scanpypi
index 5a58550145..ad7f8befa2 100755
--- a/utils/scanpypi
+++ b/utils/scanpypi
@@ -292,7 +292,7 @@ class BuildrootPackage():
 
     def extract_package(self, tmp_path):
         """
-        Extract the package contents into a directrory
+        Extract the package contents into a directory
 
         Keyword arguments:
         tmp_path -- directory where you want the package to be extracted
@@ -440,7 +440,7 @@ class BuildrootPackage():
 
     def __create_mk_download_info(self):
         """
-        Create the lines refering to the download information of the
+        Create the lines referring to the download information of the
         <package_name>.mk file
         """
         lines = []
@@ -471,7 +471,7 @@ class BuildrootPackage():
 
     def __create_mk_setup(self):
         """
-        Create the line refering to the setup method of the package of the
+        Create the line referring to the setup method of the package of the
         <package_name>.mk file
 
         There are two things you can use to make an installer
@@ -556,7 +556,7 @@ class BuildrootPackage():
 
     def __create_mk_license(self):
         """
-        Create the lines referring to the package's license informations of the
+        Create the lines referring to the package's license information of the
         <package_name>.mk file
 
         The license's files are found by searching the package (case insensitive)
@@ -755,7 +755,7 @@ def main():
                 continue
             if package.metadata_name.lower() == 'setuptools':
                 # setuptools imports itself, that does not work very well
-                # with the monkey path at the begining
+                # with the monkey path at the beginning
                 print('Error: setuptools cannot be built using scanPyPI')
                 continue
 
@@ -827,7 +827,7 @@ def main():
             print("NOTE: Remember to also make an update to the DEVELOPERS file")
             print("      and include an entry for the pkg in packages/Config.in")
             print()
-            # printing an empty line for visual confort
+            # printing an empty line for visual comfort
     finally:
         shutil.rmtree(tmp_path)
 
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Buildroot] [PATCH 6/6] utils/update-rust: fix 'following' typo
  2024-09-20 15:59 [Buildroot] [PATCH 1/6] utils/config: fix don't typo Peter Korsgaard
                   ` (3 preceding siblings ...)
  2024-09-20 15:59 ` [Buildroot] [PATCH 5/6] utils/scanpypi: fix typos Peter Korsgaard
@ 2024-09-20 15:59 ` Peter Korsgaard
  2024-09-21  7:00 ` [Buildroot] [PATCH 1/6] utils/config: fix don't typo Marcus Folkesson
  2024-09-21 18:48 ` Yann E. MORIN
  6 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2024-09-20 15:59 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 utils/update-rust | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/update-rust b/utils/update-rust
index 3301434d70..0f40f2e2b6 100755
--- a/utils/update-rust
+++ b/utils/update-rust
@@ -27,7 +27,7 @@ RUST_HOSTS = [
 #       BR2_PACKAGE_HOST_RUSTC_TARGET_TIER2_PLATFORMS
 # - package/rustc/rustc.mk:
 #       RUSTC_TARGET_NAME
-# and check whether one of the follwoing needs updating:
+# and check whether one of the following needs updating:
 # - package/rustc/Config.in.host:
 #       BR2_PACKAGE_HOST_RUSTC_ARCH
 #       BR2_PACKAGE_HOST_RUSTC_ABI
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [Buildroot] [PATCH 1/6] utils/config: fix don't typo
  2024-09-20 15:59 [Buildroot] [PATCH 1/6] utils/config: fix don't typo Peter Korsgaard
                   ` (4 preceding siblings ...)
  2024-09-20 15:59 ` [Buildroot] [PATCH 6/6] utils/update-rust: fix 'following' typo Peter Korsgaard
@ 2024-09-21  7:00 ` Marcus Folkesson
  2024-09-21 18:48 ` Yann E. MORIN
  6 siblings, 0 replies; 9+ messages in thread
From: Marcus Folkesson @ 2024-09-21  7:00 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: buildroot


[-- Attachment #1.1: Type: text/plain, Size: 180 bytes --]

On Fri, Sep 20, 2024 at 05:59:49PM +0200, Peter Korsgaard wrote:
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Reviewed-by: Marcus Folkesson <marcus.folkesson@gmail.com>

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 150 bytes --]

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Buildroot] [PATCH 1/6] utils/config: fix don't typo
  2024-09-20 15:59 [Buildroot] [PATCH 1/6] utils/config: fix don't typo Peter Korsgaard
                   ` (5 preceding siblings ...)
  2024-09-21  7:00 ` [Buildroot] [PATCH 1/6] utils/config: fix don't typo Marcus Folkesson
@ 2024-09-21 18:48 ` Yann E. MORIN
  6 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2024-09-21 18:48 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: Marcus Folkesson, buildroot

Peter, All,

On 2024-09-20 17:59 +0200, Peter Korsgaard spake thusly:
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Whole series applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  utils/config | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/utils/config b/utils/config
> index 5f5e4362e5..dfaaf46cd7 100755
> --- a/utils/config
> +++ b/utils/config
> @@ -30,7 +30,7 @@ commands:
>  
>  options:
>  	--file config-file   .config file to change (default .config)
> -	--keep-case|-k       Keep next symbols' case (dont' upper-case it)
> +	--keep-case|-k       Keep next symbols' case (don't upper-case it)
>  	--package|-p         Operate on package (set prefix to BR2_PACKAGE_)
>  
>  $myname doesn't check the validity of the .config file. This is done at next
> -- 
> 2.39.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [Buildroot] [PATCH 5/6] utils/scanpypi: fix typos
  2024-09-20 15:59 ` [Buildroot] [PATCH 5/6] utils/scanpypi: fix typos Peter Korsgaard
@ 2024-09-21 18:48   ` Yann E. MORIN
  0 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2024-09-21 18:48 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: buildroot

Peter, All,

On 2024-09-20 17:59 +0200, Peter Korsgaard spake thusly:
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
>  utils/scanpypi | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/utils/scanpypi b/utils/scanpypi
> index 5a58550145..ad7f8befa2 100755
> --- a/utils/scanpypi
> +++ b/utils/scanpypi
> @@ -292,7 +292,7 @@ class BuildrootPackage():
>  
>      def extract_package(self, tmp_path):
>          """
> -        Extract the package contents into a directrory
> +        Extract the package contents into a directory

s/contents/content/

Applied to master, thanks.

Regards,
Yann E. MORIN.

>  
>          Keyword arguments:
>          tmp_path -- directory where you want the package to be extracted
> @@ -440,7 +440,7 @@ class BuildrootPackage():
>  
>      def __create_mk_download_info(self):
>          """
> -        Create the lines refering to the download information of the
> +        Create the lines referring to the download information of the
>          <package_name>.mk file
>          """
>          lines = []
> @@ -471,7 +471,7 @@ class BuildrootPackage():
>  
>      def __create_mk_setup(self):
>          """
> -        Create the line refering to the setup method of the package of the
> +        Create the line referring to the setup method of the package of the
>          <package_name>.mk file
>  
>          There are two things you can use to make an installer
> @@ -556,7 +556,7 @@ class BuildrootPackage():
>  
>      def __create_mk_license(self):
>          """
> -        Create the lines referring to the package's license informations of the
> +        Create the lines referring to the package's license information of the
>          <package_name>.mk file
>  
>          The license's files are found by searching the package (case insensitive)
> @@ -755,7 +755,7 @@ def main():
>                  continue
>              if package.metadata_name.lower() == 'setuptools':
>                  # setuptools imports itself, that does not work very well
> -                # with the monkey path at the begining
> +                # with the monkey path at the beginning
>                  print('Error: setuptools cannot be built using scanPyPI')
>                  continue
>  
> @@ -827,7 +827,7 @@ def main():
>              print("NOTE: Remember to also make an update to the DEVELOPERS file")
>              print("      and include an entry for the pkg in packages/Config.in")
>              print()
> -            # printing an empty line for visual confort
> +            # printing an empty line for visual comfort
>      finally:
>          shutil.rmtree(tmp_path)
>  
> -- 
> 2.39.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-09-21 18:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-20 15:59 [Buildroot] [PATCH 1/6] utils/config: fix don't typo Peter Korsgaard
2024-09-20 15:59 ` [Buildroot] [PATCH 2/6] utils/docker-run: fix symmetry typo Peter Korsgaard
2024-09-20 15:59 ` [Buildroot] [PATCH 3/6] utils/getdeveloperlib.py: fix retrieve typo Peter Korsgaard
2024-09-20 15:59 ` [Buildroot] [PATCH 4/6] utils/readme.txt: fix 'typos' typo Peter Korsgaard
2024-09-20 15:59 ` [Buildroot] [PATCH 5/6] utils/scanpypi: fix typos Peter Korsgaard
2024-09-21 18:48   ` Yann E. MORIN
2024-09-20 15:59 ` [Buildroot] [PATCH 6/6] utils/update-rust: fix 'following' typo Peter Korsgaard
2024-09-21  7:00 ` [Buildroot] [PATCH 1/6] utils/config: fix don't typo Marcus Folkesson
2024-09-21 18:48 ` Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox