[arch-commits] Commit in lib32-libxkbcommon/trunk (2 files)

2019-10-20 Thread Jan Steffens via arch-commits
Date: Sunday, October 20, 2019 @ 20:30:34
  Author: heftig
Revision: 517984

0.9.1-1

Modified:
  lib32-libxkbcommon/trunk/PKGBUILD (contents, properties)
Deleted:
  
lib32-libxkbcommon/trunk/0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch

-+
 0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch |   41 
--
 PKGBUILD|   15 ---
 2 files changed, 4 insertions(+), 52 deletions(-)

Deleted: 0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch
===
--- 0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch 
2019-10-20 20:21:50 UTC (rev 517983)
+++ 0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch 
2019-10-20 20:30:34 UTC (rev 517984)
@@ -1,41 +0,0 @@
-From 1cd54b5e37730aee3e3c92262241fcdbab4407ac Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Sun, 20 Oct 2019 19:06:19 +
-Subject: [PATCH] context: Don't fail to create the context if HOME isn't
- available
-
-E.g. when Mutter has CAP_SYS_NICE and thus secure_getenv returns NULL.
-
-Fixes https://bugs.archlinux.org/task/64191

- src/context.c | 14 +++---
- 1 file changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/src/context.c b/src/context.c
-index f43ee0a..6d86dd1 100644
 a/src/context.c
-+++ b/src/context.c
-@@ -81,13 +81,13 @@ xkb_context_include_path_append_default(struct xkb_context 
*ctx)
- int ret = 0;
- 
- home = secure_getenv("HOME");
--if (!home)
--return ret;
--err = asprintf(_path, "%s/.xkb", home);
--if (err <= 0)
--return ret;
--ret |= xkb_context_include_path_append(ctx, user_path);
--free(user_path);
-+if (home != NULL) {
-+err = asprintf(_path, "%s/.xkb", home);
-+if (err <= 0)
-+return ret;
-+ret |= xkb_context_include_path_append(ctx, user_path);
-+free(user_path);
-+}
- 
- root = secure_getenv("XKB_CONFIG_ROOT");
- if (root != NULL)
--- 
-2.23.0
-

Modified: PKGBUILD
===
--- PKGBUILD2019-10-20 20:21:50 UTC (rev 517983)
+++ PKGBUILD2019-10-20 20:30:34 UTC (rev 517984)
@@ -5,8 +5,8 @@
 
 pkgbase=lib32-libxkbcommon
 pkgname=('lib32-libxkbcommon' 'lib32-libxkbcommon-x11')
-pkgver=0.9.0
-pkgrel=2
+pkgver=0.9.1
+pkgrel=1
 url='https://xkbcommon.org/'
 arch=('x86_64')
 license=('custom')
@@ -13,18 +13,11 @@
 makedepends=('git' 'lib32-libxcb' 'lib32-wayland' 'meson' 'wayland-protocols'
  'xorg-util-macros')
 checkdepends=('xorg-server-xvfb' 'libgl')
-source=("git+https://github.com/xkbcommon/libxkbcommon#tag=xkbcommon-${pkgver};
-0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch)
-sha256sums=('SKIP'
-'62794414d698648eba9d05723f5c6a9b0bc8c3e1d611548932e3c5eb06e3c00e')
+source=("git+https://github.com/xkbcommon/libxkbcommon#tag=xkbcommon-${pkgver};)
+sha256sums=('SKIP')
 
 prepare() {
   mkdir -p build x11/usr/lib32/pkgconfig
-
-  cd libxkbcommon
-
-  # https://bugs.archlinux.org/task/64191
-  git apply -3 
../0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch
 }
 
 build() {


Property changes on: lib32-libxkbcommon/trunk/PKGBUILD
___
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property


[arch-commits] Commit in lib32-libxkbcommon/trunk (2 files)

2019-10-20 Thread Jan Steffens via arch-commits
Date: Sunday, October 20, 2019 @ 19:12:41
  Author: heftig
Revision: 517948

0.9.0-2

Added:
  
lib32-libxkbcommon/trunk/0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch
Modified:
  lib32-libxkbcommon/trunk/PKGBUILD

-+
 0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch |   41 
++
 PKGBUILD|   13 ++-
 2 files changed, 51 insertions(+), 3 deletions(-)

Added: 0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch
===
--- 0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch 
(rev 0)
+++ 0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch 
2019-10-20 19:12:41 UTC (rev 517948)
@@ -0,0 +1,41 @@
+From 1cd54b5e37730aee3e3c92262241fcdbab4407ac Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sun, 20 Oct 2019 19:06:19 +
+Subject: [PATCH] context: Don't fail to create the context if HOME isn't
+ available
+
+E.g. when Mutter has CAP_SYS_NICE and thus secure_getenv returns NULL.
+
+Fixes https://bugs.archlinux.org/task/64191
+---
+ src/context.c | 14 +++---
+ 1 file changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/src/context.c b/src/context.c
+index f43ee0a..6d86dd1 100644
+--- a/src/context.c
 b/src/context.c
+@@ -81,13 +81,13 @@ xkb_context_include_path_append_default(struct xkb_context 
*ctx)
+ int ret = 0;
+ 
+ home = secure_getenv("HOME");
+-if (!home)
+-return ret;
+-err = asprintf(_path, "%s/.xkb", home);
+-if (err <= 0)
+-return ret;
+-ret |= xkb_context_include_path_append(ctx, user_path);
+-free(user_path);
++if (home != NULL) {
++err = asprintf(_path, "%s/.xkb", home);
++if (err <= 0)
++return ret;
++ret |= xkb_context_include_path_append(ctx, user_path);
++free(user_path);
++}
+ 
+ root = secure_getenv("XKB_CONFIG_ROOT");
+ if (root != NULL)
+-- 
+2.23.0
+

Modified: PKGBUILD
===
--- PKGBUILD2019-10-20 19:10:38 UTC (rev 517947)
+++ PKGBUILD2019-10-20 19:12:41 UTC (rev 517948)
@@ -6,7 +6,7 @@
 pkgbase=lib32-libxkbcommon
 pkgname=('lib32-libxkbcommon' 'lib32-libxkbcommon-x11')
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 url='https://xkbcommon.org/'
 arch=('x86_64')
 license=('custom')
@@ -13,11 +13,18 @@
 makedepends=('git' 'lib32-libxcb' 'lib32-wayland' 'meson' 'wayland-protocols'
  'xorg-util-macros')
 checkdepends=('xorg-server-xvfb' 'libgl')
-source=("git+https://github.com/xkbcommon/libxkbcommon#tag=xkbcommon-${pkgver};)
-sha256sums=('SKIP')
+source=("git+https://github.com/xkbcommon/libxkbcommon#tag=xkbcommon-${pkgver};
+0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch)
+sha256sums=('SKIP'
+'62794414d698648eba9d05723f5c6a9b0bc8c3e1d611548932e3c5eb06e3c00e')
 
 prepare() {
   mkdir -p build x11/usr/lib32/pkgconfig
+
+  cd libxkbcommon
+
+  # https://bugs.archlinux.org/task/64191
+  git apply -3 
../0001-context-Don-t-fail-to-create-the-context-if-HOME-isn.patch
 }
 
 build() {