All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1] package/rsync: bump version to 3.2.3
@ 2021-03-13 22:42 Peter Seiderer
  2021-03-14  4:40 ` Baruch Siach
  2021-03-14 15:47 ` Yann E. MORIN
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Seiderer @ 2021-03-13 22:42 UTC (permalink / raw)
  To: buildroot

- disable simd, openssl, xxhash, zstd, lz4, asm options

- update COPYING hash (add openssl and xxhash license
  enhancement):

  In addition, as a special exception, the copyright holders give
  permission to dynamically link rsync with the OpenSSL and xxhash
  libraries when those libraries are being distributed in compliance
  with their license terms, and to distribute a dynamically linked
  combination of rsync and these libraries.  This is also considered
  to be covered under the GPL's System Libraries exception.

For details see [1].

[1] https://download.samba.org/pub/rsync/NEWS#3.2.3

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/rsync/rsync.hash |  6 +++---
 package/rsync/rsync.mk   | 10 ++++++++--
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/package/rsync/rsync.hash b/package/rsync/rsync.hash
index 2da62a18f1..92f6156ba8 100644
--- a/package/rsync/rsync.hash
+++ b/package/rsync/rsync.hash
@@ -1,5 +1,5 @@
 # Locally calculated after checking pgp signature
-# https://download.samba.org/pub/rsync/src/rsync-3.1.3.tar.gz.asc
-sha256	55cc554efec5fdaad70de921cd5a5eeb6c29a95524c715f3bbf849235b0800c0	rsync-3.1.3.tar.gz
+# https://download.samba.org/pub/rsync/src/rsync-3.2.3.tar.gz.asc
+sha256  becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e  rsync-3.2.3.tar.gz
 # Locally calculated
-sha256	8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903	COPYING
+sha256  0d33aa97d302cb9df27f99dfa28d58001c2479a02317956f1a7a890f3937a976  COPYING
diff --git a/package/rsync/rsync.mk b/package/rsync/rsync.mk
index db26ebd93a..6a456c147a 100644
--- a/package/rsync/rsync.mk
+++ b/package/rsync/rsync.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-RSYNC_VERSION = 3.1.3
+RSYNC_VERSION = 3.2.3
 RSYNC_SITE = http://rsync.samba.org/ftp/rsync/src
 RSYNC_LICENSE = GPL-3.0+
 RSYNC_LICENSE_FILES = COPYING
@@ -12,7 +12,13 @@ RSYNC_CPE_ID_VENDOR = samba
 RSYNC_DEPENDENCIES = zlib popt
 RSYNC_CONF_OPTS = \
 	--with-included-zlib=no \
-	--with-included-popt=no
+	--with-included-popt=no \
+	--disable-simd \
+	--disable-openssl \
+	--disable-xxhash \
+	--disable-zstd \
+	--disable-lz4 \
+	--disable-asm
 
 ifeq ($(BR2_PACKAGE_ACL),y)
 RSYNC_DEPENDENCIES += acl
-- 
2.30.1

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

* [Buildroot] [PATCH v1] package/rsync: bump version to 3.2.3
  2021-03-13 22:42 [Buildroot] [PATCH v1] package/rsync: bump version to 3.2.3 Peter Seiderer
@ 2021-03-14  4:40 ` Baruch Siach
  2021-03-14 15:47 ` Yann E. MORIN
  1 sibling, 0 replies; 3+ messages in thread
From: Baruch Siach @ 2021-03-14  4:40 UTC (permalink / raw)
  To: buildroot

Hi Peter,

On Sun, Mar 14 2021, Peter Seiderer wrote:
> - disable simd, openssl, xxhash, zstd, lz4, asm options
>
> - update COPYING hash (add openssl and xxhash license
>   enhancement):
>
>   In addition, as a special exception, the copyright holders give
>   permission to dynamically link rsync with the OpenSSL and xxhash
>   libraries when those libraries are being distributed in compliance
>   with their license terms, and to distribute a dynamically linked
>   combination of rsync and these libraries.  This is also considered
>   to be covered under the GPL's System Libraries exception.
>
> For details see [1].
>
> [1] https://download.samba.org/pub/rsync/NEWS#3.2.3
>
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/rsync/rsync.hash |  6 +++---
>  package/rsync/rsync.mk   | 10 ++++++++--
>  2 files changed, 11 insertions(+), 5 deletions(-)
>
> diff --git a/package/rsync/rsync.hash b/package/rsync/rsync.hash
> index 2da62a18f1..92f6156ba8 100644
> --- a/package/rsync/rsync.hash
> +++ b/package/rsync/rsync.hash
> @@ -1,5 +1,5 @@
>  # Locally calculated after checking pgp signature
> -# https://download.samba.org/pub/rsync/src/rsync-3.1.3.tar.gz.asc
> -sha256	55cc554efec5fdaad70de921cd5a5eeb6c29a95524c715f3bbf849235b0800c0	rsync-3.1.3.tar.gz
> +# https://download.samba.org/pub/rsync/src/rsync-3.2.3.tar.gz.asc
> +sha256  becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e  rsync-3.2.3.tar.gz
>  # Locally calculated
> -sha256	8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903	COPYING
> +sha256  0d33aa97d302cb9df27f99dfa28d58001c2479a02317956f1a7a890f3937a976  COPYING
> diff --git a/package/rsync/rsync.mk b/package/rsync/rsync.mk
> index db26ebd93a..6a456c147a 100644
> --- a/package/rsync/rsync.mk
> +++ b/package/rsync/rsync.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -RSYNC_VERSION = 3.1.3
> +RSYNC_VERSION = 3.2.3
>  RSYNC_SITE = http://rsync.samba.org/ftp/rsync/src
>  RSYNC_LICENSE = GPL-3.0+

Maybe change this to "GPL-3.0+ with exception for OpenSSL and xxhash"?

baruch

>  RSYNC_LICENSE_FILES = COPYING
> @@ -12,7 +12,13 @@ RSYNC_CPE_ID_VENDOR = samba
>  RSYNC_DEPENDENCIES = zlib popt
>  RSYNC_CONF_OPTS = \
>  	--with-included-zlib=no \
> -	--with-included-popt=no
> +	--with-included-popt=no \
> +	--disable-simd \
> +	--disable-openssl \
> +	--disable-xxhash \
> +	--disable-zstd \
> +	--disable-lz4 \
> +	--disable-asm
>  
>  ifeq ($(BR2_PACKAGE_ACL),y)
>  RSYNC_DEPENDENCIES += acl


-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

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

* [Buildroot] [PATCH v1] package/rsync: bump version to 3.2.3
  2021-03-13 22:42 [Buildroot] [PATCH v1] package/rsync: bump version to 3.2.3 Peter Seiderer
  2021-03-14  4:40 ` Baruch Siach
@ 2021-03-14 15:47 ` Yann E. MORIN
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2021-03-14 15:47 UTC (permalink / raw)
  To: buildroot

Peter, All,

On 2021-03-13 23:42 +0100, Peter Seiderer spake thusly:
> - disable simd, openssl, xxhash, zstd, lz4, asm options
> 
> - update COPYING hash (add openssl and xxhash license
>   enhancement):
> 
>   In addition, as a special exception, the copyright holders give
>   permission to dynamically link rsync with the OpenSSL and xxhash
>   libraries when those libraries are being distributed in compliance
>   with their license terms, and to distribute a dynamically linked
>   combination of rsync and these libraries.  This is also considered
>   to be covered under the GPL's System Libraries exception.
> 
> For details see [1].
> 
> [1] https://download.samba.org/pub/rsync/NEWS#3.2.3
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/rsync/rsync.hash |  6 +++---
>  package/rsync/rsync.mk   | 10 ++++++++--
>  2 files changed, 11 insertions(+), 5 deletions(-)
> 
> diff --git a/package/rsync/rsync.hash b/package/rsync/rsync.hash
> index 2da62a18f1..92f6156ba8 100644
> --- a/package/rsync/rsync.hash
> +++ b/package/rsync/rsync.hash
> @@ -1,5 +1,5 @@
>  # Locally calculated after checking pgp signature
> -# https://download.samba.org/pub/rsync/src/rsync-3.1.3.tar.gz.asc
> -sha256	55cc554efec5fdaad70de921cd5a5eeb6c29a95524c715f3bbf849235b0800c0	rsync-3.1.3.tar.gz
> +# https://download.samba.org/pub/rsync/src/rsync-3.2.3.tar.gz.asc
> +sha256  becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e  rsync-3.2.3.tar.gz
>  # Locally calculated
> -sha256	8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903	COPYING
> +sha256  0d33aa97d302cb9df27f99dfa28d58001c2479a02317956f1a7a890f3937a976  COPYING
> diff --git a/package/rsync/rsync.mk b/package/rsync/rsync.mk
> index db26ebd93a..6a456c147a 100644
> --- a/package/rsync/rsync.mk
> +++ b/package/rsync/rsync.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -RSYNC_VERSION = 3.1.3
> +RSYNC_VERSION = 3.2.3
>  RSYNC_SITE = http://rsync.samba.org/ftp/rsync/src
>  RSYNC_LICENSE = GPL-3.0+

As noticed by Baruch, I've added 'with exceptions' to _LICENSE (not
unlike we already do in other packages).

Applied to master, thanks.

Regards,
Yann E. MORIN.

>  RSYNC_LICENSE_FILES = COPYING
> @@ -12,7 +12,13 @@ RSYNC_CPE_ID_VENDOR = samba
>  RSYNC_DEPENDENCIES = zlib popt
>  RSYNC_CONF_OPTS = \
>  	--with-included-zlib=no \
> -	--with-included-popt=no
> +	--with-included-popt=no \
> +	--disable-simd \
> +	--disable-openssl \
> +	--disable-xxhash \
> +	--disable-zstd \
> +	--disable-lz4 \
> +	--disable-asm
>  
>  ifeq ($(BR2_PACKAGE_ACL),y)
>  RSYNC_DEPENDENCIES += acl
> -- 
> 2.30.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/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.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2021-03-14 15:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-13 22:42 [Buildroot] [PATCH v1] package/rsync: bump version to 3.2.3 Peter Seiderer
2021-03-14  4:40 ` Baruch Siach
2021-03-14 15:47 ` Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.