From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Cc: Rahul Bedarkar <rahulbedarkar89@gmail.com>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 1/2] package/gssdp: bump to version 1.6.3
Date: Fri, 29 Dec 2023 22:23:44 +0100 [thread overview]
Message-ID: <ZY844BO8q9TJOtzs@landeda> (raw)
In-Reply-To: <20231227100158.124316-1-fontaine.fabrice@gmail.com>
Fabrice, All,
On 2023-12-27 11:01 +0100, Fabrice Fontaine spake thusly:
> - libsoup has been replaced by libsoup3 with
> https://gitlab.gnome.org/GNOME/gssdp/-/commit/e223e6f75e370c3d9b2b402586521fe005f1a0da
> - Disable manpages which are enabled by default since their addition:
> https://gitlab.gnome.org/GNOME/gssdp/-/commit/1970906319eefa0bf48553e60ee67b5a75b9e1c5
>
> https://gitlab.gnome.org/GNOME/gssdp/-/blob/gssdp-1.6.3/NEWS
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/gssdp/Config.in | 8 ++++----
> package/gssdp/gssdp.hash | 4 ++--
> package/gssdp/gssdp.mk | 9 +++++----
> 3 files changed, 11 insertions(+), 10 deletions(-)
>
> diff --git a/package/gssdp/Config.in b/package/gssdp/Config.in
> index 80c5edfffc..5a9317f486 100644
> --- a/package/gssdp/Config.in
> +++ b/package/gssdp/Config.in
> @@ -1,10 +1,10 @@
> config BR2_PACKAGE_GSSDP
> bool "gssdp"
> - depends on BR2_USE_WCHAR # glib2, libsoup
> - depends on BR2_TOOLCHAIN_HAS_THREADS # glib2, libsoup
> - depends on BR2_USE_MMU # glib2, libsoup
> + depends on BR2_USE_WCHAR # glib2, libsoup3
> + depends on BR2_TOOLCHAIN_HAS_THREADS # glib2, libsoup3
> + depends on BR2_USE_MMU # glib2, libsoup3
> select BR2_PACKAGE_LIBGLIB2
> - select BR2_PACKAGE_LIBSOUP
> + select BR2_PACKAGE_LIBSOUP3
> help
> GSSDP implements resource discovery and announcement over
> SSDP.
> diff --git a/package/gssdp/gssdp.hash b/package/gssdp/gssdp.hash
> index 34ccfa8044..06bf51090f 100644
> --- a/package/gssdp/gssdp.hash
> +++ b/package/gssdp/gssdp.hash
> @@ -1,5 +1,5 @@
> -# Hash from: https://download.gnome.org/sources/gssdp/1.4/gssdp-1.4.0.1.sha256sum:
> -sha256 8676849d57fb822b8728856dbadebf3867f89ee47a0ec47a20045d011f431582 gssdp-1.4.0.1.tar.xz
> +# Hash from: https://download.gnome.org/sources/gssdp/1.6/gssdp-1.6.3.sha256sum:
> +sha256 2fedb5afdb22cf14d5498a39a773ca89788a250fcf70118783df821e1f3f3446 gssdp-1.6.3.tar.xz
>
> # Hash for license file:
> sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
> diff --git a/package/gssdp/gssdp.mk b/package/gssdp/gssdp.mk
> index f7ebb44acd..b512ace6d5 100644
> --- a/package/gssdp/gssdp.mk
> +++ b/package/gssdp/gssdp.mk
> @@ -4,15 +4,16 @@
> #
> ################################################################################
>
> -GSSDP_VERSION_MAJOR = 1.4
> -GSSDP_VERSION = $(GSSDP_VERSION_MAJOR).0.1
> +GSSDP_VERSION_MAJOR = 1.6
> +GSSDP_VERSION = $(GSSDP_VERSION_MAJOR).3
> GSSDP_SOURCE = gssdp-$(GSSDP_VERSION).tar.xz
> GSSDP_SITE = https://download.gnome.org/sources/gssdp/$(GSSDP_VERSION_MAJOR)
> GSSDP_LICENSE = LGPL-2.1+
> GSSDP_LICENSE_FILES = COPYING
> GSSDP_INSTALL_STAGING = YES
> -GSSDP_DEPENDENCIES = host-pkgconf libglib2 libsoup
> -GSSDP_CONF_OPTS = -Dexamples=false -Dgtk_doc=false -Dsniffer=false
> +GSSDP_DEPENDENCIES = host-pkgconf libglib2 libsoup3
> +GSSDP_CONF_OPTS = \
> + -Dexamples=false -Dgtk_doc=false -Dmanpages=false -Dsniffer=false
An assignment that does not fit on a single line should be split with
one item per line.
Applied to master with the above fixed, thanks.
Regards,
Yann E. MORIN.
> ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
> GSSDP_CONF_OPTS += -Dintrospection=true -Dvapi=true
> --
> 2.43.0
>
> _______________________________________________
> 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
prev parent reply other threads:[~2023-12-29 21:23 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-27 10:01 [Buildroot] [PATCH 1/2] package/gssdp: bump to version 1.6.3 Fabrice Fontaine
2023-12-27 10:01 ` [Buildroot] [PATCH 2/2] package/gupnp: bump to version 1.6.6 Fabrice Fontaine
2023-12-29 21:24 ` Yann E. MORIN
2023-12-29 21:23 ` Yann E. MORIN [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZY844BO8q9TJOtzs@landeda \
--to=yann.morin.1998@free.fr \
--cc=buildroot@buildroot.org \
--cc=fontaine.fabrice@gmail.com \
--cc=rahulbedarkar89@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.