flatpak: update to 1.10.3.

This commit is contained in:
Duncaen 2021-09-02 15:08:55 +02:00
parent fa7b1cb3f4
commit 2c1fde0ef2
No known key found for this signature in database
GPG key ID: 335C1D17EC3D6E35
2 changed files with 6 additions and 20 deletions

View file

@ -1,15 +0,0 @@
--- a/config.h.in
+++ b/config.h.in
@@ -151,3 +151,12 @@
/* Define to 1 if you need to in order for `stat' and other things to work. */
#undef _POSIX_SOURCE
+
+#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

View file

@ -1,28 +1,29 @@
# Template file for 'flatpak'
pkgname=flatpak
version=1.10.2
version=1.10.3
revision=1
build_style=gnu-configure
build_helper="gir"
configure_args="
--with-system-bubblewrap
--with-system-dbus-proxy
--with-system-helper-user=_flatpak
--enable-selinux-module=no
$(vopt_enable gir introspection)"
hostmakedepends="bubblewrap gettext glib-devel libxslt pkg-config bison
python3-parsing docbook docbook-xml docbook-xsl"
python3-parsing docbook docbook-xml docbook-xsl xdg-dbus-proxy"
makedepends="appstream-glib-devel gpgme-devel json-glib-devel libcap-devel
libostree-devel libseccomp-devel polkit-devel dconf-devel fuse-devel
libsoup-devel"
depends="bubblewrap gnupg2"
checkdepends="attr-progs bubblewrap dbus gnupg2 socat which"
depends="bubblewrap gnupg2 xdg-dbus-proxy"
checkdepends="attr-progs bubblewrap dbus gnupg2 socat which xdg-dbus-proxy"
short_desc="Application sandboxing and distribution framework"
maintainer="Duncaen <duncaen@voidlinux.org>"
license="LGPL-2.1-or-later"
homepage="https://flatpak.org/"
changelog="https://github.com/flatpak/flatpak/raw/master/NEWS"
distfiles="https://github.com/flatpak/flatpak/releases/download/${version}/flatpak-${version}.tar.xz"
checksum=db152739d072f8ff299e4e888d8963a1b4538da7b10e0b86525be438f2e1dde4
checksum=12723ad250997b5a28bef92ae632b097f50b0819feeb25ef8887fe8ec9b63b46
build_options="gir"
build_options_default="gir"