All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling
@ 2016-04-21 21:20 Gustavo Zacarias
  2016-04-21 21:20 ` [Buildroot] [PATCH 2/2] libinput: bump to version 1.2.4 Gustavo Zacarias
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2016-04-21 21:20 UTC (permalink / raw)
  To: buildroot

Otherwise since it's automatic it was left to random depending on the
libgtk3/libinput build order.

Also collapse all that whitespace.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libinput/libinput.mk | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/package/libinput/libinput.mk b/package/libinput/libinput.mk
index 6d8b7b6..2954760 100644
--- a/package/libinput/libinput.mk
+++ b/package/libinput/libinput.mk
@@ -7,13 +7,18 @@
 LIBINPUT_VERSION = 1.1.5
 LIBINPUT_SOURCE = libinput-$(LIBINPUT_VERSION).tar.xz
 LIBINPUT_SITE = http://www.freedesktop.org/software/libinput
-LIBINPUT_LICENSE = MIT
-LIBINPUT_LICENSE_FILES = COPYING
-
 LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev udev
 LIBINPUT_INSTALL_STAGING = YES
-
+LIBINPUT_LICENSE = MIT
+LIBINPUT_LICENSE_FILES = COPYING
 # Tests need fork, so just disable them everywhere.
 LIBINPUT_CONF_OPTS = --disable-tests
 
+ifeq ($(BR2_PACKAGE_LIBGTK3),y)
+LIBINPUT_CONF_OPTS += --enable-event-gui
+LIBINPUT_DEPENDENCIES += libgtk3
+else
+LIBINOUT_CONF_OPTS += --disable-event-gui
+endif
+
 $(eval $(autotools-package))
-- 
2.7.3

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

* [Buildroot] [PATCH 2/2] libinput: bump to version 1.2.4
  2016-04-21 21:20 [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling Gustavo Zacarias
@ 2016-04-21 21:20 ` Gustavo Zacarias
  2016-04-22 20:07   ` Peter Korsgaard
  2016-04-21 21:39 ` [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling Thomas Petazzoni
  2016-04-22 20:07 ` Peter Korsgaard
  2 siblings, 1 reply; 6+ messages in thread
From: Gustavo Zacarias @ 2016-04-21 21:20 UTC (permalink / raw)
  To: buildroot

Forcibly disable wacom support since we haven't got a libwacom package
yet.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libinput/libinput.hash | 4 ++--
 package/libinput/libinput.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/libinput/libinput.hash b/package/libinput/libinput.hash
index ea4c8e7..43fcf5d 100644
--- a/package/libinput/libinput.hash
+++ b/package/libinput/libinput.hash
@@ -1,2 +1,2 @@
-# From http://lists.freedesktop.org/archives/wayland-devel/2016-January/026701.html
-sha256	5e08c45dbb8bf32490cc6cd626da098564d646d161a07cba2e3adbd9745c0622	libinput-1.1.5.tar.xz
+# From https://lists.freedesktop.org/archives/wayland-devel/2016-April/028215.html
+sha256	aee3650ad2a864ab9a10e7e63df543cc2b475f6bf3974751037a2df325dabbb1	libinput-1.2.4.tar.xz
diff --git a/package/libinput/libinput.mk b/package/libinput/libinput.mk
index 2954760..d994d29 100644
--- a/package/libinput/libinput.mk
+++ b/package/libinput/libinput.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBINPUT_VERSION = 1.1.5
+LIBINPUT_VERSION = 1.2.4
 LIBINPUT_SOURCE = libinput-$(LIBINPUT_VERSION).tar.xz
 LIBINPUT_SITE = http://www.freedesktop.org/software/libinput
 LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev udev
@@ -12,7 +12,7 @@ LIBINPUT_INSTALL_STAGING = YES
 LIBINPUT_LICENSE = MIT
 LIBINPUT_LICENSE_FILES = COPYING
 # Tests need fork, so just disable them everywhere.
-LIBINPUT_CONF_OPTS = --disable-tests
+LIBINPUT_CONF_OPTS = --disable-tests --disable-libwacom
 
 ifeq ($(BR2_PACKAGE_LIBGTK3),y)
 LIBINPUT_CONF_OPTS += --enable-event-gui
-- 
2.7.3

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

* [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling
  2016-04-21 21:20 [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling Gustavo Zacarias
  2016-04-21 21:20 ` [Buildroot] [PATCH 2/2] libinput: bump to version 1.2.4 Gustavo Zacarias
@ 2016-04-21 21:39 ` Thomas Petazzoni
  2016-04-22 13:31   ` Gustavo Zacarias
  2016-04-22 20:07 ` Peter Korsgaard
  2 siblings, 1 reply; 6+ messages in thread
From: Thomas Petazzoni @ 2016-04-21 21:39 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 21 Apr 2016 18:20:51 -0300, Gustavo Zacarias wrote:

> diff --git a/package/libinput/libinput.mk b/package/libinput/libinput.mk
> index 6d8b7b6..2954760 100644
> --- a/package/libinput/libinput.mk
> +++ b/package/libinput/libinput.mk
> @@ -7,13 +7,18 @@
>  LIBINPUT_VERSION = 1.1.5
>  LIBINPUT_SOURCE = libinput-$(LIBINPUT_VERSION).tar.xz
>  LIBINPUT_SITE = http://www.freedesktop.org/software/libinput
> -LIBINPUT_LICENSE = MIT
> -LIBINPUT_LICENSE_FILES = COPYING
> -
>  LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev udev
>  LIBINPUT_INSTALL_STAGING = YES
> -
> +LIBINPUT_LICENSE = MIT
> +LIBINPUT_LICENSE_FILES = COPYING

You say in the commit log you're doing whitespace changes, but it seems
like the licence lines were moved down in the file. For what reason?

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling
  2016-04-21 21:39 ` [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling Thomas Petazzoni
@ 2016-04-22 13:31   ` Gustavo Zacarias
  0 siblings, 0 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2016-04-22 13:31 UTC (permalink / raw)
  To: buildroot

On 21/04/16 18:39, Thomas Petazzoni wrote:

> You say in the commit log you're doing whitespace changes, but it seems
> like the licence lines were moved down in the file. For what reason?
>
> Thomas

Hi.
I tend to like licensing info below, so yes i've moved it down, just 
pure habit.
Regards.

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

* [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling
  2016-04-21 21:20 [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling Gustavo Zacarias
  2016-04-21 21:20 ` [Buildroot] [PATCH 2/2] libinput: bump to version 1.2.4 Gustavo Zacarias
  2016-04-21 21:39 ` [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling Thomas Petazzoni
@ 2016-04-22 20:07 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2016-04-22 20:07 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Otherwise since it's automatic it was left to random depending on the
 > libgtk3/libinput build order.

 > Also collapse all that whitespace.

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] libinput: bump to version 1.2.4
  2016-04-21 21:20 ` [Buildroot] [PATCH 2/2] libinput: bump to version 1.2.4 Gustavo Zacarias
@ 2016-04-22 20:07   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2016-04-22 20:07 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Forcibly disable wacom support since we haven't got a libwacom package
 > yet.

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2016-04-22 20:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-21 21:20 [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling Gustavo Zacarias
2016-04-21 21:20 ` [Buildroot] [PATCH 2/2] libinput: bump to version 1.2.4 Gustavo Zacarias
2016-04-22 20:07   ` Peter Korsgaard
2016-04-21 21:39 ` [Buildroot] [PATCH 1/2] libinput: add explicit event-gui handling Thomas Petazzoni
2016-04-22 13:31   ` Gustavo Zacarias
2016-04-22 20:07 ` 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.