Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory
@ 2017-07-01 16:40 Arnout Vandecappelle
  2017-07-01 16:40 ` [Buildroot] [PATCH 2/3] manual: update old references to support/scripts Arnout Vandecappelle
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Arnout Vandecappelle @ 2017-07-01 16:40 UTC (permalink / raw)
  To: buildroot

There were still references to support/scripts/ for scripts that have
moved to the utils directory. There were also references that were
updated, but not re-updated when the tools moves to utils.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 DEVELOPERS | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/DEVELOPERS b/DEVELOPERS
index b02908ab1f..9539d3e8a1 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -606,7 +606,7 @@ F:	package/qemu/
 F:	package/sdl2_mixer/
 F:	package/sdl2_net/
 F:	package/tekui/
-F:	support/scripts/scancpan
+F:	utils/scancpan
 
 N:	Frank Hunleth <fhunleth@troodon-software.com>
 F:	package/am335x-pru-package/
@@ -1392,8 +1392,8 @@ N:	Rhys Williams <github@wilberforce.co.nz>
 F:	package/lirc-tools/
 
 N:	Ricardo Martincoski <ricardo.martincoski@gmail.com>
-F:	tools/check-package
-F:	tools/checkpackagelib/
+F:	utils/check-package
+F:	utils/checkpackagelib/
 
 N:	Richard Braun <rbraun@sceen.net>
 F:	package/curlftpfs/
@@ -1632,7 +1632,7 @@ N:	Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
 F:	docs/manual/
 F:	package/opkg-utils/
 F:	support/scripts/size-stats
-F:	support/scripts/size-stats-compare
+F:	utils/size-stats-compare
 F:	toolchain/
 
 N:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
@@ -1836,7 +1836,7 @@ F:	package/ti-utils/
 F:	package/x11r7/xapp_xconsole/
 F:	package/x11r7/xapp_xinput-calibrator/
 F:	package/zlog/
-F:	support/scripts/scanpypi
+F:	utils/scanpypi
 
 N:	Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
 F:	package/crudini/
-- 
2.13.1

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

* [Buildroot] [PATCH 2/3] manual: update old references to support/scripts
  2017-07-01 16:40 [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory Arnout Vandecappelle
@ 2017-07-01 16:40 ` Arnout Vandecappelle
  2017-07-01 16:50   ` Yann E. MORIN
  2017-07-01 16:40 ` [Buildroot] [PATCH 3/3] scancpan: update old reference " Arnout Vandecappelle
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Arnout Vandecappelle @ 2017-07-01 16:40 UTC (permalink / raw)
  To: buildroot

There were still some references to the old location of the scripts in
the manual. Replace them by utils/.

While we're at it, remove the redundant ./ at the beginning of some of
the example commands.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 docs/manual/adding-packages-python.txt | 8 ++++----
 docs/manual/common-usage.txt           | 2 +-
 docs/manual/developers.txt             | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/manual/adding-packages-python.txt b/docs/manual/adding-packages-python.txt
index a67a4bed4c..5eb6ba51b1 100644
--- a/docs/manual/adding-packages-python.txt
+++ b/docs/manual/adding-packages-python.txt
@@ -167,7 +167,7 @@ possible to customize what is done in any particular step:
 
 If the Python package for which you would like to create a Buildroot
 package is available on PyPI, you may want to use the +scanpypi+ tool
-located in +support/scripts+ to automate the process.
+located in +utils/+ to automate the process.
 
 You can find the list of existing PyPI packages
 https://pypi.python.org[here].
@@ -178,7 +178,7 @@ your host.
 When at the root of your buildroot directory just do :
 
 -----------------------
-./support/scripts/scanpypi foo bar -o package
+utils/scanpypi foo bar -o package
 -----------------------
 
 This will generate packages +python-foo+ and +python-bar+ in the package
@@ -198,7 +198,7 @@ If your Buildroot package is not in the official Buildroot tree but in
 a br2-external tree, use the -o flag as follows:
 
 -----------------------
-./support/scripts/scanpypi foo bar -o other_package_dir
+utils/scanpypi foo bar -o other_package_dir
 -----------------------
 
 This will generate packages +python-foo+ and +python-bar+ in the
@@ -207,7 +207,7 @@ This will generate packages +python-foo+ and +python-bar+ in the
 Option +-h+ will list the available options:
 
 -----------------------
-./support/scripts/scanpypi -h
+utils/scanpypi -h
 -----------------------
 
 [[python-package-cffi-backend]]
diff --git a/docs/manual/common-usage.txt b/docs/manual/common-usage.txt
index 8dd99a6dac..a22da20188 100644
--- a/docs/manual/common-usage.txt
+++ b/docs/manual/common-usage.txt
@@ -326,7 +326,7 @@ Buildroot release, use the +size-stats-compare+ script. It takes two
 Refer to the help text of this script for more details:
 
 ----------------
-support/scripts/size-stats-compare -h
+utils/size-stats-compare -h
 ----------------
 
 include::eclipse-integration.txt[]
diff --git a/docs/manual/developers.txt b/docs/manual/developers.txt
index 3c31aa96fa..4e2cd71638 100644
--- a/docs/manual/developers.txt
+++ b/docs/manual/developers.txt
@@ -26,7 +26,7 @@ to include in his patch the appropriate modification to the
 The +DEVELOPERS+ file format is documented in detail inside the file
 itself.
 
-The +get-developer+ tool, located in +support/scripts+ allows to use
+The +get-developer+ tool, located in +utils/+ allows to use
 the +DEVELOPERS+ file for various tasks:
 
 - When passing one or several patches as command line argument,
-- 
2.13.1

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

* [Buildroot] [PATCH 3/3] scancpan: update old reference to support/scripts
  2017-07-01 16:40 [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory Arnout Vandecappelle
  2017-07-01 16:40 ` [Buildroot] [PATCH 2/3] manual: update old references to support/scripts Arnout Vandecappelle
@ 2017-07-01 16:40 ` Arnout Vandecappelle
  2017-07-01 16:51   ` Yann E. MORIN
  2017-07-01 16:49 ` [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory Yann E. MORIN
  2017-07-01 17:44 ` Thomas Petazzoni
  3 siblings, 1 reply; 7+ messages in thread
From: Arnout Vandecappelle @ 2017-07-01 16:40 UTC (permalink / raw)
  To: buildroot

scancpan's help text refers to its location, so update it after the
move to utils/.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 utils/scancpan | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/scancpan b/utils/scancpan
index 62df225361..9ccbac5a41 100755
--- a/utils/scancpan
+++ b/utils/scancpan
@@ -752,7 +752,7 @@ __END__
 
 =head1 NAME
 
-support/scripts/scancpan Try-Tiny Moo
+utils/scancpan Try-Tiny Moo
 
 =head1 SYNOPSIS
 
-- 
2.13.1

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

* [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory
  2017-07-01 16:40 [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory Arnout Vandecappelle
  2017-07-01 16:40 ` [Buildroot] [PATCH 2/3] manual: update old references to support/scripts Arnout Vandecappelle
  2017-07-01 16:40 ` [Buildroot] [PATCH 3/3] scancpan: update old reference " Arnout Vandecappelle
@ 2017-07-01 16:49 ` Yann E. MORIN
  2017-07-01 17:44 ` Thomas Petazzoni
  3 siblings, 0 replies; 7+ messages in thread
From: Yann E. MORIN @ 2017-07-01 16:49 UTC (permalink / raw)
  To: buildroot

Arnout, All,

On 2017-07-01 18:40 +0200, Arnout Vandecappelle (Essensium/Mind) spake thusly:
> There were still references to support/scripts/ for scripts that have
> moved to the utils directory. There were also references that were
> updated, but not re-updated when the tools moves to utils.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  DEVELOPERS | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/DEVELOPERS b/DEVELOPERS
> index b02908ab1f..9539d3e8a1 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -606,7 +606,7 @@ F:	package/qemu/
>  F:	package/sdl2_mixer/
>  F:	package/sdl2_net/
>  F:	package/tekui/
> -F:	support/scripts/scancpan
> +F:	utils/scancpan
>  
>  N:	Frank Hunleth <fhunleth@troodon-software.com>
>  F:	package/am335x-pru-package/
> @@ -1392,8 +1392,8 @@ N:	Rhys Williams <github@wilberforce.co.nz>
>  F:	package/lirc-tools/
>  
>  N:	Ricardo Martincoski <ricardo.martincoski@gmail.com>
> -F:	tools/check-package
> -F:	tools/checkpackagelib/
> +F:	utils/check-package
> +F:	utils/checkpackagelib/
>  
>  N:	Richard Braun <rbraun@sceen.net>
>  F:	package/curlftpfs/
> @@ -1632,7 +1632,7 @@ N:	Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
>  F:	docs/manual/
>  F:	package/opkg-utils/
>  F:	support/scripts/size-stats
> -F:	support/scripts/size-stats-compare
> +F:	utils/size-stats-compare
>  F:	toolchain/
>  
>  N:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> @@ -1836,7 +1836,7 @@ F:	package/ti-utils/
>  F:	package/x11r7/xapp_xconsole/
>  F:	package/x11r7/xapp_xinput-calibrator/
>  F:	package/zlog/
> -F:	support/scripts/scanpypi
> +F:	utils/scanpypi
>  
>  N:	Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
>  F:	package/crudini/
> -- 
> 2.13.1
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 2/3] manual: update old references to support/scripts
  2017-07-01 16:40 ` [Buildroot] [PATCH 2/3] manual: update old references to support/scripts Arnout Vandecappelle
@ 2017-07-01 16:50   ` Yann E. MORIN
  0 siblings, 0 replies; 7+ messages in thread
From: Yann E. MORIN @ 2017-07-01 16:50 UTC (permalink / raw)
  To: buildroot

Arnoult, All,

On 2017-07-01 18:40 +0200, Arnout Vandecappelle (Essensium/Mind) spake thusly:
> There were still some references to the old location of the scripts in
> the manual. Replace them by utils/.
> 
> While we're at it, remove the redundant ./ at the beginning of some of
> the example commands.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  docs/manual/adding-packages-python.txt | 8 ++++----
>  docs/manual/common-usage.txt           | 2 +-
>  docs/manual/developers.txt             | 2 +-
>  3 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/docs/manual/adding-packages-python.txt b/docs/manual/adding-packages-python.txt
> index a67a4bed4c..5eb6ba51b1 100644
> --- a/docs/manual/adding-packages-python.txt
> +++ b/docs/manual/adding-packages-python.txt
> @@ -167,7 +167,7 @@ possible to customize what is done in any particular step:
>  
>  If the Python package for which you would like to create a Buildroot
>  package is available on PyPI, you may want to use the +scanpypi+ tool
> -located in +support/scripts+ to automate the process.
> +located in +utils/+ to automate the process.
>  
>  You can find the list of existing PyPI packages
>  https://pypi.python.org[here].
> @@ -178,7 +178,7 @@ your host.
>  When at the root of your buildroot directory just do :
>  
>  -----------------------
> -./support/scripts/scanpypi foo bar -o package
> +utils/scanpypi foo bar -o package
>  -----------------------
>  
>  This will generate packages +python-foo+ and +python-bar+ in the package
> @@ -198,7 +198,7 @@ If your Buildroot package is not in the official Buildroot tree but in
>  a br2-external tree, use the -o flag as follows:
>  
>  -----------------------
> -./support/scripts/scanpypi foo bar -o other_package_dir
> +utils/scanpypi foo bar -o other_package_dir
>  -----------------------
>  
>  This will generate packages +python-foo+ and +python-bar+ in the
> @@ -207,7 +207,7 @@ This will generate packages +python-foo+ and +python-bar+ in the
>  Option +-h+ will list the available options:
>  
>  -----------------------
> -./support/scripts/scanpypi -h
> +utils/scanpypi -h
>  -----------------------
>  
>  [[python-package-cffi-backend]]
> diff --git a/docs/manual/common-usage.txt b/docs/manual/common-usage.txt
> index 8dd99a6dac..a22da20188 100644
> --- a/docs/manual/common-usage.txt
> +++ b/docs/manual/common-usage.txt
> @@ -326,7 +326,7 @@ Buildroot release, use the +size-stats-compare+ script. It takes two
>  Refer to the help text of this script for more details:
>  
>  ----------------
> -support/scripts/size-stats-compare -h
> +utils/size-stats-compare -h
>  ----------------
>  
>  include::eclipse-integration.txt[]
> diff --git a/docs/manual/developers.txt b/docs/manual/developers.txt
> index 3c31aa96fa..4e2cd71638 100644
> --- a/docs/manual/developers.txt
> +++ b/docs/manual/developers.txt
> @@ -26,7 +26,7 @@ to include in his patch the appropriate modification to the
>  The +DEVELOPERS+ file format is documented in detail inside the file
>  itself.
>  
> -The +get-developer+ tool, located in +support/scripts+ allows to use
> +The +get-developer+ tool, located in +utils/+ allows to use
>  the +DEVELOPERS+ file for various tasks:
>  
>  - When passing one or several patches as command line argument,
> -- 
> 2.13.1
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 3/3] scancpan: update old reference to support/scripts
  2017-07-01 16:40 ` [Buildroot] [PATCH 3/3] scancpan: update old reference " Arnout Vandecappelle
@ 2017-07-01 16:51   ` Yann E. MORIN
  0 siblings, 0 replies; 7+ messages in thread
From: Yann E. MORIN @ 2017-07-01 16:51 UTC (permalink / raw)
  To: buildroot

Arnout, All,

On 2017-07-01 18:40 +0200, Arnout Vandecappelle (Essensium/Mind) spake thusly:
> scancpan's help text refers to its location, so update it after the
> move to utils/.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Thanks for fixing my mess! :-)

Regards,
Yann E. MORIN.

> ---
>  utils/scancpan | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/utils/scancpan b/utils/scancpan
> index 62df225361..9ccbac5a41 100755
> --- a/utils/scancpan
> +++ b/utils/scancpan
> @@ -752,7 +752,7 @@ __END__
>  
>  =head1 NAME
>  
> -support/scripts/scancpan Try-Tiny Moo
> +utils/scancpan Try-Tiny Moo
>  
>  =head1 SYNOPSIS
>  
> -- 
> 2.13.1
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory
  2017-07-01 16:40 [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory Arnout Vandecappelle
                   ` (2 preceding siblings ...)
  2017-07-01 16:49 ` [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory Yann E. MORIN
@ 2017-07-01 17:44 ` Thomas Petazzoni
  3 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2017-07-01 17:44 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 1 Jul 2017 18:40:39 +0200, Arnout Vandecappelle
(Essensium/Mind) wrote:
> There were still references to support/scripts/ for scripts that have
> moved to the utils directory. There were also references that were
> updated, but not re-updated when the tools moves to utils.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
>  DEVELOPERS | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)

All three patches applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2017-07-01 17:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-01 16:40 [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory Arnout Vandecappelle
2017-07-01 16:40 ` [Buildroot] [PATCH 2/3] manual: update old references to support/scripts Arnout Vandecappelle
2017-07-01 16:50   ` Yann E. MORIN
2017-07-01 16:40 ` [Buildroot] [PATCH 3/3] scancpan: update old reference " Arnout Vandecappelle
2017-07-01 16:51   ` Yann E. MORIN
2017-07-01 16:49 ` [Buildroot] [PATCH 1/3] DEVELOPERS: fix after moving scripts to utils/ directory Yann E. MORIN
2017-07-01 17:44 ` Thomas Petazzoni

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