* [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package
@ 2015-04-18 12:40 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: " Bernd Kuhls
` (31 more replies)
0 siblings, 32 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/Config.in | 1 +
package/x11r7/xcb-util-renderutil/Config.in | 15 +++++++++++++++
.../x11r7/xcb-util-renderutil/xcb-util-renderutil.hash | 2 ++
.../x11r7/xcb-util-renderutil/xcb-util-renderutil.mk | 15 +++++++++++++++
4 files changed, 33 insertions(+)
create mode 100644 package/x11r7/xcb-util-renderutil/Config.in
create mode 100644 package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
create mode 100644 package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 608837f..4166a96 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -19,6 +19,7 @@ if BR2_PACKAGE_XORG7
source package/x11r7/xcb-util/Config.in
source package/x11r7/xcb-util-image/Config.in
source package/x11r7/xcb-util-keysyms/Config.in
+ source package/x11r7/xcb-util-renderutil/Config.in
source package/x11r7/xcb-util-wm/Config.in
source package/x11r7/xlib_libFS/Config.in
source package/x11r7/xlib_libICE/Config.in
diff --git a/package/x11r7/xcb-util-renderutil/Config.in b/package/x11r7/xcb-util-renderutil/Config.in
new file mode 100644
index 0000000..9675278
--- /dev/null
+++ b/package/x11r7/xcb-util-renderutil/Config.in
@@ -0,0 +1,15 @@
+config BR2_PACKAGE_XCB_UTIL_RENDERUTIL
+ bool "xcb-util-renderutil"
+ select BR2_PACKAGE_XCB_UTIL
+ help
+ The XCB util modules provides a number of libraries which sit on top
+ of libxcb, the core X protocol library, and some of the extension
+ libraries. These experimental libraries provide convenience functions
+ and interfaces which make the raw X protocol more usable. Some of the
+ libraries also provide client-side code which is not strictly part of
+ the X protocol but which have traditionally been provided by Xlib.
+
+ XCB util-renderutil module provides the following library:
+ - renderutil: Convenience functions for the Render extension.
+
+ http://xcb.freedesktop.org/
diff --git a/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
new file mode 100644
index 0000000..e5c47ca
--- /dev/null
+++ b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-March/002555.html
+sha1 b55a92cd96c3ec1be9a26963df6d5f16e68fffea xcb-util-cursor-0.1.2.tar.bz2
diff --git a/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
new file mode 100644
index 0000000..9e6683b
--- /dev/null
+++ b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# xcb-util-renderutil
+#
+################################################################################
+
+XCB_UTIL_RENDERUTIL_VERSION = 0.3.9
+XCB_UTIL_RENDERUTIL_SITE = http://xcb.freedesktop.org/dist
+XCB_UTIL_RENDERUTIL_SOURCE = xcb-util-renderutil-$(XCB_UTIL_RENDERUTIL_VERSION).tar.bz2
+XCB_UTIL_RENDERUTIL_LICENSE = MIT
+XCB_UTIL_RENDERUTIL_LICENSE_FILES = COPYING
+XCB_UTIL_RENDERUTIL_INSTALL_STAGING = YES
+XCB_UTIL_RENDERUTIL_DEPENDENCIES = xcb-util
+
+$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: new package
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 16:38 ` Thomas Petazzoni
2015-04-18 12:40 ` [Buildroot] [PATCH 03/32] package/x11r7/xlib_libXdmcp: bump to version 1.1.2 Bernd Kuhls
` (30 subsequent siblings)
31 siblings, 1 reply; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/Config.in | 1 +
package/x11r7/xcb-util-cursor/Config.in | 17 +++++++++++++++++
package/x11r7/xcb-util-cursor/xcb-util-cursor.hash | 2 ++
package/x11r7/xcb-util-cursor/xcb-util-cursor.mk | 15 +++++++++++++++
4 files changed, 35 insertions(+)
create mode 100644 package/x11r7/xcb-util-cursor/Config.in
create mode 100644 package/x11r7/xcb-util-cursor/xcb-util-cursor.hash
create mode 100644 package/x11r7/xcb-util-cursor/xcb-util-cursor.mk
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 4166a96..572963c 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -17,6 +17,7 @@ if BR2_PACKAGE_XORG7
source package/x11r7/libxcb/Config.in
source package/x11r7/libepoxy/Config.in
source package/x11r7/xcb-util/Config.in
+ source package/x11r7/xcb-util-cursor/Config.in
source package/x11r7/xcb-util-image/Config.in
source package/x11r7/xcb-util-keysyms/Config.in
source package/x11r7/xcb-util-renderutil/Config.in
diff --git a/package/x11r7/xcb-util-cursor/Config.in b/package/x11r7/xcb-util-cursor/Config.in
new file mode 100644
index 0000000..6479363
--- /dev/null
+++ b/package/x11r7/xcb-util-cursor/Config.in
@@ -0,0 +1,17 @@
+config BR2_PACKAGE_XCB_UTIL_CURSOR
+ bool "xcb-util-cursor"
+ select BR2_PACKAGE_XCB_UTIL
+ select BR2_PACKAGE_XCB_UTIL_IMAGE
+ select BR2_PACKAGE_XCB_UTIL_RENDERUTIL
+ help
+ The XCB util modules provides a number of libraries which sit on top
+ of libxcb, the core X protocol library, and some of the extension
+ libraries. These experimental libraries provide convenience functions
+ and interfaces which make the raw X protocol more usable. Some of the
+ libraries also provide client-side code which is not strictly part of
+ the X protocol but which have traditionally been provided by Xlib.
+
+ XCB util-cursor module provides the following libraries:
+ - cursor: port of libxcursor
+
+ http://xcb.freedesktop.org/
diff --git a/package/x11r7/xcb-util-cursor/xcb-util-cursor.hash b/package/x11r7/xcb-util-cursor/xcb-util-cursor.hash
new file mode 100644
index 0000000..e5c47ca
--- /dev/null
+++ b/package/x11r7/xcb-util-cursor/xcb-util-cursor.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-March/002555.html
+sha1 b55a92cd96c3ec1be9a26963df6d5f16e68fffea xcb-util-cursor-0.1.2.tar.bz2
diff --git a/package/x11r7/xcb-util-cursor/xcb-util-cursor.mk b/package/x11r7/xcb-util-cursor/xcb-util-cursor.mk
new file mode 100644
index 0000000..65704a1
--- /dev/null
+++ b/package/x11r7/xcb-util-cursor/xcb-util-cursor.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# xcb-util-cursor
+#
+################################################################################
+
+XCB_UTIL_CURSOR_VERSION = 0.1.2
+XCB_UTIL_CURSOR_SITE = http://xcb.freedesktop.org/dist
+XCB_UTIL_CURSOR_SOURCE = xcb-util-cursor-$(XCB_UTIL_CURSOR_VERSION).tar.bz2
+XCB_UTIL_CURSOR_LICENSE = MIT
+XCB_UTIL_CURSOR_LICENSE_FILES = COPYING
+XCB_UTIL_CURSOR_INSTALL_STAGING = YES
+XCB_UTIL_CURSOR_DEPENDENCIES = xcb-util xcb-util-image xcb-util-renderutil
+
+$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 03/32] package/x11r7/xlib_libXdmcp: bump to version 1.1.2
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 04/32] package/x11r7/xdriver_xf86-input-synaptics: bump version to 1.8.2 Bernd Kuhls
` (29 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xlib_libXdmcp/xlib_libXdmcp.hash | 4 ++--
package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.hash b/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.hash
index 8aff93b..6b50cb1 100644
--- a/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.hash
+++ b/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.hash
@@ -1,2 +1,2 @@
-# From http://lists.freedesktop.org/archives/xorg/2012-March/054007.html
-sha256 9ace6d4230f9dce4ed090692f82f613253ada8f887b23b3d8ff3dd4e3a7c118e libXdmcp-1.1.1.tar.bz2
+# From http://lists.x.org/archives/xorg-announce/2015-March/002554.html
+sha256 81fe09867918fff258296e1e1e159f0dc639cb30d201c53519f25ab73af4e4e2 libXdmcp-1.1.2.tar.bz2
diff --git a/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk b/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk
index 866f10b..119c018 100644
--- a/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk
+++ b/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XLIB_LIBXDMCP_VERSION = 1.1.1
+XLIB_LIBXDMCP_VERSION = 1.1.2
XLIB_LIBXDMCP_SOURCE = libXdmcp-$(XLIB_LIBXDMCP_VERSION).tar.bz2
XLIB_LIBXDMCP_SITE = http://xorg.freedesktop.org/releases/individual/lib
XLIB_LIBXDMCP_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 04/32] package/x11r7/xdriver_xf86-input-synaptics: bump version to 1.8.2
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 03/32] package/x11r7/xlib_libXdmcp: bump to version 1.1.2 Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 05/32] package/x11r7/xdriver_xf86-input-evdev: bump version to 2.9.2 Bernd Kuhls
` (28 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
.../xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.hash | 4 ++--
.../xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.hash b/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.hash
index 60dfee2..7b7216d 100644
--- a/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.hash
+++ b/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.hash
@@ -1,2 +1,2 @@
-# From http://lists.x.org/archives/xorg-announce/2015-January/002516.html
-sha256 14e7d54f81c2a2503f8acbe5e265dc336a0f2b30d007657d7afbeff979821c11 xf86-input-synaptics-1.7.8.tar.bz2
+# From http://lists.x.org/archives/xorg-announce/2015-March/002556.html
+sha256 7b0e164ebd02a680e0c695955e783059f37edb0c2656398e0a972adc8e698c80 xf86-input-synaptics-1.8.2.tar.bz2
diff --git a/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk b/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
index 1c625ea..f180405 100644
--- a/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
+++ b/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XDRIVER_XF86_INPUT_SYNAPTICS_VERSION = 1.7.8
+XDRIVER_XF86_INPUT_SYNAPTICS_VERSION = 1.8.2
XDRIVER_XF86_INPUT_SYNAPTICS_SOURCE = xf86-input-synaptics-$(XDRIVER_XF86_INPUT_SYNAPTICS_VERSION).tar.bz2
XDRIVER_XF86_INPUT_SYNAPTICS_SITE = http://xorg.freedesktop.org/releases/individual/driver
XDRIVER_XF86_INPUT_SYNAPTICS_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 05/32] package/x11r7/xdriver_xf86-input-evdev: bump version to 2.9.2
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (2 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 04/32] package/x11r7/xdriver_xf86-input-synaptics: bump version to 1.8.2 Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 06/32] package/x11r7/xdriver_xf86-video-trident: bump version to 1.3.7, add hash Bernd Kuhls
` (27 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
.../x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.hash | 4 ++--
package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.hash b/package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.hash
index ea5233e..330ac30 100644
--- a/package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.hash
+++ b/package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.hash
@@ -1,2 +1,2 @@
-# From http://lists.x.org/archives/xorg-announce/2014-November/002499.html
-sha256 0ce30328adfeac90a6f4b508d992fb834d8e50b484b29d3d58cf6683fa8502f9 xf86-input-evdev-2.9.1.tar.bz2
+# From http://lists.x.org/archives/xorg-announce/2015-March/002557.html
+sha256 792329b531afc6928ccda94e4b51a5520d4ddf8ef9a00890a5d0d31898acefec xf86-input-evdev-2.9.2.tar.bz2
diff --git a/package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.mk b/package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.mk
index 5f029a2..6019412 100644
--- a/package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.mk
+++ b/package/x11r7/xdriver_xf86-input-evdev/xdriver_xf86-input-evdev.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XDRIVER_XF86_INPUT_EVDEV_VERSION = 2.9.1
+XDRIVER_XF86_INPUT_EVDEV_VERSION = 2.9.2
XDRIVER_XF86_INPUT_EVDEV_SOURCE = xf86-input-evdev-$(XDRIVER_XF86_INPUT_EVDEV_VERSION).tar.bz2
XDRIVER_XF86_INPUT_EVDEV_SITE = http://xorg.freedesktop.org/releases/individual/driver
XDRIVER_XF86_INPUT_EVDEV_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 06/32] package/x11r7/xdriver_xf86-video-trident: bump version to 1.3.7, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (3 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 05/32] package/x11r7/xdriver_xf86-input-evdev: bump version to 2.9.2 Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 07/32] package/x11r7/xdriver_xf86-input-vmmouse: " Bernd Kuhls
` (26 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Removed patches committed upstream:
http://lists.x.org/archives/xorg-announce/2015-March/002558.html
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
.../xdriver_xf86-video-trident/0001-mibstore.patch | 34 -----------------
.../xdriver_xf86-video-trident/0002-xaa.patch | 39 --------------------
.../xdriver_xf86-video-trident.hash | 2 +
.../xdriver_xf86-video-trident.mk | 2 +-
4 files changed, 3 insertions(+), 74 deletions(-)
delete mode 100644 package/x11r7/xdriver_xf86-video-trident/0001-mibstore.patch
delete mode 100644 package/x11r7/xdriver_xf86-video-trident/0002-xaa.patch
create mode 100644 package/x11r7/xdriver_xf86-video-trident/xdriver_xf86-video-trident.hash
diff --git a/package/x11r7/xdriver_xf86-video-trident/0001-mibstore.patch b/package/x11r7/xdriver_xf86-video-trident/0001-mibstore.patch
deleted file mode 100644
index efdd6ac..0000000
--- a/package/x11r7/xdriver_xf86-video-trident/0001-mibstore.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 30787294c837aefa8820b6f76f00fe30d4e54181 Mon Sep 17 00:00:00 2001
-From: Adam Jackson <ajax@redhat.com>
-Date: Tue, 25 Sep 2012 12:55:01 +0000
-Subject: Remove mibstore.h
-
-Signed-off-by: Adam Jackson <ajax@redhat.com>
----
-Fetch from:
-http://cgit.freedesktop.org/xorg/driver/xf86-video-trident/commit/?id=30787294c837aefa8820b6f76f00fe30d4e54181
-
-Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
-
-diff --git a/src/trident_driver.c b/src/trident_driver.c
-index dc12b76..408c870 100644
---- a/src/trident_driver.c
-+++ b/src/trident_driver.c
-@@ -56,7 +56,6 @@
-
- #include "mipointer.h"
-
--#include "mibstore.h"
- #include "shadow.h"
- #include "trident.h"
- #include "trident_regs.h"
-@@ -3037,7 +3036,6 @@ TRIDENTScreenInit(SCREEN_INIT_ARGS_DECL)
- TridentAccelInit(pScreen);
- }
-
-- miInitializeBackingStore(pScreen);
- xf86SetBackingStore(pScreen);
-
- /* Initialise cursor functions */
---
-cgit v0.9.0.2-2-gbebe
diff --git a/package/x11r7/xdriver_xf86-video-trident/0002-xaa.patch b/package/x11r7/xdriver_xf86-video-trident/0002-xaa.patch
deleted file mode 100644
index 0750002..0000000
--- a/package/x11r7/xdriver_xf86-video-trident/0002-xaa.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 48c15909691e28ad2c188a2978b1c8ef3d9d8760 Mon Sep 17 00:00:00 2001
-From: Timo Aaltonen <tjaalton@ubuntu.com>
-Date: Wed, 26 Sep 2012 08:01:26 +0000
-Subject: Fix loading the driver without XAA
-
----
-Fetch from:
-http://cgit.freedesktop.org/xorg/driver/xf86-video-trident/commit/?id=48c15909691e28ad2c188a2978b1c8ef3d9d8760
-
-Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
-
-diff --git a/src/trident_dga.c b/src/trident_dga.c
-index 0263aa7..c4b5b9a 100644
---- a/src/trident_dga.c
-+++ b/src/trident_dga.c
-@@ -37,10 +37,10 @@
- static Bool TRIDENT_OpenFramebuffer(ScrnInfoPtr, char **, unsigned char **,
- int *, int *, int *);
- static Bool TRIDENT_SetMode(ScrnInfoPtr, DGAModePtr);
--static void TRIDENT_Sync(ScrnInfoPtr);
- static int TRIDENT_GetViewport(ScrnInfoPtr);
- static void TRIDENT_SetViewport(ScrnInfoPtr, int, int, int);
- #ifdef HAVE_XAA_H
-+static void TRIDENT_Sync(ScrnInfoPtr);
- static void TRIDENT_FillRect(ScrnInfoPtr, int, int, int, int, unsigned long);
- static void TRIDENT_BlitRect(ScrnInfoPtr, int, int, int, int, int, int);
- #if 0
-@@ -56,8 +56,8 @@ DGAFunctionRec TRIDENTDGAFuncs = {
- TRIDENT_SetMode,
- TRIDENT_SetViewport,
- TRIDENT_GetViewport,
-- TRIDENT_Sync,
- #ifdef HAVE_XAA_H
-+ TRIDENT_Sync,
- TRIDENT_FillRect,
- TRIDENT_BlitRect,
- #if 0
---
-cgit v0.9.0.2-2-gbebe
diff --git a/package/x11r7/xdriver_xf86-video-trident/xdriver_xf86-video-trident.hash b/package/x11r7/xdriver_xf86-video-trident/xdriver_xf86-video-trident.hash
new file mode 100644
index 0000000..e92c948
--- /dev/null
+++ b/package/x11r7/xdriver_xf86-video-trident/xdriver_xf86-video-trident.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-March/002558.html
+sha256 ecd518de627a0d49e17c158bfc72ab657386c6907c91ef89fa09332558e413ae xf86-video-trident-1.3.7.tar.bz2
diff --git a/package/x11r7/xdriver_xf86-video-trident/xdriver_xf86-video-trident.mk b/package/x11r7/xdriver_xf86-video-trident/xdriver_xf86-video-trident.mk
index 7a45e3f..a136e87 100644
--- a/package/x11r7/xdriver_xf86-video-trident/xdriver_xf86-video-trident.mk
+++ b/package/x11r7/xdriver_xf86-video-trident/xdriver_xf86-video-trident.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XDRIVER_XF86_VIDEO_TRIDENT_VERSION = 1.3.6
+XDRIVER_XF86_VIDEO_TRIDENT_VERSION = 1.3.7
XDRIVER_XF86_VIDEO_TRIDENT_SOURCE = xf86-video-trident-$(XDRIVER_XF86_VIDEO_TRIDENT_VERSION).tar.bz2
XDRIVER_XF86_VIDEO_TRIDENT_SITE = http://xorg.freedesktop.org/releases/individual/driver
XDRIVER_XF86_VIDEO_TRIDENT_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 07/32] package/x11r7/xdriver_xf86-input-vmmouse: add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (4 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 06/32] package/x11r7/xdriver_xf86-video-trident: bump version to 1.3.7, add hash Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, " Bernd Kuhls
` (25 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
.../x11r7/xdriver_xf86-input-vmmouse/xdriver_xf86-input-vmmouse.hash | 2 ++
1 file changed, 2 insertions(+)
create mode 100644 package/x11r7/xdriver_xf86-input-vmmouse/xdriver_xf86-input-vmmouse.hash
diff --git a/package/x11r7/xdriver_xf86-input-vmmouse/xdriver_xf86-input-vmmouse.hash b/package/x11r7/xdriver_xf86-input-vmmouse/xdriver_xf86-input-vmmouse.hash
new file mode 100644
index 0000000..5331fac
--- /dev/null
+++ b/package/x11r7/xdriver_xf86-input-vmmouse/xdriver_xf86-input-vmmouse.hash
@@ -0,0 +1,2 @@
+# From http://lists.freedesktop.org/archives/xorg/2013-January/055275.html
+sha256 04cfb60366008d4db815c550d8fb8d0a4270c75fa7a20fa3bddc9ecbd355612c xf86-input-vmmouse-13.0.0.tar.bz2
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (5 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 07/32] package/x11r7/xdriver_xf86-input-vmmouse: " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 16:29 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 09/32] package/x11r7/xapp_setxkbmap: bump version to 1.3.1, " Bernd Kuhls
` (24 subsequent siblings)
31 siblings, 1 reply; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
.../xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.hash | 2 ++
.../x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.hash
diff --git a/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.hash b/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.hash
new file mode 100644
index 0000000..11fcc60
--- /dev/null
+++ b/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002559.html
+sha256 1ac8ff39bf9da7d2fc7fd6c24515726e8138340c0518ab8c606e008cf93ca211 xf86-input-keyboard-1.8.1.tar.bz2
diff --git a/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk b/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk
index 36d2c5e..209f44a 100644
--- a/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk
+++ b/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XDRIVER_XF86_INPUT_KEYBOARD_VERSION = 1.8.0
+XDRIVER_XF86_INPUT_KEYBOARD_VERSION = 1.8.1
XDRIVER_XF86_INPUT_KEYBOARD_SOURCE = xf86-input-keyboard-$(XDRIVER_XF86_INPUT_KEYBOARD_VERSION).tar.bz2
XDRIVER_XF86_INPUT_KEYBOARD_SITE = http://xorg.freedesktop.org/releases/individual/driver
XDRIVER_XF86_INPUT_KEYBOARD_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 09/32] package/x11r7/xapp_setxkbmap: bump version to 1.3.1, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (6 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 10/32] package/x11r7/xapp_smproxy: bump version to 1.0.6, " Bernd Kuhls
` (23 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_setxkbmap/xapp_setxkbmap.hash | 2 ++
package/x11r7/xapp_setxkbmap/xapp_setxkbmap.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_setxkbmap/xapp_setxkbmap.hash
diff --git a/package/x11r7/xapp_setxkbmap/xapp_setxkbmap.hash b/package/x11r7/xapp_setxkbmap/xapp_setxkbmap.hash
new file mode 100644
index 0000000..bdc5f1c
--- /dev/null
+++ b/package/x11r7/xapp_setxkbmap/xapp_setxkbmap.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002563.html
+sha256 a9ddb3963f263ba13f0ea105d8c45a531832140530217cc559587bb94f02d3e1 setxkbmap-1.3.1.tar.bz2
diff --git a/package/x11r7/xapp_setxkbmap/xapp_setxkbmap.mk b/package/x11r7/xapp_setxkbmap/xapp_setxkbmap.mk
index 9ecf953..b923d60 100644
--- a/package/x11r7/xapp_setxkbmap/xapp_setxkbmap.mk
+++ b/package/x11r7/xapp_setxkbmap/xapp_setxkbmap.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_SETXKBMAP_VERSION = 1.3.0
+XAPP_SETXKBMAP_VERSION = 1.3.1
XAPP_SETXKBMAP_SOURCE = setxkbmap-$(XAPP_SETXKBMAP_VERSION).tar.bz2
XAPP_SETXKBMAP_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_SETXKBMAP_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 10/32] package/x11r7/xapp_smproxy: bump version to 1.0.6, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (7 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 09/32] package/x11r7/xapp_setxkbmap: bump version to 1.3.1, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 11/32] package/x11r7/xapp_twm: bump version to 1.0.9, " Bernd Kuhls
` (22 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_smproxy/xapp_smproxy.hash | 2 ++
package/x11r7/xapp_smproxy/xapp_smproxy.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_smproxy/xapp_smproxy.hash
diff --git a/package/x11r7/xapp_smproxy/xapp_smproxy.hash b/package/x11r7/xapp_smproxy/xapp_smproxy.hash
new file mode 100644
index 0000000..7bb7bdb
--- /dev/null
+++ b/package/x11r7/xapp_smproxy/xapp_smproxy.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002564.html
+sha256 6cf19155a2752237f36dbf8bc4184465ea190d2652f887faccb4e2a6ebf77266 smproxy-1.0.6.tar.bz2
diff --git a/package/x11r7/xapp_smproxy/xapp_smproxy.mk b/package/x11r7/xapp_smproxy/xapp_smproxy.mk
index 863e4f6..f51c1ec 100644
--- a/package/x11r7/xapp_smproxy/xapp_smproxy.mk
+++ b/package/x11r7/xapp_smproxy/xapp_smproxy.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_SMPROXY_VERSION = 1.0.5
+XAPP_SMPROXY_VERSION = 1.0.6
XAPP_SMPROXY_SOURCE = smproxy-$(XAPP_SMPROXY_VERSION).tar.bz2
XAPP_SMPROXY_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_SMPROXY_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 11/32] package/x11r7/xapp_twm: bump version to 1.0.9, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (8 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 10/32] package/x11r7/xapp_smproxy: bump version to 1.0.6, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 12/32] package/x11r7/xapp_x11perf: bump version to 1.6.0, " Bernd Kuhls
` (21 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_twm/xapp_twm.hash | 2 ++
package/x11r7/xapp_twm/xapp_twm.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_twm/xapp_twm.hash
diff --git a/package/x11r7/xapp_twm/xapp_twm.hash b/package/x11r7/xapp_twm/xapp_twm.hash
new file mode 100644
index 0000000..eecc5c4
--- /dev/null
+++ b/package/x11r7/xapp_twm/xapp_twm.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002565.html
+sha256 c575167ac33edf3bd1592f1bedfe0559debb128ed5fb4873c1278e3be166310a twm-1.0.9.tar.bz2
diff --git a/package/x11r7/xapp_twm/xapp_twm.mk b/package/x11r7/xapp_twm/xapp_twm.mk
index 7f6ba4f..1f576e1 100644
--- a/package/x11r7/xapp_twm/xapp_twm.mk
+++ b/package/x11r7/xapp_twm/xapp_twm.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_TWM_VERSION = 1.0.8
+XAPP_TWM_VERSION = 1.0.9
XAPP_TWM_SOURCE = twm-$(XAPP_TWM_VERSION).tar.bz2
XAPP_TWM_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_TWM_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 12/32] package/x11r7/xapp_x11perf: bump version to 1.6.0, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (9 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 11/32] package/x11r7/xapp_twm: bump version to 1.0.9, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 13/32] package/x11r7/xapp_xcmsdb: bump version to 1.0.5, " Bernd Kuhls
` (20 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_x11perf/xapp_x11perf.hash | 2 ++
package/x11r7/xapp_x11perf/xapp_x11perf.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_x11perf/xapp_x11perf.hash
diff --git a/package/x11r7/xapp_x11perf/xapp_x11perf.hash b/package/x11r7/xapp_x11perf/xapp_x11perf.hash
new file mode 100644
index 0000000..8580993
--- /dev/null
+++ b/package/x11r7/xapp_x11perf/xapp_x11perf.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002566.html
+sha256 e87098dec1947572d70c62697a7b70bde1ab5668237d4660080eade6bc096751 x11perf-1.6.0.tar.bz2
diff --git a/package/x11r7/xapp_x11perf/xapp_x11perf.mk b/package/x11r7/xapp_x11perf/xapp_x11perf.mk
index a871486..8cba79d 100644
--- a/package/x11r7/xapp_x11perf/xapp_x11perf.mk
+++ b/package/x11r7/xapp_x11perf/xapp_x11perf.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_X11PERF_VERSION = 1.5.4
+XAPP_X11PERF_VERSION = 1.6.0
XAPP_X11PERF_SOURCE = x11perf-$(XAPP_X11PERF_VERSION).tar.bz2
XAPP_X11PERF_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_X11PERF_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 13/32] package/x11r7/xapp_xcmsdb: bump version to 1.0.5, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (10 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 12/32] package/x11r7/xapp_x11perf: bump version to 1.6.0, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 14/32] package/x11r7/xapp_xdpyinfo: bump version to 1.3.2, " Bernd Kuhls
` (19 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xcmsdb/xapp_xcmsdb.hash | 2 ++
package/x11r7/xapp_xcmsdb/xapp_xcmsdb.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xcmsdb/xapp_xcmsdb.hash
diff --git a/package/x11r7/xapp_xcmsdb/xapp_xcmsdb.hash b/package/x11r7/xapp_xcmsdb/xapp_xcmsdb.hash
new file mode 100644
index 0000000..cc5bbcd
--- /dev/null
+++ b/package/x11r7/xapp_xcmsdb/xapp_xcmsdb.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002567.html
+sha256 e5585361bb8b6a05bb814a8d0e444ee93e0f00180881d3070aff4571e97f67c6 xcmsdb-1.0.5.tar.bz2
diff --git a/package/x11r7/xapp_xcmsdb/xapp_xcmsdb.mk b/package/x11r7/xapp_xcmsdb/xapp_xcmsdb.mk
index d08dfaa..3cccacc 100644
--- a/package/x11r7/xapp_xcmsdb/xapp_xcmsdb.mk
+++ b/package/x11r7/xapp_xcmsdb/xapp_xcmsdb.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XCMSDB_VERSION = 1.0.4
+XAPP_XCMSDB_VERSION = 1.0.5
XAPP_XCMSDB_SOURCE = xcmsdb-$(XAPP_XCMSDB_VERSION).tar.bz2
XAPP_XCMSDB_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XCMSDB_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 14/32] package/x11r7/xapp_xdpyinfo: bump version to 1.3.2, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (11 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 13/32] package/x11r7/xapp_xcmsdb: bump version to 1.0.5, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 15/32] package/x11r7/xapp_xdriinfo: bump version to 1.0.5, " Bernd Kuhls
` (18 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.hash | 2 ++
package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.hash
diff --git a/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.hash b/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.hash
new file mode 100644
index 0000000..7f9c4f5
--- /dev/null
+++ b/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002569.html
+sha256 30238ed915619e06ceb41721e5f747d67320555cc38d459e954839c189ccaf51 xdpyinfo-1.3.2.tar.bz2
diff --git a/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk b/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
index 4615e4f..cf94f70 100644
--- a/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
+++ b/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XDPYINFO_VERSION = 1.3.1
+XAPP_XDPYINFO_VERSION = 1.3.2
XAPP_XDPYINFO_SOURCE = xdpyinfo-$(XAPP_XDPYINFO_VERSION).tar.bz2
XAPP_XDPYINFO_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XDPYINFO_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 15/32] package/x11r7/xapp_xdriinfo: bump version to 1.0.5, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (12 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 14/32] package/x11r7/xapp_xdpyinfo: bump version to 1.3.2, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 16/32] package/x11r7/xapp_xditview: bump version to 1.0.4, " Bernd Kuhls
` (17 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xdriinfo/xapp_xdriinfo.hash | 2 ++
package/x11r7/xapp_xdriinfo/xapp_xdriinfo.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xdriinfo/xapp_xdriinfo.hash
diff --git a/package/x11r7/xapp_xdriinfo/xapp_xdriinfo.hash b/package/x11r7/xapp_xdriinfo/xapp_xdriinfo.hash
new file mode 100644
index 0000000..264ec9a
--- /dev/null
+++ b/package/x11r7/xapp_xdriinfo/xapp_xdriinfo.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002570.html
+sha256 4cba3766ef89557422062287248adeb933999071bad6f3ef9c0a478a3c680119 xdriinfo-1.0.5.tar.bz2
diff --git a/package/x11r7/xapp_xdriinfo/xapp_xdriinfo.mk b/package/x11r7/xapp_xdriinfo/xapp_xdriinfo.mk
index d37ec32..bb00d3b 100644
--- a/package/x11r7/xapp_xdriinfo/xapp_xdriinfo.mk
+++ b/package/x11r7/xapp_xdriinfo/xapp_xdriinfo.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XDRIINFO_VERSION = 1.0.4
+XAPP_XDRIINFO_VERSION = 1.0.5
XAPP_XDRIINFO_SOURCE = xdriinfo-$(XAPP_XDRIINFO_VERSION).tar.bz2
XAPP_XDRIINFO_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XDRIINFO_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 16/32] package/x11r7/xapp_xditview: bump version to 1.0.4, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (13 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 15/32] package/x11r7/xapp_xdriinfo: bump version to 1.0.5, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 17/32] package/x11r7/xapp_xev: bump version to 1.2.2, " Bernd Kuhls
` (16 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xditview/xapp_xditview.hash | 2 ++
package/x11r7/xapp_xditview/xapp_xditview.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xditview/xapp_xditview.hash
diff --git a/package/x11r7/xapp_xditview/xapp_xditview.hash b/package/x11r7/xapp_xditview/xapp_xditview.hash
new file mode 100644
index 0000000..c8c1a0c
--- /dev/null
+++ b/package/x11r7/xapp_xditview/xapp_xditview.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002570.html
+sha256 307f8df1bc3e90a7fba74dfe16840891c365abc027fbd556027eb057e5d1ff73 xditview-1.0.4.tar.bz2
diff --git a/package/x11r7/xapp_xditview/xapp_xditview.mk b/package/x11r7/xapp_xditview/xapp_xditview.mk
index e91b3d8..4744c1f 100644
--- a/package/x11r7/xapp_xditview/xapp_xditview.mk
+++ b/package/x11r7/xapp_xditview/xapp_xditview.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XDITVIEW_VERSION = 1.0.3
+XAPP_XDITVIEW_VERSION = 1.0.4
XAPP_XDITVIEW_SOURCE = xditview-$(XAPP_XDITVIEW_VERSION).tar.bz2
XAPP_XDITVIEW_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XDITVIEW_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 17/32] package/x11r7/xapp_xev: bump version to 1.2.2, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (14 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 16/32] package/x11r7/xapp_xditview: bump version to 1.0.4, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 18/32] package/x11r7/xapp_xgamma: bump version to 1.0.6, " Bernd Kuhls
` (15 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xev/xapp_xev.hash | 2 ++
package/x11r7/xapp_xev/xapp_xev.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xev/xapp_xev.hash
diff --git a/package/x11r7/xapp_xev/xapp_xev.hash b/package/x11r7/xapp_xev/xapp_xev.hash
new file mode 100644
index 0000000..4008eba
--- /dev/null
+++ b/package/x11r7/xapp_xev/xapp_xev.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002572.html
+sha256 d94ae62a6c1af56c2961d71f5782076ac4116f0fa4e401420ac7e0db33dc314f xev-1.2.2.tar.bz2
diff --git a/package/x11r7/xapp_xev/xapp_xev.mk b/package/x11r7/xapp_xev/xapp_xev.mk
index f8460a7..2a798db 100644
--- a/package/x11r7/xapp_xev/xapp_xev.mk
+++ b/package/x11r7/xapp_xev/xapp_xev.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XEV_VERSION = 1.2.1
+XAPP_XEV_VERSION = 1.2.2
XAPP_XEV_SOURCE = xev-$(XAPP_XEV_VERSION).tar.bz2
XAPP_XEV_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XEV_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 18/32] package/x11r7/xapp_xgamma: bump version to 1.0.6, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (15 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 17/32] package/x11r7/xapp_xev: bump version to 1.2.2, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 19/32] package/x11r7/xapp_xgc: bump version to 1.0.5, " Bernd Kuhls
` (14 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xgamma/xapp_xgamma.hash | 2 ++
package/x11r7/xapp_xgamma/xapp_xgamma.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xgamma/xapp_xgamma.hash
diff --git a/package/x11r7/xapp_xgamma/xapp_xgamma.hash b/package/x11r7/xapp_xgamma/xapp_xgamma.hash
new file mode 100644
index 0000000..30480aa
--- /dev/null
+++ b/package/x11r7/xapp_xgamma/xapp_xgamma.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002574.html
+sha256 0ef1c35b5c18b1b22317f455c8df13c0a471a8efad63c89c98ae3ce8c2b222d3 xgamma-1.0.6.tar.bz2
diff --git a/package/x11r7/xapp_xgamma/xapp_xgamma.mk b/package/x11r7/xapp_xgamma/xapp_xgamma.mk
index bd87f52..a73a29e 100644
--- a/package/x11r7/xapp_xgamma/xapp_xgamma.mk
+++ b/package/x11r7/xapp_xgamma/xapp_xgamma.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XGAMMA_VERSION = 1.0.5
+XAPP_XGAMMA_VERSION = 1.0.6
XAPP_XGAMMA_SOURCE = xgamma-$(XAPP_XGAMMA_VERSION).tar.bz2
XAPP_XGAMMA_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XGAMMA_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 19/32] package/x11r7/xapp_xgc: bump version to 1.0.5, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (16 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 18/32] package/x11r7/xapp_xgamma: bump version to 1.0.6, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 20/32] package/x11r7/xapp_xhost: bump version to 1.0.7, " Bernd Kuhls
` (13 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xgc/xapp_xgc.hash | 2 ++
package/x11r7/xapp_xgc/xapp_xgc.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xgc/xapp_xgc.hash
diff --git a/package/x11r7/xapp_xgc/xapp_xgc.hash b/package/x11r7/xapp_xgc/xapp_xgc.hash
new file mode 100644
index 0000000..7972a6f
--- /dev/null
+++ b/package/x11r7/xapp_xgc/xapp_xgc.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002575.html
+sha256 14828d9bda358ad57efc0206bc416ee33ba542091edb186485cca5389adc2f5e xgc-1.0.5.tar.bz2
diff --git a/package/x11r7/xapp_xgc/xapp_xgc.mk b/package/x11r7/xapp_xgc/xapp_xgc.mk
index 6ea4ebb..41d42c4 100644
--- a/package/x11r7/xapp_xgc/xapp_xgc.mk
+++ b/package/x11r7/xapp_xgc/xapp_xgc.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XGC_VERSION = 1.0.4
+XAPP_XGC_VERSION = 1.0.5
XAPP_XGC_SOURCE = xgc-$(XAPP_XGC_VERSION).tar.bz2
XAPP_XGC_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XGC_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 20/32] package/x11r7/xapp_xhost: bump version to 1.0.7, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (17 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 19/32] package/x11r7/xapp_xgc: bump version to 1.0.5, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 21/32] package/x11r7/xapp_xkbedv: bump version to 1.1.4, " Bernd Kuhls
` (12 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xhost/xapp_xhost.hash | 2 ++
package/x11r7/xapp_xhost/xapp_xhost.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xhost/xapp_xhost.hash
diff --git a/package/x11r7/xapp_xhost/xapp_xhost.hash b/package/x11r7/xapp_xhost/xapp_xhost.hash
new file mode 100644
index 0000000..b714eb6
--- /dev/null
+++ b/package/x11r7/xapp_xhost/xapp_xhost.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002576.html
+sha256 93e619ee15471f576cfb30c663e18f5bc70aca577a63d2c2c03f006a7837c29a xhost-1.0.7.tar.bz2
diff --git a/package/x11r7/xapp_xhost/xapp_xhost.mk b/package/x11r7/xapp_xhost/xapp_xhost.mk
index d103133..a4bb16b 100644
--- a/package/x11r7/xapp_xhost/xapp_xhost.mk
+++ b/package/x11r7/xapp_xhost/xapp_xhost.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XHOST_VERSION = 1.0.6
+XAPP_XHOST_VERSION = 1.0.7
XAPP_XHOST_SOURCE = xhost-$(XAPP_XHOST_VERSION).tar.bz2
XAPP_XHOST_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XHOST_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 21/32] package/x11r7/xapp_xkbedv: bump version to 1.1.4, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (18 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 20/32] package/x11r7/xapp_xhost: bump version to 1.0.7, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 22/32] package/x11r7/xapp_xkbprint: bump version to 1.0.4, " Bernd Kuhls
` (11 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xkbevd/xapp_xkbevd.hash | 2 ++
package/x11r7/xapp_xkbevd/xapp_xkbevd.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xkbevd/xapp_xkbevd.hash
diff --git a/package/x11r7/xapp_xkbevd/xapp_xkbevd.hash b/package/x11r7/xapp_xkbevd/xapp_xkbevd.hash
new file mode 100644
index 0000000..b350d29
--- /dev/null
+++ b/package/x11r7/xapp_xkbevd/xapp_xkbevd.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002577.html
+sha256 2430a2e5302a4cb4a5530c1df8cb3721a149bbf8eb377a2898921a145197f96a xkbevd-1.1.4.tar.bz2
diff --git a/package/x11r7/xapp_xkbevd/xapp_xkbevd.mk b/package/x11r7/xapp_xkbevd/xapp_xkbevd.mk
index eb8a387..7a9a8fb 100644
--- a/package/x11r7/xapp_xkbevd/xapp_xkbevd.mk
+++ b/package/x11r7/xapp_xkbevd/xapp_xkbevd.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XKBEVD_VERSION = 1.1.3
+XAPP_XKBEVD_VERSION = 1.1.4
XAPP_XKBEVD_SOURCE = xkbevd-$(XAPP_XKBEVD_VERSION).tar.bz2
XAPP_XKBEVD_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XKBEVD_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 22/32] package/x11r7/xapp_xkbprint: bump version to 1.0.4, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (19 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 21/32] package/x11r7/xapp_xkbedv: bump version to 1.1.4, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 23/32] package/x11r7/xapp_xlsatoms: bump version to 1.1.2, " Bernd Kuhls
` (10 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xkbprint/xapp_xkbprint.hash | 2 ++
package/x11r7/xapp_xkbprint/xapp_xkbprint.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xkbprint/xapp_xkbprint.hash
diff --git a/package/x11r7/xapp_xkbprint/xapp_xkbprint.hash b/package/x11r7/xapp_xkbprint/xapp_xkbprint.hash
new file mode 100644
index 0000000..9ec83b6
--- /dev/null
+++ b/package/x11r7/xapp_xkbprint/xapp_xkbprint.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002578.html
+sha256 0b3faab8fefad03dfb7e866f634cf859822801de6b5fc6cf5e0a62857ed93e12 xkbprint-1.0.4.tar.bz2
diff --git a/package/x11r7/xapp_xkbprint/xapp_xkbprint.mk b/package/x11r7/xapp_xkbprint/xapp_xkbprint.mk
index 8d2efbc..5f2300f 100644
--- a/package/x11r7/xapp_xkbprint/xapp_xkbprint.mk
+++ b/package/x11r7/xapp_xkbprint/xapp_xkbprint.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XKBPRINT_VERSION = 1.0.1
+XAPP_XKBPRINT_VERSION = 1.0.4
XAPP_XKBPRINT_SOURCE = xkbprint-$(XAPP_XKBPRINT_VERSION).tar.bz2
XAPP_XKBPRINT_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XKBPRINT_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 23/32] package/x11r7/xapp_xlsatoms: bump version to 1.1.2, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (20 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 22/32] package/x11r7/xapp_xkbprint: bump version to 1.0.4, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 24/32] package/x11r7/xapp_xlsfonts: bump version to 1.0.5, " Bernd Kuhls
` (9 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xlsatoms/xapp_xlsatoms.hash | 2 ++
package/x11r7/xapp_xlsatoms/xapp_xlsatoms.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xlsatoms/xapp_xlsatoms.hash
diff --git a/package/x11r7/xapp_xlsatoms/xapp_xlsatoms.hash b/package/x11r7/xapp_xlsatoms/xapp_xlsatoms.hash
new file mode 100644
index 0000000..58d0737
--- /dev/null
+++ b/package/x11r7/xapp_xlsatoms/xapp_xlsatoms.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002579.html
+sha256 47e5dc7c3dbda6db2cf8c00cedac1722835c1550aa21cfdbc9ba83906694dea4 xlsatoms-1.1.2.tar.bz2
diff --git a/package/x11r7/xapp_xlsatoms/xapp_xlsatoms.mk b/package/x11r7/xapp_xlsatoms/xapp_xlsatoms.mk
index 13c93d5..d6d9338 100644
--- a/package/x11r7/xapp_xlsatoms/xapp_xlsatoms.mk
+++ b/package/x11r7/xapp_xlsatoms/xapp_xlsatoms.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XLSATOMS_VERSION = 1.1.1
+XAPP_XLSATOMS_VERSION = 1.1.2
XAPP_XLSATOMS_SOURCE = xlsatoms-$(XAPP_XLSATOMS_VERSION).tar.bz2
XAPP_XLSATOMS_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XLSATOMS_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 24/32] package/x11r7/xapp_xlsfonts: bump version to 1.0.5, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (21 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 23/32] package/x11r7/xapp_xlsatoms: bump version to 1.1.2, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 25/32] package/x11r7/xapp_xmag: bump version to 1.0.6, " Bernd Kuhls
` (8 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xlsfonts/xapp_xlsfonts.hash | 2 ++
package/x11r7/xapp_xlsfonts/xapp_xlsfonts.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xlsfonts/xapp_xlsfonts.hash
diff --git a/package/x11r7/xapp_xlsfonts/xapp_xlsfonts.hash b/package/x11r7/xapp_xlsfonts/xapp_xlsfonts.hash
new file mode 100644
index 0000000..f3a2603
--- /dev/null
+++ b/package/x11r7/xapp_xlsfonts/xapp_xlsfonts.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002580.html
+sha256 40295bec35077cee93be2e4c26cc00268ed6ace779ae6e97766a866c1e3927fa xlsfonts-1.0.5.tar.bz2
diff --git a/package/x11r7/xapp_xlsfonts/xapp_xlsfonts.mk b/package/x11r7/xapp_xlsfonts/xapp_xlsfonts.mk
index f642d14..1c42a61 100644
--- a/package/x11r7/xapp_xlsfonts/xapp_xlsfonts.mk
+++ b/package/x11r7/xapp_xlsfonts/xapp_xlsfonts.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XLSFONTS_VERSION = 1.0.4
+XAPP_XLSFONTS_VERSION = 1.0.5
XAPP_XLSFONTS_SOURCE = xlsfonts-$(XAPP_XLSFONTS_VERSION).tar.bz2
XAPP_XLSFONTS_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XLSFONTS_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 25/32] package/x11r7/xapp_xmag: bump version to 1.0.6, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (22 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 24/32] package/x11r7/xapp_xlsfonts: bump version to 1.0.5, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 26/32] package/x11r7/xapp_xmh: bump version to 1.0.3, " Bernd Kuhls
` (7 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xmag/xapp_xmag.hash | 2 ++
package/x11r7/xapp_xmag/xapp_xmag.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xmag/xapp_xmag.hash
diff --git a/package/x11r7/xapp_xmag/xapp_xmag.hash b/package/x11r7/xapp_xmag/xapp_xmag.hash
new file mode 100644
index 0000000..ccfeb32
--- /dev/null
+++ b/package/x11r7/xapp_xmag/xapp_xmag.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002581.html
+sha256 87a2bc23b251e2d8f8370d3283a4d6c8dac98a30cb5749a04336cdb55c14e161 xmag-1.0.6.tar.bz2
diff --git a/package/x11r7/xapp_xmag/xapp_xmag.mk b/package/x11r7/xapp_xmag/xapp_xmag.mk
index 9851499..bfc60c3 100644
--- a/package/x11r7/xapp_xmag/xapp_xmag.mk
+++ b/package/x11r7/xapp_xmag/xapp_xmag.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XMAG_VERSION = 1.0.5
+XAPP_XMAG_VERSION = 1.0.6
XAPP_XMAG_SOURCE = xmag-$(XAPP_XMAG_VERSION).tar.bz2
XAPP_XMAG_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XMAG_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 26/32] package/x11r7/xapp_xmh: bump version to 1.0.3, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (23 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 25/32] package/x11r7/xapp_xmag: bump version to 1.0.6, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 27/32] package/x11r7/xapp_xmodmap: bump version to 1.0.9, " Bernd Kuhls
` (6 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xmh/xapp_xmh.hash | 2 ++
package/x11r7/xapp_xmh/xapp_xmh.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xmh/xapp_xmh.hash
diff --git a/package/x11r7/xapp_xmh/xapp_xmh.hash b/package/x11r7/xapp_xmh/xapp_xmh.hash
new file mode 100644
index 0000000..0358b3d
--- /dev/null
+++ b/package/x11r7/xapp_xmh/xapp_xmh.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002582.html
+sha256 b92f4f912a5fb6346d52cc2b639aea087b347f3b2e4e1a4fc7a165b1345f5689 xmh-1.0.3.tar.bz2
diff --git a/package/x11r7/xapp_xmh/xapp_xmh.mk b/package/x11r7/xapp_xmh/xapp_xmh.mk
index ada1df5..c18bbfe 100644
--- a/package/x11r7/xapp_xmh/xapp_xmh.mk
+++ b/package/x11r7/xapp_xmh/xapp_xmh.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XMH_VERSION = 1.0.2
+XAPP_XMH_VERSION = 1.0.3
XAPP_XMH_SOURCE = xmh-$(XAPP_XMH_VERSION).tar.bz2
XAPP_XMH_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XMH_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 27/32] package/x11r7/xapp_xmodmap: bump version to 1.0.9, add hash
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (24 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 26/32] package/x11r7/xapp_xmh: bump version to 1.0.3, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package Bernd Kuhls
` (5 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xapp_xmodmap/xapp_xmodmap.hash | 2 ++
package/x11r7/xapp_xmodmap/xapp_xmodmap.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
create mode 100644 package/x11r7/xapp_xmodmap/xapp_xmodmap.hash
diff --git a/package/x11r7/xapp_xmodmap/xapp_xmodmap.hash b/package/x11r7/xapp_xmodmap/xapp_xmodmap.hash
new file mode 100644
index 0000000..aad9815
--- /dev/null
+++ b/package/x11r7/xapp_xmodmap/xapp_xmodmap.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002583.html
+sha256 b7b0e5cc5f10d0fb6d2d6ea4f00c77e8ac0e847cc5a73be94cd86139ac4ac478 xmodmap-1.0.9.tar.bz2
diff --git a/package/x11r7/xapp_xmodmap/xapp_xmodmap.mk b/package/x11r7/xapp_xmodmap/xapp_xmodmap.mk
index 9e059d5..670bf9f 100644
--- a/package/x11r7/xapp_xmodmap/xapp_xmodmap.mk
+++ b/package/x11r7/xapp_xmodmap/xapp_xmodmap.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XAPP_XMODMAP_VERSION = 1.0.8
+XAPP_XMODMAP_VERSION = 1.0.9
XAPP_XMODMAP_SOURCE = xmodmap-$(XAPP_XMODMAP_VERSION).tar.bz2
XAPP_XMODMAP_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XMODMAP_LICENSE = MIT
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (25 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 27/32] package/x11r7/xapp_xmodmap: bump version to 1.0.9, " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:59 ` Thomas Petazzoni
2015-04-18 12:40 ` [Buildroot] [PATCH 29/32] package/x11r7/xapp_xcompmgr: " Bernd Kuhls
` (4 subsequent siblings)
31 siblings, 1 reply; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/Config.in | 1 +
package/x11r7/xlib_libXpresent/Config.in | 14 +++++++++++++
.../x11r7/xlib_libXpresent/xlib_libXpresent.hash | 2 ++
package/x11r7/xlib_libXpresent/xlib_libXpresent.mk | 22 ++++++++++++++++++++
4 files changed, 39 insertions(+)
create mode 100644 package/x11r7/xlib_libXpresent/Config.in
create mode 100644 package/x11r7/xlib_libXpresent/xlib_libXpresent.hash
create mode 100644 package/x11r7/xlib_libXpresent/xlib_libXpresent.mk
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 572963c..106591f 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -41,6 +41,7 @@ if BR2_PACKAGE_XORG7
source package/x11r7/xlib_libXinerama/Config.in
source package/x11r7/xlib_libXmu/Config.in
source package/x11r7/xlib_libXpm/Config.in
+ source package/x11r7/xlib_libXpresent/Config.in
source package/x11r7/xlib_libXrandr/Config.in
source package/x11r7/xlib_libXrender/Config.in
source package/x11r7/xlib_libXres/Config.in
diff --git a/package/x11r7/xlib_libXpresent/Config.in b/package/x11r7/xlib_libXpresent/Config.in
new file mode 100644
index 0000000..f9cad60
--- /dev/null
+++ b/package/x11r7/xlib_libXpresent/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_XLIB_LIBXPRESENT
+ bool "libXpresent"
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXFIXES
+ select BR2_PACKAGE_XLIB_LIBXRANDR
+ select BR2_PACKAGE_XPROTO_PRESENTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ X Present Extension C Library
+ This package contains header files and documentation for the Present
+ extension. Library and server implementations are separate.
+
+ http://xorg.freedesktop.org
diff --git a/package/x11r7/xlib_libXpresent/xlib_libXpresent.hash b/package/x11r7/xlib_libXpresent/xlib_libXpresent.hash
new file mode 100644
index 0000000..66b30e1
--- /dev/null
+++ b/package/x11r7/xlib_libXpresent/xlib_libXpresent.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002584.html
+sha256 c11ae015141a9afbe10f4f2b8ee00b11adca6373dc1b9808d7c6c138b2da7b8a libXpresent-1.0.0.tar.bz2
diff --git a/package/x11r7/xlib_libXpresent/xlib_libXpresent.mk b/package/x11r7/xlib_libXpresent/xlib_libXpresent.mk
new file mode 100644
index 0000000..2adefdf
--- /dev/null
+++ b/package/x11r7/xlib_libXpresent/xlib_libXpresent.mk
@@ -0,0 +1,22 @@
+################################################################################
+#
+# xlib_libXpresent
+#
+################################################################################
+
+XLIB_LIBXPRESENT_VERSION = 1.0.0
+XLIB_LIBXPRESENT_SOURCE = libXpresent-$(XLIB_LIBXPRESENT_VERSION).tar.bz2
+XLIB_LIBXPRESENT_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXPRESENT_LICENSE = MIT
+XLIB_LIBXPRESENT_LICENSE_FILES = COPYING
+XLIB_LIBXPRESENT_INSTALL_STAGING = YES
+XLIB_LIBXPRESENT_DEPENDENCIES = \
+ xlib_libX11 \
+ xlib_libXext \
+ xlib_libXfixes \
+ xlib_libXrandr \
+ xproto_presentproto \
+ xproto_xproto
+
+$(eval $(autotools-package))
+$(eval $(host-autotools-package))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 29/32] package/x11r7/xapp_xcompmgr: new package
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (26 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 30/32] package/x11r7/xlib_libICE: Add host-pkgconf dependency Bernd Kuhls
` (3 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/Config.in | 1 +
package/x11r7/xapp_xcompmgr/Config.in | 10 ++++++++++
package/x11r7/xapp_xcompmgr/xapp_xcompmgr.hash | 2 ++
package/x11r7/xapp_xcompmgr/xapp_xcompmgr.mk | 19 +++++++++++++++++++
4 files changed, 32 insertions(+)
create mode 100644 package/x11r7/xapp_xcompmgr/Config.in
create mode 100644 package/x11r7/xapp_xcompmgr/xapp_xcompmgr.hash
create mode 100644 package/x11r7/xapp_xcompmgr/xapp_xcompmgr.mk
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 106591f..85d73ef 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -90,6 +90,7 @@ if BR2_PACKAGE_XORG7
source package/x11r7/xapp_xclipboard/Config.in
source package/x11r7/xapp_xclock/Config.in
source package/x11r7/xapp_xcmsdb/Config.in
+ source package/x11r7/xapp_xcompmgr/Config.in
source package/x11r7/xapp_xconsole/Config.in
source package/x11r7/xapp_xcursorgen/Config.in
source package/x11r7/xapp_xdbedizzy/Config.in
diff --git a/package/x11r7/xapp_xcompmgr/Config.in b/package/x11r7/xapp_xcompmgr/Config.in
new file mode 100644
index 0000000..f8c8c46
--- /dev/null
+++ b/package/x11r7/xapp_xcompmgr/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_XAPP_XCOMPMGR
+ select BR2_PACKAGE_XLIB_LIBXCOMPOSITE
+ select BR2_PACKAGE_XLIB_LIBXFIXES
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXFIXES
+ select BR2_PACKAGE_XLIB_LIBXDAMAGE
+ bool "xcompmgr"
+ help
+ xcompmgr is a sample compositing manager that enables basic
+ eye-candy effects.
diff --git a/package/x11r7/xapp_xcompmgr/xapp_xcompmgr.hash b/package/x11r7/xapp_xcompmgr/xapp_xcompmgr.hash
new file mode 100644
index 0000000..34c13c1
--- /dev/null
+++ b/package/x11r7/xapp_xcompmgr/xapp_xcompmgr.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002568.html
+sha256 c8049b1a2531313be7469ba9b198d334f0b91cc01efc2b20b9afcb117e4d6892 xcompmgr-1.1.7.tar.bz2
diff --git a/package/x11r7/xapp_xcompmgr/xapp_xcompmgr.mk b/package/x11r7/xapp_xcompmgr/xapp_xcompmgr.mk
new file mode 100644
index 0000000..918c1e5
--- /dev/null
+++ b/package/x11r7/xapp_xcompmgr/xapp_xcompmgr.mk
@@ -0,0 +1,19 @@
+################################################################################
+#
+# xapp_xcompmgr
+#
+################################################################################
+
+XAPP_XCOMPMGR_VERSION = 1.1.7
+XAPP_XCOMPMGR_SOURCE = xcompmgr-$(XAPP_XCOMPMGR_VERSION).tar.bz2
+XAPP_XCOMPMGR_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XCOMPMGR_LICENSE = MIT
+XAPP_XCOMPMGR_LICENSE_FILES = COPYING
+XAPP_XCOMPMGR_DEPENDENCIES = \
+ xlib_libXcomposite \
+ xlib_libXdamage \
+ xlib_libXext \
+ xlib_libXfixes \
+ xlib_libXrender
+
+$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 30/32] package/x11r7/xlib_libICE: Add host-pkgconf dependency
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (27 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 29/32] package/x11r7/xapp_xcompmgr: " Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 31/32] package/x11r7/xproto_xproxymanagementprotocol: new package Bernd Kuhls
` (2 subsequent siblings)
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Using this defconfig
BR2_x86_pentium4=y
BR2_COMPILER_PARANOID_UNSAFE_PATH=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y
BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-i386-pentium4-full-2015.02.tar.bz2"
BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_2=y
BR2_TOOLCHAIN_EXTERNAL_INET_IPV6=y
BR2_TOOLCHAIN_EXTERNAL_LOCALE=y
BR2_TOOLCHAIN_EXTERNAL_INET_RPC=y
BR2_TOOLCHAIN_EXTERNAL_CXX=y
BR2_PACKAGE_XORG7=y
BR2_PACKAGE_XLIB_LIBICE=y
build would fail without this patch:
checking for ICE... configure: error: in `/home/br/buildroot/output/build/xlib_libICE-1.0.9':
configure: error: The pkg-config script could not be found or is too old. Make sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
path to pkg-config.
Alternatively, you may set the environment variables ICE_CFLAGS
and ICE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
To get pkg-config, see <http://pkg-config.freedesktop.org/>.
See `config.log' for more details
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/xlib_libICE/xlib_libICE.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/x11r7/xlib_libICE/xlib_libICE.mk b/package/x11r7/xlib_libICE/xlib_libICE.mk
index 6f69bfb..e2a4e7d 100644
--- a/package/x11r7/xlib_libICE/xlib_libICE.mk
+++ b/package/x11r7/xlib_libICE/xlib_libICE.mk
@@ -10,6 +10,6 @@ XLIB_LIBICE_SITE = http://xorg.freedesktop.org/releases/individual/lib
XLIB_LIBICE_LICENSE = MIT
XLIB_LIBICE_LICENSE_FILES = COPYING
XLIB_LIBICE_INSTALL_STAGING = YES
-XLIB_LIBICE_DEPENDENCIES = xlib_xtrans xproto_xproto
+XLIB_LIBICE_DEPENDENCIES = xlib_xtrans xproto_xproto host-pkgconf
$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 31/32] package/x11r7/xproto_xproxymanagementprotocol: new package
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (28 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 30/32] package/x11r7/xlib_libICE: Add host-pkgconf dependency Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 32/32] package/x11r7/xapp_xfindproxy: " Bernd Kuhls
2015-04-18 13:49 ` [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: " Romain Naour
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/Config.in | 1 +
package/x11r7/xproto_xproxymanagementprotocol/Config.in | 5 +++++
.../xproto_xproxymanagementprotocol.hash | 2 ++
.../xproto_xproxymanagementprotocol.mk | 15 +++++++++++++++
4 files changed, 23 insertions(+)
create mode 100644 package/x11r7/xproto_xproxymanagementprotocol/Config.in
create mode 100644 package/x11r7/xproto_xproxymanagementprotocol/xproto_xproxymanagementprotocol.hash
create mode 100644 package/x11r7/xproto_xproxymanagementprotocol/xproto_xproxymanagementprotocol.mk
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 85d73ef..f2f9e9c 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -256,6 +256,7 @@ if BR2_PACKAGE_XORG7
source package/x11r7/xproto_xf86vidmodeproto/Config.in
source package/x11r7/xproto_xineramaproto/Config.in
source package/x11r7/xproto_xproto/Config.in
+ source package/x11r7/xproto_xproxymanagementprotocol/Config.in
endmenu
menu "X11R7 Utilities"
source package/x11r7/xutil_makedepend/Config.in
diff --git a/package/x11r7/xproto_xproxymanagementprotocol/Config.in b/package/x11r7/xproto_xproxymanagementprotocol/Config.in
new file mode 100644
index 0000000..47ee876
--- /dev/null
+++ b/package/x11r7/xproto_xproxymanagementprotocol/Config.in
@@ -0,0 +1,5 @@
+config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
+ bool "xproxymanagementprotocol"
+ help
+ The Proxy Management Protocol is an ICE based protocol that provides a way
+ for application servers to easily locate proxy services available to them.
diff --git a/package/x11r7/xproto_xproxymanagementprotocol/xproto_xproxymanagementprotocol.hash b/package/x11r7/xproto_xproxymanagementprotocol/xproto_xproxymanagementprotocol.hash
new file mode 100644
index 0000000..27a9dfa
--- /dev/null
+++ b/package/x11r7/xproto_xproxymanagementprotocol/xproto_xproxymanagementprotocol.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2009-October/001150.html
+sha1 4abb036371670ecc25d32e48b3277fe203ae5203 xproxymanagementprotocol-1.0.3.tar.bz2
diff --git a/package/x11r7/xproto_xproxymanagementprotocol/xproto_xproxymanagementprotocol.mk b/package/x11r7/xproto_xproxymanagementprotocol/xproto_xproxymanagementprotocol.mk
new file mode 100644
index 0000000..a48269a
--- /dev/null
+++ b/package/x11r7/xproto_xproxymanagementprotocol/xproto_xproxymanagementprotocol.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# xproto_xproxymanagementprotocol
+#
+################################################################################
+
+XPROTO_XPROXYMANAGEMENTPROTOCOL_VERSION = 1.0.3
+XPROTO_XPROXYMANAGEMENTPROTOCOL_SOURCE = xproxymanagementprotocol-$(XPROTO_XPROXYMANAGEMENTPROTOCOL_VERSION).tar.bz2
+XPROTO_XPROXYMANAGEMENTPROTOCOL_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XPROXYMANAGEMENTPROTOCOL_LICENSE = MIT
+XPROTO_XPROXYMANAGEMENTPROTOCOL_LICENSE_FILES = COPYING
+XPROTO_XPROXYMANAGEMENTPROTOCOL_INSTALL_STAGING = YES
+XPROTO_XPROXYMANAGEMENTPROTOCOL_INSTALL_TARGET = NO
+
+$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 32/32] package/x11r7/xapp_xfindproxy: new package
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (29 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 31/32] package/x11r7/xproto_xproxymanagementprotocol: new package Bernd Kuhls
@ 2015-04-18 12:40 ` Bernd Kuhls
2015-04-18 13:49 ` [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: " Romain Naour
31 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/x11r7/Config.in | 1 +
package/x11r7/xapp_xfindproxy/Config.in | 9 +++++++++
package/x11r7/xapp_xfindproxy/xapp_xfindproxy.hash | 2 ++
package/x11r7/xapp_xfindproxy/xapp_xfindproxy.mk | 18 ++++++++++++++++++
4 files changed, 30 insertions(+)
create mode 100644 package/x11r7/xapp_xfindproxy/Config.in
create mode 100644 package/x11r7/xapp_xfindproxy/xapp_xfindproxy.hash
create mode 100644 package/x11r7/xapp_xfindproxy/xapp_xfindproxy.mk
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index f2f9e9c..d44b9a0 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -103,6 +103,7 @@ if BR2_PACKAGE_XORG7
source package/x11r7/xapp_xeyes/Config.in
source package/x11r7/xapp_xf86dga/Config.in
source package/x11r7/xapp_xfd/Config.in
+ source package/x11r7/xapp_xfindproxy/Config.in
source package/x11r7/xapp_xfontsel/Config.in
source package/x11r7/xapp_xfs/Config.in
source package/x11r7/xapp_xfsinfo/Config.in
diff --git a/package/x11r7/xapp_xfindproxy/Config.in b/package/x11r7/xapp_xfindproxy/Config.in
new file mode 100644
index 0000000..1746fc0
--- /dev/null
+++ b/package/x11r7/xapp_xfindproxy/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_XAPP_XFINDPROXY
+ bool "xfindproxy"
+ select BR2_PACKAGE_XLIB_LIBICE
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XPROTO_XPROTO
+ select BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
+ help
+ xfindproxy utilizes the Proxy Management Protocol to communicate with
+ a proxy manager to locate available X11 proxy services.
diff --git a/package/x11r7/xapp_xfindproxy/xapp_xfindproxy.hash b/package/x11r7/xapp_xfindproxy/xapp_xfindproxy.hash
new file mode 100644
index 0000000..9263e46
--- /dev/null
+++ b/package/x11r7/xapp_xfindproxy/xapp_xfindproxy.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-April/002573.html
+sha256 5626bda27c7faa5cbe289a17f8552538fff08a96d542b85efdda1804ccf8a01f xfindproxy-1.0.4.tar.bz2
diff --git a/package/x11r7/xapp_xfindproxy/xapp_xfindproxy.mk b/package/x11r7/xapp_xfindproxy/xapp_xfindproxy.mk
new file mode 100644
index 0000000..7662a90
--- /dev/null
+++ b/package/x11r7/xapp_xfindproxy/xapp_xfindproxy.mk
@@ -0,0 +1,18 @@
+################################################################################
+#
+# xapp_xfindproxy
+#
+################################################################################
+
+XAPP_XFINDPROXY_VERSION = 1.0.4
+XAPP_XFINDPROXY_SOURCE = xfindproxy-$(XAPP_XFINDPROXY_VERSION).tar.bz2
+XAPP_XFINDPROXY_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XFINDPROXY_LICENSE = MIT
+XAPP_XFINDPROXY_LICENSE_FILES = COPYING
+XAPP_XFINDPROXY_DEPENDENCIES = \
+ xlib_libICE \
+ xlib_libXt \
+ xproto_xproto \
+ xproto_xproxymanagementprotocol
+
+$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package
2015-04-18 12:40 ` [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package Bernd Kuhls
@ 2015-04-18 12:59 ` Thomas Petazzoni
2015-07-11 13:12 ` Romain Naour
0 siblings, 1 reply; 40+ messages in thread
From: Thomas Petazzoni @ 2015-04-18 12:59 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Sat, 18 Apr 2015 14:40:40 +0200, Bernd Kuhls wrote:
> diff --git a/package/x11r7/xlib_libXpresent/Config.in b/package/x11r7/xlib_libXpresent/Config.in
> new file mode 100644
> index 0000000..f9cad60
> --- /dev/null
> +++ b/package/x11r7/xlib_libXpresent/Config.in
> @@ -0,0 +1,14 @@
> +config BR2_PACKAGE_XLIB_LIBXPRESENT
> + bool "libXpresent"
> + select BR2_PACKAGE_XLIB_LIBX11
> + select BR2_PACKAGE_XLIB_LIBXEXT
> + select BR2_PACKAGE_XLIB_LIBXFIXES
> + select BR2_PACKAGE_XLIB_LIBXRANDR
> + select BR2_PACKAGE_XPROTO_PRESENTPROTO
> + select BR2_PACKAGE_XPROTO_XPROTO
> + help
> + X Present Extension C Library
> + This package contains header files and documentation for the Present
> + extension. Library and server implementations are separate.
This seems weird. The package is named "xlib_libXpresent", but it does
not contain the library? This description looks more like a xproto*
description than a xlib* description.
> +$(eval $(host-autotools-package))
Why is a host package needed?
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
` (30 preceding siblings ...)
2015-04-18 12:40 ` [Buildroot] [PATCH 32/32] package/x11r7/xapp_xfindproxy: " Bernd Kuhls
@ 2015-04-18 13:49 ` Romain Naour
31 siblings, 0 replies; 40+ messages in thread
From: Romain Naour @ 2015-04-18 13:49 UTC (permalink / raw)
To: buildroot
Hi Bernd,
Le 18/04/2015 14:40, Bernd Kuhls a ?crit :
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/x11r7/Config.in | 1 +
> package/x11r7/xcb-util-renderutil/Config.in | 15 +++++++++++++++
> .../x11r7/xcb-util-renderutil/xcb-util-renderutil.hash | 2 ++
> .../x11r7/xcb-util-renderutil/xcb-util-renderutil.mk | 15 +++++++++++++++
> 4 files changed, 33 insertions(+)
> create mode 100644 package/x11r7/xcb-util-renderutil/Config.in
> create mode 100644 package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
> create mode 100644 package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
>
> diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
> index 608837f..4166a96 100644
> --- a/package/x11r7/Config.in
> +++ b/package/x11r7/Config.in
> @@ -19,6 +19,7 @@ if BR2_PACKAGE_XORG7
> source package/x11r7/xcb-util/Config.in
> source package/x11r7/xcb-util-image/Config.in
> source package/x11r7/xcb-util-keysyms/Config.in
> + source package/x11r7/xcb-util-renderutil/Config.in
> source package/x11r7/xcb-util-wm/Config.in
> source package/x11r7/xlib_libFS/Config.in
> source package/x11r7/xlib_libICE/Config.in
> diff --git a/package/x11r7/xcb-util-renderutil/Config.in b/package/x11r7/xcb-util-renderutil/Config.in
> new file mode 100644
> index 0000000..9675278
> --- /dev/null
> +++ b/package/x11r7/xcb-util-renderutil/Config.in
> @@ -0,0 +1,15 @@
> +config BR2_PACKAGE_XCB_UTIL_RENDERUTIL
> + bool "xcb-util-renderutil"
> + select BR2_PACKAGE_XCB_UTIL
> + help
> + The XCB util modules provides a number of libraries which sit on top
> + of libxcb, the core X protocol library, and some of the extension
> + libraries. These experimental libraries provide convenience functions
> + and interfaces which make the raw X protocol more usable. Some of the
> + libraries also provide client-side code which is not strictly part of
> + the X protocol but which have traditionally been provided by Xlib.
> +
> + XCB util-renderutil module provides the following library:
> + - renderutil: Convenience functions for the Render extension.
> +
> + http://xcb.freedesktop.org/
> diff --git a/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
> new file mode 100644
> index 0000000..e5c47ca
> --- /dev/null
> +++ b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
> @@ -0,0 +1,2 @@
> +# From http://lists.x.org/archives/xorg-announce/2015-March/002555.html
> +sha1 b55a92cd96c3ec1be9a26963df6d5f16e68fffea xcb-util-cursor-0.1.2.tar.bz2
Should be:
# from http://permalink.gmane.org/gmane.comp.freedesktop.xorg.announce/2176
sha256 c6e97e48fb1286d6394dddb1c1732f00227c70bd1bedb7d1acabefdd340bea5b
xcb-util-renderutil-0.3.9.tar.bz2
Otherwise, looks good.
I added the same package locally for updating the efl package to 1.14.0-beta1
release.
Best regards,
Romain
> diff --git a/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
> new file mode 100644
> index 0000000..9e6683b
> --- /dev/null
> +++ b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
> @@ -0,0 +1,15 @@
> +################################################################################
> +#
> +# xcb-util-renderutil
> +#
> +################################################################################
> +
> +XCB_UTIL_RENDERUTIL_VERSION = 0.3.9
> +XCB_UTIL_RENDERUTIL_SITE = http://xcb.freedesktop.org/dist
> +XCB_UTIL_RENDERUTIL_SOURCE = xcb-util-renderutil-$(XCB_UTIL_RENDERUTIL_VERSION).tar.bz2
> +XCB_UTIL_RENDERUTIL_LICENSE = MIT
> +XCB_UTIL_RENDERUTIL_LICENSE_FILES = COPYING
> +XCB_UTIL_RENDERUTIL_INSTALL_STAGING = YES
> +XCB_UTIL_RENDERUTIL_DEPENDENCIES = xcb-util
> +
> +$(eval $(autotools-package))
>
^ permalink raw reply [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, add hash
2015-04-18 12:40 ` [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, " Bernd Kuhls
@ 2015-04-18 16:29 ` Bernd Kuhls
2015-04-18 16:40 ` Bernd Kuhls
0 siblings, 1 reply; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 16:29 UTC (permalink / raw)
To: buildroot
Bernd Kuhls <bernd.kuhls@t-online.de> wrote in
news:1429360844-12625-8-git-send-email-bernd.kuhls at t-online.de:
>
> Signed-off-by: Bernd Kuhls
> <bernd.kuhls@t-online.de> ---
> .../xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.hash |
> 2 ++
> .../x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk |
> 2 +-
Hi,
please do not commit this patch, I still need to fix a problem.
Marked as superseded in patchwork.
Regards, Bernd
^ permalink raw reply [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: new package
2015-04-18 12:40 ` [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: " Bernd Kuhls
@ 2015-04-18 16:38 ` Thomas Petazzoni
2015-04-19 9:03 ` Bernd Kuhls
0 siblings, 1 reply; 40+ messages in thread
From: Thomas Petazzoni @ 2015-04-18 16:38 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Sat, 18 Apr 2015 14:40:14 +0200, Bernd Kuhls wrote:
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/x11r7/Config.in | 1 +
> package/x11r7/xcb-util-cursor/Config.in | 17 +++++++++++++++++
> package/x11r7/xcb-util-cursor/xcb-util-cursor.hash | 2 ++
> package/x11r7/xcb-util-cursor/xcb-util-cursor.mk | 15 +++++++++++++++
> 4 files changed, 35 insertions(+)
> create mode 100644 package/x11r7/xcb-util-cursor/Config.in
> create mode 100644 package/x11r7/xcb-util-cursor/xcb-util-cursor.hash
> create mode 100644 package/x11r7/xcb-util-cursor/xcb-util-cursor.mk
I've applied patches 2 to 32, except patch 28, since I asked a question
about it.
On the new package additions, I had to rewrap the Config.in help text
almost each time, but other than that, it looked good.
Thanks a lot!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, add hash
2015-04-18 16:29 ` Bernd Kuhls
@ 2015-04-18 16:40 ` Bernd Kuhls
0 siblings, 0 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 16:40 UTC (permalink / raw)
To: buildroot
Bernd Kuhls <bernd.kuhls@t-online.de> wrote in
news:XnsA480BC0F613ABberndkuhlsPkbjNfxxIA at bernd-kuhls.de:
> Bernd Kuhls <bernd.kuhls@t-online.de> wrote in
> news:1429360844-12625-8-git-send-email-bernd.kuhls-
zqRNUXuvxA0b1SvskN2V4Q at public.gmane.org:
>
>>
>> Signed-off-by: Bernd Kuhls
>> <bernd.kuhls@t-online.de> ---
>> .../xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.hash |
>> 2 ++
>> .../x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk |
>> 2 +-
>
> Hi,
>
> please do not commit this patch, I still need to fix a problem.
> Marked as superseded in patchwork.
Fixed: http://patchwork.ozlabs.org/patch/462377/
Regards, Bernd
^ permalink raw reply [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: new package
2015-04-18 16:38 ` Thomas Petazzoni
@ 2015-04-19 9:03 ` Bernd Kuhls
2015-04-19 12:44 ` Thomas Petazzoni
0 siblings, 1 reply; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-19 9:03 UTC (permalink / raw)
To: buildroot
Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8
@public.gmane.org> wrote in news:20150418183852.49035fcf at free-electrons.com:
> On the new package additions, I had to rewrap the Config.in help text
> almost each time, but other than that, it looked good.
Hi Thomas,
how many chars are allowed in one line? I could not find a hint at
http://buildroot.uclibc.org/downloads/manual/manual.html#writing-rules-
config-in, so I used max. 80 chars.
Regards, Bernd
^ permalink raw reply [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: new package
2015-04-19 9:03 ` Bernd Kuhls
@ 2015-04-19 12:44 ` Thomas Petazzoni
0 siblings, 0 replies; 40+ messages in thread
From: Thomas Petazzoni @ 2015-04-19 12:44 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
Please try to Cc: me when you reply to a mail from me on the mailing
list. This will ensure it also goes to my Inbox, so that I can reply to
you in an hopefully timely fashion :)
On Sun, 19 Apr 2015 11:03:33 +0200, Bernd Kuhls wrote:
> how many chars are allowed in one line? I could not find a hint at
> http://buildroot.uclibc.org/downloads/manual/manual.html#writing-rules-
> config-in, so I used max. 80 chars.
I think 72 should be the rule.
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 40+ messages in thread
* [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package
2015-04-18 12:59 ` Thomas Petazzoni
@ 2015-07-11 13:12 ` Romain Naour
0 siblings, 0 replies; 40+ messages in thread
From: Romain Naour @ 2015-07-11 13:12 UTC (permalink / raw)
To: buildroot
Hi Bernd, Thomas, all
Le 18/04/2015 14:59, Thomas Petazzoni a ?crit :
> Dear Bernd Kuhls,
>
> On Sat, 18 Apr 2015 14:40:40 +0200, Bernd Kuhls wrote:
>
>> diff --git a/package/x11r7/xlib_libXpresent/Config.in b/package/x11r7/xlib_libXpresent/Config.in
>> new file mode 100644
>> index 0000000..f9cad60
>> --- /dev/null
>> +++ b/package/x11r7/xlib_libXpresent/Config.in
>> @@ -0,0 +1,14 @@
>> +config BR2_PACKAGE_XLIB_LIBXPRESENT
>> + bool "libXpresent"
>> + select BR2_PACKAGE_XLIB_LIBX11
>> + select BR2_PACKAGE_XLIB_LIBXEXT
>> + select BR2_PACKAGE_XLIB_LIBXFIXES
>> + select BR2_PACKAGE_XLIB_LIBXRANDR
>> + select BR2_PACKAGE_XPROTO_PRESENTPROTO
>> + select BR2_PACKAGE_XPROTO_XPROTO
By looking at the configure.ac, it seems that libXpresent depends only on
xproto-presentproto.
I missed your patch, so I have packaged my own version for my efl-1.14 branch:
https://github.com/RomainNaour/buildroot/commit/59b59baf6a2d17db9a0ede6677879f686bf3bb79
It build fine with only xlib_libX11 and xproto_presentproto as dependency.
>> + help
>> + X Present Extension C Library
>> + This package contains header files and documentation for the Present
>> + extension. Library and server implementations are separate.
>
> This seems weird. The package is named "xlib_libXpresent", but it does
> not contain the library? This description looks more like a xproto*
> description than a xlib* description.
You can use the description from the debian package:
https://ftp-master.debian.org/new/libxpresent_1.0.0-1.html
>
>> +$(eval $(host-autotools-package))
>
> Why is a host package needed?
As I can say, libXpresent doesn't need a host package to build.
Best regards,
Romain Naour
>
> Thanks!
>
> Thomas
>
^ permalink raw reply [flat|nested] 40+ messages in thread
end of thread, other threads:[~2015-07-11 13:12 UTC | newest]
Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: " Bernd Kuhls
2015-04-18 16:38 ` Thomas Petazzoni
2015-04-19 9:03 ` Bernd Kuhls
2015-04-19 12:44 ` Thomas Petazzoni
2015-04-18 12:40 ` [Buildroot] [PATCH 03/32] package/x11r7/xlib_libXdmcp: bump to version 1.1.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 04/32] package/x11r7/xdriver_xf86-input-synaptics: bump version to 1.8.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 05/32] package/x11r7/xdriver_xf86-input-evdev: bump version to 2.9.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 06/32] package/x11r7/xdriver_xf86-video-trident: bump version to 1.3.7, add hash Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 07/32] package/x11r7/xdriver_xf86-input-vmmouse: " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, " Bernd Kuhls
2015-04-18 16:29 ` Bernd Kuhls
2015-04-18 16:40 ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 09/32] package/x11r7/xapp_setxkbmap: bump version to 1.3.1, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 10/32] package/x11r7/xapp_smproxy: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 11/32] package/x11r7/xapp_twm: bump version to 1.0.9, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 12/32] package/x11r7/xapp_x11perf: bump version to 1.6.0, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 13/32] package/x11r7/xapp_xcmsdb: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 14/32] package/x11r7/xapp_xdpyinfo: bump version to 1.3.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 15/32] package/x11r7/xapp_xdriinfo: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 16/32] package/x11r7/xapp_xditview: bump version to 1.0.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 17/32] package/x11r7/xapp_xev: bump version to 1.2.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 18/32] package/x11r7/xapp_xgamma: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 19/32] package/x11r7/xapp_xgc: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 20/32] package/x11r7/xapp_xhost: bump version to 1.0.7, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 21/32] package/x11r7/xapp_xkbedv: bump version to 1.1.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 22/32] package/x11r7/xapp_xkbprint: bump version to 1.0.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 23/32] package/x11r7/xapp_xlsatoms: bump version to 1.1.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 24/32] package/x11r7/xapp_xlsfonts: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 25/32] package/x11r7/xapp_xmag: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 26/32] package/x11r7/xapp_xmh: bump version to 1.0.3, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 27/32] package/x11r7/xapp_xmodmap: bump version to 1.0.9, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package Bernd Kuhls
2015-04-18 12:59 ` Thomas Petazzoni
2015-07-11 13:12 ` Romain Naour
2015-04-18 12:40 ` [Buildroot] [PATCH 29/32] package/x11r7/xapp_xcompmgr: " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 30/32] package/x11r7/xlib_libICE: Add host-pkgconf dependency Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 31/32] package/x11r7/xproto_xproxymanagementprotocol: new package Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 32/32] package/x11r7/xapp_xfindproxy: " Bernd Kuhls
2015-04-18 13:49 ` [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: " Romain Naour
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox