Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: openxr-loader-1.0.34
@ 2024-03-14 19:48 FriederHannenheim
  2024-03-14 22:36 ` [PR PATCH] [Updated] " FriederHannenheim
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-03-14 19:48 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FriederHannenheim/void-packages openxr-package
https://github.com/void-linux/void-packages/pull/49294

New package: openxr-loader-1.0.34
<!-- Uncomment relevant sections and delete options which are not applicable -->
This packages the OpenXR loader as well as development files. It is required to run OpenXR applications and games.


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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64
  - x86_64-musl

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

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

From b128641d1c53bafe1acf85a55cd459373ff2c847 Mon Sep 17 00:00:00 2001
From: FriederHannenheim <frieder.hannenheim@proton.me>
Date: Thu, 14 Mar 2024 20:42:40 +0100
Subject: [PATCH] New package: openxr-loader-1.0.34

---
 srcpkgs/openxr-loader-devel    |  1 +
 srcpkgs/openxr-loader/template | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)
 create mode 120000 srcpkgs/openxr-loader-devel
 create mode 100644 srcpkgs/openxr-loader/template

diff --git a/srcpkgs/openxr-loader-devel b/srcpkgs/openxr-loader-devel
new file mode 120000
index 00000000000000..b643dc211201b5
--- /dev/null
+++ b/srcpkgs/openxr-loader-devel
@@ -0,0 +1 @@
+openxr-loader
\ No newline at end of file
diff --git a/srcpkgs/openxr-loader/template b/srcpkgs/openxr-loader/template
new file mode 100644
index 00000000000000..f31aaacfa519b4
--- /dev/null
+++ b/srcpkgs/openxr-loader/template
@@ -0,0 +1,32 @@
+# Template file for 'openxr-loader'
+pkgname=openxr-loader
+version=1.0.34
+revision=1
+archs="~armv5tel* ~armv6* ~armv7* *"
+#build_wrksrc=
+build_style=cmake
+configure_args="-DCMAKE_BUILD_TYPE=Release"
+#make_build_args=""
+#make_install_args="--component Loader"
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="cmake"
+makedepends="MesaLib-devel Vulkan-Headers libxcb-devel libdri2-devel libXrandr-devel libXxf86vm-devel"
+short_desc="OpenXR is a open standard that provides access to AR and VR devices"
+maintainer="Frieder Hannenheim <frieder.hannenheim@proton.me>"
+license="Apache-2.0"
+homepage="https://www.khronos.org/openxr/"
+changelog="https://github.com/KhronosGroup/OpenXR-SDK/blob/main/CHANGELOG.SDK.md"
+distfiles="https://github.com/KhronosGroup/OpenXR-SDK/archive/refs/tags/release-${version}.tar.gz"
+checksum=5fa2fac1b442a31e267ea522799a247e3aff6e6f5a418b1e31c337b8ca835b69
+
+openxr-loader-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	make_install_args="--component Headers"
+	pkg_install() {
+		vmove usr/include
+        vmove usr/lib/cmake
+        vmove usr/lib/pkgconfig
+	}
+}

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

* Re: [PR PATCH] [Updated] New package: openxr-loader-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
@ 2024-03-14 22:36 ` FriederHannenheim
  2024-03-14 22:38 ` FriederHannenheim
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-03-14 22:36 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FriederHannenheim/void-packages openxr-package
https://github.com/void-linux/void-packages/pull/49294

New package: openxr-loader-1.0.34
<!-- Uncomment relevant sections and delete options which are not applicable -->
This packages the OpenXR loader as well as development files. It is required to run OpenXR applications and games.

I got the available arches from this file at line 40:
https://github.com/KhronosGroup/OpenXR-SDK/blob/main/src/common/platform_utils.hpp
I'm not sure it is exactly right since there armv7a-vfp is supported but I didn't find it in `common/cross-profiles`


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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64
  - x86_64-musl

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

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

From b33d1fe71b797adb15a24b7770a9422ab377e879 Mon Sep 17 00:00:00 2001
From: FriederHannenheim <frieder.hannenheim@proton.me>
Date: Thu, 14 Mar 2024 20:42:40 +0100
Subject: [PATCH] New package: openxr-loader-1.0.34

---
 common/shlibs                  |  1 +
 srcpkgs/openxr-loader-devel    |  1 +
 srcpkgs/openxr-loader/template | 25 +++++++++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/openxr-loader-devel
 create mode 100644 srcpkgs/openxr-loader/template

diff --git a/common/shlibs b/common/shlibs
index d3298e21003df2..6f13744e211ec8 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1512,6 +1512,7 @@ libxshmfence.so.1 libxshmfence-1.1_1
 libgoffice-0.10.so.10 goffice-0.10.9_1
 libc++.so.1 libcxx-3.4_1
 libopenobex.so.2 openobex-1.7.1_1
+libopenxr_loader.so.1 openxr-loader-1.0.34_1
 libnotmuch.so.5 libnotmuch-0.25_1
 libatomic_ops_gpl.so.1 libatomic_ops-7.4.2_1
 libatomic_ops.so.1 libatomic_ops-7.4.2_1
diff --git a/srcpkgs/openxr-loader-devel b/srcpkgs/openxr-loader-devel
new file mode 120000
index 00000000000000..b643dc211201b5
--- /dev/null
+++ b/srcpkgs/openxr-loader-devel
@@ -0,0 +1 @@
+openxr-loader
\ No newline at end of file
diff --git a/srcpkgs/openxr-loader/template b/srcpkgs/openxr-loader/template
new file mode 100644
index 00000000000000..9156efc4ef9567
--- /dev/null
+++ b/srcpkgs/openxr-loader/template
@@ -0,0 +1,25 @@
+# Template file for 'openxr-loader'
+pkgname=openxr-loader
+version=1.0.34
+revision=1
+archs="~armv6* *"
+build_style=cmake
+makedepends="MesaLib-devel Vulkan-Headers libxcb-devel libXrandr-devel libXxf86vm-devel"
+short_desc="OpenXR is a open standard that provides access to AR and VR devices"
+maintainer="Frieder Hannenheim <frieder.hannenheim@proton.me>"
+license="Apache-2.0"
+homepage="https://www.khronos.org/openxr/"
+changelog="https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK/main/CHANGELOG.SDK.md"
+distfiles="https://github.com/KhronosGroup/OpenXR-SDK/archive/refs/tags/release-${version}.tar.gz"
+checksum=5fa2fac1b442a31e267ea522799a247e3aff6e6f5a418b1e31c337b8ca835b69
+
+openxr-loader-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	make_install_args="--component Headers"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/cmake
+		vmove usr/lib/pkgconfig
+	}
+}

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

* Re: [PR PATCH] [Updated] New package: openxr-loader-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
  2024-03-14 22:36 ` [PR PATCH] [Updated] " FriederHannenheim
@ 2024-03-14 22:38 ` FriederHannenheim
  2024-03-15 11:32 ` FriederHannenheim
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-03-14 22:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FriederHannenheim/void-packages openxr-package
https://github.com/void-linux/void-packages/pull/49294

New package: openxr-loader-1.0.34
<!-- Uncomment relevant sections and delete options which are not applicable -->
This packages the OpenXR loader as well as development files. It is required to run OpenXR applications and games.

I got the available arches from this file at line 40:
https://github.com/KhronosGroup/OpenXR-SDK/blob/main/src/common/platform_utils.hpp
I'm not sure it is exactly right since there armv7a-vfp is supported but I didn't find it in `common/cross-profiles`


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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64
  - x86_64-musl

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

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

From c6cfc5cc049a37a7167f45c8aea20cbf5bf44beb Mon Sep 17 00:00:00 2001
From: FriederHannenheim <frieder.hannenheim@proton.me>
Date: Thu, 14 Mar 2024 20:42:40 +0100
Subject: [PATCH] New package: openxr-loader-1.0.34

---
 common/shlibs                  |  1 +
 srcpkgs/openxr-loader-devel    |  1 +
 srcpkgs/openxr-loader/template | 25 +++++++++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/openxr-loader-devel
 create mode 100644 srcpkgs/openxr-loader/template

diff --git a/common/shlibs b/common/shlibs
index d3298e21003df2..6f13744e211ec8 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1512,6 +1512,7 @@ libxshmfence.so.1 libxshmfence-1.1_1
 libgoffice-0.10.so.10 goffice-0.10.9_1
 libc++.so.1 libcxx-3.4_1
 libopenobex.so.2 openobex-1.7.1_1
+libopenxr_loader.so.1 openxr-loader-1.0.34_1
 libnotmuch.so.5 libnotmuch-0.25_1
 libatomic_ops_gpl.so.1 libatomic_ops-7.4.2_1
 libatomic_ops.so.1 libatomic_ops-7.4.2_1
diff --git a/srcpkgs/openxr-loader-devel b/srcpkgs/openxr-loader-devel
new file mode 120000
index 00000000000000..b643dc211201b5
--- /dev/null
+++ b/srcpkgs/openxr-loader-devel
@@ -0,0 +1 @@
+openxr-loader
\ No newline at end of file
diff --git a/srcpkgs/openxr-loader/template b/srcpkgs/openxr-loader/template
new file mode 100644
index 00000000000000..d1c2f8b3b5b13e
--- /dev/null
+++ b/srcpkgs/openxr-loader/template
@@ -0,0 +1,25 @@
+# Template file for 'openxr-loader'
+pkgname=openxr-loader
+version=1.0.34
+revision=1
+archs="~armv6* *" # OpenXR-SDK currently doesn't build on armv6 https://github.com/KhronosGroup/OpenXR-SDK-Source/issues/465
+build_style=cmake
+makedepends="MesaLib-devel Vulkan-Headers libxcb-devel libXrandr-devel libXxf86vm-devel"
+short_desc="OpenXR is a open standard that provides access to AR and VR devices"
+maintainer="Frieder Hannenheim <frieder.hannenheim@proton.me>"
+license="Apache-2.0"
+homepage="https://www.khronos.org/openxr/"
+changelog="https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK/main/CHANGELOG.SDK.md"
+distfiles="https://github.com/KhronosGroup/OpenXR-SDK/archive/refs/tags/release-${version}.tar.gz"
+checksum=5fa2fac1b442a31e267ea522799a247e3aff6e6f5a418b1e31c337b8ca835b69
+
+openxr-loader-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	make_install_args="--component Headers"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/cmake
+		vmove usr/lib/pkgconfig
+	}
+}

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

* Re: New package: openxr-loader-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
  2024-03-14 22:36 ` [PR PATCH] [Updated] " FriederHannenheim
  2024-03-14 22:38 ` FriederHannenheim
@ 2024-03-15 11:32 ` FriederHannenheim
  2024-03-15 11:57 ` [PR PATCH] [Updated] " FriederHannenheim
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-03-15 11:32 UTC (permalink / raw)
  To: ml

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

New comment by FriederHannenheim on void-packages repository

https://github.com/void-linux/void-packages/pull/49294#issuecomment-1999467316

Comment:
Hey are there any changes that still need to made on this? I didn't get all the messages in the IRC yesterday since I went to sleep

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

* Re: [PR PATCH] [Updated] New package: openxr-loader-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
                   ` (2 preceding siblings ...)
  2024-03-15 11:32 ` FriederHannenheim
@ 2024-03-15 11:57 ` FriederHannenheim
  2024-03-15 19:22 ` New package: OpenXR-SDK-1.0.34 Chocimier
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-03-15 11:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FriederHannenheim/void-packages openxr-package
https://github.com/void-linux/void-packages/pull/49294

New package: openxr-loader-1.0.34
<!-- Uncomment relevant sections and delete options which are not applicable -->
This packages the OpenXR loader as well as development files. It is required to run OpenXR applications and games.

I got the available arches from this file at line 40:
https://github.com/KhronosGroup/OpenXR-SDK/blob/main/src/common/platform_utils.hpp
I'm not sure it is exactly right since there armv7a-vfp is supported but I didn't find it in `common/cross-profiles`


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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64
  - x86_64-musl
  - armv7l
  - armv7hf

I tried cross building for arm5tel but the build for gcc failed so I couldn't test it

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

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

From 1deaab559dff0a038e61f34ed2353d61de20310f Mon Sep 17 00:00:00 2001
From: FriederHannenheim <frieder.hannenheim@proton.me>
Date: Thu, 14 Mar 2024 20:42:40 +0100
Subject: [PATCH] New package: openxr-loader-1.0.34

---
 common/shlibs               |  1 +
 srcpkgs/OpenXR-SDK-devel    |  1 +
 srcpkgs/OpenXR-SDK/template | 25 +++++++++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/OpenXR-SDK-devel
 create mode 100644 srcpkgs/OpenXR-SDK/template

diff --git a/common/shlibs b/common/shlibs
index d3298e21003df2..561c237876e1a0 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1512,6 +1512,7 @@ libxshmfence.so.1 libxshmfence-1.1_1
 libgoffice-0.10.so.10 goffice-0.10.9_1
 libc++.so.1 libcxx-3.4_1
 libopenobex.so.2 openobex-1.7.1_1
+libopenxr_loader.so.1 OpenXR-SDK-1.0.34_1
 libnotmuch.so.5 libnotmuch-0.25_1
 libatomic_ops_gpl.so.1 libatomic_ops-7.4.2_1
 libatomic_ops.so.1 libatomic_ops-7.4.2_1
diff --git a/srcpkgs/OpenXR-SDK-devel b/srcpkgs/OpenXR-SDK-devel
new file mode 120000
index 00000000000000..32ed0b625ffb05
--- /dev/null
+++ b/srcpkgs/OpenXR-SDK-devel
@@ -0,0 +1 @@
+srcpkgs/OpenXR-SDK/
\ No newline at end of file
diff --git a/srcpkgs/OpenXR-SDK/template b/srcpkgs/OpenXR-SDK/template
new file mode 100644
index 00000000000000..53050bd1d4e7c3
--- /dev/null
+++ b/srcpkgs/OpenXR-SDK/template
@@ -0,0 +1,25 @@
+# Template file for 'OpenXR-SDK'
+pkgname=OpenXR-SDK
+version=1.0.34
+revision=1
+archs="~armv6* *" # OpenXR-SDK currently doesn't build on armv6 https://github.com/KhronosGroup/OpenXR-SDK-Source/issues/465
+build_style=cmake
+makedepends="MesaLib-devel Vulkan-Headers libxcb-devel libXrandr-devel libXxf86vm-devel"
+short_desc="OpenXR is a open standard that provides access to AR and VR devices"
+maintainer="Frieder Hannenheim <frieder.hannenheim@proton.me>"
+license="Apache-2.0"
+homepage="https://www.khronos.org/openxr/"
+changelog="https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK/main/CHANGELOG.SDK.md"
+distfiles="https://github.com/KhronosGroup/OpenXR-SDK/archive/refs/tags/release-${version}.tar.gz"
+checksum=5fa2fac1b442a31e267ea522799a247e3aff6e6f5a418b1e31c337b8ca835b69
+
+OpenXR-SDK-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	make_install_args="--component Headers"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/cmake
+		vmove usr/lib/pkgconfig
+	}
+}

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

* Re: New package: OpenXR-SDK-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
                   ` (3 preceding siblings ...)
  2024-03-15 11:57 ` [PR PATCH] [Updated] " FriederHannenheim
@ 2024-03-15 19:22 ` Chocimier
  2024-03-16  8:15 ` [PR PATCH] [Updated] " FriederHannenheim
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Chocimier @ 2024-03-15 19:22 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/49294#issuecomment-2000313276

Comment:
Symlink content should be `OpenXR-SDK` not `srcpkgs/OpenXR-SDK/`, in other words `ln` with `-r` flag.

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

* Re: [PR PATCH] [Updated] New package: OpenXR-SDK-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
                   ` (4 preceding siblings ...)
  2024-03-15 19:22 ` New package: OpenXR-SDK-1.0.34 Chocimier
@ 2024-03-16  8:15 ` FriederHannenheim
  2024-03-16  8:16 ` FriederHannenheim
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-03-16  8:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FriederHannenheim/void-packages openxr-package
https://github.com/void-linux/void-packages/pull/49294

New package: OpenXR-SDK-1.0.34
<!-- Uncomment relevant sections and delete options which are not applicable -->
This packages the OpenXR loader as well as development files. It is required to run OpenXR applications and games.

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64
  - x86_64-musl
  - armv7l
  - armv7hf

I tried cross building for arm5tel but the build for gcc failed so I couldn't test it

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

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

From 27c774136594607ae23c2936d2be6eaf745caaa1 Mon Sep 17 00:00:00 2001
From: FriederHannenheim <frieder.hannenheim@proton.me>
Date: Thu, 14 Mar 2024 20:42:40 +0100
Subject: [PATCH] New package: openxr-loader-1.0.34

---
 common/shlibs               |  1 +
 srcpkgs/OpenXR-SDK-devel    |  1 +
 srcpkgs/OpenXR-SDK/template | 25 +++++++++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/OpenXR-SDK-devel
 create mode 100644 srcpkgs/OpenXR-SDK/template

diff --git a/common/shlibs b/common/shlibs
index d3298e21003df2..561c237876e1a0 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1512,6 +1512,7 @@ libxshmfence.so.1 libxshmfence-1.1_1
 libgoffice-0.10.so.10 goffice-0.10.9_1
 libc++.so.1 libcxx-3.4_1
 libopenobex.so.2 openobex-1.7.1_1
+libopenxr_loader.so.1 OpenXR-SDK-1.0.34_1
 libnotmuch.so.5 libnotmuch-0.25_1
 libatomic_ops_gpl.so.1 libatomic_ops-7.4.2_1
 libatomic_ops.so.1 libatomic_ops-7.4.2_1
diff --git a/srcpkgs/OpenXR-SDK-devel b/srcpkgs/OpenXR-SDK-devel
new file mode 120000
index 00000000000000..3d87d3253b9666
--- /dev/null
+++ b/srcpkgs/OpenXR-SDK-devel
@@ -0,0 +1 @@
+OpenXR-SDK/
\ No newline at end of file
diff --git a/srcpkgs/OpenXR-SDK/template b/srcpkgs/OpenXR-SDK/template
new file mode 100644
index 00000000000000..53050bd1d4e7c3
--- /dev/null
+++ b/srcpkgs/OpenXR-SDK/template
@@ -0,0 +1,25 @@
+# Template file for 'OpenXR-SDK'
+pkgname=OpenXR-SDK
+version=1.0.34
+revision=1
+archs="~armv6* *" # OpenXR-SDK currently doesn't build on armv6 https://github.com/KhronosGroup/OpenXR-SDK-Source/issues/465
+build_style=cmake
+makedepends="MesaLib-devel Vulkan-Headers libxcb-devel libXrandr-devel libXxf86vm-devel"
+short_desc="OpenXR is a open standard that provides access to AR and VR devices"
+maintainer="Frieder Hannenheim <frieder.hannenheim@proton.me>"
+license="Apache-2.0"
+homepage="https://www.khronos.org/openxr/"
+changelog="https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK/main/CHANGELOG.SDK.md"
+distfiles="https://github.com/KhronosGroup/OpenXR-SDK/archive/refs/tags/release-${version}.tar.gz"
+checksum=5fa2fac1b442a31e267ea522799a247e3aff6e6f5a418b1e31c337b8ca835b69
+
+OpenXR-SDK-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	make_install_args="--component Headers"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/cmake
+		vmove usr/lib/pkgconfig
+	}
+}

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

* Re: New package: OpenXR-SDK-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
                   ` (5 preceding siblings ...)
  2024-03-16  8:15 ` [PR PATCH] [Updated] " FriederHannenheim
@ 2024-03-16  8:16 ` FriederHannenheim
  2024-04-17  8:58 ` [PR PATCH] [Updated] " FriederHannenheim
  2024-04-17  9:00 ` FriederHannenheim
  8 siblings, 0 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-03-16  8:16 UTC (permalink / raw)
  To: ml

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

New comment by FriederHannenheim on void-packages repository

https://github.com/void-linux/void-packages/pull/49294#issuecomment-2001903453

Comment:
Oh yeah. Fixed it

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

* Re: [PR PATCH] [Updated] New package: OpenXR-SDK-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
                   ` (6 preceding siblings ...)
  2024-03-16  8:16 ` FriederHannenheim
@ 2024-04-17  8:58 ` FriederHannenheim
  2024-04-17  9:00 ` FriederHannenheim
  8 siblings, 0 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-04-17  8:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FriederHannenheim/void-packages openxr-package
https://github.com/void-linux/void-packages/pull/49294

New package: OpenXR-SDK-1.0.34
<!-- Uncomment relevant sections and delete options which are not applicable -->
This packages the OpenXR loader as well as development files. It is required to run OpenXR applications and games.

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64
  - x86_64-musl
  - armv7l
  - armv7hf

I tried cross building for arm5tel but the build for gcc failed so I couldn't test it

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

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

From 35ded470fc38401cd28dc9c4b3a6bf333ddb013e Mon Sep 17 00:00:00 2001
From: FriederHannenheim <frieder.hannenheim@proton.me>
Date: Thu, 14 Mar 2024 20:42:40 +0100
Subject: [PATCH] New package: openxr-loader-1.0.34

---
 common/shlibs               |  1 +
 srcpkgs/OpenXR-SDK-devel    |  1 +
 srcpkgs/OpenXR-SDK/template | 24 ++++++++++++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 120000 srcpkgs/OpenXR-SDK-devel
 create mode 100644 srcpkgs/OpenXR-SDK/template

diff --git a/common/shlibs b/common/shlibs
index d3298e21003df2..561c237876e1a0 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1512,6 +1512,7 @@ libxshmfence.so.1 libxshmfence-1.1_1
 libgoffice-0.10.so.10 goffice-0.10.9_1
 libc++.so.1 libcxx-3.4_1
 libopenobex.so.2 openobex-1.7.1_1
+libopenxr_loader.so.1 OpenXR-SDK-1.0.34_1
 libnotmuch.so.5 libnotmuch-0.25_1
 libatomic_ops_gpl.so.1 libatomic_ops-7.4.2_1
 libatomic_ops.so.1 libatomic_ops-7.4.2_1
diff --git a/srcpkgs/OpenXR-SDK-devel b/srcpkgs/OpenXR-SDK-devel
new file mode 120000
index 00000000000000..3d87d3253b9666
--- /dev/null
+++ b/srcpkgs/OpenXR-SDK-devel
@@ -0,0 +1 @@
+OpenXR-SDK/
\ No newline at end of file
diff --git a/srcpkgs/OpenXR-SDK/template b/srcpkgs/OpenXR-SDK/template
new file mode 100644
index 00000000000000..981008f0096c00
--- /dev/null
+++ b/srcpkgs/OpenXR-SDK/template
@@ -0,0 +1,24 @@
+# Template file for 'OpenXR-SDK'
+pkgname=OpenXR-SDK
+version=1.1.36
+revision=1
+build_style=cmake
+makedepends="MesaLib-devel Vulkan-Headers libxcb-devel libXrandr-devel libXxf86vm-devel"
+short_desc="OpenXR is a open standard that provides access to AR and VR devices"
+maintainer="Frieder Hannenheim <frieder.hannenheim@proton.me>"
+license="Apache-2.0"
+homepage="https://www.khronos.org/openxr/"
+changelog="https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK/main/CHANGELOG.SDK.md"
+distfiles="https://github.com/KhronosGroup/OpenXR-SDK/archive/refs/tags/release-${version}.tar.gz"
+checksum=5fa2fac1b442a31e267ea522799a247e3aff6e6f5a418b1e31c337b8ca835b69
+
+OpenXR-SDK-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	make_install_args="--component Headers"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/cmake
+		vmove usr/lib/pkgconfig
+	}
+}

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

* Re: [PR PATCH] [Updated] New package: OpenXR-SDK-1.0.34
  2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
                   ` (7 preceding siblings ...)
  2024-04-17  8:58 ` [PR PATCH] [Updated] " FriederHannenheim
@ 2024-04-17  9:00 ` FriederHannenheim
  8 siblings, 0 replies; 10+ messages in thread
From: FriederHannenheim @ 2024-04-17  9:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/FriederHannenheim/void-packages openxr-package
https://github.com/void-linux/void-packages/pull/49294

New package: OpenXR-SDK-1.0.34
<!-- Uncomment relevant sections and delete options which are not applicable -->
This packages the OpenXR loader as well as development files. It is required to run OpenXR applications and games.

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64
  - x86_64-musl
  - armv7l
  - armv7hf

I tried cross building for arm5tel but the build for gcc failed so I couldn't test it

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

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

From 514d4cc24a5480976766c812f9e4dd72e5507391 Mon Sep 17 00:00:00 2001
From: FriederHannenheim <frieder.hannenheim@proton.me>
Date: Thu, 14 Mar 2024 20:42:40 +0100
Subject: [PATCH] New package: openxr-loader-1.1.36

---
 common/shlibs               |  1 +
 srcpkgs/OpenXR-SDK-devel    |  1 +
 srcpkgs/OpenXR-SDK/template | 24 ++++++++++++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 120000 srcpkgs/OpenXR-SDK-devel
 create mode 100644 srcpkgs/OpenXR-SDK/template

diff --git a/common/shlibs b/common/shlibs
index d3298e21003df2..c7de654b0a9556 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1512,6 +1512,7 @@ libxshmfence.so.1 libxshmfence-1.1_1
 libgoffice-0.10.so.10 goffice-0.10.9_1
 libc++.so.1 libcxx-3.4_1
 libopenobex.so.2 openobex-1.7.1_1
+libopenxr_loader.so.1 OpenXR-SDK-1.1.36_1
 libnotmuch.so.5 libnotmuch-0.25_1
 libatomic_ops_gpl.so.1 libatomic_ops-7.4.2_1
 libatomic_ops.so.1 libatomic_ops-7.4.2_1
diff --git a/srcpkgs/OpenXR-SDK-devel b/srcpkgs/OpenXR-SDK-devel
new file mode 120000
index 00000000000000..3d87d3253b9666
--- /dev/null
+++ b/srcpkgs/OpenXR-SDK-devel
@@ -0,0 +1 @@
+OpenXR-SDK/
\ No newline at end of file
diff --git a/srcpkgs/OpenXR-SDK/template b/srcpkgs/OpenXR-SDK/template
new file mode 100644
index 00000000000000..981008f0096c00
--- /dev/null
+++ b/srcpkgs/OpenXR-SDK/template
@@ -0,0 +1,24 @@
+# Template file for 'OpenXR-SDK'
+pkgname=OpenXR-SDK
+version=1.1.36
+revision=1
+build_style=cmake
+makedepends="MesaLib-devel Vulkan-Headers libxcb-devel libXrandr-devel libXxf86vm-devel"
+short_desc="OpenXR is a open standard that provides access to AR and VR devices"
+maintainer="Frieder Hannenheim <frieder.hannenheim@proton.me>"
+license="Apache-2.0"
+homepage="https://www.khronos.org/openxr/"
+changelog="https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK/main/CHANGELOG.SDK.md"
+distfiles="https://github.com/KhronosGroup/OpenXR-SDK/archive/refs/tags/release-${version}.tar.gz"
+checksum=5fa2fac1b442a31e267ea522799a247e3aff6e6f5a418b1e31c337b8ca835b69
+
+OpenXR-SDK-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	make_install_args="--component Headers"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/cmake
+		vmove usr/lib/pkgconfig
+	}
+}

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

end of thread, other threads:[~2024-04-17  9:00 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-14 19:48 [PR PATCH] New package: openxr-loader-1.0.34 FriederHannenheim
2024-03-14 22:36 ` [PR PATCH] [Updated] " FriederHannenheim
2024-03-14 22:38 ` FriederHannenheim
2024-03-15 11:32 ` FriederHannenheim
2024-03-15 11:57 ` [PR PATCH] [Updated] " FriederHannenheim
2024-03-15 19:22 ` New package: OpenXR-SDK-1.0.34 Chocimier
2024-03-16  8:15 ` [PR PATCH] [Updated] " FriederHannenheim
2024-03-16  8:16 ` FriederHannenheim
2024-04-17  8:58 ` [PR PATCH] [Updated] " FriederHannenheim
2024-04-17  9:00 ` FriederHannenheim

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