* [Buildroot] [PATCH 1/1] package/fwup: bump to v1.8.0
@ 2020-06-25 15:15 Frank Hunleth
2020-06-25 20:54 ` Yann E. MORIN
0 siblings, 1 reply; 2+ messages in thread
From: Frank Hunleth @ 2020-06-25 15:15 UTC (permalink / raw)
To: buildroot
The libsodium dependency is no longer needed so this patch also drops
that requirement from host and target builds.
Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
---
package/fwup/Config.in | 1 -
package/fwup/fwup.hash | 2 +-
package/fwup/fwup.mk | 6 +++---
3 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/package/fwup/Config.in b/package/fwup/Config.in
index fd40cf3261..0e3c57d33d 100644
--- a/package/fwup/Config.in
+++ b/package/fwup/Config.in
@@ -6,7 +6,6 @@ config BR2_PACKAGE_FWUP
# required by libarchive to include zip compression
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_LIBCONFUSE
- select BR2_PACKAGE_LIBSODIUM
help
Fwup is a scriptable embedded Linux firmware update creator
and runner.
diff --git a/package/fwup/fwup.hash b/package/fwup/fwup.hash
index 337883f9a8..cd3f3bcefd 100644
--- a/package/fwup/fwup.hash
+++ b/package/fwup/fwup.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 20302dc96cef88438034e15551e178bb0652c28d99aa7ca5260100cb3bebbc2a fwup-1.2.5.tar.gz
+sha256 9890f0328796f4315e6c1188df5c103855c530fbc14fbc8c12f4b24066c975f1 fwup-1.8.0.tar.gz
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE
diff --git a/package/fwup/fwup.mk b/package/fwup/fwup.mk
index e1e5467765..77eaa528f3 100644
--- a/package/fwup/fwup.mk
+++ b/package/fwup/fwup.mk
@@ -4,12 +4,12 @@
#
################################################################################
-FWUP_VERSION = 1.2.5
+FWUP_VERSION = 1.8.0
FWUP_SITE = $(call github,fhunleth,fwup,v$(FWUP_VERSION))
FWUP_LICENSE = Apache-2.0
FWUP_LICENSE_FILES = LICENSE
-FWUP_DEPENDENCIES = host-pkgconf libconfuse libarchive libsodium
-HOST_FWUP_DEPENDENCIES = host-pkgconf host-libconfuse host-libarchive host-libsodium
+FWUP_DEPENDENCIES = host-pkgconf libconfuse libarchive
+HOST_FWUP_DEPENDENCIES = host-pkgconf host-libconfuse host-libarchive
FWUP_AUTORECONF = YES
FWUP_CONF_ENV = ac_cv_path_HELP2MAN=""
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH 1/1] package/fwup: bump to v1.8.0
2020-06-25 15:15 [Buildroot] [PATCH 1/1] package/fwup: bump to v1.8.0 Frank Hunleth
@ 2020-06-25 20:54 ` Yann E. MORIN
0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2020-06-25 20:54 UTC (permalink / raw)
To: buildroot
Frank, All,
On 2020-06-25 11:15 -0400, Frank Hunleth spake thusly:
> The libsodium dependency is no longer needed so this patch also drops
> that requirement from host and target builds.
>
> Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Applied to master, thanks.
Note that fwup was the only in-tree user of host-libsodium, which had
been introduced just for it:
4fe8f3974f fwup: new package
333531f9fd libsodium: add host variant
There is no user-selectable option to build host-=libsodium.
So, host-libsodium will niw never be built in our autobuilder infra, and
we will not catch any build issue.
Consequently, I wonder if we should keep it...
Regards,
Yann E. MORIN.
> ---
> package/fwup/Config.in | 1 -
> package/fwup/fwup.hash | 2 +-
> package/fwup/fwup.mk | 6 +++---
> 3 files changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/package/fwup/Config.in b/package/fwup/Config.in
> index fd40cf3261..0e3c57d33d 100644
> --- a/package/fwup/Config.in
> +++ b/package/fwup/Config.in
> @@ -6,7 +6,6 @@ config BR2_PACKAGE_FWUP
> # required by libarchive to include zip compression
> select BR2_PACKAGE_ZLIB
> select BR2_PACKAGE_LIBCONFUSE
> - select BR2_PACKAGE_LIBSODIUM
> help
> Fwup is a scriptable embedded Linux firmware update creator
> and runner.
> diff --git a/package/fwup/fwup.hash b/package/fwup/fwup.hash
> index 337883f9a8..cd3f3bcefd 100644
> --- a/package/fwup/fwup.hash
> +++ b/package/fwup/fwup.hash
> @@ -1,3 +1,3 @@
> # Locally calculated
> -sha256 20302dc96cef88438034e15551e178bb0652c28d99aa7ca5260100cb3bebbc2a fwup-1.2.5.tar.gz
> +sha256 9890f0328796f4315e6c1188df5c103855c530fbc14fbc8c12f4b24066c975f1 fwup-1.8.0.tar.gz
> sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE
> diff --git a/package/fwup/fwup.mk b/package/fwup/fwup.mk
> index e1e5467765..77eaa528f3 100644
> --- a/package/fwup/fwup.mk
> +++ b/package/fwup/fwup.mk
> @@ -4,12 +4,12 @@
> #
> ################################################################################
>
> -FWUP_VERSION = 1.2.5
> +FWUP_VERSION = 1.8.0
> FWUP_SITE = $(call github,fhunleth,fwup,v$(FWUP_VERSION))
> FWUP_LICENSE = Apache-2.0
> FWUP_LICENSE_FILES = LICENSE
> -FWUP_DEPENDENCIES = host-pkgconf libconfuse libarchive libsodium
> -HOST_FWUP_DEPENDENCIES = host-pkgconf host-libconfuse host-libarchive host-libsodium
> +FWUP_DEPENDENCIES = host-pkgconf libconfuse libarchive
> +HOST_FWUP_DEPENDENCIES = host-pkgconf host-libconfuse host-libarchive
> FWUP_AUTORECONF = YES
> FWUP_CONF_ENV = ac_cv_path_HELP2MAN=""
>
> --
> 2.25.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] 2+ messages in thread
end of thread, other threads:[~2020-06-25 20:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-25 15:15 [Buildroot] [PATCH 1/1] package/fwup: bump to v1.8.0 Frank Hunleth
2020-06-25 20:54 ` 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