summaryrefslogtreecommitdiffstats
path: root/x11-libs
diff options
context:
space:
mode:
authorIsmael Luceno2023-02-02 22:38:26 +0100
committerIsmael Luceno2023-02-03 00:42:43 +0100
commit58d551120e41e23317614b23911df59c92d528b5 (patch)
tree789e7e87f4f6fef423be4d115750ef3a154ff659 /x11-libs
parent271ac30377802c43945809ca4587b14c4b3b6bd2 (diff)
wine 8.1 (devel) / 8.0 (stable)
Diffstat (limited to 'x11-libs')
-rwxr-xr-xx11-libs/wine/DETAILS4
-rw-r--r--x11-libs/wine/HISTORY5
-rw-r--r--x11-libs/wine/patches-stable/0002-server-Fix-missing-include-for-uid_t.patch33
3 files changed, 7 insertions, 35 deletions
diff --git a/x11-libs/wine/DETAILS b/x11-libs/wine/DETAILS
index 8262dba65e..339353d84a 100755
--- a/x11-libs/wine/DETAILS
+++ b/x11-libs/wine/DETAILS
@@ -1,8 +1,8 @@
. "$GRIMOIRE/FUNCTIONS"
SPELL=wine
case "$WINE_BRANCH" in
-(devel) VERSION=7.21;;
-(stable) VERSION=7.0.1;;
+(devel) VERSION=8.1;;
+(stable) VERSION=8.0;;
esac; case "$WINE_BRANCH" in
(scm)
VERSION=$(get_scm_version)
diff --git a/x11-libs/wine/HISTORY b/x11-libs/wine/HISTORY
index 37c0bc8a0c..9945f201df 100644
--- a/x11-libs/wine/HISTORY
+++ b/x11-libs/wine/HISTORY
@@ -1,3 +1,8 @@
+2023-02-02 Ismael Luceno <ismael@sourcemage.org>
+ * DETAILS: updated to 8.0 (stable) and 8.1 (devel)
+ * patches-stable/0002-server-Fix-missing-include-for-uid_t.patch:
+ removed, no longer needed
+
2022-11-11 Ismael Luceno <ismael@sourcemage.org>
* DETAILS: updated WINE_BRANCH=devel to 7.21
diff --git a/x11-libs/wine/patches-stable/0002-server-Fix-missing-include-for-uid_t.patch b/x11-libs/wine/patches-stable/0002-server-Fix-missing-include-for-uid_t.patch
deleted file mode 100644
index f4958180b5..0000000000
--- a/x11-libs/wine/patches-stable/0002-server-Fix-missing-include-for-uid_t.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From b9fcfd6e79f3e5169e1ad82d24c6ca2f56ab4e48 Mon Sep 17 00:00:00 2001
-From: Ismael Luceno <ismael@iodev.co.uk>
-Date: Sun, 10 Oct 2021 22:56:59 +0200
-Subject: [PATCH 2/2] server: Fix missing include for uid_t
-
-Explicitly include <sys/types.h> to make uid_t available to users of
-server/security.h.
-
-This is a problem on musl, and possibly other non-glibc systems.
-
-Fixes: c954e5b9e6a6 ("server: Avoid using wine/port.h.")
-Upstream-Status: Submitted [https://bugs.winehq.org/show_bug.cgi?id=51860]
-Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
----
- server/security.h | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/server/security.h b/server/security.h
-index 5388bc9c4195..39e7218ec5fa 100644
---- a/server/security.h
-+++ b/server/security.h
-@@ -21,6 +21,8 @@
- #ifndef __WINE_SERVER_SECURITY_H
- #define __WINE_SERVER_SECURITY_H
-
-+#include <sys/types.h> /* for uid_t */
-+
- extern const LUID SeIncreaseQuotaPrivilege;
- extern const LUID SeSecurityPrivilege;
- extern const LUID SeTakeOwnershipPrivilege;
---
-2.33.0
-