* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2021-07-20 22:00 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2021-07-20 22:00 UTC (permalink / raw
To: gentoo-commits
commit: 57b8fc54b321503000a69096876ef30cf91343a0
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Tue Jul 20 21:46:02 2021 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Tue Jul 20 21:59:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=57b8fc54
media-libs/openxr-loader: New Package
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/Manifest | 1 +
media-libs/openxr-loader/metadata.xml | 11 +++++
.../openxr-loader/openxr-loader-1.0.17.ebuild | 53 ++++++++++++++++++++++
media-libs/openxr-loader/openxr-loader-9999.ebuild | 53 ++++++++++++++++++++++
4 files changed, 118 insertions(+)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
new file mode 100644
index 000000000..09224f9ea
--- /dev/null
+++ b/media-libs/openxr-loader/Manifest
@@ -0,0 +1 @@
+DIST openxr-loader-1.0.17.tar.gz 771547 BLAKE2B 3fbc055e1b8a80b2f344fe8b11a67a9c9ad26136b25add788b09f914849ab2a3fa5a8e47fde13d8755a1f2be8f9b28603e4b1526a96ee945cd581655995a9204 SHA512 e8db096d01cf2802dd2bc48aa82d6002c705266bff74d2e86ee6ab4afafcbe4b1c7da720cf7a18750b5fdc153fef89d967c9a807a77d7d06d70fc64e5d792acf
diff --git a/media-libs/openxr-loader/metadata.xml b/media-libs/openxr-loader/metadata.xml
new file mode 100644
index 000000000..d14186a26
--- /dev/null
+++ b/media-libs/openxr-loader/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>contact@hacktivis.me</email>
+ <name>Haelwenn (lanodan) Monnier</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">KhronosGroup/OpenXR-SDK</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/media-libs/openxr-loader/openxr-loader-1.0.17.ebuild b/media-libs/openxr-loader/openxr-loader-1.0.17.ebuild
new file mode 100644
index 000000000..044319086
--- /dev/null
+++ b/media-libs/openxr-loader/openxr-loader-1.0.17.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=OpenXR-SDK
+inherit cmake
+
+if [[ ${PV} == *9999* ]]; then
+ EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}"/${MY_PN}-release-${PV}
+fi
+
+DESCRIPTION="OpenXR loader"
+HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+IUSE="+wayland +X"
+
+BDEPEND=">=dev-util/cmake-3.10.2"
+DEPEND="
+ media-libs/vulkan-loader
+ media-libs/mesa
+ dev-libs/jsoncpp:=
+ wayland? (
+ dev-libs/wayland
+ dev-libs/wayland-protocols
+ dev-util/wayland-scanner
+ )
+ X? (
+ x11-libs/libxcb
+ x11-libs/xcb-util-keysyms
+ x11-libs/libXrandr
+ x11-libs/libXxf86vm
+ )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_WITH_SYSTEM_JSONCPP=ON
+ -DBUILD_WITH_XLIB_HEADERS=$(usex X)
+ -DBUILD_WITH_XCB_HEADERS=$(usex X)
+ -DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ )
+
+ cmake_src_configure
+}
diff --git a/media-libs/openxr-loader/openxr-loader-9999.ebuild b/media-libs/openxr-loader/openxr-loader-9999.ebuild
new file mode 100644
index 000000000..10573f656
--- /dev/null
+++ b/media-libs/openxr-loader/openxr-loader-9999.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=OpenXR-SDK
+inherit cmake
+
+if [[ ${PV} == *9999* ]]; then
+ EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}"/${MY_PN}-${PV}
+fi
+
+DESCRIPTION="OpenXR loader"
+HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+IUSE="+wayland +X"
+
+BDEPEND=">=dev-util/cmake-3.10.2"
+DEPEND="
+ media-libs/vulkan-loader
+ media-libs/mesa
+ dev-libs/jsoncpp:=
+ wayland? (
+ dev-libs/wayland
+ dev-libs/wayland-protocols
+ dev-util/wayland-scanner
+ )
+ X? (
+ x11-libs/libxcb
+ x11-libs/xcb-util-keysyms
+ x11-libs/libXrandr
+ x11-libs/libXxf86vm
+ )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_WITH_SYSTEM_JSONCPP=ON
+ -DBUILD_WITH_XLIB_HEADERS=$(usex X)
+ -DBUILD_WITH_XCB_HEADERS=$(usex X)
+ -DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ )
+
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2021-09-17 1:56 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2021-09-17 1:56 UTC (permalink / raw
To: gentoo-commits
commit: c0a21428900686b4f106e773fbdb23a2a376afc6
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Fri Sep 17 01:55:14 2021 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Fri Sep 17 01:55:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0a21428
media-libs/openxr-loader: match .so lib by using PV as subslot
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/openxr-loader-1.0.19.ebuild | 7 ++++---
media-libs/openxr-loader/openxr-loader-9999.ebuild | 5 +++--
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild b/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
index 044319086..2014d5ce5 100644
--- a/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
@@ -7,19 +7,20 @@ MY_PN=OpenXR-SDK
inherit cmake
if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
inherit git-r3
+ EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
+ SLOT="0"
else
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
- S="${WORKDIR}"/${MY_PN}-release-${PV}
+ S="${WORKDIR}"/${MY_PN}-${PV}
+ SLOT="0/${PV}"
fi
DESCRIPTION="OpenXR loader"
HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
LICENSE="Apache-2.0"
-SLOT="0"
IUSE="+wayland +X"
diff --git a/media-libs/openxr-loader/openxr-loader-9999.ebuild b/media-libs/openxr-loader/openxr-loader-9999.ebuild
index 10573f656..2014d5ce5 100644
--- a/media-libs/openxr-loader/openxr-loader-9999.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-9999.ebuild
@@ -7,19 +7,20 @@ MY_PN=OpenXR-SDK
inherit cmake
if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
inherit git-r3
+ EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
+ SLOT="0"
else
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}"/${MY_PN}-${PV}
+ SLOT="0/${PV}"
fi
DESCRIPTION="OpenXR loader"
HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
LICENSE="Apache-2.0"
-SLOT="0"
IUSE="+wayland +X"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2021-09-17 1:56 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2021-09-17 1:56 UTC (permalink / raw
To: gentoo-commits
commit: b77cdaeb3cf55a792a92df4a54d849231aa72884
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Fri Sep 17 01:53:03 2021 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Fri Sep 17 01:55:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b77cdaeb
media-libs/openxr-loader: clean version bump, 1.0.19
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/Manifest | 2 +-
.../{openxr-loader-1.0.17.ebuild => openxr-loader-1.0.19.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
index 09224f9ea..53f2bd594 100644
--- a/media-libs/openxr-loader/Manifest
+++ b/media-libs/openxr-loader/Manifest
@@ -1 +1 @@
-DIST openxr-loader-1.0.17.tar.gz 771547 BLAKE2B 3fbc055e1b8a80b2f344fe8b11a67a9c9ad26136b25add788b09f914849ab2a3fa5a8e47fde13d8755a1f2be8f9b28603e4b1526a96ee945cd581655995a9204 SHA512 e8db096d01cf2802dd2bc48aa82d6002c705266bff74d2e86ee6ab4afafcbe4b1c7da720cf7a18750b5fdc153fef89d967c9a807a77d7d06d70fc64e5d792acf
+DIST openxr-loader-1.0.19.tar.gz 783017 BLAKE2B 728dbd1b4eb35c11db97b456b288c09baa9bb5d4cc3fe4e84f80609963257e8f6533789da878ffe2dfd75d84fbb3e85612a3a35e09b238ed239b9da04b35ee5e SHA512 b60e3475755d1384d9e1c3b586f3017e640670c2a828eba90dfd161c293ef7d6676615b16558f112d8162bc74ebe930604534019aa1298f0b245c24b2bfa8739
diff --git a/media-libs/openxr-loader/openxr-loader-1.0.17.ebuild b/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
similarity index 100%
rename from media-libs/openxr-loader/openxr-loader-1.0.17.ebuild
rename to media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2021-10-28 20:58 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2021-10-28 20:58 UTC (permalink / raw
To: gentoo-commits
commit: 3cbea3ed02cfff7c4f4005d75eda24382b7db644
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Thu Oct 28 20:50:13 2021 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Oct 28 20:58:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3cbea3ed
media-libs/openxr-loader: Fix ${S} path
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/openxr-loader-1.0.19.ebuild | 2 +-
media-libs/openxr-loader/openxr-loader-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild b/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
index 2014d5ce5..d43e87ebc 100644
--- a/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999* ]]; then
else
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
- S="${WORKDIR}"/${MY_PN}-${PV}
+ S="${WORKDIR}/${MY_PN}-release-${PV}"
SLOT="0/${PV}"
fi
diff --git a/media-libs/openxr-loader/openxr-loader-9999.ebuild b/media-libs/openxr-loader/openxr-loader-9999.ebuild
index 2014d5ce5..d43e87ebc 100644
--- a/media-libs/openxr-loader/openxr-loader-9999.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999* ]]; then
else
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
- S="${WORKDIR}"/${MY_PN}-${PV}
+ S="${WORKDIR}/${MY_PN}-release-${PV}"
SLOT="0/${PV}"
fi
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2021-10-28 20:58 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2021-10-28 20:58 UTC (permalink / raw
To: gentoo-commits
commit: 96afcf7156e0f06ef31bb778d3ba99e47f6e3901
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Thu Oct 28 20:52:44 2021 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Oct 28 20:58:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=96afcf71
media-libs/openxr-loader: Clean version bump, 1.0.20
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/Manifest | 2 +-
.../{openxr-loader-1.0.19.ebuild => openxr-loader-1.0.20.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
index 53f2bd594..5b42c35e7 100644
--- a/media-libs/openxr-loader/Manifest
+++ b/media-libs/openxr-loader/Manifest
@@ -1 +1 @@
-DIST openxr-loader-1.0.19.tar.gz 783017 BLAKE2B 728dbd1b4eb35c11db97b456b288c09baa9bb5d4cc3fe4e84f80609963257e8f6533789da878ffe2dfd75d84fbb3e85612a3a35e09b238ed239b9da04b35ee5e SHA512 b60e3475755d1384d9e1c3b586f3017e640670c2a828eba90dfd161c293ef7d6676615b16558f112d8162bc74ebe930604534019aa1298f0b245c24b2bfa8739
+DIST openxr-loader-1.0.20.tar.gz 860471 BLAKE2B d3b9d1d2d225f57ce023810a9e25cc00a3d789e528679970af50e038cc88e5820b73f78e9b787190c3dfca95bd04f0c966c7ed38d407be995abef2e0f0b45dae SHA512 26629edd9dcd17bae8d1089bfeb479914f3c7f7cd595345fad3e4be18d8dc7e079fd2ac89906199acc61ae5ce14c15ea66bcd0dfb44411788ab1ee0468c91192
diff --git a/media-libs/openxr-loader/openxr-loader-1.0.19.ebuild b/media-libs/openxr-loader/openxr-loader-1.0.20.ebuild
similarity index 100%
rename from media-libs/openxr-loader/openxr-loader-1.0.19.ebuild
rename to media-libs/openxr-loader/openxr-loader-1.0.20.ebuild
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2023-11-23 18:50 Patrick Nicolas
0 siblings, 0 replies; 13+ messages in thread
From: Patrick Nicolas @ 2023-11-23 18:50 UTC (permalink / raw
To: gentoo-commits
commit: 3e688af2061885d830cdf773d33dacb50e74b576
Author: Patrick Nicolas <patricknicolas <AT> laposte <DOT> net>
AuthorDate: Thu Nov 23 18:48:47 2023 +0000
Commit: Patrick Nicolas <patricknicolas <AT> laposte <DOT> net>
CommitDate: Thu Nov 23 18:48:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3e688af2
media-libs/openxr-loader: add 1.0.31, drop 1.0.20
Signed-off-by: Patrick Nicolas <patricknicolas <AT> laposte.net>
media-libs/openxr-loader/Manifest | 2 +-
.../{openxr-loader-1.0.20.ebuild => openxr-loader-1.0.31.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
index 5b42c35e77..25e6cff8ee 100644
--- a/media-libs/openxr-loader/Manifest
+++ b/media-libs/openxr-loader/Manifest
@@ -1 +1 @@
-DIST openxr-loader-1.0.20.tar.gz 860471 BLAKE2B d3b9d1d2d225f57ce023810a9e25cc00a3d789e528679970af50e038cc88e5820b73f78e9b787190c3dfca95bd04f0c966c7ed38d407be995abef2e0f0b45dae SHA512 26629edd9dcd17bae8d1089bfeb479914f3c7f7cd595345fad3e4be18d8dc7e079fd2ac89906199acc61ae5ce14c15ea66bcd0dfb44411788ab1ee0468c91192
+DIST openxr-loader-1.0.31.tar.gz 572848 BLAKE2B 60483a5f1dd90dade7dbcfe08e0b165066ba5a880fb7b661676fbd6d2bbbb1e3a2d619d26bbc55e1339652e237abe53081806c97ab373c36c1420e6f3642ffcf SHA512 6efc7596e707f95366dbcdbac9bd7d0c20735a2175b4edf56a9e8a112cf0ab8b664069fe942313164a37119032ddbf5671bc88ab5f276005dd36e4a4dabba1c7
diff --git a/media-libs/openxr-loader/openxr-loader-1.0.20.ebuild b/media-libs/openxr-loader/openxr-loader-1.0.31.ebuild
similarity index 100%
rename from media-libs/openxr-loader/openxr-loader-1.0.20.ebuild
rename to media-libs/openxr-loader/openxr-loader-1.0.31.ebuild
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2024-09-21 21:51 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2024-09-21 21:51 UTC (permalink / raw
To: gentoo-commits
commit: ada6fb671db4eef84218c5353cd8b308de2d9608
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sat Sep 21 21:50:45 2024 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Sat Sep 21 21:51:17 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ada6fb67
media-libs/openxr-loader: drop 1.0.31, add 1.1.40
Closes: https://bugs.gentoo.org/887779
Closes: https://bugs.gentoo.org/932773
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/Manifest | 2 +-
...nxr-loader-1.0.31.ebuild => openxr-loader-1.1.40.ebuild} | 13 +++++++++++--
media-libs/openxr-loader/openxr-loader-9999.ebuild | 13 +++++++++++--
3 files changed, 23 insertions(+), 5 deletions(-)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
index 25e6cff8e..0aa0b6a29 100644
--- a/media-libs/openxr-loader/Manifest
+++ b/media-libs/openxr-loader/Manifest
@@ -1 +1 @@
-DIST openxr-loader-1.0.31.tar.gz 572848 BLAKE2B 60483a5f1dd90dade7dbcfe08e0b165066ba5a880fb7b661676fbd6d2bbbb1e3a2d619d26bbc55e1339652e237abe53081806c97ab373c36c1420e6f3642ffcf SHA512 6efc7596e707f95366dbcdbac9bd7d0c20735a2175b4edf56a9e8a112cf0ab8b664069fe942313164a37119032ddbf5671bc88ab5f276005dd36e4a4dabba1c7
+DIST openxr-loader-1.1.40.tar.gz 620341 BLAKE2B 75e0108c803501e3d34b7e494e08ddeffc64d311bfe28e271d23d1b9a621f86f6e296707a59edddf7ec6d0312c81cfce45a512d1c8d99448543878794298003e SHA512 1012dbb152a1b6343eb39c460d68daae87cff42ffaf15b9c4d7efc8abea77ecff45d593bdedb9767c772890022c45374b04e1167296f01c6507fd987a4c25fc2
diff --git a/media-libs/openxr-loader/openxr-loader-1.0.31.ebuild b/media-libs/openxr-loader/openxr-loader-1.1.40.ebuild
similarity index 70%
rename from media-libs/openxr-loader/openxr-loader-1.0.31.ebuild
rename to media-libs/openxr-loader/openxr-loader-1.1.40.ebuild
index 0fc7f81d5..0a7f9f419 100644
--- a/media-libs/openxr-loader/openxr-loader-1.0.31.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-1.1.40.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
SLOT="0"
else
- SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${MY_PN}-release-${PV}"
SLOT="0/${PV}"
@@ -23,6 +23,7 @@ HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
LICENSE="Apache-2.0"
IUSE="+wayland +X"
+REQUIRED_USE="|| ( wayland X )"
DEPEND="
media-libs/vulkan-loader
@@ -31,7 +32,6 @@ DEPEND="
wayland? (
dev-libs/wayland
dev-libs/wayland-protocols
- dev-util/wayland-scanner
)
X? (
x11-libs/libxcb
@@ -40,6 +40,14 @@ DEPEND="
x11-libs/libXxf86vm
)
"
+RDEPEND="${DEPEND}"
+BDEPEND="wayland? ( dev-util/wayland-scanner )"
+
+src_prepare() {
+ sed -i 's;DESTINATION share/doc/openxr;DESTINATION ${CMAKE_INSTALL_DOCDIR};' CMakeLists.txt || die
+
+ cmake_src_prepare
+}
src_configure() {
local mycmakeargs=(
@@ -47,6 +55,7 @@ src_configure() {
-DBUILD_WITH_XLIB_HEADERS=$(usex X)
-DBUILD_WITH_XCB_HEADERS=$(usex X)
-DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ -DPRESENTATION_BACKEND=$(usex X xlib wayland)
)
cmake_src_configure
diff --git a/media-libs/openxr-loader/openxr-loader-9999.ebuild b/media-libs/openxr-loader/openxr-loader-9999.ebuild
index 0fc7f81d5..0a7f9f419 100644
--- a/media-libs/openxr-loader/openxr-loader-9999.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-9999.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
SLOT="0"
else
- SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${MY_PN}-release-${PV}"
SLOT="0/${PV}"
@@ -23,6 +23,7 @@ HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
LICENSE="Apache-2.0"
IUSE="+wayland +X"
+REQUIRED_USE="|| ( wayland X )"
DEPEND="
media-libs/vulkan-loader
@@ -31,7 +32,6 @@ DEPEND="
wayland? (
dev-libs/wayland
dev-libs/wayland-protocols
- dev-util/wayland-scanner
)
X? (
x11-libs/libxcb
@@ -40,6 +40,14 @@ DEPEND="
x11-libs/libXxf86vm
)
"
+RDEPEND="${DEPEND}"
+BDEPEND="wayland? ( dev-util/wayland-scanner )"
+
+src_prepare() {
+ sed -i 's;DESTINATION share/doc/openxr;DESTINATION ${CMAKE_INSTALL_DOCDIR};' CMakeLists.txt || die
+
+ cmake_src_prepare
+}
src_configure() {
local mycmakeargs=(
@@ -47,6 +55,7 @@ src_configure() {
-DBUILD_WITH_XLIB_HEADERS=$(usex X)
-DBUILD_WITH_XCB_HEADERS=$(usex X)
-DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ -DPRESENTATION_BACKEND=$(usex X xlib wayland)
)
cmake_src_configure
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2024-09-24 3:42 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2024-09-24 3:42 UTC (permalink / raw
To: gentoo-commits
commit: 41535836e7953e254e115011ce5711d7b31269d6
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Tue Sep 24 03:40:37 2024 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Tue Sep 24 03:42:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41535836
media-libs/openxr-loader: make sure to build with system jsoncpp
Otherwise it is automagic.
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
.../{openxr-loader-1.1.40.ebuild => openxr-loader-1.1.40-r1.ebuild} | 1 +
media-libs/openxr-loader/openxr-loader-9999.ebuild | 1 +
2 files changed, 2 insertions(+)
diff --git a/media-libs/openxr-loader/openxr-loader-1.1.40.ebuild b/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild
similarity index 97%
rename from media-libs/openxr-loader/openxr-loader-1.1.40.ebuild
rename to media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild
index 0a7f9f419..7e76b7f7a 100644
--- a/media-libs/openxr-loader/openxr-loader-1.1.40.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild
@@ -55,6 +55,7 @@ src_configure() {
-DBUILD_WITH_XLIB_HEADERS=$(usex X)
-DBUILD_WITH_XCB_HEADERS=$(usex X)
-DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ -DBUILD_WITH_SYSTEM_JSONCPP=YES
-DPRESENTATION_BACKEND=$(usex X xlib wayland)
)
diff --git a/media-libs/openxr-loader/openxr-loader-9999.ebuild b/media-libs/openxr-loader/openxr-loader-9999.ebuild
index 0a7f9f419..7e76b7f7a 100644
--- a/media-libs/openxr-loader/openxr-loader-9999.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-9999.ebuild
@@ -55,6 +55,7 @@ src_configure() {
-DBUILD_WITH_XLIB_HEADERS=$(usex X)
-DBUILD_WITH_XCB_HEADERS=$(usex X)
-DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ -DBUILD_WITH_SYSTEM_JSONCPP=YES
-DPRESENTATION_BACKEND=$(usex X xlib wayland)
)
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2024-09-26 15:35 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2024-09-26 15:35 UTC (permalink / raw
To: gentoo-commits
commit: 3789a33c34567a8619d6e657303d13c74d0c32ea
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Thu Sep 26 15:34:45 2024 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Sep 26 15:35:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3789a33c
media-libs/openxr-loader: block =dev-libs/jsoncpp-1.9.6
Closes: https://bugs.gentoo.org/940262
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild | 2 ++
media-libs/openxr-loader/openxr-loader-9999.ebuild | 2 ++
2 files changed, 4 insertions(+)
diff --git a/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild b/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild
index 7e76b7f7a..d15ced7bb 100644
--- a/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild
@@ -25,10 +25,12 @@ LICENSE="Apache-2.0"
IUSE="+wayland +X"
REQUIRED_USE="|| ( wayland X )"
+# dev-libs/jsoncpp-1.9.6: https://bugs.gentoo.org/940262
DEPEND="
media-libs/vulkan-loader
media-libs/mesa
dev-libs/jsoncpp:=
+ !=dev-libs/jsoncpp-1.9.6
wayland? (
dev-libs/wayland
dev-libs/wayland-protocols
diff --git a/media-libs/openxr-loader/openxr-loader-9999.ebuild b/media-libs/openxr-loader/openxr-loader-9999.ebuild
index 7e76b7f7a..d15ced7bb 100644
--- a/media-libs/openxr-loader/openxr-loader-9999.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-9999.ebuild
@@ -25,10 +25,12 @@ LICENSE="Apache-2.0"
IUSE="+wayland +X"
REQUIRED_USE="|| ( wayland X )"
+# dev-libs/jsoncpp-1.9.6: https://bugs.gentoo.org/940262
DEPEND="
media-libs/vulkan-loader
media-libs/mesa
dev-libs/jsoncpp:=
+ !=dev-libs/jsoncpp-1.9.6
wayland? (
dev-libs/wayland
dev-libs/wayland-protocols
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2024-12-08 12:01 Patrick Nicolas
0 siblings, 0 replies; 13+ messages in thread
From: Patrick Nicolas @ 2024-12-08 12:01 UTC (permalink / raw
To: gentoo-commits
commit: e78dddfb60647217ddfe0d3af4f85c49798cfa47
Author: Patrick Nicolas <patricknicolas <AT> laposte <DOT> net>
AuthorDate: Sun Dec 8 11:56:20 2024 +0000
Commit: Patrick Nicolas <patricknicolas <AT> laposte <DOT> net>
CommitDate: Sun Dec 8 11:58:42 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e78dddfb
media-libs/openxr-loader: add 1.1.43
Signed-off-by: Patrick Nicolas <patricknicolas <AT> laposte.net>
media-libs/openxr-loader/Manifest | 1 +
.../openxr-loader/openxr-loader-1.1.43.ebuild | 64 ++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
index 0aa0b6a29..5a412e311 100644
--- a/media-libs/openxr-loader/Manifest
+++ b/media-libs/openxr-loader/Manifest
@@ -1 +1,2 @@
DIST openxr-loader-1.1.40.tar.gz 620341 BLAKE2B 75e0108c803501e3d34b7e494e08ddeffc64d311bfe28e271d23d1b9a621f86f6e296707a59edddf7ec6d0312c81cfce45a512d1c8d99448543878794298003e SHA512 1012dbb152a1b6343eb39c460d68daae87cff42ffaf15b9c4d7efc8abea77ecff45d593bdedb9767c772890022c45374b04e1167296f01c6507fd987a4c25fc2
+DIST openxr-loader-1.1.43.tar.gz 644835 BLAKE2B 75d27b0e382ccfdd5d0bfaede000d8725fcd26b307199a1859fa8745c9c565d823928dae4e1b893cc27ed4a18136392eaaa0f14f37d5378080aef90ab8b5d737 SHA512 e5bc1fe6a8f568d484be0da65cccc6eec8707f00441c34f16e49b685c0a6bb260ab407a758a579ffb264e175f43317add46d6781f0073891b372333b3769fd9f
diff --git a/media-libs/openxr-loader/openxr-loader-1.1.43.ebuild b/media-libs/openxr-loader/openxr-loader-1.1.43.ebuild
new file mode 100644
index 000000000..133c2c3b5
--- /dev/null
+++ b/media-libs/openxr-loader/openxr-loader-1.1.43.ebuild
@@ -0,0 +1,64 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=OpenXR-SDK
+inherit cmake-multilib
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
+ SLOT="0"
+else
+ SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}/${MY_PN}-release-${PV}"
+ SLOT="0/${PV}"
+fi
+
+DESCRIPTION="OpenXR loader"
+HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
+
+LICENSE="Apache-2.0"
+
+IUSE="+wayland +X"
+REQUIRED_USE="|| ( wayland X )"
+
+# dev-libs/jsoncpp-1.9.6: https://bugs.gentoo.org/940262
+DEPEND="
+ media-libs/vulkan-loader[${MULTILIB_USEDEP}]
+ media-libs/mesa[${MULTILIB_USEDEP}]
+ dev-libs/jsoncpp:=[${MULTILIB_USEDEP}]
+ !=dev-libs/jsoncpp-1.9.6
+ wayland? (
+ dev-libs/wayland[${MULTILIB_USEDEP}]
+ dev-libs/wayland-protocols
+ )
+ X? (
+ x11-libs/libxcb[${MULTILIB_USEDEP}]
+ x11-libs/xcb-util-keysyms
+ x11-libs/libXrandr[${MULTILIB_USEDEP}]
+ x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+ )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="wayland? ( dev-util/wayland-scanner )"
+
+src_prepare() {
+ sed -i 's;DESTINATION share/doc/openxr;DESTINATION ${CMAKE_INSTALL_DOCDIR};' CMakeLists.txt || die
+
+ cmake_src_prepare
+}
+
+multilib_src_configure() {
+ local mycmakeargs=(
+ -DBUILD_WITH_SYSTEM_JSONCPP=ON
+ -DBUILD_WITH_XLIB_HEADERS=$(usex X)
+ -DBUILD_WITH_XCB_HEADERS=$(usex X)
+ -DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ -DPRESENTATION_BACKEND=$(usex X xlib wayland)
+ )
+
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2024-12-08 12:01 Patrick Nicolas
0 siblings, 0 replies; 13+ messages in thread
From: Patrick Nicolas @ 2024-12-08 12:01 UTC (permalink / raw
To: gentoo-commits
commit: 906358431f073680b0f06278cc2367c33ff1c034
Author: Patrick Nicolas <patricknicolas <AT> laposte <DOT> net>
AuthorDate: Sun Dec 8 11:58:09 2024 +0000
Commit: Patrick Nicolas <patricknicolas <AT> laposte <DOT> net>
CommitDate: Sun Dec 8 11:58:42 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=90635843
media-libs/openxr-loader: add multilib
Signed-off-by: Patrick Nicolas <patricknicolas <AT> laposte.net>
media-libs/openxr-loader/openxr-loader-9999.ebuild | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/media-libs/openxr-loader/openxr-loader-9999.ebuild b/media-libs/openxr-loader/openxr-loader-9999.ebuild
index d15ced7bb..133c2c3b5 100644
--- a/media-libs/openxr-loader/openxr-loader-9999.ebuild
+++ b/media-libs/openxr-loader/openxr-loader-9999.ebuild
@@ -4,7 +4,7 @@
EAPI=7
MY_PN=OpenXR-SDK
-inherit cmake
+inherit cmake-multilib
if [[ ${PV} == *9999* ]]; then
inherit git-r3
@@ -27,19 +27,19 @@ REQUIRED_USE="|| ( wayland X )"
# dev-libs/jsoncpp-1.9.6: https://bugs.gentoo.org/940262
DEPEND="
- media-libs/vulkan-loader
- media-libs/mesa
- dev-libs/jsoncpp:=
+ media-libs/vulkan-loader[${MULTILIB_USEDEP}]
+ media-libs/mesa[${MULTILIB_USEDEP}]
+ dev-libs/jsoncpp:=[${MULTILIB_USEDEP}]
!=dev-libs/jsoncpp-1.9.6
wayland? (
- dev-libs/wayland
+ dev-libs/wayland[${MULTILIB_USEDEP}]
dev-libs/wayland-protocols
)
X? (
- x11-libs/libxcb
+ x11-libs/libxcb[${MULTILIB_USEDEP}]
x11-libs/xcb-util-keysyms
- x11-libs/libXrandr
- x11-libs/libXxf86vm
+ x11-libs/libXrandr[${MULTILIB_USEDEP}]
+ x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
)
"
RDEPEND="${DEPEND}"
@@ -51,13 +51,12 @@ src_prepare() {
cmake_src_prepare
}
-src_configure() {
+multilib_src_configure() {
local mycmakeargs=(
-DBUILD_WITH_SYSTEM_JSONCPP=ON
-DBUILD_WITH_XLIB_HEADERS=$(usex X)
-DBUILD_WITH_XCB_HEADERS=$(usex X)
-DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
- -DBUILD_WITH_SYSTEM_JSONCPP=YES
-DPRESENTATION_BACKEND=$(usex X xlib wayland)
)
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2025-02-17 11:40 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2025-02-17 11:40 UTC (permalink / raw
To: gentoo-commits
commit: c2273bd5e6268dd731fde68e6e5d1205502b3228
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Mon Feb 17 11:36:07 2025 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Mon Feb 17 11:39:40 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c2273bd5
media-libs/openxr-loader: add 1.1.45
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
Closes: https://bugs.gentoo.org/949848
media-libs/openxr-loader/Manifest | 1 +
.../openxr-loader/openxr-loader-1.1.45.ebuild | 65 ++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
index 3251b4c3b..9c2f0be3b 100644
--- a/media-libs/openxr-loader/Manifest
+++ b/media-libs/openxr-loader/Manifest
@@ -1 +1,2 @@
DIST openxr-loader-1.1.43.tar.gz 644835 BLAKE2B 75d27b0e382ccfdd5d0bfaede000d8725fcd26b307199a1859fa8745c9c565d823928dae4e1b893cc27ed4a18136392eaaa0f14f37d5378080aef90ab8b5d737 SHA512 e5bc1fe6a8f568d484be0da65cccc6eec8707f00441c34f16e49b685c0a6bb260ab407a758a579ffb264e175f43317add46d6781f0073891b372333b3769fd9f
+DIST openxr-loader-1.1.45.tar.gz 647775 BLAKE2B 75727a12ba00c35c4a2faee16f69b3d4d7eb37f34110ecaa5199e0bfbbef5c1b6a563e6c551e70eb567327dca1ad0f250dae3461ec3d37c7cc89ac3831edef21 SHA512 b25812672cb983d438d3c64e973dc880a19227307d7ea4b09398172a38d849fc64020baaf781547821274d9048ce692b38e6c8d1d53690e5a6298a6f4782ec94
diff --git a/media-libs/openxr-loader/openxr-loader-1.1.45.ebuild b/media-libs/openxr-loader/openxr-loader-1.1.45.ebuild
new file mode 100644
index 000000000..ec372dfa6
--- /dev/null
+++ b/media-libs/openxr-loader/openxr-loader-1.1.45.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=OpenXR-SDK
+inherit cmake-multilib
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
+ SLOT="0"
+else
+ SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}/${MY_PN}-release-${PV}"
+ SLOT="0/${PV}"
+fi
+
+DESCRIPTION="OpenXR loader"
+HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
+
+LICENSE="Apache-2.0"
+
+IUSE="+wayland +X"
+REQUIRED_USE="|| ( wayland X )"
+
+# dev-libs/jsoncpp-1.9.6: https://bugs.gentoo.org/940262
+DEPEND="
+ media-libs/vulkan-loader[${MULTILIB_USEDEP}]
+ media-libs/mesa[${MULTILIB_USEDEP}]
+ dev-libs/jsoncpp:=[${MULTILIB_USEDEP}]
+ !=dev-libs/jsoncpp-1.9.6
+ wayland? (
+ dev-libs/wayland[${MULTILIB_USEDEP}]
+ dev-libs/wayland-protocols
+ )
+ X? (
+ x11-libs/libxcb[${MULTILIB_USEDEP}]
+ x11-libs/xcb-util-keysyms
+ x11-libs/libXrandr[${MULTILIB_USEDEP}]
+ x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+ )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="wayland? ( dev-util/wayland-scanner )"
+
+src_prepare() {
+ sed -i 's;DESTINATION share/doc/openxr;DESTINATION ${CMAKE_INSTALL_DOCDIR};' CMakeLists.txt || die
+
+ cmake_src_prepare
+}
+
+multilib_src_configure() {
+ local mycmakeargs=(
+ -DBUILD_WITH_SYSTEM_JSONCPP=ON
+ -DBUILD_WITH_XLIB_HEADERS=$(usex X)
+ -DBUILD_WITH_XCB_HEADERS=$(usex X)
+ -DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ -DBUILD_WITH_SYSTEM_JSONCPP=YES
+ -DPRESENTATION_BACKEND=$(usex X xlib wayland)
+ )
+
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
@ 2025-02-17 11:40 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2025-02-17 11:40 UTC (permalink / raw
To: gentoo-commits
commit: 4310053412382e65998c5e8f35f089ce187dc4d3
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Mon Feb 17 11:35:40 2025 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Mon Feb 17 11:39:40 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=43100534
media-libs/openxr-loader: drop 1.1.40-r1
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/Manifest | 1 -
.../openxr-loader/openxr-loader-1.1.40-r1.ebuild | 65 ----------------------
2 files changed, 66 deletions(-)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
index 5a412e311..3251b4c3b 100644
--- a/media-libs/openxr-loader/Manifest
+++ b/media-libs/openxr-loader/Manifest
@@ -1,2 +1 @@
-DIST openxr-loader-1.1.40.tar.gz 620341 BLAKE2B 75e0108c803501e3d34b7e494e08ddeffc64d311bfe28e271d23d1b9a621f86f6e296707a59edddf7ec6d0312c81cfce45a512d1c8d99448543878794298003e SHA512 1012dbb152a1b6343eb39c460d68daae87cff42ffaf15b9c4d7efc8abea77ecff45d593bdedb9767c772890022c45374b04e1167296f01c6507fd987a4c25fc2
DIST openxr-loader-1.1.43.tar.gz 644835 BLAKE2B 75d27b0e382ccfdd5d0bfaede000d8725fcd26b307199a1859fa8745c9c565d823928dae4e1b893cc27ed4a18136392eaaa0f14f37d5378080aef90ab8b5d737 SHA512 e5bc1fe6a8f568d484be0da65cccc6eec8707f00441c34f16e49b685c0a6bb260ab407a758a579ffb264e175f43317add46d6781f0073891b372333b3769fd9f
diff --git a/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild b/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild
deleted file mode 100644
index d15ced7bb..000000000
--- a/media-libs/openxr-loader/openxr-loader-1.1.40-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN=OpenXR-SDK
-inherit cmake
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
- SLOT="0"
-else
- SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
- S="${WORKDIR}/${MY_PN}-release-${PV}"
- SLOT="0/${PV}"
-fi
-
-DESCRIPTION="OpenXR loader"
-HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
-
-LICENSE="Apache-2.0"
-
-IUSE="+wayland +X"
-REQUIRED_USE="|| ( wayland X )"
-
-# dev-libs/jsoncpp-1.9.6: https://bugs.gentoo.org/940262
-DEPEND="
- media-libs/vulkan-loader
- media-libs/mesa
- dev-libs/jsoncpp:=
- !=dev-libs/jsoncpp-1.9.6
- wayland? (
- dev-libs/wayland
- dev-libs/wayland-protocols
- )
- X? (
- x11-libs/libxcb
- x11-libs/xcb-util-keysyms
- x11-libs/libXrandr
- x11-libs/libXxf86vm
- )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="wayland? ( dev-util/wayland-scanner )"
-
-src_prepare() {
- sed -i 's;DESTINATION share/doc/openxr;DESTINATION ${CMAKE_INSTALL_DOCDIR};' CMakeLists.txt || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_WITH_SYSTEM_JSONCPP=ON
- -DBUILD_WITH_XLIB_HEADERS=$(usex X)
- -DBUILD_WITH_XCB_HEADERS=$(usex X)
- -DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
- -DBUILD_WITH_SYSTEM_JSONCPP=YES
- -DPRESENTATION_BACKEND=$(usex X xlib wayland)
- )
-
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-02-17 11:40 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-20 22:00 [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/ Haelwenn Monnier
-- strict thread matches above, loose matches on Subject: below --
2021-09-17 1:56 Haelwenn Monnier
2021-09-17 1:56 Haelwenn Monnier
2021-10-28 20:58 Haelwenn Monnier
2021-10-28 20:58 Haelwenn Monnier
2023-11-23 18:50 Patrick Nicolas
2024-09-21 21:51 Haelwenn Monnier
2024-09-24 3:42 Haelwenn Monnier
2024-09-26 15:35 Haelwenn Monnier
2024-12-08 12:01 Patrick Nicolas
2024-12-08 12:01 Patrick Nicolas
2025-02-17 11:40 Haelwenn Monnier
2025-02-17 11:40 Haelwenn Monnier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox