Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] glfw: update to 3.4
@ 2024-03-02 21:01 mkohlhaas
  2024-03-02 21:20 ` mkohlhaas
                   ` (13 more replies)
  0 siblings, 14 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-02 21:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mkohlhaas/void-packages glfw
https://github.com/void-linux/void-packages/pull/49042

glfw: update to 3.4
Testing the changes
   - I tested the changes in this PR: **YES**

Local build testing
  - I built this PR locally for my native architecture, (**x86_64-glibc**)

Email address Enno Boland <gottox@voidlinux.org> is unreachable.

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

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

From 8d85a026e5157aa013326d3415eaf13c3a7f48e0 Mon Sep 17 00:00:00 2001
From: "Hans-J. Schmid" <knock@myopendoor.de>
Date: Sat, 2 Mar 2024 22:00:08 +0100
Subject: [PATCH] glfw: update to 3.4

---
 srcpkgs/glfw-wayland/template | 12 ++++++------
 srcpkgs/glfw/template         | 10 +++++-----
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/srcpkgs/glfw-wayland/template b/srcpkgs/glfw-wayland/template
index eb0e8d33e284d0..bd681e5a8ed493 100644
--- a/srcpkgs/glfw-wayland/template
+++ b/srcpkgs/glfw-wayland/template
@@ -1,24 +1,24 @@
 # Template file for 'glfw-wayland'
 pkgname=glfw-wayland
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_USE_WAYLAND=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_WAYLAND=ON"
 hostmakedepends="extra-cmake-modules pkg-config wayland-devel"
 makedepends="MesaLib-devel glu-devel wayland-devel wayland-protocols
- libxkbcommon-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
+ libxkbcommon-devel libXinerama-devel libXrandr-devel libXcursor-devel
+ libXi-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 provides="glfw-${version}_${revision}"
 replaces="glfw>=0"
 
 do_install() {
 	vmkdir usr/lib
 	install -m755 ${wrksrc}/build/src/libglfw.so.${version%.*} ${DESTDIR}/usr/lib/
-	ln -s libglfw.so.${version%.*} ${DESTDIR}/usr/lib/libglfw.so.3
 }
diff --git a/srcpkgs/glfw/template b/srcpkgs/glfw/template
index 3d9d7b42692805..b90166f2825f2c 100644
--- a/srcpkgs/glfw/template
+++ b/srcpkgs/glfw/template
@@ -1,19 +1,19 @@
 # Template file for 'glfw'
 # update together with glfw-wayland
 pkgname=glfw
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_WAYLAND=OFF"
 makedepends="MesaLib-devel libXrandr-devel libXi-devel glu-devel libXcursor-devel
  libXinerama-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
-maintainer="Enno Boland <gottox@voidlinux.org>"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
+maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 
 glfw-devel_package() {
 	depends="${makedepends} ${sourcepkg}>=${version}_${revision}"

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

* Re: glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
@ 2024-03-02 21:20 ` mkohlhaas
  2024-03-03 16:59 ` [PR REVIEW] " classabbyamp
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-02 21:20 UTC (permalink / raw)
  To: ml

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

New comment by mkohlhaas on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#issuecomment-1974912522

Comment:
Could you check the wayland side as I cannot test it on my box? I'm not sure about the created files. Had to remove the link to make it work.

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

* Re: [PR REVIEW] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
  2024-03-02 21:20 ` mkohlhaas
@ 2024-03-03 16:59 ` classabbyamp
  2024-03-03 18:49 ` mkohlhaas
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2024-03-03 16:59 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#discussion_r1510331817

Comment:
why?

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

* Re: [PR REVIEW] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
  2024-03-02 21:20 ` mkohlhaas
  2024-03-03 16:59 ` [PR REVIEW] " classabbyamp
@ 2024-03-03 18:49 ` mkohlhaas
  2024-03-03 18:50 ` mkohlhaas
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-03 18:49 UTC (permalink / raw)
  To: ml

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

New review comment by mkohlhaas on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#discussion_r1510351545

Comment:
Description taken from the GLFW project.
Email address not reachable. Orphaned email address is used in the glfw-wayland package or vice versa.

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

* Re: [PR REVIEW] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (2 preceding siblings ...)
  2024-03-03 18:49 ` mkohlhaas
@ 2024-03-03 18:50 ` mkohlhaas
  2024-03-03 19:39 ` classabbyamp
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-03 18:50 UTC (permalink / raw)
  To: ml

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

New review comment by mkohlhaas on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#discussion_r1510351704

Comment:
glfw package hasn't been updated for almost two years. So I expect it to be abandoned.

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

* Re: [PR REVIEW] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (3 preceding siblings ...)
  2024-03-03 18:50 ` mkohlhaas
@ 2024-03-03 19:39 ` classabbyamp
  2024-03-03 19:40 ` mkohlhaas
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2024-03-03 19:39 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#discussion_r1510364767

Comment:
gottox isn't very active but is a member of the core team. don't orphan it

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

* Re: [PR REVIEW] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (4 preceding siblings ...)
  2024-03-03 19:39 ` classabbyamp
@ 2024-03-03 19:40 ` mkohlhaas
  2024-03-03 19:41 ` classabbyamp
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-03 19:40 UTC (permalink / raw)
  To: ml

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

New review comment by mkohlhaas on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#discussion_r1510365804

Comment:
Then I'll write him in both packages.

Can I reach him somehow?

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

* Re: [PR REVIEW] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (5 preceding siblings ...)
  2024-03-03 19:40 ` mkohlhaas
@ 2024-03-03 19:41 ` classabbyamp
  2024-03-03 19:50 ` Gottox
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2024-03-03 19:41 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#discussion_r1510366280

Comment:
don't change the maintainer fields at all.

@Gottox 

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

* Re: [PR REVIEW] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (6 preceding siblings ...)
  2024-03-03 19:41 ` classabbyamp
@ 2024-03-03 19:50 ` Gottox
  2024-03-06 15:39 ` M374LX
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: Gottox @ 2024-03-03 19:50 UTC (permalink / raw)
  To: ml

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

New review comment by Gottox on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#discussion_r1510371363

Comment:
It's fine to change it to orphaned for me.

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

* Re: glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (7 preceding siblings ...)
  2024-03-03 19:50 ` Gottox
@ 2024-03-06 15:39 ` M374LX
  2024-03-06 17:17 ` [PR PATCH] [Updated] " mkohlhaas
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: M374LX @ 2024-03-06 15:39 UTC (permalink / raw)
  To: ml

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

New comment by M374LX on void-packages repository

https://github.com/void-linux/void-packages/pull/49042#issuecomment-1981161214

Comment:
While previous GLFW versions required separate builds for X11 and Wayland, the new version can detect the platform at runtime and a single build should be able to run on both X11 and Wayland.

I would say the ``glfw-wayland`` package is no longer necessary and should be removed.

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

* Re: [PR PATCH] [Updated] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (8 preceding siblings ...)
  2024-03-06 15:39 ` M374LX
@ 2024-03-06 17:17 ` mkohlhaas
  2024-03-06 17:21 ` mkohlhaas
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-06 17:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mkohlhaas/void-packages glfw
https://github.com/void-linux/void-packages/pull/49042

glfw: update to 3.4
Testing the changes
   - I tested the changes in this PR: **YES**

Local build testing
  - I built this PR locally for my native architecture, (**x86_64-glibc**)

Email address Enno Boland <gottox@voidlinux.org> is unreachable.

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

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

From 892825f57d8e013660908975bddf57bbf5ed40ea Mon Sep 17 00:00:00 2001
From: "Hans-J. Schmid" <knock@myopendoor.de>
Date: Sat, 2 Mar 2024 22:00:08 +0100
Subject: [PATCH] glfw: update to 3.4

---
 srcpkgs/glfw-wayland/template | 12 ++++++------
 srcpkgs/glfw/template         | 11 +++++------
 2 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/glfw-wayland/template b/srcpkgs/glfw-wayland/template
index eb0e8d33e284d0..bd681e5a8ed493 100644
--- a/srcpkgs/glfw-wayland/template
+++ b/srcpkgs/glfw-wayland/template
@@ -1,24 +1,24 @@
 # Template file for 'glfw-wayland'
 pkgname=glfw-wayland
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_USE_WAYLAND=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_WAYLAND=ON"
 hostmakedepends="extra-cmake-modules pkg-config wayland-devel"
 makedepends="MesaLib-devel glu-devel wayland-devel wayland-protocols
- libxkbcommon-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
+ libxkbcommon-devel libXinerama-devel libXrandr-devel libXcursor-devel
+ libXi-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 provides="glfw-${version}_${revision}"
 replaces="glfw>=0"
 
 do_install() {
 	vmkdir usr/lib
 	install -m755 ${wrksrc}/build/src/libglfw.so.${version%.*} ${DESTDIR}/usr/lib/
-	ln -s libglfw.so.${version%.*} ${DESTDIR}/usr/lib/libglfw.so.3
 }
diff --git a/srcpkgs/glfw/template b/srcpkgs/glfw/template
index 3d9d7b42692805..d79662cc6877d2 100644
--- a/srcpkgs/glfw/template
+++ b/srcpkgs/glfw/template
@@ -1,19 +1,18 @@
 # Template file for 'glfw'
-# update together with glfw-wayland
 pkgname=glfw
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
 configure_args="-DBUILD_SHARED_LIBS=ON"
 makedepends="MesaLib-devel libXrandr-devel libXi-devel glu-devel libXcursor-devel
- libXinerama-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
-maintainer="Enno Boland <gottox@voidlinux.org>"
+ libXinerama-devel wayland-devel wayland-protocols libxkbcommon-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
+maintainer="Knock <knock@myopendoor.de>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 
 glfw-devel_package() {
 	depends="${makedepends} ${sourcepkg}>=${version}_${revision}"

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

* Re: [PR PATCH] [Updated] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (9 preceding siblings ...)
  2024-03-06 17:17 ` [PR PATCH] [Updated] " mkohlhaas
@ 2024-03-06 17:21 ` mkohlhaas
  2024-03-06 17:25 ` mkohlhaas
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-06 17:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mkohlhaas/void-packages glfw
https://github.com/void-linux/void-packages/pull/49042

glfw: update to 3.4
Testing the changes
   - I tested the changes in this PR: **YES**

Local build testing
  - I built this PR locally for my native architecture, (**x86_64-glibc**)

Email address Enno Boland <gottox@voidlinux.org> is unreachable.

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

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

From 01c87d93007216435a911f6e31d3b9db9702adda Mon Sep 17 00:00:00 2001
From: "Hans-J. Schmid" <knock@myopendoor.de>
Date: Sat, 2 Mar 2024 22:00:08 +0100
Subject: [PATCH] glfw: update to 3.4

---
 srcpkgs/glfw-wayland/template | 12 ++++++------
 srcpkgs/glfw/template         | 13 ++++++-------
 2 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/srcpkgs/glfw-wayland/template b/srcpkgs/glfw-wayland/template
index eb0e8d33e284d0..bd681e5a8ed493 100644
--- a/srcpkgs/glfw-wayland/template
+++ b/srcpkgs/glfw-wayland/template
@@ -1,24 +1,24 @@
 # Template file for 'glfw-wayland'
 pkgname=glfw-wayland
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_USE_WAYLAND=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_WAYLAND=ON"
 hostmakedepends="extra-cmake-modules pkg-config wayland-devel"
 makedepends="MesaLib-devel glu-devel wayland-devel wayland-protocols
- libxkbcommon-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
+ libxkbcommon-devel libXinerama-devel libXrandr-devel libXcursor-devel
+ libXi-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 provides="glfw-${version}_${revision}"
 replaces="glfw>=0"
 
 do_install() {
 	vmkdir usr/lib
 	install -m755 ${wrksrc}/build/src/libglfw.so.${version%.*} ${DESTDIR}/usr/lib/
-	ln -s libglfw.so.${version%.*} ${DESTDIR}/usr/lib/libglfw.so.3
 }
diff --git a/srcpkgs/glfw/template b/srcpkgs/glfw/template
index 3d9d7b42692805..155f90185809eb 100644
--- a/srcpkgs/glfw/template
+++ b/srcpkgs/glfw/template
@@ -1,19 +1,18 @@
 # Template file for 'glfw'
-# update together with glfw-wayland
 pkgname=glfw
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_DOCS=OFF"
 makedepends="MesaLib-devel libXrandr-devel libXi-devel glu-devel libXcursor-devel
- libXinerama-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
-maintainer="Enno Boland <gottox@voidlinux.org>"
+ libXinerama-devel wayland-devel wayland-protocols libxkbcommon-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
+maintainer="Michael Kohlhaas <knock@myopendoor.de>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 
 glfw-devel_package() {
 	depends="${makedepends} ${sourcepkg}>=${version}_${revision}"

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

* Re: [PR PATCH] [Updated] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (10 preceding siblings ...)
  2024-03-06 17:21 ` mkohlhaas
@ 2024-03-06 17:25 ` mkohlhaas
  2024-03-06 17:30 ` mkohlhaas
  2024-03-12 20:00 ` [PR PATCH] [Closed]: " mkohlhaas
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-06 17:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mkohlhaas/void-packages glfw
https://github.com/void-linux/void-packages/pull/49042

glfw: update to 3.4
Testing the changes
   - I tested the changes in this PR: **YES**

Local build testing
  - I built this PR locally for my native architecture, (**x86_64-glibc**)

Email address Enno Boland <gottox@voidlinux.org> is unreachable.

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

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

From 2bbfd46a966af2368bf2f95e89440805cc8e7978 Mon Sep 17 00:00:00 2001
From: "Hans-J. Schmid" <knock@myopendoor.de>
Date: Sat, 2 Mar 2024 22:00:08 +0100
Subject: [PATCH] glfw: update to 3.4

---
 srcpkgs/glfw-wayland/template | 12 ++++++------
 srcpkgs/glfw/template         | 14 +++++++-------
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/srcpkgs/glfw-wayland/template b/srcpkgs/glfw-wayland/template
index eb0e8d33e284d0..bd681e5a8ed493 100644
--- a/srcpkgs/glfw-wayland/template
+++ b/srcpkgs/glfw-wayland/template
@@ -1,24 +1,24 @@
 # Template file for 'glfw-wayland'
 pkgname=glfw-wayland
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_USE_WAYLAND=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_WAYLAND=ON"
 hostmakedepends="extra-cmake-modules pkg-config wayland-devel"
 makedepends="MesaLib-devel glu-devel wayland-devel wayland-protocols
- libxkbcommon-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
+ libxkbcommon-devel libXinerama-devel libXrandr-devel libXcursor-devel
+ libXi-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 provides="glfw-${version}_${revision}"
 replaces="glfw>=0"
 
 do_install() {
 	vmkdir usr/lib
 	install -m755 ${wrksrc}/build/src/libglfw.so.${version%.*} ${DESTDIR}/usr/lib/
-	ln -s libglfw.so.${version%.*} ${DESTDIR}/usr/lib/libglfw.so.3
 }
diff --git a/srcpkgs/glfw/template b/srcpkgs/glfw/template
index 3d9d7b42692805..e28309a679542b 100644
--- a/srcpkgs/glfw/template
+++ b/srcpkgs/glfw/template
@@ -1,19 +1,19 @@
 # Template file for 'glfw'
-# update together with glfw-wayland
 pkgname=glfw
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_DOCS=OFF"
+hostmakedepends="pkg-config"
 makedepends="MesaLib-devel libXrandr-devel libXi-devel glu-devel libXcursor-devel
- libXinerama-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
-maintainer="Enno Boland <gottox@voidlinux.org>"
+ libXinerama-devel wayland-devel wayland-protocols libxkbcommon-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
+maintainer="Michael Kohlhaas <knock@myopendoor.de>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 
 glfw-devel_package() {
 	depends="${makedepends} ${sourcepkg}>=${version}_${revision}"

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

* Re: [PR PATCH] [Updated] glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (11 preceding siblings ...)
  2024-03-06 17:25 ` mkohlhaas
@ 2024-03-06 17:30 ` mkohlhaas
  2024-03-12 20:00 ` [PR PATCH] [Closed]: " mkohlhaas
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-06 17:30 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mkohlhaas/void-packages glfw
https://github.com/void-linux/void-packages/pull/49042

glfw: update to 3.4
Testing the changes
   - I tested the changes in this PR: **YES**

Local build testing
  - I built this PR locally for my native architecture, (**x86_64-glibc**)

Email address Enno Boland <gottox@voidlinux.org> is unreachable.

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

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

From 7334bb6d3bc78244368ca7e0e19675da8adc8d2b Mon Sep 17 00:00:00 2001
From: "Hans-J. Schmid" <knock@myopendoor.de>
Date: Sat, 2 Mar 2024 22:00:08 +0100
Subject: [PATCH] glfw: update to 3.4

---
 srcpkgs/glfw-wayland/template | 12 ++++++------
 srcpkgs/glfw/template         | 14 +++++++-------
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/srcpkgs/glfw-wayland/template b/srcpkgs/glfw-wayland/template
index eb0e8d33e284d0..bd681e5a8ed493 100644
--- a/srcpkgs/glfw-wayland/template
+++ b/srcpkgs/glfw-wayland/template
@@ -1,24 +1,24 @@
 # Template file for 'glfw-wayland'
 pkgname=glfw-wayland
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_USE_WAYLAND=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_WAYLAND=ON"
 hostmakedepends="extra-cmake-modules pkg-config wayland-devel"
 makedepends="MesaLib-devel glu-devel wayland-devel wayland-protocols
- libxkbcommon-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
+ libxkbcommon-devel libXinerama-devel libXrandr-devel libXcursor-devel
+ libXi-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 provides="glfw-${version}_${revision}"
 replaces="glfw>=0"
 
 do_install() {
 	vmkdir usr/lib
 	install -m755 ${wrksrc}/build/src/libglfw.so.${version%.*} ${DESTDIR}/usr/lib/
-	ln -s libglfw.so.${version%.*} ${DESTDIR}/usr/lib/libglfw.so.3
 }
diff --git a/srcpkgs/glfw/template b/srcpkgs/glfw/template
index 3d9d7b42692805..91540556a6bacc 100644
--- a/srcpkgs/glfw/template
+++ b/srcpkgs/glfw/template
@@ -1,19 +1,19 @@
 # Template file for 'glfw'
-# update together with glfw-wayland
 pkgname=glfw
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
-configure_args="-DBUILD_SHARED_LIBS=ON"
+configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_BUILD_DOCS=OFF"
+hostmakedepends="pkg-config"
 makedepends="MesaLib-devel libXrandr-devel libXi-devel glu-devel libXcursor-devel
- libXinerama-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
-maintainer="Enno Boland <gottox@voidlinux.org>"
+ libXinerama-devel wayland-devel wayland-protocols libxkbcommon-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
+maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 
 glfw-devel_package() {
 	depends="${makedepends} ${sourcepkg}>=${version}_${revision}"

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

* Re: [PR PATCH] [Closed]: glfw: update to 3.4
  2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
                   ` (12 preceding siblings ...)
  2024-03-06 17:30 ` mkohlhaas
@ 2024-03-12 20:00 ` mkohlhaas
  13 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-12 20:00 UTC (permalink / raw)
  To: ml

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

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

glfw: update to 3.4
https://github.com/void-linux/void-packages/pull/49042

Description:
Testing the changes
   - I tested the changes in this PR: **YES**

Local build testing
  - I built this PR locally for my native architecture, (**x86_64-glibc**)

Email address Enno Boland <gottox@voidlinux.org> is unreachable.

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

* [PR PATCH] glfw: update to 3.4
@ 2024-03-02 19:52 mkohlhaas
  0 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-02 19:52 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mkohlhaas/void-packages glfw
https://github.com/void-linux/void-packages/pull/49035

glfw: update to 3.4
Testing the changes
   - I tested the changes in this PR: **YES**

Local build testing
  - I built this PR locally for my native architecture, (**x86_64-glibc**)

Email address Enno Boland <gottox@voidlinux.org> is unreachable.


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

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

From 78afa80206405878909e6ff07a20067f86ac2c5f Mon Sep 17 00:00:00 2001
From: "Hans-J. Schmid" <knock@myopendoor.de>
Date: Sat, 2 Mar 2024 20:49:07 +0100
Subject: [PATCH] glfw: update to 3.4

---
 srcpkgs/glfw/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/glfw/template b/srcpkgs/glfw/template
index 3d9d7b42692805..884b6714a8966b 100644
--- a/srcpkgs/glfw/template
+++ b/srcpkgs/glfw/template
@@ -1,19 +1,19 @@
 # Template file for 'glfw'
 # update together with glfw-wayland
 pkgname=glfw
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
 configure_args="-DBUILD_SHARED_LIBS=ON"
 makedepends="MesaLib-devel libXrandr-devel libXi-devel glu-devel libXcursor-devel
- libXinerama-devel"
-short_desc="Multi-platform library for creating windows with OpenGL contexts"
-maintainer="Enno Boland <gottox@voidlinux.org>"
+ libXinerama-devel libXrandr-devel libXcursor-devel libXi-devel"
+short_desc="Multi-platform library for OpenGL, OpenGL ES and Vulkan"
+maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 
 glfw-devel_package() {
 	depends="${makedepends} ${sourcepkg}>=${version}_${revision}"

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

* [PR PATCH] glfw: update to 3.4
@ 2024-03-02 18:46 mkohlhaas
  0 siblings, 0 replies; 17+ messages in thread
From: mkohlhaas @ 2024-03-02 18:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mkohlhaas/void-packages glfw
https://github.com/void-linux/void-packages/pull/49033

glfw: update to 3.4
Testing the changes
   - I tested the changes in this PR: **YES**

Local build testing
   -  I built this PR locally for my native architecture, (**x86_64-glibc**)

Email address `Enno Boland <gottox@voidlinux.org>` is unreachable.


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

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

From d6faa28904cd026cf5d2123da8b29ef312af8c2d Mon Sep 17 00:00:00 2001
From: "Hans-J. Schmid" <knock@myopendoor.de>
Date: Sat, 2 Mar 2024 19:43:20 +0100
Subject: [PATCH] glfw: update to 3.4

---
 srcpkgs/glfw-wayland/template | 4 ++--
 srcpkgs/glfw/template         | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/glfw-wayland/template b/srcpkgs/glfw-wayland/template
index eb0e8d33e284d0..dc75646ad4a6aa 100644
--- a/srcpkgs/glfw-wayland/template
+++ b/srcpkgs/glfw-wayland/template
@@ -1,6 +1,6 @@
 # Template file for 'glfw-wayland'
 pkgname=glfw-wayland
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
 configure_args="-DBUILD_SHARED_LIBS=ON -DGLFW_USE_WAYLAND=ON"
@@ -13,7 +13,7 @@ license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 provides="glfw-${version}_${revision}"
 replaces="glfw>=0"
 
diff --git a/srcpkgs/glfw/template b/srcpkgs/glfw/template
index 3d9d7b42692805..0b7646b1e7d8ef 100644
--- a/srcpkgs/glfw/template
+++ b/srcpkgs/glfw/template
@@ -1,19 +1,19 @@
 # Template file for 'glfw'
 # update together with glfw-wayland
 pkgname=glfw
-version=3.3.8
+version=3.4
 revision=1
 build_style=cmake
 configure_args="-DBUILD_SHARED_LIBS=ON"
 makedepends="MesaLib-devel libXrandr-devel libXi-devel glu-devel libXcursor-devel
  libXinerama-devel"
 short_desc="Multi-platform library for creating windows with OpenGL contexts"
-maintainer="Enno Boland <gottox@voidlinux.org>"
+maintainer="Orphaned <orphan@voidlinux.org>"
 license="Zlib"
 homepage="http://www.glfw.org"
 changelog="https://www.glfw.org/changelog.html"
 distfiles="https://github.com/glfw/glfw/archive/${version}.tar.gz"
-checksum=f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713
+checksum=c038d34200234d071fae9345bc455e4a8f2f544ab60150765d7704e08f3dac01
 
 glfw-devel_package() {
 	depends="${makedepends} ${sourcepkg}>=${version}_${revision}"

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

end of thread, other threads:[~2024-03-12 20:00 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-02 21:01 [PR PATCH] glfw: update to 3.4 mkohlhaas
2024-03-02 21:20 ` mkohlhaas
2024-03-03 16:59 ` [PR REVIEW] " classabbyamp
2024-03-03 18:49 ` mkohlhaas
2024-03-03 18:50 ` mkohlhaas
2024-03-03 19:39 ` classabbyamp
2024-03-03 19:40 ` mkohlhaas
2024-03-03 19:41 ` classabbyamp
2024-03-03 19:50 ` Gottox
2024-03-06 15:39 ` M374LX
2024-03-06 17:17 ` [PR PATCH] [Updated] " mkohlhaas
2024-03-06 17:21 ` mkohlhaas
2024-03-06 17:25 ` mkohlhaas
2024-03-06 17:30 ` mkohlhaas
2024-03-12 20:00 ` [PR PATCH] [Closed]: " mkohlhaas
  -- strict thread matches above, loose matches on Subject: below --
2024-03-02 19:52 [PR PATCH] " mkohlhaas
2024-03-02 18:46 mkohlhaas

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