diff mbox series

[07/10,v3] support/download: cleanup svn backend

Message ID 7077b14d19b9d645fa45dcc39f8c62212216c4af.1609239666.git.yann.morin.1998@free.fr
State Changes Requested
Headers show
Series [01/10,v3] core/pkg-infra: prepare for alternate default source archives | expand

Commit Message

Yann E. MORIN Dec. 29, 2020, 11:01 a.m. UTC
Commit 89f5e9893 (support/download/svn: generate reproducible svn
archives) did what it said, but can be siplified a bit.

Indeed, we are doing an svn export, so we won't have any of the .svn
directories, neither at the root of the extract, nor in any of the
sub-directories.

As such, we do not need to filter them out  when we generate the list
of files to include in the archive.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Heiko Thiery <heiko.thiery@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Vincent Fazio <vfazio@xes-inc.com>
---
 support/download/svn | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

Comments

Arnout Vandecappelle Jan. 5, 2021, 10:33 p.m. UTC | #1
On 29/12/2020 12:01, Yann E. MORIN wrote:
> Commit 89f5e9893 (support/download/svn: generate reproducible svn
> archives) did what it said, but can be siplified a bit.
                                         simplified

> 
> Indeed, we are doing an svn export, so we won't have any of the .svn
> directories, neither at the root of the extract, nor in any of the
> sub-directories.
> 
> As such, we do not need to filter them out  when we generate the list
> of files to include in the archive.
> 
> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Heiko Thiery <heiko.thiery@gmail.com>
> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> Cc: Vincent Fazio <vfazio@xes-inc.com>

Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

 Regards,
 Arnout

> ---
>  support/download/svn | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/support/download/svn b/support/download/svn
> index 012f286dd9..b7a6ac7443 100755
> --- a/support/download/svn
> +++ b/support/download/svn
> @@ -46,10 +46,9 @@ _svn export ${verbose} "${@}" "'${uri}@${rev}'" "'${basename}'"
>  date="$( _svn info --show-item last-changed-date "'${uri}@${rev}'" |tail -n 1 )"
>  
>  # Generate the archive, sort with the C locale so that it is reproducible.
> -# We do not want the .svn dir; we keep other .svn files, in case they are the
> -# only files in their directory.
> -find "${basename}" -not -type d \
> -       -and -not -path "./.svn/*" >"${output}.list"
> +# We did a 'svn export' above, so it's not a working copy (there is no .svn
> +# directory or file to ignore).
> +find "${basename}" -not -type d >"${output}.list"
>  LC_ALL=C sort <"${output}.list" >"${output}.list.sorted"
>  
>  # Create GNU-format tarballs, since that's the format of the tarballs on
>
Vincent Fazio Jan. 7, 2021, 7:42 p.m. UTC | #2
On 12/29/20 5:01 AM, Yann E. MORIN wrote:
> Commit 89f5e9893 (support/download/svn: generate reproducible svn
> archives) did what it said, but can be siplified a bit.
> 
> Indeed, we are doing an svn export, so we won't have any of the .svn
> directories, neither at the root of the extract, nor in any of the
> sub-directories.
> 
> As such, we do not need to filter them out  when we generate the list
> of files to include in the archive.
> 
> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Heiko Thiery <heiko.thiery@gmail.com>
> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> Cc: Vincent Fazio <vfazio@xes-inc.com>
> ---
>   support/download/svn | 7 +++----
>   1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/support/download/svn b/support/download/svn
> index 012f286dd9..b7a6ac7443 100755
> --- a/support/download/svn
> +++ b/support/download/svn
> @@ -46,10 +46,9 @@ _svn export ${verbose} "${@}" "'${uri}@${rev}'" "'${basename}'"
>   date="$( _svn info --show-item last-changed-date "'${uri}@${rev}'" |tail -n 1 )"
>   
>   # Generate the archive, sort with the C locale so that it is reproducible.
> -# We do not want the .svn dir; we keep other .svn files, in case they are the
> -# only files in their directory.
> -find "${basename}" -not -type d \
> -       -and -not -path "./.svn/*" >"${output}.list"
> +# We did a 'svn export' above, so it's not a working copy (there is no .svn
> +# directory or file to ignore).
> +find "${basename}" -not -type d >"${output}.list"
>   LC_ALL=C sort <"${output}.list" >"${output}.list.sorted"
>   
>   # Create GNU-format tarballs, since that's the format of the tarballs on
> 

Reviewed-by: Vincent Fazio <vfazio@xes-inc.com>
diff mbox series

Patch

diff --git a/support/download/svn b/support/download/svn
index 012f286dd9..b7a6ac7443 100755
--- a/support/download/svn
+++ b/support/download/svn
@@ -46,10 +46,9 @@  _svn export ${verbose} "${@}" "'${uri}@${rev}'" "'${basename}'"
 date="$( _svn info --show-item last-changed-date "'${uri}@${rev}'" |tail -n 1 )"
 
 # Generate the archive, sort with the C locale so that it is reproducible.
-# We do not want the .svn dir; we keep other .svn files, in case they are the
-# only files in their directory.
-find "${basename}" -not -type d \
-       -and -not -path "./.svn/*" >"${output}.list"
+# We did a 'svn export' above, so it's not a working copy (there is no .svn
+# directory or file to ignore).
+find "${basename}" -not -type d >"${output}.list"
 LC_ALL=C sort <"${output}.list" >"${output}.list.sorted"
 
 # Create GNU-format tarballs, since that's the format of the tarballs on