All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency
@ 2021-07-18 19:57 Fabrice Fontaine
  2021-07-18 19:57 ` [Buildroot] [PATCH 2/2] package/libgudev: bump to version 236 Fabrice Fontaine
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Fabrice Fontaine @ 2021-07-18 19:57 UTC (permalink / raw)
  To: buildroot

gobject-introspection is an optional dependency (which is enabled by
default) since at least version 219 and
https://gitlab.gnome.org/GNOME/libgudev/-/commit/43a593b5b4097b887e49eaacafbc1337bd709718

Fixes:
 - http://autobuild.buildroot.org/results/3bedc9fa3b14939825fb9cdebc6977057c3f6118

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libgudev/libgudev.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/libgudev/libgudev.mk b/package/libgudev/libgudev.mk
index 63d592f9ac..9aa64c2c22 100644
--- a/package/libgudev/libgudev.mk
+++ b/package/libgudev/libgudev.mk
@@ -13,4 +13,11 @@ LIBGUDEV_LICENSE = LGPL-2.1+
 LIBGUDEV_LICENSE_FILES = COPYING
 LIBGUDEV_CONF_OPTS = --disable-umockdev
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+LIBGUDEV_CONF_OPTS += --enable-introspection
+LIBGUDEV_DEPENDENCIES += gobject-introspection
+else
+LIBGUDEV_CONF_OPTS += --disable-introspection
+endif
+
 $(eval $(autotools-package))
-- 
2.30.2

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

* [Buildroot] [PATCH 2/2] package/libgudev: bump to version 236
  2021-07-18 19:57 [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency Fabrice Fontaine
@ 2021-07-18 19:57 ` Fabrice Fontaine
  2021-07-20  6:08   ` Yegor Yefremov
  2021-07-20  6:07 ` [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency Yegor Yefremov
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Fabrice Fontaine @ 2021-07-18 19:57 UTC (permalink / raw)
  To: buildroot

- Switch to meson-package
- Update indentation in hash file (two spaces)

https://gitlab.gnome.org/GNOME/libgudev/-/blob/236/NEWS

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libgudev/libgudev.hash |  6 +++---
 package/libgudev/libgudev.mk   | 10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/package/libgudev/libgudev.hash b/package/libgudev/libgudev.hash
index bee394601e..1040ffb0c0 100644
--- a/package/libgudev/libgudev.hash
+++ b/package/libgudev/libgudev.hash
@@ -1,5 +1,5 @@
-# From http://ftp.gnome.org/pub/GNOME/sources/libgudev/233/libgudev-233.sha256sum
-sha256 587c4970eb23f4e2deee2cb1fb7838c94a78c578f41ce12cac0a3f4a80dabb03  libgudev-233.tar.xz
+# From http://ftp.gnome.org/pub/GNOME/sources/libgudev/236/libgudev-236.sha256sum
+sha256  e50369d06d594bae615eb7aeb787de304ebaad07a26d1043cef8e9c7ab7c9524  libgudev-236.tar.xz
 
 # Hash for license file:
-sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
+sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
diff --git a/package/libgudev/libgudev.mk b/package/libgudev/libgudev.mk
index 9aa64c2c22..eabd446d7b 100644
--- a/package/libgudev/libgudev.mk
+++ b/package/libgudev/libgudev.mk
@@ -4,20 +4,20 @@
 #
 ################################################################################
 
-LIBGUDEV_VERSION = 233
+LIBGUDEV_VERSION = 236
 LIBGUDEV_SOURCE = libgudev-$(LIBGUDEV_VERSION).tar.xz
 LIBGUDEV_SITE = http://ftp.gnome.org/pub/GNOME/sources/libgudev/$(LIBGUDEV_VERSION)
 LIBGUDEV_INSTALL_STAGING = YES
 LIBGUDEV_DEPENDENCIES = host-pkgconf udev libglib2
 LIBGUDEV_LICENSE = LGPL-2.1+
 LIBGUDEV_LICENSE_FILES = COPYING
-LIBGUDEV_CONF_OPTS = --disable-umockdev
+LIBGUDEV_CONF_OPTS = -Dtests=disabled -Dvapi=disabled
 
 ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
-LIBGUDEV_CONF_OPTS += --enable-introspection
+LIBGUDEV_CONF_OPTS += -Dintrospection=enabled
 LIBGUDEV_DEPENDENCIES += gobject-introspection
 else
-LIBGUDEV_CONF_OPTS += --disable-introspection
+LIBGUDEV_CONF_OPTS += -Dintrospection=disabled
 endif
 
-$(eval $(autotools-package))
+$(eval $(meson-package))
-- 
2.30.2

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

* [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency
  2021-07-18 19:57 [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency Fabrice Fontaine
  2021-07-18 19:57 ` [Buildroot] [PATCH 2/2] package/libgudev: bump to version 236 Fabrice Fontaine
@ 2021-07-20  6:07 ` Yegor Yefremov
  2021-07-21 21:54 ` Thomas Petazzoni
  2021-08-04 18:06 ` Peter Korsgaard
  3 siblings, 0 replies; 6+ messages in thread
From: Yegor Yefremov @ 2021-07-20  6:07 UTC (permalink / raw)
  To: buildroot

On Sun, Jul 18, 2021 at 9:58 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> gobject-introspection is an optional dependency (which is enabled by
> default) since at least version 219 and
> https://gitlab.gnome.org/GNOME/libgudev/-/commit/43a593b5b4097b887e49eaacafbc1337bd709718
>
> Fixes:
>  - http://autobuild.buildroot.org/results/3bedc9fa3b14939825fb9cdebc6977057c3f6118
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>

> ---
>  package/libgudev/libgudev.mk | 7 +++++++
>  1 file changed, 7 insertions(+)
>
> diff --git a/package/libgudev/libgudev.mk b/package/libgudev/libgudev.mk
> index 63d592f9ac..9aa64c2c22 100644
> --- a/package/libgudev/libgudev.mk
> +++ b/package/libgudev/libgudev.mk
> @@ -13,4 +13,11 @@ LIBGUDEV_LICENSE = LGPL-2.1+
>  LIBGUDEV_LICENSE_FILES = COPYING
>  LIBGUDEV_CONF_OPTS = --disable-umockdev
>
> +ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
> +LIBGUDEV_CONF_OPTS += --enable-introspection
> +LIBGUDEV_DEPENDENCIES += gobject-introspection
> +else
> +LIBGUDEV_CONF_OPTS += --disable-introspection
> +endif
> +
>  $(eval $(autotools-package))
> --
> 2.30.2
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] package/libgudev: bump to version 236
  2021-07-18 19:57 ` [Buildroot] [PATCH 2/2] package/libgudev: bump to version 236 Fabrice Fontaine
@ 2021-07-20  6:08   ` Yegor Yefremov
  0 siblings, 0 replies; 6+ messages in thread
From: Yegor Yefremov @ 2021-07-20  6:08 UTC (permalink / raw)
  To: buildroot

On Sun, Jul 18, 2021 at 9:58 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> - Switch to meson-package
> - Update indentation in hash file (two spaces)
>
> https://gitlab.gnome.org/GNOME/libgudev/-/blob/236/NEWS
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>

> ---
>  package/libgudev/libgudev.hash |  6 +++---
>  package/libgudev/libgudev.mk   | 10 +++++-----
>  2 files changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/package/libgudev/libgudev.hash b/package/libgudev/libgudev.hash
> index bee394601e..1040ffb0c0 100644
> --- a/package/libgudev/libgudev.hash
> +++ b/package/libgudev/libgudev.hash
> @@ -1,5 +1,5 @@
> -# From http://ftp.gnome.org/pub/GNOME/sources/libgudev/233/libgudev-233.sha256sum
> -sha256 587c4970eb23f4e2deee2cb1fb7838c94a78c578f41ce12cac0a3f4a80dabb03  libgudev-233.tar.xz
> +# From http://ftp.gnome.org/pub/GNOME/sources/libgudev/236/libgudev-236.sha256sum
> +sha256  e50369d06d594bae615eb7aeb787de304ebaad07a26d1043cef8e9c7ab7c9524  libgudev-236.tar.xz
>
>  # Hash for license file:
> -sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
> +sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
> diff --git a/package/libgudev/libgudev.mk b/package/libgudev/libgudev.mk
> index 9aa64c2c22..eabd446d7b 100644
> --- a/package/libgudev/libgudev.mk
> +++ b/package/libgudev/libgudev.mk
> @@ -4,20 +4,20 @@
>  #
>  ################################################################################
>
> -LIBGUDEV_VERSION = 233
> +LIBGUDEV_VERSION = 236
>  LIBGUDEV_SOURCE = libgudev-$(LIBGUDEV_VERSION).tar.xz
>  LIBGUDEV_SITE = http://ftp.gnome.org/pub/GNOME/sources/libgudev/$(LIBGUDEV_VERSION)
>  LIBGUDEV_INSTALL_STAGING = YES
>  LIBGUDEV_DEPENDENCIES = host-pkgconf udev libglib2
>  LIBGUDEV_LICENSE = LGPL-2.1+
>  LIBGUDEV_LICENSE_FILES = COPYING
> -LIBGUDEV_CONF_OPTS = --disable-umockdev
> +LIBGUDEV_CONF_OPTS = -Dtests=disabled -Dvapi=disabled
>
>  ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
> -LIBGUDEV_CONF_OPTS += --enable-introspection
> +LIBGUDEV_CONF_OPTS += -Dintrospection=enabled
>  LIBGUDEV_DEPENDENCIES += gobject-introspection
>  else
> -LIBGUDEV_CONF_OPTS += --disable-introspection
> +LIBGUDEV_CONF_OPTS += -Dintrospection=disabled
>  endif
>
> -$(eval $(autotools-package))
> +$(eval $(meson-package))
> --
> 2.30.2
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency
  2021-07-18 19:57 [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency Fabrice Fontaine
  2021-07-18 19:57 ` [Buildroot] [PATCH 2/2] package/libgudev: bump to version 236 Fabrice Fontaine
  2021-07-20  6:07 ` [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency Yegor Yefremov
@ 2021-07-21 21:54 ` Thomas Petazzoni
  2021-08-04 18:06 ` Peter Korsgaard
  3 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2021-07-21 21:54 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Eric Le Bihan, Nathaniel Roach, buildroot

On Sun, 18 Jul 2021 21:57:11 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> gobject-introspection is an optional dependency (which is enabled by
> default) since at least version 219 and
> https://gitlab.gnome.org/GNOME/libgudev/-/commit/43a593b5b4097b887e49eaacafbc1337bd709718
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/3bedc9fa3b14939825fb9cdebc6977057c3f6118
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/libgudev/libgudev.mk | 7 +++++++
>  1 file changed, 7 insertions(+)

Both applied, thanks!

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

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

* Re: [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency
  2021-07-18 19:57 [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency Fabrice Fontaine
                   ` (2 preceding siblings ...)
  2021-07-21 21:54 ` Thomas Petazzoni
@ 2021-08-04 18:06 ` Peter Korsgaard
  3 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2021-08-04 18:06 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Eric Le Bihan, Nathaniel Roach, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > gobject-introspection is an optional dependency (which is enabled by
 > default) since at least version 219 and
 > https://gitlab.gnome.org/GNOME/libgudev/-/commit/43a593b5b4097b887e49eaacafbc1337bd709718

 > Fixes:
 >  - http://autobuild.buildroot.org/results/3bedc9fa3b14939825fb9cdebc6977057c3f6118

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2021.02.x and 2021.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-08-04 18:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-18 19:57 [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency Fabrice Fontaine
2021-07-18 19:57 ` [Buildroot] [PATCH 2/2] package/libgudev: bump to version 236 Fabrice Fontaine
2021-07-20  6:08   ` Yegor Yefremov
2021-07-20  6:07 ` [Buildroot] [PATCH 1/2] package/libgudev: add gobject-introspection optional dependency Yegor Yefremov
2021-07-21 21:54 ` Thomas Petazzoni
2021-08-04 18:06 ` Peter Korsgaard

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.