Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0
@ 2020-10-03 17:07 Ophidiophobia
  2020-10-03 18:08 ` q66
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-03 17:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1037 bytes --]

There is a new pull request by Ophidiophobia against master on the void-packages repository

https://github.com/Ophidiophobia/void-packages mesa-20.2.0
https://github.com/void-linux/void-packages/pull/25318

[REQUIRES TESTS] mesa: update to 20.2.0
This updates mesa to 20.2.0

Several things to keep in mind:
Announcement happened only on their mailing list https://lists.freedesktop.org/archives/mesa-announce/2020-September/000600.html
20.1.9 was released later but new games may still need 20.2.x to work.

I tested compiling musl and hope this does not cause run time problems for NVIDIA or Intel graphic cards.

The game Horizon Zero Dawn actually runs with 20.2.0 for me (on 20.1.9 and lower the game crashes during the intro or within seconds at the main menu.

I have checked this on one game so far. I'll test it on other games in the next hours (Radeon RX 490).
It would be nice if others would check it on their setups.



A patch file from https://github.com/void-linux/void-packages/pull/25318.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mesa-20.2.0-25318.patch --]
[-- Type: text/x-diff, Size: 6578 bytes --]

From 15af816b3221c07aa9d061cb50d1869a93db8613 Mon Sep 17 00:00:00 2001
From: Ophidiophobia <sandstrahl700@gmx.de>
Date: Sat, 3 Oct 2020 16:02:05 +0200
Subject: [PATCH] mesa: update to 20.2.0

---
 srcpkgs/mesa/patches/add-use-elf-tls.patch |  6 +++--
 srcpkgs/mesa/patches/musl.patch            | 26 ++++++++++----------
 srcpkgs/mesa/template                      | 28 ++++++++++++++--------
 3 files changed, 34 insertions(+), 26 deletions(-)

diff --git a/srcpkgs/mesa/patches/add-use-elf-tls.patch b/srcpkgs/mesa/patches/add-use-elf-tls.patch
index d5b933d586d..617d8c0e946 100644
--- a/srcpkgs/mesa/patches/add-use-elf-tls.patch
+++ b/srcpkgs/mesa/patches/add-use-elf-tls.patch
@@ -9,10 +9,12 @@ index d228de0..972cd79 100644
  endif
  
  # Android uses emutls for versions <= P/28. For USE_ELF_TLS we need ELF TLS.
--if not ['windows', 'freebsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
+ use_elf_tls = false
+-if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
 +with_use_elf_tls = get_option('use-elf-tls')
-+if not ['windows', 'freebsd'].contains(host_machine.system()) and with_use_elf_tls and (not with_platform_android or get_option('platform-sdk-version') >= 29)
++if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and with_use_elf_tls and (not with_platform_android or get_option('platform-sdk-version') >= 29)
    pre_args += '-DUSE_ELF_TLS'
+   use_elf_tls = true
  endif
 
 diff --git meson_options.txt meson_options.txt
diff --git a/srcpkgs/mesa/patches/musl.patch b/srcpkgs/mesa/patches/musl.patch
index ba679adab15..f00f0f78c99 100644
--- a/srcpkgs/mesa/patches/musl.patch
+++ b/srcpkgs/mesa/patches/musl.patch
@@ -9,8 +9,8 @@
  #include "pipe/p_compiler.h"
  #include "pipe/p_state.h"
  
---- src/gallium/state_trackers/nine/threadpool.h.orig	2015-05-07 14:10:53.443337212 +0200
-+++ src/gallium/state_trackers/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
+--- src/gallium/frontends/nine/threadpool.h.orig	2015-05-07 14:10:53.443337212 +0200
++++ src/gallium/frontends/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
 @@ -24,6 +24,8 @@
  #ifndef _THREADPOOL_H_
  #define _THREADPOOL_H_
@@ -20,18 +20,16 @@
  #define MAXTHREADS 1
  
  struct threadpool {
---- src/util/rand_xor.c.orig	2017-06-20 00:38:57.199474067 +0200
-+++ src/util/rand_xor.c	2017-06-20 00:40:31.351279557 +0200
-@@ -23,7 +23,9 @@
-  */
- 
- #if defined(__linux__)
-+#include <sys/types.h>
- #include <sys/file.h>
-+#include <sys/stat.h>
+--- src/util/rand_xor.c.orig	2020-10-03 12:27:48.489024729 +0200
++++ src/util/rand_xor.c	2020-10-03 12:31:05.927113521 +0200
+@@ -28,6 +28,7 @@
+ #if defined(HAVE_GETRANDOM)
+ #include <sys/random.h>
+ #endif
++#include <sys/types.h>		/* size_t, ssize_t */
  #include <unistd.h>
  #include <fcntl.h>
- #else
+ #endif
 --- src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
 +++ src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
 @@ -28,6 +28,8 @@
@@ -43,8 +41,8 @@
  #include "radv_radeon_winsys.h"
  #include "ac_gpu_info.h"
  #include "addrlib/addrinterface.h"
---- src/gallium/state_trackers/nine/nine_debug.c.orig	2020-03-06 07:46:48.278918421 +0100
-+++ src/gallium/state_trackers/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
+--- src/gallium/frontends/nine/nine_debug.c.orig	2020-03-06 07:46:48.278918421 +0100
++++ src/gallium/frontends/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
 @@ -65,7 +65,7 @@ _nine_debug_printf( unsigned long flag,
  {
      static boolean first = TRUE;
diff --git a/srcpkgs/mesa/template b/srcpkgs/mesa/template
index 13de387a00b..528a0c979c3 100644
--- a/srcpkgs/mesa/template
+++ b/srcpkgs/mesa/template
@@ -1,6 +1,6 @@
 # Template file for 'mesa'
 pkgname=mesa
-version=20.1.9
+version=20.2.0
 revision=1
 wrksrc="mesa-${version}"
 build_style=meson
@@ -23,7 +23,7 @@ license="MIT, LGPL-2.1-or-later"
 homepage="https://www.mesa3d.org/"
 changelog="https://docs.mesa3d.org/relnotes/${version}.html"
 distfiles="https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
-checksum=b251ca0769b722058986640d48f8457c596142cfbee1a83cba91b83391427382
+checksum=63f0359575d558ef98dd78adffc0df4c66b76964ebf603b778b7004964191d30
 
 build_options="wayland"
 build_options_default="wayland"
@@ -40,9 +40,9 @@ replaces="libGL>=10_1<19.2.5_2 libEGL>=10_1<19.2.5_2 libGLES>=10_1<19.2.5_2"
 
 # swrast always present
 _gallium_drivers=" -Dgallium-drivers=swrast"
-_vulkan_drivers=" -Dvulkan-drivers="
+_vulkan_drivers=""
 # pre-gallium drivers are mostly for old ati + i915/965
-_dri_drivers=" -Ddri-drivers="
+_dri_drivers=""
 
 # amd and nvidia drivers on all platforms except where it makes no sense
 # amd implicitly enables clover opencl, also enable hwdec and virgl too
@@ -74,8 +74,10 @@ if [ "$_have_amd" ]; then
 	_have_opencl=yes
 	_have_vulkan=yes
 	_gallium_drivers+=",r300,r600,radeonsi"
-	_vulkan_drivers+=",amd"
-	_dri_drivers+=",r100,r200"
+	[ ! -z "$_vulkan_drivers" ] && _vulkan_drivers+=","
+	_vulkan_drivers+="amd"
+	[ ! -z "$_dri_drivers" ] && _dri_drivers+=","
+	_dri_drivers+="r100,r200"
 	subpackages+=" mesa-vulkan-radeon"
 	# transitional dummy packages
 	subpackages+=" mesa-ati-dri"
@@ -84,8 +86,10 @@ fi
 if [ "$_have_intel" ]; then
 	_have_vulkan=yes
 	_gallium_drivers+=",iris"
-	_vulkan_drivers+=",intel"
-	_dri_drivers+=",i915,i965"
+	[ ! -z "$_vulkan_drivers" ] && _vulkan_drivers+=","
+	_vulkan_drivers+="intel"
+	[ ! -z "$_dri_drivers" ] && _dri_drivers+=","
+	_dri_drivers+="i915,i965"
 	subpackages+=" mesa-vulkan-intel"
 	# transitional dummy packages
 	subpackages+=" mesa-intel-dri"
@@ -98,7 +102,8 @@ if [ "$_have_nv" ]; then
 		# transitional dummy packages
 		subpackages+=" mesa-tegra-dri"
 	else
-		_dri_drivers+=",nouveau"
+		[ ! -z "$_dri_drivers" ] && _dri_drivers+=","
+		_dri_drivers+="nouveau"
 	fi
 	# transitional dummy packages
 	subpackages+=" mesa-nouveau-dri"
@@ -146,6 +151,9 @@ else
 	configure_args+=" -Dgallium-vdpau=false -Dgallium-va=false -Dgallium-xvmc=false"
 fi
 
+[ ! -z "$_vulkan_drivers" ] && _vulkan_drivers=" -Dvulkan-drivers=$_vulkan_drivers"
+[ ! -z "$_dri_drivers" ] && _dri_drivers=" -Ddri-drivers=$_dri_drivers"
+
 configure_args+=" ${_gallium_drivers} ${_vulkan_drivers} ${_dri_drivers}"
 
 if [ "$_have_vulkan" ]; then
@@ -180,7 +188,7 @@ post_configure() {
 }
 
 post_install() {
-	vlicense docs/license.html
+	vlicense docs/license.rst
 	case "$XBPS_TARGET_MACHINE" in
 		i686*)
 			vsed -e 's#/usr/lib/#/usr/lib32/#g' \

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
@ 2020-10-03 18:08 ` q66
  2020-10-03 18:10 ` q66
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: q66 @ 2020-10-03 18:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 183 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-703142464

Comment:
I'll give it a shot on my ppc* machines later.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
  2020-10-03 18:08 ` q66
@ 2020-10-03 18:10 ` q66
  2020-10-03 19:06 ` Ophidiophobia
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: q66 @ 2020-10-03 18:10 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-703142680

Comment:
Also, revert the unrelated template changes for vulkan drivers etc, it was done that way for a reason

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
  2020-10-03 18:08 ` q66
  2020-10-03 18:10 ` q66
@ 2020-10-03 19:06 ` Ophidiophobia
  2020-10-04  6:36 ` [PR PATCH] [Updated] " Ophidiophobia
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-03 19:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 633 bytes --]

New comment by Ophidiophobia on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-703151080

Comment:
I guess you mean the changes to _vulkan_drivers and _dri_drivers. Those are not unrelated. Meson complains about empty values. I am sure [this commit](https://github.com/mesa3d/mesa/commit/d32144602c1dfd507f07774ce906dc25d2697da0) is the reason.
Either I avoid the leading comma or I need to change meson_options.txt through a new patch or there is another way.
I left _gallium_drivers untouched because that one was not triggering the error.

What is your suggestion to solve this?

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PR PATCH] [Updated] [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (2 preceding siblings ...)
  2020-10-03 19:06 ` Ophidiophobia
@ 2020-10-04  6:36 ` Ophidiophobia
  2020-10-04  6:58 ` Ophidiophobia
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-04  6:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1042 bytes --]

There is an updated pull request by Ophidiophobia against master on the void-packages repository

https://github.com/Ophidiophobia/void-packages mesa-20.2.0
https://github.com/void-linux/void-packages/pull/25318

[REQUIRES TESTS] mesa: update to 20.2.0
This updates mesa to 20.2.0

Several things to keep in mind:
Announcement happened only on their mailing list https://lists.freedesktop.org/archives/mesa-announce/2020-September/000600.html
20.1.9 was released later but new games may still need 20.2.x to work.

I tested compiling musl and hope this does not cause run time problems for NVIDIA or Intel graphic cards.

The game Horizon Zero Dawn actually runs with 20.2.0 for me (on 20.1.9 and lower the game crashes during the intro or within seconds at the main menu.

I have checked this on one game so far. I'll test it on other games in the next hours (Radeon RX 490).
It would be nice if others would check it on their setups.



A patch file from https://github.com/void-linux/void-packages/pull/25318.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mesa-20.2.0-25318.patch --]
[-- Type: text/x-diff, Size: 5049 bytes --]

From c3c4715691daaecd124b3f0f37f2a5fee545ec9d Mon Sep 17 00:00:00 2001
From: Ophidiophobia <sandstrahl700@gmx.de>
Date: Sun, 4 Oct 2020 08:35:33 +0200
Subject: [PATCH] mesa: update to 20.2.0

---
 srcpkgs/mesa/patches/add-use-elf-tls.patch |  6 +++--
 srcpkgs/mesa/patches/musl.patch            | 26 ++++++++++------------
 srcpkgs/mesa/template                      | 11 ++++++---
 3 files changed, 24 insertions(+), 19 deletions(-)

diff --git a/srcpkgs/mesa/patches/add-use-elf-tls.patch b/srcpkgs/mesa/patches/add-use-elf-tls.patch
index d5b933d586d..617d8c0e946 100644
--- a/srcpkgs/mesa/patches/add-use-elf-tls.patch
+++ b/srcpkgs/mesa/patches/add-use-elf-tls.patch
@@ -9,10 +9,12 @@ index d228de0..972cd79 100644
  endif
  
  # Android uses emutls for versions <= P/28. For USE_ELF_TLS we need ELF TLS.
--if not ['windows', 'freebsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
+ use_elf_tls = false
+-if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
 +with_use_elf_tls = get_option('use-elf-tls')
-+if not ['windows', 'freebsd'].contains(host_machine.system()) and with_use_elf_tls and (not with_platform_android or get_option('platform-sdk-version') >= 29)
++if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and with_use_elf_tls and (not with_platform_android or get_option('platform-sdk-version') >= 29)
    pre_args += '-DUSE_ELF_TLS'
+   use_elf_tls = true
  endif
 
 diff --git meson_options.txt meson_options.txt
diff --git a/srcpkgs/mesa/patches/musl.patch b/srcpkgs/mesa/patches/musl.patch
index ba679adab15..f00f0f78c99 100644
--- a/srcpkgs/mesa/patches/musl.patch
+++ b/srcpkgs/mesa/patches/musl.patch
@@ -9,8 +9,8 @@
  #include "pipe/p_compiler.h"
  #include "pipe/p_state.h"
  
---- src/gallium/state_trackers/nine/threadpool.h.orig	2015-05-07 14:10:53.443337212 +0200
-+++ src/gallium/state_trackers/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
+--- src/gallium/frontends/nine/threadpool.h.orig	2015-05-07 14:10:53.443337212 +0200
++++ src/gallium/frontends/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
 @@ -24,6 +24,8 @@
  #ifndef _THREADPOOL_H_
  #define _THREADPOOL_H_
@@ -20,18 +20,16 @@
  #define MAXTHREADS 1
  
  struct threadpool {
---- src/util/rand_xor.c.orig	2017-06-20 00:38:57.199474067 +0200
-+++ src/util/rand_xor.c	2017-06-20 00:40:31.351279557 +0200
-@@ -23,7 +23,9 @@
-  */
- 
- #if defined(__linux__)
-+#include <sys/types.h>
- #include <sys/file.h>
-+#include <sys/stat.h>
+--- src/util/rand_xor.c.orig	2020-10-03 12:27:48.489024729 +0200
++++ src/util/rand_xor.c	2020-10-03 12:31:05.927113521 +0200
+@@ -28,6 +28,7 @@
+ #if defined(HAVE_GETRANDOM)
+ #include <sys/random.h>
+ #endif
++#include <sys/types.h>		/* size_t, ssize_t */
  #include <unistd.h>
  #include <fcntl.h>
- #else
+ #endif
 --- src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
 +++ src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
 @@ -28,6 +28,8 @@
@@ -43,8 +41,8 @@
  #include "radv_radeon_winsys.h"
  #include "ac_gpu_info.h"
  #include "addrlib/addrinterface.h"
---- src/gallium/state_trackers/nine/nine_debug.c.orig	2020-03-06 07:46:48.278918421 +0100
-+++ src/gallium/state_trackers/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
+--- src/gallium/frontends/nine/nine_debug.c.orig	2020-03-06 07:46:48.278918421 +0100
++++ src/gallium/frontends/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
 @@ -65,7 +65,7 @@ _nine_debug_printf( unsigned long flag,
  {
      static boolean first = TRUE;
diff --git a/srcpkgs/mesa/template b/srcpkgs/mesa/template
index 13de387a00b..b04a4e8c49a 100644
--- a/srcpkgs/mesa/template
+++ b/srcpkgs/mesa/template
@@ -1,6 +1,6 @@
 # Template file for 'mesa'
 pkgname=mesa
-version=20.1.9
+version=20.2.0
 revision=1
 wrksrc="mesa-${version}"
 build_style=meson
@@ -23,7 +23,7 @@ license="MIT, LGPL-2.1-or-later"
 homepage="https://www.mesa3d.org/"
 changelog="https://docs.mesa3d.org/relnotes/${version}.html"
 distfiles="https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
-checksum=b251ca0769b722058986640d48f8457c596142cfbee1a83cba91b83391427382
+checksum=63f0359575d558ef98dd78adffc0df4c66b76964ebf603b778b7004964191d30
 
 build_options="wayland"
 build_options_default="wayland"
@@ -146,6 +146,11 @@ else
 	configure_args+=" -Dgallium-vdpau=false -Dgallium-va=false -Dgallium-xvmc=false"
 fi
 
+# empty values introduced by leading comma are not allowed; the whole enumeration can be empty
+# _gallium_drivers is not affected by this problem
+_vulkan_drivers=$(echo "$_vulkan_drivers" | sed 's/=,/=/')
+_dri_drivers=$(echo "$_dri_drivers" | sed 's/=,/=/')
+
 configure_args+=" ${_gallium_drivers} ${_vulkan_drivers} ${_dri_drivers}"
 
 if [ "$_have_vulkan" ]; then
@@ -180,7 +185,7 @@ post_configure() {
 }
 
 post_install() {
-	vlicense docs/license.html
+	vlicense docs/license.rst
 	case "$XBPS_TARGET_MACHINE" in
 		i686*)
 			vsed -e 's#/usr/lib/#/usr/lib32/#g' \

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (3 preceding siblings ...)
  2020-10-04  6:36 ` [PR PATCH] [Updated] " Ophidiophobia
@ 2020-10-04  6:58 ` Ophidiophobia
  2020-10-04  9:58 ` Ophidiophobia
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-04  6:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 403 bytes --]

New comment by Ophidiophobia on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-703212561

Comment:
Changes to the template regarding _vulkan_drivers and _dri_drivers are now less drastic and accepted by lint. A simple sed takes care of any leading comma.
Everything else in this new commit is the same as the previous commit.

Sorry for the force push.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (4 preceding siblings ...)
  2020-10-04  6:58 ` Ophidiophobia
@ 2020-10-04  9:58 ` Ophidiophobia
  2020-10-04 10:32 ` q66
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-04  9:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 972 bytes --]

New comment by Ophidiophobia on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-703231448

Comment:
So far everything is well for me with this.

Borderlands 2 (Proton): no problems, maybe lightning is a little bit different but not wrong. I can see the lava again.
Borderlands 3 (Proton-5.9-GE-6-ST + mf): no problems
Horizon Zero Dawn (Proton-5.9-GE-6-ST): it "works" (shadows have psychodelic colors). At least much better than "crashes a few seconds into main menu"
TF2: no issues encountered
Saints Row IV (native): no issues encountered
Shadows of Mordor: no issues encountered
Final Fantasy 14 (Wine): no issues encountered
XFCE Desktop: no issues encountered

OS: Void Linux x86_64 
Kernel: 5.8.13_1 
Resolution: 1280x1024, 1280x1024 
DE: Xfce 4.14 
Theme: Adwaita-dark [GTK2], Adwaita [GTK3] 
Icons: Adwaita [GTK2/3] 
CPU: Intel i5-7600 (4) @ 4.100GHz 
GPU: AMD ATI Radeon RX 590 
Memory: 15967MiB 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (5 preceding siblings ...)
  2020-10-04  9:58 ` Ophidiophobia
@ 2020-10-04 10:32 ` q66
  2020-10-05  5:37 ` [PR PATCH] [Updated] " Ophidiophobia
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: q66 @ 2020-10-04 10:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 236 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-703235267

Comment:
you don't need to do the whole nonsense with echo and sed, it's enough to just do `foo=${foo/=,/=}`

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PR PATCH] [Updated] [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (6 preceding siblings ...)
  2020-10-04 10:32 ` q66
@ 2020-10-05  5:37 ` Ophidiophobia
  2020-10-09 14:12 ` HadetTheUndying
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-05  5:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1042 bytes --]

There is an updated pull request by Ophidiophobia against master on the void-packages repository

https://github.com/Ophidiophobia/void-packages mesa-20.2.0
https://github.com/void-linux/void-packages/pull/25318

[REQUIRES TESTS] mesa: update to 20.2.0
This updates mesa to 20.2.0

Several things to keep in mind:
Announcement happened only on their mailing list https://lists.freedesktop.org/archives/mesa-announce/2020-September/000600.html
20.1.9 was released later but new games may still need 20.2.x to work.

I tested compiling musl and hope this does not cause run time problems for NVIDIA or Intel graphic cards.

The game Horizon Zero Dawn actually runs with 20.2.0 for me (on 20.1.9 and lower the game crashes during the intro or within seconds at the main menu.

I have checked this on one game so far. I'll test it on other games in the next hours (Radeon RX 590).
It would be nice if others would check it on their setups.



A patch file from https://github.com/void-linux/void-packages/pull/25318.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mesa-20.2.0-25318.patch --]
[-- Type: text/x-diff, Size: 5011 bytes --]

From c251f90c1348aef4c12949873bdb71357288c479 Mon Sep 17 00:00:00 2001
From: Ophidiophobia <sandstrahl700@gmx.de>
Date: Sun, 4 Oct 2020 08:35:33 +0200
Subject: [PATCH] mesa: update to 20.2.0

---
 srcpkgs/mesa/patches/add-use-elf-tls.patch |  6 +++--
 srcpkgs/mesa/patches/musl.patch            | 26 ++++++++++------------
 srcpkgs/mesa/template                      | 11 ++++++---
 3 files changed, 24 insertions(+), 19 deletions(-)

diff --git a/srcpkgs/mesa/patches/add-use-elf-tls.patch b/srcpkgs/mesa/patches/add-use-elf-tls.patch
index d5b933d586d..617d8c0e946 100644
--- a/srcpkgs/mesa/patches/add-use-elf-tls.patch
+++ b/srcpkgs/mesa/patches/add-use-elf-tls.patch
@@ -9,10 +9,12 @@ index d228de0..972cd79 100644
  endif
  
  # Android uses emutls for versions <= P/28. For USE_ELF_TLS we need ELF TLS.
--if not ['windows', 'freebsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
+ use_elf_tls = false
+-if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
 +with_use_elf_tls = get_option('use-elf-tls')
-+if not ['windows', 'freebsd'].contains(host_machine.system()) and with_use_elf_tls and (not with_platform_android or get_option('platform-sdk-version') >= 29)
++if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and with_use_elf_tls and (not with_platform_android or get_option('platform-sdk-version') >= 29)
    pre_args += '-DUSE_ELF_TLS'
+   use_elf_tls = true
  endif
 
 diff --git meson_options.txt meson_options.txt
diff --git a/srcpkgs/mesa/patches/musl.patch b/srcpkgs/mesa/patches/musl.patch
index ba679adab15..f00f0f78c99 100644
--- a/srcpkgs/mesa/patches/musl.patch
+++ b/srcpkgs/mesa/patches/musl.patch
@@ -9,8 +9,8 @@
  #include "pipe/p_compiler.h"
  #include "pipe/p_state.h"
  
---- src/gallium/state_trackers/nine/threadpool.h.orig	2015-05-07 14:10:53.443337212 +0200
-+++ src/gallium/state_trackers/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
+--- src/gallium/frontends/nine/threadpool.h.orig	2015-05-07 14:10:53.443337212 +0200
++++ src/gallium/frontends/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
 @@ -24,6 +24,8 @@
  #ifndef _THREADPOOL_H_
  #define _THREADPOOL_H_
@@ -20,18 +20,16 @@
  #define MAXTHREADS 1
  
  struct threadpool {
---- src/util/rand_xor.c.orig	2017-06-20 00:38:57.199474067 +0200
-+++ src/util/rand_xor.c	2017-06-20 00:40:31.351279557 +0200
-@@ -23,7 +23,9 @@
-  */
- 
- #if defined(__linux__)
-+#include <sys/types.h>
- #include <sys/file.h>
-+#include <sys/stat.h>
+--- src/util/rand_xor.c.orig	2020-10-03 12:27:48.489024729 +0200
++++ src/util/rand_xor.c	2020-10-03 12:31:05.927113521 +0200
+@@ -28,6 +28,7 @@
+ #if defined(HAVE_GETRANDOM)
+ #include <sys/random.h>
+ #endif
++#include <sys/types.h>		/* size_t, ssize_t */
  #include <unistd.h>
  #include <fcntl.h>
- #else
+ #endif
 --- src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
 +++ src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
 @@ -28,6 +28,8 @@
@@ -43,8 +41,8 @@
  #include "radv_radeon_winsys.h"
  #include "ac_gpu_info.h"
  #include "addrlib/addrinterface.h"
---- src/gallium/state_trackers/nine/nine_debug.c.orig	2020-03-06 07:46:48.278918421 +0100
-+++ src/gallium/state_trackers/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
+--- src/gallium/frontends/nine/nine_debug.c.orig	2020-03-06 07:46:48.278918421 +0100
++++ src/gallium/frontends/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
 @@ -65,7 +65,7 @@ _nine_debug_printf( unsigned long flag,
  {
      static boolean first = TRUE;
diff --git a/srcpkgs/mesa/template b/srcpkgs/mesa/template
index 13de387a00b..7e91caf2aff 100644
--- a/srcpkgs/mesa/template
+++ b/srcpkgs/mesa/template
@@ -1,6 +1,6 @@
 # Template file for 'mesa'
 pkgname=mesa
-version=20.1.9
+version=20.2.0
 revision=1
 wrksrc="mesa-${version}"
 build_style=meson
@@ -23,7 +23,7 @@ license="MIT, LGPL-2.1-or-later"
 homepage="https://www.mesa3d.org/"
 changelog="https://docs.mesa3d.org/relnotes/${version}.html"
 distfiles="https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
-checksum=b251ca0769b722058986640d48f8457c596142cfbee1a83cba91b83391427382
+checksum=63f0359575d558ef98dd78adffc0df4c66b76964ebf603b778b7004964191d30
 
 build_options="wayland"
 build_options_default="wayland"
@@ -146,6 +146,11 @@ else
 	configure_args+=" -Dgallium-vdpau=false -Dgallium-va=false -Dgallium-xvmc=false"
 fi
 
+# empty values introduced by leading comma are not allowed; the whole enumeration can be empty
+# _gallium_drivers is not affected by this problem
+_vulkan_drivers=${_vulkan_drivers/=,/=}
+_dri_drivers=${_dri_drivers/=,/=}
+
 configure_args+=" ${_gallium_drivers} ${_vulkan_drivers} ${_dri_drivers}"
 
 if [ "$_have_vulkan" ]; then
@@ -180,7 +185,7 @@ post_configure() {
 }
 
 post_install() {
-	vlicense docs/license.html
+	vlicense docs/license.rst
 	case "$XBPS_TARGET_MACHINE" in
 		i686*)
 			vsed -e 's#/usr/lib/#/usr/lib32/#g' \

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (7 preceding siblings ...)
  2020-10-05  5:37 ` [PR PATCH] [Updated] " Ophidiophobia
@ 2020-10-09 14:12 ` HadetTheUndying
  2020-10-15 14:31 ` [PR PATCH] [Updated] " Ophidiophobia
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: HadetTheUndying @ 2020-10-09 14:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

New comment by HadetTheUndying on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-706206348

Comment:
Been testing for the past 4 days on x86, Haven't had any sort of unexpected behavior yet.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PR PATCH] [Updated] [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (8 preceding siblings ...)
  2020-10-09 14:12 ` HadetTheUndying
@ 2020-10-15 14:31 ` Ophidiophobia
  2020-10-15 14:42 ` Ophidiophobia
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-15 14:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1042 bytes --]

There is an updated pull request by Ophidiophobia against master on the void-packages repository

https://github.com/Ophidiophobia/void-packages mesa-20.2.0
https://github.com/void-linux/void-packages/pull/25318

[REQUIRES TESTS] mesa: update to 20.2.0
This updates mesa to 20.2.0

Several things to keep in mind:
Announcement happened only on their mailing list https://lists.freedesktop.org/archives/mesa-announce/2020-September/000600.html
20.1.9 was released later but new games may still need 20.2.x to work.

I tested compiling musl and hope this does not cause run time problems for NVIDIA or Intel graphic cards.

The game Horizon Zero Dawn actually runs with 20.2.0 for me (on 20.1.9 and lower the game crashes during the intro or within seconds at the main menu.

I have checked this on one game so far. I'll test it on other games in the next hours (Radeon RX 590).
It would be nice if others would check it on their setups.



A patch file from https://github.com/void-linux/void-packages/pull/25318.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mesa-20.2.0-25318.patch --]
[-- Type: text/x-diff, Size: 5011 bytes --]

From a00b1bbd317f8be1492a1d0bb9176d9fc7f41dc5 Mon Sep 17 00:00:00 2001
From: Ophidiophobia <sandstrahl700@gmx.de>
Date: Sun, 4 Oct 2020 08:35:33 +0200
Subject: [PATCH] mesa: update to 20.2.1

---
 srcpkgs/mesa/patches/add-use-elf-tls.patch |  6 +++--
 srcpkgs/mesa/patches/musl.patch            | 26 ++++++++++------------
 srcpkgs/mesa/template                      | 11 ++++++---
 3 files changed, 24 insertions(+), 19 deletions(-)

diff --git a/srcpkgs/mesa/patches/add-use-elf-tls.patch b/srcpkgs/mesa/patches/add-use-elf-tls.patch
index d5b933d586d..617d8c0e946 100644
--- a/srcpkgs/mesa/patches/add-use-elf-tls.patch
+++ b/srcpkgs/mesa/patches/add-use-elf-tls.patch
@@ -9,10 +9,12 @@ index d228de0..972cd79 100644
  endif
  
  # Android uses emutls for versions <= P/28. For USE_ELF_TLS we need ELF TLS.
--if not ['windows', 'freebsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
+ use_elf_tls = false
+-if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29)
 +with_use_elf_tls = get_option('use-elf-tls')
-+if not ['windows', 'freebsd'].contains(host_machine.system()) and with_use_elf_tls and (not with_platform_android or get_option('platform-sdk-version') >= 29)
++if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and with_use_elf_tls and (not with_platform_android or get_option('platform-sdk-version') >= 29)
    pre_args += '-DUSE_ELF_TLS'
+   use_elf_tls = true
  endif
 
 diff --git meson_options.txt meson_options.txt
diff --git a/srcpkgs/mesa/patches/musl.patch b/srcpkgs/mesa/patches/musl.patch
index ba679adab15..f00f0f78c99 100644
--- a/srcpkgs/mesa/patches/musl.patch
+++ b/srcpkgs/mesa/patches/musl.patch
@@ -9,8 +9,8 @@
  #include "pipe/p_compiler.h"
  #include "pipe/p_state.h"
  
---- src/gallium/state_trackers/nine/threadpool.h.orig	2015-05-07 14:10:53.443337212 +0200
-+++ src/gallium/state_trackers/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
+--- src/gallium/frontends/nine/threadpool.h.orig	2015-05-07 14:10:53.443337212 +0200
++++ src/gallium/frontends/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
 @@ -24,6 +24,8 @@
  #ifndef _THREADPOOL_H_
  #define _THREADPOOL_H_
@@ -20,18 +20,16 @@
  #define MAXTHREADS 1
  
  struct threadpool {
---- src/util/rand_xor.c.orig	2017-06-20 00:38:57.199474067 +0200
-+++ src/util/rand_xor.c	2017-06-20 00:40:31.351279557 +0200
-@@ -23,7 +23,9 @@
-  */
- 
- #if defined(__linux__)
-+#include <sys/types.h>
- #include <sys/file.h>
-+#include <sys/stat.h>
+--- src/util/rand_xor.c.orig	2020-10-03 12:27:48.489024729 +0200
++++ src/util/rand_xor.c	2020-10-03 12:31:05.927113521 +0200
+@@ -28,6 +28,7 @@
+ #if defined(HAVE_GETRANDOM)
+ #include <sys/random.h>
+ #endif
++#include <sys/types.h>		/* size_t, ssize_t */
  #include <unistd.h>
  #include <fcntl.h>
- #else
+ #endif
 --- src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
 +++ src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
 @@ -28,6 +28,8 @@
@@ -43,8 +41,8 @@
  #include "radv_radeon_winsys.h"
  #include "ac_gpu_info.h"
  #include "addrlib/addrinterface.h"
---- src/gallium/state_trackers/nine/nine_debug.c.orig	2020-03-06 07:46:48.278918421 +0100
-+++ src/gallium/state_trackers/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
+--- src/gallium/frontends/nine/nine_debug.c.orig	2020-03-06 07:46:48.278918421 +0100
++++ src/gallium/frontends/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
 @@ -65,7 +65,7 @@ _nine_debug_printf( unsigned long flag,
  {
      static boolean first = TRUE;
diff --git a/srcpkgs/mesa/template b/srcpkgs/mesa/template
index 13de387a00b..0ec6360e0b3 100644
--- a/srcpkgs/mesa/template
+++ b/srcpkgs/mesa/template
@@ -1,6 +1,6 @@
 # Template file for 'mesa'
 pkgname=mesa
-version=20.1.9
+version=20.2.1
 revision=1
 wrksrc="mesa-${version}"
 build_style=meson
@@ -23,7 +23,7 @@ license="MIT, LGPL-2.1-or-later"
 homepage="https://www.mesa3d.org/"
 changelog="https://docs.mesa3d.org/relnotes/${version}.html"
 distfiles="https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
-checksum=b251ca0769b722058986640d48f8457c596142cfbee1a83cba91b83391427382
+checksum=d1a46d9a3f291bc0e0374600bdcb59844fa3eafaa50398e472a36fc65fd0244a
 
 build_options="wayland"
 build_options_default="wayland"
@@ -146,6 +146,11 @@ else
 	configure_args+=" -Dgallium-vdpau=false -Dgallium-va=false -Dgallium-xvmc=false"
 fi
 
+# empty values introduced by leading comma are not allowed; the whole enumeration can be empty
+# _gallium_drivers is not affected by this problem
+_vulkan_drivers=${_vulkan_drivers/=,/=}
+_dri_drivers=${_dri_drivers/=,/=}
+
 configure_args+=" ${_gallium_drivers} ${_vulkan_drivers} ${_dri_drivers}"
 
 if [ "$_have_vulkan" ]; then
@@ -180,7 +185,7 @@ post_configure() {
 }
 
 post_install() {
-	vlicense docs/license.html
+	vlicense docs/license.rst
 	case "$XBPS_TARGET_MACHINE" in
 		i686*)
 			vsed -e 's#/usr/lib/#/usr/lib32/#g' \

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [REQUIRES TESTS] mesa: update to 20.2.0
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (9 preceding siblings ...)
  2020-10-15 14:31 ` [PR PATCH] [Updated] " Ophidiophobia
@ 2020-10-15 14:42 ` Ophidiophobia
  2020-10-15 15:12 ` mesa: update to 20.2.1 Ophidiophobia
  2020-10-15 21:11 ` [PR PATCH] [Merged]: " q66
  12 siblings, 0 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-15 14:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 372 bytes --]

New comment by Ophidiophobia on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-709373049

Comment:
Updated to mesa 20.2.1
Only additional changes are updated version and checksum in the template.
I did not encounter any issues with 20.2.0 and my first impression of 20.2.1 is good.
I am removing the "REQUIRES TESTS" tag.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: mesa: update to 20.2.1
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (10 preceding siblings ...)
  2020-10-15 14:42 ` Ophidiophobia
@ 2020-10-15 15:12 ` Ophidiophobia
  2020-10-15 21:11 ` [PR PATCH] [Merged]: " q66
  12 siblings, 0 replies; 14+ messages in thread
From: Ophidiophobia @ 2020-10-15 15:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1000 bytes --]

New comment by Ophidiophobia on void-packages repository

https://github.com/void-linux/void-packages/pull/25318#issuecomment-703231448

Comment:
So far everything is well for me with this.

Borderlands 2 (Proton): no problems, maybe lightning is a little bit different but not wrong. I can see the lava again.
Borderlands 3 (Proton + mf): no problems
Horizon Zero Dawn (Proton-5.9-GE-6-ST): it "works" (shadows have psychedelic colors). At least much better than "crashes a few seconds into main menu" EDIT: colors are correct with Proton-5.9-GE-7-ST
TF2: no issues encountered
Saints Row IV: no issues encountered
Shadows of Mordor: no issues encountered
Final Fantasy 14 (Wine): no issues encountered
XFCE Desktop: no issues encountered

OS: Void Linux x86_64 
Kernel: 5.8.13_1 
Resolution: 1280x1024, 1280x1024 
DE: Xfce 4.14 
Theme: Adwaita-dark [GTK2], Adwaita [GTK3] 
Icons: Adwaita [GTK2/3] 
CPU: Intel i5-7600 (4) @ 4.100GHz 
GPU: AMD ATI Radeon RX 590 
Memory: 15967MiB 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PR PATCH] [Merged]: mesa: update to 20.2.1
  2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
                   ` (11 preceding siblings ...)
  2020-10-15 15:12 ` mesa: update to 20.2.1 Ophidiophobia
@ 2020-10-15 21:11 ` q66
  12 siblings, 0 replies; 14+ messages in thread
From: q66 @ 2020-10-15 21:11 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 853 bytes --]

There's a merged pull request on the void-packages repository

mesa: update to 20.2.1
https://github.com/void-linux/void-packages/pull/25318

Description:
This updates mesa to 20.2.0

Several things to keep in mind:
Announcement happened only on their mailing list https://lists.freedesktop.org/archives/mesa-announce/2020-September/000600.html
20.1.9 was released later but new games may still need 20.2.x to work.

I tested compiling musl and hope this does not cause run time problems for NVIDIA or Intel graphic cards.

The game Horizon Zero Dawn actually runs with 20.2.0 for me (on 20.1.9 and lower the game crashes during the intro or within seconds at the main menu.

I have checked this on one game so far. I'll test it on other games in the next hours (Radeon RX 590).
It would be nice if others would check it on their setups.



^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2020-10-15 21:11 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-03 17:07 [PR PATCH] [REQUIRES TESTS] mesa: update to 20.2.0 Ophidiophobia
2020-10-03 18:08 ` q66
2020-10-03 18:10 ` q66
2020-10-03 19:06 ` Ophidiophobia
2020-10-04  6:36 ` [PR PATCH] [Updated] " Ophidiophobia
2020-10-04  6:58 ` Ophidiophobia
2020-10-04  9:58 ` Ophidiophobia
2020-10-04 10:32 ` q66
2020-10-05  5:37 ` [PR PATCH] [Updated] " Ophidiophobia
2020-10-09 14:12 ` HadetTheUndying
2020-10-15 14:31 ` [PR PATCH] [Updated] " Ophidiophobia
2020-10-15 14:42 ` Ophidiophobia
2020-10-15 15:12 ` mesa: update to 20.2.1 Ophidiophobia
2020-10-15 21:11 ` [PR PATCH] [Merged]: " q66

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).