Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/zchunk: bump to version 1.2.2
@ 2022-04-20 18:56 James Hilliard
  2022-04-20 20:43 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: James Hilliard @ 2022-04-20 18:56 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard

Libcurl is now an optional dependency.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/zchunk/Config.in   |  1 -
 package/zchunk/zchunk.hash |  2 +-
 package/zchunk/zchunk.mk   | 10 ++++++++--
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/package/zchunk/Config.in b/package/zchunk/Config.in
index 2d2a78a210..11463dd4bd 100644
--- a/package/zchunk/Config.in
+++ b/package/zchunk/Config.in
@@ -2,7 +2,6 @@ config BR2_PACKAGE_ZCHUNK
 	bool "zchunk"
 	depends on BR2_USE_MMU # fork()
 	select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
-	select BR2_PACKAGE_LIBCURL
 	help
 	  A file format designed for highly efficient deltas while
 	  maintaining good compression.
diff --git a/package/zchunk/zchunk.hash b/package/zchunk/zchunk.hash
index d6b425dc70..fa097d4ae0 100644
--- a/package/zchunk/zchunk.hash
+++ b/package/zchunk/zchunk.hash
@@ -1,3 +1,3 @@
 # Locally computed
-sha256  33934adecddc50c64615dd8cdfe52a79df674a5bb1d5e83a9c09e1d1e6e9b92c  zchunk-1.1.16.tar.gz
+sha256  bc36f13b1bcb2ab52d046bfc3ec04a9bd1f89b070b4e8fca52eded235a583526  zchunk-1.2.2.tar.gz
 sha256  3c6a4fd5a93cacec6bf694d0537246bc15a95a274f5c5301749754e56d27b797  LICENSE
diff --git a/package/zchunk/zchunk.mk b/package/zchunk/zchunk.mk
index 6f7ac799a0..5582c21e77 100644
--- a/package/zchunk/zchunk.mk
+++ b/package/zchunk/zchunk.mk
@@ -4,15 +4,21 @@
 #
 ################################################################################
 
-ZCHUNK_VERSION = 1.1.16
+ZCHUNK_VERSION = 1.2.2
 ZCHUNK_SITE = $(call github,zchunk,zchunk,$(ZCHUNK_VERSION))
 ZCHUNK_LICENSE = BSD-2-Clause
 ZCHUNK_LICENSE_FILES = LICENSE
 ZCHUNK_INSTALL_STAGING = YES
 ZCHUNK_DEPENDENCIES = \
-	libcurl \
 	$(if $(BR2_PACKAGE_ARGP_STANDALONE),argp-standalone)
 
+ifeq ($(BR2_PACKAGE_LIBCURL),y)
+ZCHUNK_DEPENDENCIES += libcurl
+ZCHUNK_CONF_OPTS += -Dwith-curl=enabled
+else
+ZCHUNK_CONF_OPTS += -Dwith-curl=disabled
+endif
+
 ifeq ($(BR2_PACKAGE_OPENSSL),y)
 ZCHUNK_DEPENDENCIES += openssl
 ZCHUNK_CONF_OPTS += -Dwith-openssl=enabled
-- 
2.25.1

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

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

* Re: [Buildroot] [PATCH 1/1] package/zchunk: bump to version 1.2.2
  2022-04-20 18:56 [Buildroot] [PATCH 1/1] package/zchunk: bump to version 1.2.2 James Hilliard
@ 2022-04-20 20:43 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2022-04-20 20:43 UTC (permalink / raw)
  To: James Hilliard; +Cc: buildroot

James, All,

On 2022-04-20 12:56 -0600, James Hilliard spake thusly:
> Libcurl is now an optional dependency.
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/zchunk/Config.in   |  1 -
>  package/zchunk/zchunk.hash |  2 +-
>  package/zchunk/zchunk.mk   | 10 ++++++++--
>  3 files changed, 9 insertions(+), 4 deletions(-)
> 
> diff --git a/package/zchunk/Config.in b/package/zchunk/Config.in
> index 2d2a78a210..11463dd4bd 100644
> --- a/package/zchunk/Config.in
> +++ b/package/zchunk/Config.in
> @@ -2,7 +2,6 @@ config BR2_PACKAGE_ZCHUNK
>  	bool "zchunk"
>  	depends on BR2_USE_MMU # fork()
>  	select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
> -	select BR2_PACKAGE_LIBCURL
>  	help
>  	  A file format designed for highly efficient deltas while
>  	  maintaining good compression.
> diff --git a/package/zchunk/zchunk.hash b/package/zchunk/zchunk.hash
> index d6b425dc70..fa097d4ae0 100644
> --- a/package/zchunk/zchunk.hash
> +++ b/package/zchunk/zchunk.hash
> @@ -1,3 +1,3 @@
>  # Locally computed
> -sha256  33934adecddc50c64615dd8cdfe52a79df674a5bb1d5e83a9c09e1d1e6e9b92c  zchunk-1.1.16.tar.gz
> +sha256  bc36f13b1bcb2ab52d046bfc3ec04a9bd1f89b070b4e8fca52eded235a583526  zchunk-1.2.2.tar.gz
>  sha256  3c6a4fd5a93cacec6bf694d0537246bc15a95a274f5c5301749754e56d27b797  LICENSE
> diff --git a/package/zchunk/zchunk.mk b/package/zchunk/zchunk.mk
> index 6f7ac799a0..5582c21e77 100644
> --- a/package/zchunk/zchunk.mk
> +++ b/package/zchunk/zchunk.mk
> @@ -4,15 +4,21 @@
>  #
>  ################################################################################
>  
> -ZCHUNK_VERSION = 1.1.16
> +ZCHUNK_VERSION = 1.2.2
>  ZCHUNK_SITE = $(call github,zchunk,zchunk,$(ZCHUNK_VERSION))
>  ZCHUNK_LICENSE = BSD-2-Clause
>  ZCHUNK_LICENSE_FILES = LICENSE
>  ZCHUNK_INSTALL_STAGING = YES
>  ZCHUNK_DEPENDENCIES = \
> -	libcurl \
>  	$(if $(BR2_PACKAGE_ARGP_STANDALONE),argp-standalone)
>  
> +ifeq ($(BR2_PACKAGE_LIBCURL),y)
> +ZCHUNK_DEPENDENCIES += libcurl
> +ZCHUNK_CONF_OPTS += -Dwith-curl=enabled
> +else
> +ZCHUNK_CONF_OPTS += -Dwith-curl=disabled
> +endif
> +
>  ifeq ($(BR2_PACKAGE_OPENSSL),y)
>  ZCHUNK_DEPENDENCIES += openssl
>  ZCHUNK_CONF_OPTS += -Dwith-openssl=enabled
> -- 
> 2.25.1
> 
> _______________________________________________
> 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] 2+ messages in thread

end of thread, other threads:[~2022-04-20 20:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-20 18:56 [Buildroot] [PATCH 1/1] package/zchunk: bump to version 1.2.2 James Hilliard
2022-04-20 20:43 ` 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