Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] arcan: Add option for hybrid sdl
@ 2021-07-12 11:19 Gorggg
  2021-07-17  4:06 ` ericonr
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Gorggg @ 2021-07-12 11:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Gorggg/void-packages arcan_sdl
https://github.com/void-linux/void-packages/pull/31921

arcan: Add option for hybrid sdl
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From d850c3a011f6682709e6e85d75a7ed4846dbd8b7 Mon Sep 17 00:00:00 2001
From: George Matsumura <gmmatsumura01@bvsd.org>
Date: Mon, 12 Jul 2021 04:17:31 -0600
Subject: [PATCH] arcan: Add option for hybrid sdl

This change allows the arcan_sdl binary to be built with a build
option, which in turn allows the running of arcan nested within a
different display server.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>
---
 srcpkgs/arcan/template | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template
index f436db94479c..ce276cff7ccf 100644
--- a/srcpkgs/arcan/template
+++ b/srcpkgs/arcan/template
@@ -1,17 +1,19 @@
 # Template file for 'arcan'
 pkgname=arcan
 version=0.6.0.1
-revision=1
+revision=2
 build_wrksrc=src
 build_style=cmake
 make_cmd=make
 configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri
+ $(vopt_if hybrid_sdl '-DHYBRID_SDL=On')
  $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')"
 hostmakedepends="pkg-config
  $(vopt_if wayland wayland-devel)"
 makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel
  libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
  vlc-devel
+ $(vopt_if hybrid_sdl 'SDL2-devel')
  $(vopt_if tts 'libespeak-ng-devel')
  $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel')
  $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel')
@@ -31,7 +33,7 @@ export CMAKE_GENERATOR="Unix Makefiles"
 
 replaces="arcan-wayland>=0"
 
-build_options="luajit tesseract tts wayland"
+build_options="luajit tesseract tts wayland hybrid_sdl"
 desc_option_tts="Enable support for text-to-speech via espeak"
 desc_option_tesseract="Enable support for OCR via tesseract"
 desc_option_luajit="Enable support for LuaJIT"

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

* Re: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
@ 2021-07-17  4:06 ` ericonr
  2021-08-05 13:11 ` [PR PATCH] [Updated] " Gorggg
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ericonr @ 2021-07-17  4:06 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31921#issuecomment-881814159

Comment:
@Gorggg what do you think about always building `arcan_sdl` but moving it to a subpackage instead?

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

* Re: [PR PATCH] [Updated] arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
  2021-07-17  4:06 ` ericonr
@ 2021-08-05 13:11 ` Gorggg
  2021-08-05 13:19 ` Gorggg
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 13:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Gorggg/void-packages arcan_sdl
https://github.com/void-linux/void-packages/pull/31921

arcan: Add option for hybrid sdl
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 55c14732300bce9dfdf08240e243038762bb59d2 Mon Sep 17 00:00:00 2001
From: George Matsumura <gmmatsumura01@bvsd.org>
Date: Mon, 12 Jul 2021 04:17:31 -0600
Subject: [PATCH] arcan: Add option for hybrid sdl

This change allows the arcan_sdl binary to be built with a build
option, which in turn allows the running of arcan nested within a
different display server.
---
 srcpkgs/arcan/template | 13 +++++++++++--
 srcpkgs/arcan_sdl      |  1 +
 2 files changed, 12 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/arcan_sdl

diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template
index f436db94479c..8daf86ee4402 100644
--- a/srcpkgs/arcan/template
+++ b/srcpkgs/arcan/template
@@ -1,17 +1,18 @@
 # Template file for 'arcan'
 pkgname=arcan
 version=0.6.0.1
-revision=1
+revision=2
 build_wrksrc=src
 build_style=cmake
 make_cmd=make
 configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri
+ -DHYBRID_SDL=On
  $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')"
 hostmakedepends="pkg-config
  $(vopt_if wayland wayland-devel)"
 makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel
  libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
- vlc-devel
+ vlc-devel SDL2-devel
  $(vopt_if tts 'libespeak-ng-devel')
  $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel')
  $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel')
@@ -74,3 +75,11 @@ arcan-devel_package() {
 		vmove usr/include
 	}
 }
+
+arcan_sdl_package() {
+	short_desc+=" - SDL platform server binary"
+        depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/bin/arcan_sdl
+	}
+}
diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl
new file mode 120000
index 000000000000..fb6a95edcfe5
--- /dev/null
+++ b/srcpkgs/arcan_sdl
@@ -0,0 +1 @@
+arcan
\ No newline at end of file

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

* Re: [PR PATCH] [Updated] arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
  2021-07-17  4:06 ` ericonr
  2021-08-05 13:11 ` [PR PATCH] [Updated] " Gorggg
@ 2021-08-05 13:19 ` Gorggg
  2021-08-05 13:30 ` Gorggg
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 13:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Gorggg/void-packages arcan_sdl
https://github.com/void-linux/void-packages/pull/31921

arcan: Add option for hybrid sdl
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From bad932589ef7fb2a3441a5b9241697c33c95827f Mon Sep 17 00:00:00 2001
From: George Matsumura <gmmatsumura01@bvsd.org>
Date: Mon, 12 Jul 2021 04:17:31 -0600
Subject: [PATCH] arcan: Add option for hybrid sdl

This change allows the arcan_sdl binary to be built with a build
option, which in turn allows the running of arcan nested within a
different display server.
---
 srcpkgs/arcan/template | 13 +++++++++++--
 srcpkgs/arcan_sdl      |  1 +
 2 files changed, 12 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/arcan_sdl

diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template
index f436db94479c..8daf86ee4402 100644
--- a/srcpkgs/arcan/template
+++ b/srcpkgs/arcan/template
@@ -1,17 +1,18 @@
 # Template file for 'arcan'
 pkgname=arcan
 version=0.6.0.1
-revision=1
+revision=2
 build_wrksrc=src
 build_style=cmake
 make_cmd=make
 configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri
+ -DHYBRID_SDL=On
  $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')"
 hostmakedepends="pkg-config
  $(vopt_if wayland wayland-devel)"
 makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel
  libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
- vlc-devel
+ vlc-devel SDL2-devel
  $(vopt_if tts 'libespeak-ng-devel')
  $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel')
  $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel')
@@ -74,3 +75,11 @@ arcan-devel_package() {
 		vmove usr/include
 	}
 }
+
+arcan_sdl_package() {
+	short_desc+=" - SDL platform server binary"
+        depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/bin/arcan_sdl
+	}
+}
diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl
new file mode 120000
index 000000000000..fb6a95edcfe5
--- /dev/null
+++ b/srcpkgs/arcan_sdl
@@ -0,0 +1 @@
+arcan
\ No newline at end of file

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

* Re: [PR PATCH] [Updated] arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (2 preceding siblings ...)
  2021-08-05 13:19 ` Gorggg
@ 2021-08-05 13:30 ` Gorggg
  2021-08-05 14:24 ` Gorggg
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 13:30 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Gorggg/void-packages arcan_sdl
https://github.com/void-linux/void-packages/pull/31921

arcan: Add option for hybrid sdl
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 25e1c6673bee57f798cddb7baf0bed738daecdcf Mon Sep 17 00:00:00 2001
From: George Matsumura <gmmatsumura01@bvsd.org>
Date: Mon, 12 Jul 2021 04:17:31 -0600
Subject: [PATCH] arcan: Add option for hybrid sdl

This change allows the arcan_sdl binary to be built with a build
option, which in turn allows the running of arcan nested within a
different display server.
---
 srcpkgs/arcan/template | 13 +++++++++++--
 srcpkgs/arcan_sdl      |  1 +
 2 files changed, 12 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/arcan_sdl

diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template
index f436db94479c..31bf6e62eec5 100644
--- a/srcpkgs/arcan/template
+++ b/srcpkgs/arcan/template
@@ -1,17 +1,18 @@
 # Template file for 'arcan'
 pkgname=arcan
 version=0.6.0.1
-revision=1
+revision=2
 build_wrksrc=src
 build_style=cmake
 make_cmd=make
 configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri
+ -DHYBRID_SDL=On
  $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')"
 hostmakedepends="pkg-config
  $(vopt_if wayland wayland-devel)"
 makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel
  libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
- vlc-devel
+ vlc-devel SDL2-devel
  $(vopt_if tts 'libespeak-ng-devel')
  $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel')
  $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel')
@@ -74,3 +75,11 @@ arcan-devel_package() {
 		vmove usr/include
 	}
 }
+
+arcan_sdl_package() {
+	short_desc+=" - SDL platform server binary"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/bin/arcan_sdl
+	}
+}
diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl
new file mode 120000
index 000000000000..fb6a95edcfe5
--- /dev/null
+++ b/srcpkgs/arcan_sdl
@@ -0,0 +1 @@
+arcan
\ No newline at end of file

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

* Re: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (3 preceding siblings ...)
  2021-08-05 13:30 ` Gorggg
@ 2021-08-05 14:24 ` Gorggg
  2021-08-05 15:29 ` ericonr
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 14:24 UTC (permalink / raw)
  To: ml

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

New comment by Gorggg on void-packages repository

https://github.com/void-linux/void-packages/pull/31921#issuecomment-893502024

Comment:
@ericonr Sorry for taking to so long to reply.

That seems like a good idea. I have updated the changes to instead create a subpackage. Please let me know if I made any mistakes.

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

* Re: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (4 preceding siblings ...)
  2021-08-05 14:24 ` Gorggg
@ 2021-08-05 15:29 ` ericonr
  2021-08-05 15:47 ` [PR PATCH] [Updated] " Gorggg
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ericonr @ 2021-08-05 15:29 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31921#issuecomment-893552860

Comment:
@Gorggg please fix the commit message to reflect reality as well ;)

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

* Re: [PR PATCH] [Updated] arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (5 preceding siblings ...)
  2021-08-05 15:29 ` ericonr
@ 2021-08-05 15:47 ` Gorggg
  2021-08-05 15:49 ` Gorggg
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 15:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Gorggg/void-packages arcan_sdl
https://github.com/void-linux/void-packages/pull/31921

arcan: Add option for hybrid sdl
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From ed70605ba7e6cb945c2d1792b3620529e37f3b53 Mon Sep 17 00:00:00 2001
From: George Matsumura <gmmatsumura01@bvsd.org>
Date: Mon, 12 Jul 2021 04:17:31 -0600
Subject: [PATCH] arcan: Add arcan_sdl as subpackage of arcan

This change allows the arcan_sdl binary to be built with a build
option, which in turn allows the running of arcan nested within a
different display server.
---
 srcpkgs/arcan/template | 13 +++++++++++--
 srcpkgs/arcan_sdl      |  1 +
 2 files changed, 12 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/arcan_sdl

diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template
index f436db94479c..31bf6e62eec5 100644
--- a/srcpkgs/arcan/template
+++ b/srcpkgs/arcan/template
@@ -1,17 +1,18 @@
 # Template file for 'arcan'
 pkgname=arcan
 version=0.6.0.1
-revision=1
+revision=2
 build_wrksrc=src
 build_style=cmake
 make_cmd=make
 configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri
+ -DHYBRID_SDL=On
  $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')"
 hostmakedepends="pkg-config
  $(vopt_if wayland wayland-devel)"
 makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel
  libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
- vlc-devel
+ vlc-devel SDL2-devel
  $(vopt_if tts 'libespeak-ng-devel')
  $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel')
  $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel')
@@ -74,3 +75,11 @@ arcan-devel_package() {
 		vmove usr/include
 	}
 }
+
+arcan_sdl_package() {
+	short_desc+=" - SDL platform server binary"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/bin/arcan_sdl
+	}
+}
diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl
new file mode 120000
index 000000000000..fb6a95edcfe5
--- /dev/null
+++ b/srcpkgs/arcan_sdl
@@ -0,0 +1 @@
+arcan
\ No newline at end of file

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

* Re: [PR PATCH] [Updated] arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (6 preceding siblings ...)
  2021-08-05 15:47 ` [PR PATCH] [Updated] " Gorggg
@ 2021-08-05 15:49 ` Gorggg
  2021-08-05 16:20 ` Gorggg
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 15:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Gorggg/void-packages arcan_sdl
https://github.com/void-linux/void-packages/pull/31921

arcan: Add option for hybrid sdl
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 994d1a0aed956c4f58a52e2d7cf5e769ec8a74f3 Mon Sep 17 00:00:00 2001
From: George Matsumura <gmmatsumura01@bvsd.org>
Date: Mon, 12 Jul 2021 04:17:31 -0600
Subject: [PATCH] arcan: add arcan_sdl subpackage

This change allows the arcan_sdl binary to be built with a build
option, which in turn allows the running of arcan nested within a
different display server.
---
 srcpkgs/arcan/template | 13 +++++++++++--
 srcpkgs/arcan_sdl      |  1 +
 2 files changed, 12 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/arcan_sdl

diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template
index f436db94479c..31bf6e62eec5 100644
--- a/srcpkgs/arcan/template
+++ b/srcpkgs/arcan/template
@@ -1,17 +1,18 @@
 # Template file for 'arcan'
 pkgname=arcan
 version=0.6.0.1
-revision=1
+revision=2
 build_wrksrc=src
 build_style=cmake
 make_cmd=make
 configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri
+ -DHYBRID_SDL=On
  $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')"
 hostmakedepends="pkg-config
  $(vopt_if wayland wayland-devel)"
 makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel
  libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
- vlc-devel
+ vlc-devel SDL2-devel
  $(vopt_if tts 'libespeak-ng-devel')
  $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel')
  $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel')
@@ -74,3 +75,11 @@ arcan-devel_package() {
 		vmove usr/include
 	}
 }
+
+arcan_sdl_package() {
+	short_desc+=" - SDL platform server binary"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/bin/arcan_sdl
+	}
+}
diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl
new file mode 120000
index 000000000000..fb6a95edcfe5
--- /dev/null
+++ b/srcpkgs/arcan_sdl
@@ -0,0 +1 @@
+arcan
\ No newline at end of file

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

* Re: [PR PATCH] [Updated] arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (7 preceding siblings ...)
  2021-08-05 15:49 ` Gorggg
@ 2021-08-05 16:20 ` Gorggg
  2021-08-05 18:06 ` Gorggg
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 16:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Gorggg/void-packages arcan_sdl
https://github.com/void-linux/void-packages/pull/31921

arcan: Add option for hybrid sdl
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 65767f5767629b9945888991943383306e6df720 Mon Sep 17 00:00:00 2001
From: George Matsumura <gmmatsumura01@bvsd.org>
Date: Mon, 12 Jul 2021 04:17:31 -0600
Subject: [PATCH] arcan: add arcan_sdl subpackage

This change allows the arcan_sdl binary to be built with a build
option, which in turn allows the running of arcan nested within a
different display server.
---
 srcpkgs/arcan/template | 13 +++++++++++--
 srcpkgs/arcan_sdl      |  1 +
 2 files changed, 12 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/arcan_sdl

diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template
index f436db94479c..31bf6e62eec5 100644
--- a/srcpkgs/arcan/template
+++ b/srcpkgs/arcan/template
@@ -1,17 +1,18 @@
 # Template file for 'arcan'
 pkgname=arcan
 version=0.6.0.1
-revision=1
+revision=2
 build_wrksrc=src
 build_style=cmake
 make_cmd=make
 configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri
+ -DHYBRID_SDL=On
  $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')"
 hostmakedepends="pkg-config
  $(vopt_if wayland wayland-devel)"
 makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel
  libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
- vlc-devel
+ vlc-devel SDL2-devel
  $(vopt_if tts 'libespeak-ng-devel')
  $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel')
  $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel')
@@ -74,3 +75,11 @@ arcan-devel_package() {
 		vmove usr/include
 	}
 }
+
+arcan_sdl_package() {
+	short_desc+=" - SDL platform server binary"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/bin/arcan_sdl
+	}
+}
diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl
new file mode 120000
index 000000000000..fb6a95edcfe5
--- /dev/null
+++ b/srcpkgs/arcan_sdl
@@ -0,0 +1 @@
+arcan
\ No newline at end of file

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

* Re: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (8 preceding siblings ...)
  2021-08-05 16:20 ` Gorggg
@ 2021-08-05 18:06 ` Gorggg
  2021-08-05 18:15 ` ericonr
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 18:06 UTC (permalink / raw)
  To: ml

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

New comment by Gorggg on void-packages repository

https://github.com/void-linux/void-packages/pull/31921#issuecomment-893672852

Comment:
@ericonr Ah, sorry about that. It should be fixed now.

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

* Re: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (9 preceding siblings ...)
  2021-08-05 18:06 ` Gorggg
@ 2021-08-05 18:15 ` ericonr
  2021-08-05 18:15 ` ericonr
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ericonr @ 2021-08-05 18:15 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31921#issuecomment-893678529

Comment:
The commit body is still wrong :p There's no build option.

I can fix before commiting.

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

* Re: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (10 preceding siblings ...)
  2021-08-05 18:15 ` ericonr
@ 2021-08-05 18:15 ` ericonr
  2021-08-05 18:19 ` [PR PATCH] [Updated] " Gorggg
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ericonr @ 2021-08-05 18:15 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31921#issuecomment-893678529

Comment:
The commit body is still wrong :p There's no build option.

I can fix before committing, if you can't.

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

* Re: [PR PATCH] [Updated] arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (11 preceding siblings ...)
  2021-08-05 18:15 ` ericonr
@ 2021-08-05 18:19 ` Gorggg
  2021-08-05 18:19 ` Gorggg
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 18:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Gorggg/void-packages arcan_sdl
https://github.com/void-linux/void-packages/pull/31921

arcan: Add option for hybrid sdl
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 59afc7425595c5982de1087ed62607c4233f3ab3 Mon Sep 17 00:00:00 2001
From: George Matsumura <gmmatsumura01@bvsd.org>
Date: Mon, 12 Jul 2021 04:17:31 -0600
Subject: [PATCH] arcan: add arcan_sdl subpackage

arcan_sdl allows the running of arcan nested within a different
display server.
---
 srcpkgs/arcan/template | 13 +++++++++++--
 srcpkgs/arcan_sdl      |  1 +
 2 files changed, 12 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/arcan_sdl

diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template
index f436db94479c..31bf6e62eec5 100644
--- a/srcpkgs/arcan/template
+++ b/srcpkgs/arcan/template
@@ -1,17 +1,18 @@
 # Template file for 'arcan'
 pkgname=arcan
 version=0.6.0.1
-revision=1
+revision=2
 build_wrksrc=src
 build_style=cmake
 make_cmd=make
 configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri
+ -DHYBRID_SDL=On
  $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')"
 hostmakedepends="pkg-config
  $(vopt_if wayland wayland-devel)"
 makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel
  libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
- vlc-devel
+ vlc-devel SDL2-devel
  $(vopt_if tts 'libespeak-ng-devel')
  $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel')
  $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel')
@@ -74,3 +75,11 @@ arcan-devel_package() {
 		vmove usr/include
 	}
 }
+
+arcan_sdl_package() {
+	short_desc+=" - SDL platform server binary"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/bin/arcan_sdl
+	}
+}
diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl
new file mode 120000
index 000000000000..fb6a95edcfe5
--- /dev/null
+++ b/srcpkgs/arcan_sdl
@@ -0,0 +1 @@
+arcan
\ No newline at end of file

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

* Re: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (12 preceding siblings ...)
  2021-08-05 18:19 ` [PR PATCH] [Updated] " Gorggg
@ 2021-08-05 18:19 ` Gorggg
  2021-08-05 19:37 ` ericonr
  2021-08-05 19:37 ` [PR PATCH] [Merged]: " ericonr
  15 siblings, 0 replies; 17+ messages in thread
From: Gorggg @ 2021-08-05 18:19 UTC (permalink / raw)
  To: ml

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

New comment by Gorggg on void-packages repository

https://github.com/void-linux/void-packages/pull/31921#issuecomment-893681264

Comment:
@ericonr I apologize again. Thank you for your patience.

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

* Re: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (13 preceding siblings ...)
  2021-08-05 18:19 ` Gorggg
@ 2021-08-05 19:37 ` ericonr
  2021-08-05 19:37 ` [PR PATCH] [Merged]: " ericonr
  15 siblings, 0 replies; 17+ messages in thread
From: ericonr @ 2021-08-05 19:37 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/31921#issuecomment-893731518

Comment:
No worries ;) 

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

* Re: [PR PATCH] [Merged]: arcan: Add option for hybrid sdl
  2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
                   ` (14 preceding siblings ...)
  2021-08-05 19:37 ` ericonr
@ 2021-08-05 19:37 ` ericonr
  15 siblings, 0 replies; 17+ messages in thread
From: ericonr @ 2021-08-05 19:37 UTC (permalink / raw)
  To: ml

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

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

arcan: Add option for hybrid sdl
https://github.com/void-linux/void-packages/pull/31921

Description:
This change allows the arcan_sdl binary to be built with a build option, which in turn allows the running of arcan nested within a different display server.

Thank you for looking at this.

Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

end of thread, other threads:[~2021-08-05 19:37 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-12 11:19 [PR PATCH] arcan: Add option for hybrid sdl Gorggg
2021-07-17  4:06 ` ericonr
2021-08-05 13:11 ` [PR PATCH] [Updated] " Gorggg
2021-08-05 13:19 ` Gorggg
2021-08-05 13:30 ` Gorggg
2021-08-05 14:24 ` Gorggg
2021-08-05 15:29 ` ericonr
2021-08-05 15:47 ` [PR PATCH] [Updated] " Gorggg
2021-08-05 15:49 ` Gorggg
2021-08-05 16:20 ` Gorggg
2021-08-05 18:06 ` Gorggg
2021-08-05 18:15 ` ericonr
2021-08-05 18:15 ` ericonr
2021-08-05 18:19 ` [PR PATCH] [Updated] " Gorggg
2021-08-05 18:19 ` Gorggg
2021-08-05 19:37 ` ericonr
2021-08-05 19:37 ` [PR PATCH] [Merged]: " ericonr

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).