Re: [rtems-release commit] Do not use tar Jxf for uncompressed archives

2022-02-18 Thread Sebastian Huber

On 17/02/2022 20:15, Chris Johns wrote:

On 17/2/22 4:45 pm, Sebastian Huber wrote:

Hello Chris,

On 17/02/2022 04:11, Chris Johns wrote:

I would like to approve all commits to this repo.

Why have you made this change?

I tried to run the scripts on my Linux machine and this fixed one of the issues
that occurred.

Have you tested the change on FreeBSD?


Not yet, I had some issues to set up our FreeBSD VM. The virtualenv and 
npm is not installed by default.



--
embedded brains GmbH
Herr Sebastian HUBER
Dornierstr. 4
82178 Puchheim
Germany
email: sebastian.hu...@embedded-brains.de
phone: +49-89-18 94 741 - 16
fax:   +49-89-18 94 741 - 08

Registergericht: Amtsgericht München
Registernummer: HRB 157899
Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, Thomas Dörfler
Unsere Datenschutzerklärung finden Sie hier:
https://embedded-brains.de/datenschutzerklaerung/
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Re: [rtems-release commit] Do not use tar Jxf for uncompressed archives

2022-02-17 Thread Chris Johns
On 17/2/22 4:45 pm, Sebastian Huber wrote:
> Hello Chris,
> 
> On 17/02/2022 04:11, Chris Johns wrote:
>> I would like to approve all commits to this repo.
>>
>> Why have you made this change?
> 
> I tried to run the scripts on my Linux machine and this fixed one of the 
> issues
> that occurred.

Have you tested the change on FreeBSD?

Chris
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


Re: [rtems-release commit] Do not use tar Jxf for uncompressed archives

2022-02-16 Thread Sebastian Huber

Hello Chris,

On 17/02/2022 04:11, Chris Johns wrote:

I would like to approve all commits to this repo.

Why have you made this change?


I tried to run the scripts on my Linux machine and this fixed one of the 
issues that occurred.


--
embedded brains GmbH
Herr Sebastian HUBER
Dornierstr. 4
82178 Puchheim
Germany
email: sebastian.hu...@embedded-brains.de
phone: +49-89-18 94 741 - 16
fax:   +49-89-18 94 741 - 08

Registergericht: Amtsgericht München
Registernummer: HRB 157899
Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, Thomas Dörfler
Unsere Datenschutzerklärung finden Sie hier:
https://embedded-brains.de/datenschutzerklaerung/
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Re: [rtems-release commit] Do not use tar Jxf for uncompressed archives

2022-02-16 Thread Chris Johns
Hi Sebastian,

I would like to approve all commits to this repo.

Why have you made this change?

Thanks
Chris

On 15/2/22 7:18 pm, Sebastian Huber wrote:
> Module:rtems-release
> Branch:master
> Commit:455255299d2cd0e4317acdd0363cfba50cb7da8d
> Changeset: 
> http://git.rtems.org/rtems-release/commit/?id=455255299d2cd0e4317acdd0363cfba50cb7da8d
> 
> Author:Sebastian Huber 
> Date:  Tue Feb 15 09:26:32 2022 +0100
> 
> Do not use tar Jxf for uncompressed archives
> 
> GNU tar complains in this case.
> 
> ---
> 
>  rtems-release-package | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/rtems-release-package b/rtems-release-package
> index 6eb71ba..2df2fae 100755
> --- a/rtems-release-package
> +++ b/rtems-release-package
> @@ -106,14 +106,14 @@ if [ ! -f ${stamped_tar}.tar ]; then
>   exit 1
>  fi
>  echo "tar xf ${stamped_tar}.tar"
> -tar Jxf ${stamped_tar}.tar
> +tar xf ${stamped_tar}.tar
>  if [ -n "${git_submodules}" ]; then
>   for s in ${git_submodules}
>   do
> ok=$(echo ${git_submodules_excludes} | sed -e "s/.*${s}.*/no/g")
> if [ "${ok}" != "no" ]; then
>  echo "tar xf ${stamped_tar}-${s}.tar"
> -tar Jxf ${stamped_tar}-${s}.tar
> +tar xf ${stamped_tar}-${s}.tar
> fi
>   done
>  fi
> 
> ___
> vc mailing list
> v...@rtems.org
> http://lists.rtems.org/mailman/listinfo/vc
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel