Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4
@ 2022-05-17 23:47 Adrian Perez de Castro
  2022-05-17 23:47 ` [Buildroot] [PATCH 2/2] package/xdg-dbus-proxy: switch to the meson build system Adrian Perez de Castro
  2022-07-23 17:52 ` [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4 Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 4+ messages in thread
From: Adrian Perez de Castro @ 2022-05-17 23:47 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Adrian Perez de Castro

This version includes a few fixes, and a new Meson-based build system.
For now this only updates to the latest version, the switch to Meson is
left for a follow-up patch. Release notes can be found at:

  https://github.com/flatpak/xdg-dbus-proxy/releases/tag/0.1.4

Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
---
 package/xdg-dbus-proxy/xdg-dbus-proxy.hash | 4 ++--
 package/xdg-dbus-proxy/xdg-dbus-proxy.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/xdg-dbus-proxy/xdg-dbus-proxy.hash b/package/xdg-dbus-proxy/xdg-dbus-proxy.hash
index b7aa9ac701..7bbea72b03 100644
--- a/package/xdg-dbus-proxy/xdg-dbus-proxy.hash
+++ b/package/xdg-dbus-proxy/xdg-dbus-proxy.hash
@@ -1,5 +1,5 @@
-# From https://github.com/flatpak/xdg-dbus-proxy/releases/tag/0.1.3
-sha256  03b5d28ca879253ddbbce31098909becca1495ea811a6377a492e28f16c09b9b  xdg-dbus-proxy-0.1.3.tar.xz
+# From https://github.com/flatpak/xdg-dbus-proxy/releases/tag/0.1.4
+sha256  1ec0eab53d1e49966d722352bcfd51ac402dce5190baedc749a8541e761670ab  xdg-dbus-proxy-0.1.4.tar.xz
 
 # Hash for license files:
 sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
diff --git a/package/xdg-dbus-proxy/xdg-dbus-proxy.mk b/package/xdg-dbus-proxy/xdg-dbus-proxy.mk
index 9c4449c7bb..b07cf787ed 100644
--- a/package/xdg-dbus-proxy/xdg-dbus-proxy.mk
+++ b/package/xdg-dbus-proxy/xdg-dbus-proxy.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-XDG_DBUS_PROXY_VERSION = 0.1.3
+XDG_DBUS_PROXY_VERSION = 0.1.4
 XDG_DBUS_PROXY_SITE = https://github.com/flatpak/xdg-dbus-proxy/releases/download/$(XDG_DBUS_PROXY_VERSION)
 XDG_DBUS_PROXY_SOURCE = xdg-dbus-proxy-$(XDG_DBUS_PROXY_VERSION).tar.xz
 XDG_DBUS_PROXY_DEPENDENCIES = host-pkgconf libglib2
-- 
2.36.1

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

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

* [Buildroot] [PATCH 2/2] package/xdg-dbus-proxy: switch to the meson build system
  2022-05-17 23:47 [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4 Adrian Perez de Castro
@ 2022-05-17 23:47 ` Adrian Perez de Castro
  2022-07-23 17:52 ` [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4 Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 4+ messages in thread
From: Adrian Perez de Castro @ 2022-05-17 23:47 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Adrian Perez de Castro

Version 0.1.4 introduced a Meson build system, and upstream seems to
have the intention to abandon the previous autotools based one. Switch
to Meson for future proofing.

Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
---
 package/xdg-dbus-proxy/xdg-dbus-proxy.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/xdg-dbus-proxy/xdg-dbus-proxy.mk b/package/xdg-dbus-proxy/xdg-dbus-proxy.mk
index b07cf787ed..48f49dba2a 100644
--- a/package/xdg-dbus-proxy/xdg-dbus-proxy.mk
+++ b/package/xdg-dbus-proxy/xdg-dbus-proxy.mk
@@ -12,6 +12,6 @@ XDG_DBUS_PROXY_DEPENDENCIES = host-pkgconf libglib2
 XDG_DBUS_PROXY_LICENSE = LGPL-2.1+
 XDG_DBUS_PROXY_LICENSE_FILES = COPYING
 
-XDG_DBUS_PROXY_CONF_OPTS = --disable-man
+XDG_DBUS_PROXY_CONF_OPTS = -Dman=disabled -Dtests=false
 
-$(eval $(autotools-package))
+$(eval $(meson-package))
-- 
2.36.1

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

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

* Re: [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4
  2022-05-17 23:47 [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4 Adrian Perez de Castro
  2022-05-17 23:47 ` [Buildroot] [PATCH 2/2] package/xdg-dbus-proxy: switch to the meson build system Adrian Perez de Castro
@ 2022-07-23 17:52 ` Thomas Petazzoni via buildroot
  2022-08-16  8:28   ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-07-23 17:52 UTC (permalink / raw)
  To: Adrian Perez de Castro; +Cc: Eric Le Bihan, buildroot

On Wed, 18 May 2022 02:47:29 +0300
Adrian Perez de Castro <aperez@igalia.com> wrote:

> This version includes a few fixes, and a new Meson-based build system.
> For now this only updates to the latest version, the switch to Meson is
> left for a follow-up patch. Release notes can be found at:
> 
>   https://github.com/flatpak/xdg-dbus-proxy/releases/tag/0.1.4
> 
> Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
> ---
>  package/xdg-dbus-proxy/xdg-dbus-proxy.hash | 4 ++--
>  package/xdg-dbus-proxy/xdg-dbus-proxy.mk   | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)

Both applied to master, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4
  2022-07-23 17:52 ` [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4 Thomas Petazzoni via buildroot
@ 2022-08-16  8:28   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-08-16  8:28 UTC (permalink / raw)
  To: Thomas Petazzoni via buildroot
  Cc: Adrian Perez de Castro, Eric Le Bihan, Thomas Petazzoni

>>>>> "Thomas" == Thomas Petazzoni via buildroot <buildroot@buildroot.org> writes:

 > On Wed, 18 May 2022 02:47:29 +0300
 > Adrian Perez de Castro <aperez@igalia.com> wrote:

 >> This version includes a few fixes, and a new Meson-based build system.
 >> For now this only updates to the latest version, the switch to Meson is
 >> left for a follow-up patch. Release notes can be found at:
 >> 
 >> https://github.com/flatpak/xdg-dbus-proxy/releases/tag/0.1.4
 >> 
 >> Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>

Committed to 2022.05.x and 2022.02.x given the fixes, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-08-16  8:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-17 23:47 [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4 Adrian Perez de Castro
2022-05-17 23:47 ` [Buildroot] [PATCH 2/2] package/xdg-dbus-proxy: switch to the meson build system Adrian Perez de Castro
2022-07-23 17:52 ` [Buildroot] [PATCH 1/2] package/xdg-dbus-proxy: bump to version 0.1.4 Thomas Petazzoni via buildroot
2022-08-16  8:28   ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox