package/xdg-dbus-proxy: bump to version 0.1.3
This is a minor maintenance release. The release incorporates "0001-Fix-musl-compilation-by-adding-TEMP_FAILURE_RETRY.patch", which can now be removed. Release notes: https://github.com/flatpak/xdg-dbus-proxy/releases/tag/0.1.3 Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
4c7e250c69
commit
1a0d90d8ab
@ -1,36 +0,0 @@
|
||||
From 645c45f0334bb1d6e31b5927cece5e446f129cbb Mon Sep 17 00:00:00 2001
|
||||
From: Danilo Spinella <danyspin97@protonmail.com>
|
||||
Date: Sat, 7 Dec 2019 00:05:21 +0100
|
||||
Subject: [PATCH] Fix musl compilation by adding TEMP_FAILURE_RETRY
|
||||
|
||||
Fetch from: https://github.com/flatpak/xdg-dbus-proxy/pull/13
|
||||
Upstream-Status: Accepted
|
||||
Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
|
||||
|
||||
---
|
||||
dbus-proxy.c | 9 +++++++++
|
||||
1 file changed, 9 insertions(+)
|
||||
|
||||
diff --git a/dbus-proxy.c b/dbus-proxy.c
|
||||
index 163df21..4b07931 100644
|
||||
--- a/dbus-proxy.c
|
||||
+++ b/dbus-proxy.c
|
||||
@@ -30,6 +30,15 @@
|
||||
#include <errno.h>
|
||||
|
||||
#include "flatpak-proxy.h"
|
||||
+// Taken from glibc unistd.h
|
||||
+#ifndef TEMP_FAILURE_RETRY
|
||||
+# define TEMP_FAILURE_RETRY(expression) \
|
||||
+ (__extension__ \
|
||||
+ ({ long int __result; \
|
||||
+ do __result = (long int) (expression); \
|
||||
+ while (__result == -1L && errno == EINTR); \
|
||||
+ __result; }))
|
||||
+#endif
|
||||
|
||||
static const char *argv0;
|
||||
static GList *proxies;
|
||||
--
|
||||
2.24.1
|
||||
|
@ -1,5 +1,5 @@
|
||||
# From https://github.com/flatpak/xdg-dbus-proxy/releases/tag/0.1.2
|
||||
sha256 1749d6f9f46dcc9edc87725641cf56cf91dcad1b01707891ea0850c1000c520f xdg-dbus-proxy-0.1.2.tar.xz
|
||||
# From https://github.com/flatpak/xdg-dbus-proxy/releases/tag/0.1.3
|
||||
sha256 03b5d28ca879253ddbbce31098909becca1495ea811a6377a492e28f16c09b9b xdg-dbus-proxy-0.1.3.tar.xz
|
||||
|
||||
# Hash for license files:
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
XDG_DBUS_PROXY_VERSION = 0.1.2
|
||||
XDG_DBUS_PROXY_VERSION = 0.1.3
|
||||
XDG_DBUS_PROXY_SITE = https://github.com/flatpak/xdg-dbus-proxy/releases/download/$(XDG_DBUS_PROXY_VERSION)
|
||||
XDG_DBUS_PROXY_SOURCE = xdg-dbus-proxy-$(XDG_DBUS_PROXY_VERSION).tar.xz
|
||||
XDG_DBUS_PROXY_DEPENDENCIES = host-pkgconf libglib2
|
||||
|
Loading…
Reference in New Issue
Block a user