* [Buildroot] [PATCH 2/3] package/libvirt: disable sasl
2022-01-09 20:00 [Buildroot] [PATCH 1/3] package/libvirt: fix ssh2 option Fabrice Fontaine
@ 2022-01-09 20:00 ` Fabrice Fontaine
2022-01-27 16:58 ` Peter Korsgaard
2022-01-09 20:00 ` [Buildroot] [PATCH 3/3] package/libvirt: bump to version 7.10.0 Fabrice Fontaine
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Fabrice Fontaine @ 2022-01-09 20:00 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine, Jared Bents
sasl depends on libsasl2 (https://github.com/cyrusimap/cyrus-sasl) which
is not packaged yet in buildroot and will result in the following build
failure raised since commit fbf25acfbfd5a73b3560918bea081768abbe5723:
output/build/libvirt-7.7.0/meson.build:1212:2: ERROR: Dependency "libsasl2" not found, tried pkgconfig
Fixes:
- No autobuilder failures (yet)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/libvirt/libvirt.mk | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/package/libvirt/libvirt.mk b/package/libvirt/libvirt.mk
index 0c1ee82f43..816bb0760d 100644
--- a/package/libvirt/libvirt.mk
+++ b/package/libvirt/libvirt.mk
@@ -63,6 +63,7 @@ LIBVIRT_CONF_OPTS = \
-Dpciaccess=enabled \
-Dpm_utils=disabled \
-Dsanlock=disabled \
+ -Dsasl=disabled \
-Dsecdriver_apparmor=disabled \
-Dstorage_iscsi=disabled \
-Dstorage_iscsi_direct=disabled \
@@ -212,13 +213,6 @@ else
LIBVIRT_CONF_OPTS += -Dnss=disabled
endif
-ifeq ($(BR2_PACKAGE_LIBGSASL),y)
-LIBVIRT_CONF_OPTS += -Dsasl=enabled
-LIBVIRT_DEPENDENCIES += libgsasl
-else
-LIBVIRT_CONF_OPTS += -Dsasl=disabled
-endif
-
ifeq ($(BR2_PACKAGE_LIBSSH2),y)
LIBVIRT_CONF_OPTS += -Dlibssh2=enabled
LIBVIRT_DEPENDENCIES += libssh2
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 3/3] package/libvirt: bump to version 7.10.0
2022-01-09 20:00 [Buildroot] [PATCH 1/3] package/libvirt: fix ssh2 option Fabrice Fontaine
2022-01-09 20:00 ` [Buildroot] [PATCH 2/3] package/libvirt: disable sasl Fabrice Fontaine
@ 2022-01-09 20:00 ` Fabrice Fontaine
2022-01-09 20:24 ` [Buildroot] [PATCH 1/3] package/libvirt: fix ssh2 option Yann E. MORIN
2022-01-27 16:57 ` Peter Korsgaard
3 siblings, 0 replies; 6+ messages in thread
From: Fabrice Fontaine @ 2022-01-09 20:00 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine, Jared Bents
https://gitlab.com/libvirt/libvirt/-/blob/v7.10.0/NEWS.rst
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/libvirt/libvirt.hash | 2 +-
package/libvirt/libvirt.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/libvirt/libvirt.hash b/package/libvirt/libvirt.hash
index e8cbb34e2a..de9ebff564 100644
--- a/package/libvirt/libvirt.hash
+++ b/package/libvirt/libvirt.hash
@@ -1,3 +1,3 @@
# locally computed
-sha256 1b616099c18d14b9424a622f2a0bd3e0cfa286414f3416bd1a8173621b2252b2 libvirt-7.7.0.tar.xz
+sha256 cb318014af097327928c6e3d72922e3be02a3e6401247b2aa52d9ab8e0b480f9 libvirt-7.10.0.tar.xz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
diff --git a/package/libvirt/libvirt.mk b/package/libvirt/libvirt.mk
index 816bb0760d..7b0ed5e52e 100644
--- a/package/libvirt/libvirt.mk
+++ b/package/libvirt/libvirt.mk
@@ -4,7 +4,7 @@
#
################################################################################
-LIBVIRT_VERSION = 7.7.0
+LIBVIRT_VERSION = 7.10.0
LIBVIRT_SITE = https://libvirt.org/sources
LIBVIRT_SOURCE = libvirt-$(LIBVIRT_VERSION).tar.xz
LIBVIRT_LICENSE = LGPL-2.1+
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 1/3] package/libvirt: fix ssh2 option
2022-01-09 20:00 [Buildroot] [PATCH 1/3] package/libvirt: fix ssh2 option Fabrice Fontaine
2022-01-09 20:00 ` [Buildroot] [PATCH 2/3] package/libvirt: disable sasl Fabrice Fontaine
2022-01-09 20:00 ` [Buildroot] [PATCH 3/3] package/libvirt: bump to version 7.10.0 Fabrice Fontaine
@ 2022-01-09 20:24 ` Yann E. MORIN
2022-01-27 16:57 ` Peter Korsgaard
3 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2022-01-09 20:24 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Jared Bents, buildroot
Fabrice, All,
On 2022-01-09 21:00 +0100, Fabrice Fontaine spake thusly:
> Fix the following build failure raised since commit
> fbf25acfbfd5a73b3560918bea081768abbe5723:
>
> output/build/libvirt-7.7.0/meson.build:1:0: ERROR: Unknown options: "ssh2"
>
> Fixes:
> - No autobuilder failures (yet)
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Series of 3 patches applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/libvirt/libvirt.mk | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/package/libvirt/libvirt.mk b/package/libvirt/libvirt.mk
> index 41218c0e53..0c1ee82f43 100644
> --- a/package/libvirt/libvirt.mk
> +++ b/package/libvirt/libvirt.mk
> @@ -220,10 +220,10 @@ LIBVIRT_CONF_OPTS += -Dsasl=disabled
> endif
>
> ifeq ($(BR2_PACKAGE_LIBSSH2),y)
> -LIBVIRT_CONF_OPTS += -Dssh2=enabled
> +LIBVIRT_CONF_OPTS += -Dlibssh2=enabled
> LIBVIRT_DEPENDENCIES += libssh2
> else
> -LIBVIRT_CONF_OPTS += -Dssh2=disabled
> +LIBVIRT_CONF_OPTS += -Dlibssh2=disabled
> endif
>
> ifeq ($(BR2_PACKAGE_LIBVIRT_LXC),y)
> --
> 2.34.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] 6+ messages in thread
* Re: [Buildroot] [PATCH 1/3] package/libvirt: fix ssh2 option
2022-01-09 20:00 [Buildroot] [PATCH 1/3] package/libvirt: fix ssh2 option Fabrice Fontaine
` (2 preceding siblings ...)
2022-01-09 20:24 ` [Buildroot] [PATCH 1/3] package/libvirt: fix ssh2 option Yann E. MORIN
@ 2022-01-27 16:57 ` Peter Korsgaard
3 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2022-01-27 16:57 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Jared Bents, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Fix the following build failure raised since commit
> fbf25acfbfd5a73b3560918bea081768abbe5723:
> output/build/libvirt-7.7.0/meson.build:1:0: ERROR: Unknown options: "ssh2"
> Fixes:
> - No autobuilder failures (yet)
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2021.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread