git: fcf393e4f1ac - main - x11-wm/gamescope: update to 3.10.4

From: Jan Beich <jbeich_at_FreeBSD.org>
Date: Sat, 15 Jan 2022 01:37:58 UTC
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=fcf393e4f1acbe8f35726655e460483a2176be6f

commit fcf393e4f1acbe8f35726655e460483a2176be6f
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2022-01-14 21:25:33 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2022-01-15 01:37:48 +0000

    x11-wm/gamescope: update to 3.10.4
    
    Changes:        https://github.com/Plagman/gamescope/compare/3.10.3...3.10.4
    Reported by:    portscout
---
 x11-wm/gamescope/Makefile                 |  2 +-
 x11-wm/gamescope/distinfo                 |  6 +++---
 x11-wm/gamescope/files/patch-wlroots-0.15 | 29 -----------------------------
 3 files changed, 4 insertions(+), 33 deletions(-)

diff --git a/x11-wm/gamescope/Makefile b/x11-wm/gamescope/Makefile
index 1ca45541891b..0cbf9924c695 100644
--- a/x11-wm/gamescope/Makefile
+++ b/x11-wm/gamescope/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	gamescope
-DISTVERSION=	3.10.3
+DISTVERSION=	3.10.4
 CATEGORIES=	x11-wm
 
 PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
diff --git a/x11-wm/gamescope/distinfo b/x11-wm/gamescope/distinfo
index 423a90e497ac..78d9632e9e16 100644
--- a/x11-wm/gamescope/distinfo
+++ b/x11-wm/gamescope/distinfo
@@ -1,6 +1,6 @@
-TIMESTAMP = 1639817360
-SHA256 (Plagman-gamescope-3.10.3_GH0.tar.gz) = 41ee8f27e6ad84079ec5d9a1b5f7e9bef4e2150ffd159044dfbd9703cb536d27
-SIZE (Plagman-gamescope-3.10.3_GH0.tar.gz) = 98109
+TIMESTAMP = 1642195533
+SHA256 (Plagman-gamescope-3.10.4_GH0.tar.gz) = f6407dea01e85f14423f6ad552b6e714f288395fe71ef5f0d1fac9c24163ba34
+SIZE (Plagman-gamescope-3.10.4_GH0.tar.gz) = 99542
 SHA256 (nothings-stb-af1a5bc_GH0.tar.gz) = 3facf6e6f8c3e1715e1a088f22bad9c9202973f9369fb3f088f46cced3f64058
 SIZE (nothings-stb-af1a5bc_GH0.tar.gz) = 1387334
 SHA256 (emersion-libliftoff-2e1dd93b60224e77f6a49ad8fb36d184e3a9a3bc_GL0.tar.gz) = 487a09a299b178797d93fd1938a4513f02f7d562cdc534dd44561d4751300daf
diff --git a/x11-wm/gamescope/files/patch-wlroots-0.15 b/x11-wm/gamescope/files/patch-wlroots-0.15
deleted file mode 100644
index fcbe7e0300c2..000000000000
--- a/x11-wm/gamescope/files/patch-wlroots-0.15
+++ /dev/null
@@ -1,29 +0,0 @@
-https://github.com/Plagman/gamescope/issues/316
-
-../src/wlserver.cpp:26:10: fatal error: 'wlr/backend/noop.h' file not found
-#include <wlr/backend/noop.h>
-         ^~~~~~~~~~~~~~~~~~~~
-
---- src/wlserver.cpp.orig	2021-10-18 03:17:30 UTC
-+++ src/wlserver.cpp
-@@ -23,7 +23,6 @@ extern "C" {
- #include <wlr/backend/headless.h>
- #include <wlr/backend/multi.h>
- #include <wlr/backend/libinput.h>
--#include <wlr/backend/noop.h>
- #include <wlr/interfaces/wlr_input_device.h>
- #include <wlr/interfaces/wlr_keyboard.h>
- #include <wlr/render/wlr_renderer.h>
-@@ -642,10 +641,10 @@ bool wlserver_init( void ) {
- 
- 	wl_signal_add( &wlserver.wlr.multi_backend->events.new_input, &new_input_listener );
- 
--	wlserver.wlr.noop_backend = wlr_noop_backend_create( wlserver.display );
-+	wlserver.wlr.noop_backend = wlr_headless_backend_create( wlserver.display );
- 	wlr_multi_backend_add( wlserver.wlr.multi_backend, wlserver.wlr.noop_backend );
- 
--	wlserver.wlr.output = wlr_noop_add_output( wlserver.wlr.noop_backend );
-+	wlserver.wlr.output = wlr_headless_add_output( wlserver.wlr.noop_backend, 800, 600 );
- 
- 	if ( bIsDRM == True )
- 	{