public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2022-11-26 10:54 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2022-11-26 10:54 UTC (permalink / raw
  To: gentoo-commits

commit:     8936c9f662b0f5d233398fa959197f7b12a14706
Author:     Anna (navi) Figueiredo Gomes <anna <AT> navirc <DOT> com>
AuthorDate: Fri Nov 25 02:37:00 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 02:37:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8936c9f6

games-util/xivlauncher: SLOT 6.0 and propper icons

Signed-off-by: Anna (navi) Figueiredo Gomes <anna <AT> navirc.com>

 games-util/xivlauncher/xivlauncher-1.0.2.ebuild | 23 ++++++++++++++++-------
 1 file changed, 16 insertions(+), 7 deletions(-)

diff --git a/games-util/xivlauncher/xivlauncher-1.0.2.ebuild b/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
index fc4db08f0..22e6ace14 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
@@ -190,7 +190,9 @@ vortice.dxgi-2.1.0
 vortice.mathematics-1.3.24
 "
 
-inherit dotnet-utils
+DOTNET_SLOT="6.0"
+
+inherit dotnet-utils desktop
 
 DESCRIPTION="Custom Launcher for Final Fantasy XIV Online (Crossplatform rewrite)"
 
@@ -250,15 +252,22 @@ src_compile() {
 }
 
 src_install() {
-	cd ../
-	insinto usr/share/applications/
-	doins misc/linux_distrib/XIVLauncher.desktop
-	insinto usr/share/pixmaps/
-	newins misc/linux_distrib/512.png xivlauncher
+	domenu ../misc/linux_distrib/XIVLauncher.desktop
+	newicon -s 512 ../misc/linux_distrib/512.png xivlauncher.png
 
-	cd src/XIVLauncher.Core/bin/Release/net6.0/linux-x64/publish
+	cd XIVLauncher.Core/bin/Release/net6.0/linux-x64/publish
 	insinto opt/xivlauncher
 	doins -r *
 	fperms +x /opt/xivlauncher/XIVLauncher.Core
 	dosym /opt/xivlauncher/XIVLauncher.Core usr/bin/xivlauncher
 }
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2022-12-09 16:26 Ronny Gutbrod
  0 siblings, 0 replies; 15+ messages in thread
From: Ronny Gutbrod @ 2022-12-09 16:26 UTC (permalink / raw
  To: gentoo-commits

commit:     19136a7e346b491c0a45422c6d5afbcd85f95db1
Author:     Anna (navi) Figueiredo Gomes <anna <AT> navirc <DOT> com>
AuthorDate: Thu Dec  8 17:00:36 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Thu Dec  8 17:00:36 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19136a7e

games-util/xivlauncher: dosym remove absolute path

Signed-off-by: Anna (navi) Figueiredo Gomes <anna <AT> navirc.com>

 games-util/xivlauncher/xivlauncher-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/xivlauncher/xivlauncher-1.0.2.ebuild b/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
index 22e6ace14..36367dd81 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
@@ -259,7 +259,7 @@ src_install() {
 	insinto opt/xivlauncher
 	doins -r *
 	fperms +x /opt/xivlauncher/XIVLauncher.Core
-	dosym /opt/xivlauncher/XIVLauncher.Core usr/bin/xivlauncher
+	dosym ../../opt/xivlauncher/XIVLauncher.Core usr/bin/${PN}
 }
 
 pkg_postinst() {


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2022-12-09 17:57 Ronny Gutbrod
  0 siblings, 0 replies; 15+ messages in thread
From: Ronny Gutbrod @ 2022-12-09 17:57 UTC (permalink / raw
  To: gentoo-commits

commit:     98b1b1bef851f51b1c032f21d6a5a73795356c96
Author:     Anna (navi) Figueiredo Gomes <anna <AT> navirc <DOT> com>
AuthorDate: Fri Dec  9 16:53:02 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Fri Dec  9 17:07:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=98b1b1be

games-util/xivlauncher: Inherit xdg

And remove unnecessary pkg_post*

Signed-off-by: Anna (navi) Figueiredo Gomes <anna <AT> navirc.com>

 games-util/xivlauncher/xivlauncher-1.0.2.ebuild | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/games-util/xivlauncher/xivlauncher-1.0.2.ebuild b/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
index 36367dd81..207060e7c 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
@@ -192,7 +192,7 @@ vortice.mathematics-1.3.24
 
 DOTNET_SLOT="6.0"
 
-inherit dotnet-utils desktop
+inherit dotnet-utils desktop xdg
 
 DESCRIPTION="Custom Launcher for Final Fantasy XIV Online (Crossplatform rewrite)"
 
@@ -261,13 +261,3 @@ src_install() {
 	fperms +x /opt/xivlauncher/XIVLauncher.Core
 	dosym ../../opt/xivlauncher/XIVLauncher.Core usr/bin/${PN}
 }
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2023-01-24  9:10 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2023-01-24  9:10 UTC (permalink / raw
  To: gentoo-commits

commit:     38f961feb2ee0f07b6131b89542abb66a95cb31d
Author:     Anna (navi) Figueiredo Gomes <anna <AT> navirc <DOT> com>
AuthorDate: Sun Jan 22 16:28:29 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 16:28:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38f961fe

games-util/xivlauncher: Added 6.0.12 netcore dep

In some systems, the project wants =6.0.12, on others =6.0.10.

Signed-off-by: Anna (navi) Figueiredo Gomes <anna <AT> navirc.com>

 games-util/xivlauncher/Manifest                 | 2 ++
 games-util/xivlauncher/xivlauncher-1.0.3.ebuild | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index c639066ca..93b51277e 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -16,6 +16,7 @@ DIST goaaats.veldrid.startuputilities.4.9.0-beta1-g70f642e82e.nupkg 27873 BLAKE2
 DIST imgui.net.1.87.2.nupkg 2532510 BLAKE2B 81afc68d85afb9c3b3995774d2a7d4e82cbdc8dec5c11a865c1386a40479e5703b3df5702784997a9ab439378c1a9f1fea6e48b0b7d33c8be6e2410545bdde8e SHA512 79244d3ee0dbb332452c8a0d7fe7e9ae42dc80945815290acdb1a95d2f43f700ceaaca7b7a937bb82e77310805aeacccb587b5480cdc2b895678fbf317ca1085
 DIST keysharp.1.0.5.nupkg 83058 BLAKE2B a5622d01e18e9433ff86fe3287d3caae2fbd81f83ba17bf302d82c8f2e77f1087ba261da7d455b6552d1399577954f6e98bb8c555999bb3b3b74505d4e581df1 SHA512 dcdfd91333a299c5c846d34429992bde26d2e03c9c7d6f1a258ca809f409c2d833df5c41e928b07084b63bf661cfff1dd62bef5f90b189c315fdb795bfa4beb4
 DIST microsoft.aspnetcore.app.runtime.linux-x64.6.0.10.nupkg 10211750 BLAKE2B 7768680ee0560d023840224adcce2360bf69d5af3e092f85dda248aa4bf6496f3a2ef66822c38154f540a432b844fb317c416f6720683b058bedbeb2b0de1ec7 SHA512 5d272d25ef3902b3e9bc413eccca4ba8536a7bfd7dfd2690083b4074292399e87f6623b7344723271f1cd4d40acfb7dae32a6ee34578286da5baaec8d7295771
+DIST microsoft.aspnetcore.app.runtime.linux-x64.6.0.12.nupkg 10216624 BLAKE2B 0eef3cfce00db73c90dd4690e6e93e7085364b3c3365e91a4e02e3241a7a3cb10a4e246e7616378aee2b7d6c0546c937e5e9ce96877e37a261c0dc5ec20e2c53 SHA512 f3adb56d2e0ed4427607f409665c1fc3ab43d6e97ba1897d8f43bba949bad178097121256841986c5cbae71a232d2b6e761f29ac833e082889e86703ebc1a69e
 DIST microsoft.bcl.asyncinterfaces.6.0.0.nupkg 76354 BLAKE2B aca3f5db71e4037dbdd604aeaebcd0962ccc171915b77b4c409ab744bf0a469c7d588f9504fc7fa49e3863e9593b66b4083235cb49e812d1f87b3dadb32e6003 SHA512 221a05a0c910f7a87b620d8f3831ed392b4eb95d112bee274d35f27009ad2a26445de9d7cd235fe6fb4a03f2550874bda3be3dddd96edaf9c0852a9c23d7b099
 DIST microsoft.codeanalysis.analyzers.3.3.3.nupkg 1111022 BLAKE2B 8704bf2c8a57bdca4ad3d5a2531ff47b0b44d2461ce3c8eec4b58f5cb38f9371fe5aaeb8026a3abbf6299fe30b3f059c892ee6dd239a03eb8b36462f132a2b4b SHA512 0d4896db8aff9d731c5b1c8f73a4b37460c3f08080fbeac0ecf169abf5bdff9c9a994778f453816b888e939d9d0d615245c91a2e4ba31f85d2ea8de222767104
 DIST microsoft.codeanalysis.bannedapianalyzers.3.3.3.nupkg 569671 BLAKE2B b57ef6e58eccb55d784abc5811352bf37a25100397d715bc2dc1c9c030f4a796885ab91935fbcadb765b5aca82768c49c22994f3270d25578fb784fc506b8a9f SHA512 02a4ffcdc5f33c9f2952d5a8d399b33611e00c387476ba1768c8c41cf3a778ec0ee0c60af2e87ab6a678320f4b7444aa20e6966158a4d5b9cca945cf637c06db
@@ -23,6 +24,7 @@ DIST microsoft.codeanalysis.common.4.0.1.nupkg 4472019 BLAKE2B 2a649895cd6ffd9b5
 DIST microsoft.codeanalysis.csharp.4.0.1.nupkg 10536054 BLAKE2B 998c2b8197cd921e4a0d10287a160bf48d62b43ab052194e52fe959f291fcf0d44c40c6036d66a924d8c61482c0d4d6cf9ffa0b083290d3b8c7a84d59d7fad0c SHA512 534149bfdf25a3fcafd5f31dda0c6f08413345d7e70b5ddc794c92473e1de024f353d5cfc975ac6e33c4f336e3890548f7ba506e425a85ba140654a764440ad3
 DIST microsoft.codeanalysis.netanalyzers.6.0.0.nupkg 3969653 BLAKE2B b62fa54d9df3ef8f6a2b6595259273ead2c7bcae850f577a1d0e40273c5f79b8c0895f18b291ba1f62b6a8dddaeb3d4a83f9aa20b67068b45fb8ba6e6a9bd21d SHA512 8d16b934642e2a61a6676d3522677961e68271174875f17573e905a926ec1ef57342d3a0156b4ef6e0dd488138616093191c24570601bc194fbc7a12195859f9
 DIST microsoft.netcore.app.runtime.linux-x64.6.0.10.nupkg 33220407 BLAKE2B 1e4f1a25017caa3b9d1f3863e0c194fb870c56cabf70652d5027ee210a7af06655569d308843999b5f5bbfc3f828978cbf50fc9176dcf485a0d6d95d7e1891b8 SHA512 316628636d605a940564b22ce8912a422e44ed111eea8a643a2d9c5da1c2250aeb0e36d9a5cfda86e5b934c629332b28a0065fff25dff167ecaf1b742d986fea
+DIST microsoft.netcore.app.runtime.linux-x64.6.0.12.nupkg 33224601 BLAKE2B eef5b6090c3839358f0644d6320c9ef2a73173ac1002043bb09b22256b6fe155c891ed16732916e9554e3423943f66b87b78bcf359a630f684af760edaeae28d SHA512 b08e107dd7bd74931caf8e576d8f41c3b5d471f438b54262eaae314828e8978b1e34178321075ca7a511100b964df2b4d2262d58e8b196a519ca0cdd41e19aa6
 DIST microsoft.netcore.platforms.1.1.0.nupkg 17960 BLAKE2B 6a9fa22d75f5a1c65746dd71a63c3d4e37c393e99c23007c10f5ecce248a04863bf26e7562c7751177a6985eaac266c29cc6a5443a4a853e773f88994ad2a3fd SHA512 6bf892c274596fe2c7164e3d8503b24e187f64d0b7bec6d9b05eb95f04086fceb7a85ea6b2685d42dc465c52f6f0e6f636c0b3fddac48f6f0125dfd83e92d106
 DIST microsoft.netcore.targets.1.1.0.nupkg 18162 BLAKE2B 419d19e0da934ab4b9db75dd66cc22b83a003f34e93cf7a92feccf4f32d3d695e18b826b1aba13073dd4ec53aa7905a67346921d1055516647ddcde0d79009f1 SHA512 1ef033a68688aab9997ec1c0378acb1638b4afb618e533fcaf749d93389737ba94f4a0a94481becdf701c7e988ae2fe390136a8eae225887ee60db45063490fe
 DIST microsoft.win32.primitives.4.3.0.nupkg 63333 BLAKE2B 132ec29940d4b716110980c4f9a06ba15183d29de638379d09998124605165e51652b2727e3892b57dbc7cacfdc71f9e1b59c9dd5463a524657351f5385d896d SHA512 366f07a79d72f6d61c2b7c43eaa938dd68dfb6b83599d1f6e02089b136fa82bec74b6d54d6e03e08a3c612d51c5596e3535cbc2b29f39b97a827b3e7c79826f0

diff --git a/games-util/xivlauncher/xivlauncher-1.0.3.ebuild b/games-util/xivlauncher/xivlauncher-1.0.3.ebuild
index 091b0dd8f..564e9d8e0 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.3.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.3.ebuild
@@ -17,6 +17,7 @@ goaaats.veldrid.startuputilities-4.9.0-beta1-g70f642e82e
 imgui.net-1.87.2
 keysharp-1.0.5
 microsoft.aspnetcore.app.runtime.linux-x64-6.0.10
+microsoft.aspnetcore.app.runtime.linux-x64-6.0.12
 microsoft.bcl.asyncinterfaces-6.0.0
 microsoft.codeanalysis.analyzers-3.3.3
 microsoft.codeanalysis.bannedapianalyzers-3.3.3
@@ -24,6 +25,7 @@ microsoft.codeanalysis.common-4.0.1
 microsoft.codeanalysis.csharp-4.0.1
 microsoft.codeanalysis.netanalyzers-6.0.0
 microsoft.netcore.app.runtime.linux-x64-6.0.10
+microsoft.netcore.app.runtime.linux-x64-6.0.12
 microsoft.netcore.platforms-1.1.0
 microsoft.netcore.targets-1.1.0
 microsoft.win32.primitives-4.3.0


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2023-01-24  9:10 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2023-01-24  9:10 UTC (permalink / raw
  To: gentoo-commits

commit:     9e79d3cc85b57987860db49cf621a6fa3a6c8bfa
Author:     Anna (navi) Figueiredo Gomes <anna <AT> navirc <DOT> com>
AuthorDate: Sun Jan 22 16:53:31 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 16:53:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9e79d3cc

games-util/xivlauncher: drop 1.0.2

Signed-off-by: Anna (navi) Figueiredo Gomes <anna <AT> navirc.com>

 games-util/xivlauncher/Manifest                 |   2 -
 games-util/xivlauncher/xivlauncher-1.0.2.ebuild | 263 ------------------------
 2 files changed, 265 deletions(-)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index 93b51277e..3f2e174db 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -1,4 +1,3 @@
-DIST FFXIVQuickLauncher-223db565dbe88cf770c2a383fb3fb2b2ff28ec51.tar.gz 23242986 BLAKE2B 7d3543c94fd1ba08c52d3479f24fcb854c07229bd021269de4ed1db0965fe1f80c250185760a57982805866c8d6f030bd49c5a53b770d60ac3a73ae6ea88007a SHA512 4584fc8e8a5e62994b8ac11795604a9d8382e3ad3cd875829bd5994ac201050514b0c27f90e2c53e78df3a9fba75ecd7e43818229e67ed1dbca8d9ff199c60ed
 DIST FFXIVQuickLauncher-77115d3f7d920179ce83f0708ec97ba2450ce795.tar.gz 5288268 BLAKE2B 9cfad06eeb53d4552ccf656da5f21c5c810abb3ca18e941791532f6b2f99d2449cefba5f6cb850ff1ab66883a97b61b4b2849d29ba34de6d39cf0a27212ddff0 SHA512 e7124653828584d53e2ab06b6d766efe2ca5803f7e63c8eadac79d5a9f563e62572650819ee20039f6eb26fadc479ebcc144a92df71f368e55be0b23eac3e2f5
 DIST castle.core.4.4.1.nupkg 919111 BLAKE2B 5ee1245ef79f00b89fd03957b260337b4af242667c10cd9189540853344d062e27dee224989ef6a29544083f9a8416a197b9d97ba38ee1ace4630e89893355e7 SHA512 b27c340df07622abda8543a48c057eb936c9b02b7ed2d6f58e09e33bd5a5f70c7a2ee867127a05697e5a4127ba40494a17ea40080482578328aa8a33ae97aa3a
 DIST cheaploc.1.1.6.nupkg 17585 BLAKE2B 1ed77a02342449f2b20fc97f0dfca7122637beb9f5f08854dc3d6c4f3676340686e49ac46173945f90dc56e7f41bc719d1976b5b4e61f1b25ced0b94cdb6a29d SHA512 ff2d6e19a08b54d288eced17cafe2dca9943bc7b0fab131c477f9ce7d8390762b11949228bc4193e661490432828ea8596ccb3d0d01ce2e990c346caa4cbb8fa
@@ -189,5 +188,4 @@ DIST vortice.direct3d11.2.1.0.nupkg 764570 BLAKE2B 0bacd329d8a582ecbf8d762b209df
 DIST vortice.directx.2.1.0.nupkg 240511 BLAKE2B 0fefe0ee66eac71d05eb3f4e93f09e445042005a2db44cba52692ce018207dceb5a1c4c1e1d04e8510fecaa52e1f9ab19f10a3f00e36781f5e0204ab645694fa SHA512 03e8beeb88c81f1e158ae7804feb84d17191356c17438de5332bbc8d3b96cb12c4ac5d84296751fda2c6b1f50a688336c9c5b14509c3f3e3fa410927a79afd76
 DIST vortice.dxgi.2.1.0.nupkg 84022 BLAKE2B 1e6e550a4c9752db0204d2c6dace2f70190bb562faaa5f59074a1d5b3fe511426f7a776d80d9d847adb3bcbc28da4fa7124aa0abe1c4970f1c8eb70f2f0a2d56 SHA512 cf1e4e46608209a0809d9103dc65b614afaae12b1195ed279ef639f3475c2e2ecaca627b8fef9dba780edfc70a78c441cf2881a4ea3d70d524d58f556ae23c7f
 DIST vortice.mathematics.1.3.24.nupkg 115105 BLAKE2B 077d18cbc13b6fe6c5aee95680cb1d80b5927c58ae0061cd487c6b4f4f1ad732f6238f5cc5b1971fffcba8ac9d982f107af1c133c3226e8ca150a2c4b514f4bf SHA512 601b828fd182e2a77d989581ccd2e90f150155267f09f10eaf8af0e77a6ba4fc34cc040c42adb4b57c9e809bae7f96f5c21b0f10d73bde0d8d3c9d0414693d08
-DIST xivlauncher-1.0.2.tar.gz 18449083 BLAKE2B 69f8f31f29b3a00f7c7cb19a85c255bf49f2e854bf2917c3381af5c338ddd42b155e925329d82695c537e59acce6369c59d6dabeff37cb23561ad5d9f22b2b1c SHA512 a7da329245ea1cba6c529d56e6ca2a9b912688e8bf96b9d11b194e08b0e35e9ff160e58d7b0cc438115f13f7f008a3cd589579241340b796024c4e9a3cfb142b
 DIST xivlauncher-1.0.3.tar.gz 18452394 BLAKE2B 16a5b8a2dc7cbea0ea27d33fd7dcaa36892af8c59c19bca5bee31ad67b8cfbe7a305851bf84e2d5283012b584852ff53d0ee8658d963d3a738eb2f86f4375675 SHA512 c589c8475a0b783b40c27292408cc0402dac8b39f36b69ea2dd233ebe5f9f902c4bcc3eb8380a6b319947d786499ec4d3d45cbc08c09a7d092df48e8472efa54

diff --git a/games-util/xivlauncher/xivlauncher-1.0.2.ebuild b/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
deleted file mode 100644
index 207060e7c..000000000
--- a/games-util/xivlauncher/xivlauncher-1.0.2.ebuild
+++ /dev/null
@@ -1,263 +0,0 @@
-EAPI=7
-
-NUGETS="
-castle.core-4.4.1
-cheaploc-1.1.6
-commandlineparser-2.9.1
-config.net-4.19.0
-downloader-2.2.8
-goaaats.nativelibraryloader-4.9.0-beta1-g70f642e82e
-goaaats.steamworks-2.3.4
-goaaats.veldrid-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.imagesharp-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.metalbindings-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.openglbindings-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.sdl2-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.startuputilities-4.9.0-beta1-g70f642e82e
-imgui.net-1.87.2
-keysharp-1.0.5
-microsoft.aspnetcore.app.runtime.linux-x64-6.0.10
-microsoft.bcl.asyncinterfaces-6.0.0
-microsoft.codeanalysis.analyzers-3.3.3
-microsoft.codeanalysis.bannedapianalyzers-3.3.3
-microsoft.codeanalysis.common-4.0.1
-microsoft.codeanalysis.csharp-4.0.1
-microsoft.codeanalysis.netanalyzers-6.0.0
-microsoft.netcore.app.runtime.linux-x64-6.0.10
-microsoft.netcore.platforms-1.1.0
-microsoft.netcore.targets-1.1.0
-microsoft.win32.primitives-4.3.0
-microsoft.win32.registry-6.0.0-preview.5.21301.5
-microsoft.win32.systemevents-6.0.0
-mono.cecil-0.9.6.1
-mono.nat-3.0.1
-monotorrent-2.0.0
-netstandard.library-1.6.1
-netstandard.library-2.0.3
-newtonsoft.json-12.0.2
-reusabletasks-2.0.0
-runtime.any.system.collections-4.3.0
-runtime.any.system.diagnostics.tools-4.3.0
-runtime.any.system.diagnostics.tracing-4.3.0
-runtime.any.system.globalization-4.3.0
-runtime.any.system.globalization.calendars-4.3.0
-runtime.any.system.io-4.3.0
-runtime.any.system.reflection-4.3.0
-runtime.any.system.reflection.extensions-4.3.0
-runtime.any.system.reflection.primitives-4.3.0
-runtime.any.system.resources.resourcemanager-4.3.0
-runtime.any.system.runtime-4.3.0
-runtime.any.system.runtime.handles-4.3.0
-runtime.any.system.runtime.interopservices-4.3.0
-runtime.any.system.text.encoding-4.3.0
-runtime.any.system.text.encoding.extensions-4.3.0
-runtime.any.system.threading.tasks-4.3.0
-runtime.any.system.threading.timer-4.3.0
-runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.native.system-4.3.0
-runtime.native.system.io.compression-4.3.0
-runtime.native.system.net.http-4.3.0
-runtime.native.system.security.cryptography.apple-4.3.0
-runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple-4.3.0
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.unix.microsoft.win32.primitives-4.3.0
-runtime.unix.system.console-4.3.0
-runtime.unix.system.diagnostics.debug-4.3.0
-runtime.unix.system.io.filesystem-4.3.0
-runtime.unix.system.net.primitives-4.3.0
-runtime.unix.system.net.sockets-4.3.0
-runtime.unix.system.private.uri-4.3.0
-runtime.unix.system.runtime.extensions-4.3.0
-serilog-2.12.0
-serilog.enrichers.thread-3.1.0
-serilog.sinks.async-1.5.0
-serilog.sinks.console-3.1.1
-serilog.sinks.console-4.0.1
-serilog.sinks.debug-1.0.1
-serilog.sinks.file-5.0.0
-sharedmemory-2.3.2
-sharpgen.runtime-2.0.0-beta.10
-sharpgen.runtime.com-2.0.0-beta.10
-sixlabors.imagesharp-1.0.4
-system.appcontext-4.3.0
-system.buffers-4.3.0
-system.buffers-4.4.0
-system.buffers-4.5.1
-system.collections-4.3.0
-system.collections.concurrent-4.3.0
-system.collections.immutable-5.0.0
-system.collections.nongeneric-4.3.0
-system.collections.specialized-4.3.0
-system.componentmodel-4.3.0
-system.componentmodel.primitives-4.3.0
-system.componentmodel.typeconverter-4.3.0
-system.configuration.configurationmanager-6.0.0
-system.console-4.3.0
-system.diagnostics.debug-4.3.0
-system.diagnostics.diagnosticsource-4.3.0
-system.diagnostics.tools-4.3.0
-system.diagnostics.tracesource-4.3.0
-system.diagnostics.tracing-4.3.0
-system.drawing.common-6.0.0
-system.dynamic.runtime-4.3.0
-system.globalization-4.3.0
-system.globalization.calendars-4.3.0
-system.globalization.extensions-4.3.0
-system.io-4.3.0
-system.io.compression-4.3.0
-system.io.compression.zipfile-4.3.0
-system.io.filesystem-4.3.0
-system.io.filesystem.primitives-4.3.0
-system.linq-4.3.0
-system.linq.expressions-4.3.0
-system.memory-4.5.4
-system.net.http-4.3.0
-system.net.nameresolution-4.3.0
-system.net.primitives-4.3.0
-system.net.sockets-4.3.0
-system.numerics.vectors-4.4.0
-system.numerics.vectors-4.5.0
-system.objectmodel-4.3.0
-system.private.uri-4.3.0
-system.reflection-4.3.0
-system.reflection.emit-4.3.0
-system.reflection.emit.ilgeneration-4.3.0
-system.reflection.emit.ilgeneration-4.7.0
-system.reflection.emit.lightweight-4.3.0
-system.reflection.emit.lightweight-4.7.0
-system.reflection.extensions-4.3.0
-system.reflection.metadata-5.0.0
-system.reflection.primitives-4.3.0
-system.reflection.typeextensions-4.3.0
-system.resources.resourcemanager-4.3.0
-system.runtime-4.3.0
-system.runtime.compilerservices.unsafe-4.4.0
-system.runtime.compilerservices.unsafe-4.5.0
-system.runtime.compilerservices.unsafe-4.5.3
-system.runtime.compilerservices.unsafe-5.0.0
-system.runtime.compilerservices.unsafe-6.0.0
-system.runtime.extensions-4.3.0
-system.runtime.handles-4.3.0
-system.runtime.interopservices-4.3.0
-system.runtime.interopservices.runtimeinformation-4.3.0
-system.runtime.numerics-4.3.0
-system.security.accesscontrol-6.0.0
-system.security.accesscontrol-6.0.0-preview.5.21301.5
-system.security.claims-4.3.0
-system.security.cryptography.algorithms-4.3.0
-system.security.cryptography.cng-4.3.0
-system.security.cryptography.csp-4.3.0
-system.security.cryptography.encoding-4.3.0
-system.security.cryptography.openssl-4.3.0
-system.security.cryptography.primitives-4.3.0
-system.security.cryptography.protecteddata-6.0.0
-system.security.cryptography.x509certificates-4.3.0
-system.security.permissions-6.0.0
-system.security.principal-4.3.0
-system.security.principal.windows-4.3.0
-system.security.principal.windows-5.0.0
-system.security.principal.windows-6.0.0-preview.5.21301.5
-system.text.encoding-4.3.0
-system.text.encoding.codepages-4.5.1
-system.text.encoding.extensions-4.3.0
-system.text.encodings.web-6.0.0
-system.text.json-6.0.6
-system.text.regularexpressions-4.3.0
-system.threading-4.3.0
-system.threading.tasks-4.3.0
-system.threading.tasks.extensions-4.3.0
-system.threading.tasks.extensions-4.5.4
-system.threading.threadpool-4.3.0
-system.threading.timer-4.3.0
-system.windows.extensions-6.0.0
-system.xml.readerwriter-4.3.0
-system.xml.xdocument-4.3.0
-system.xml.xmldocument-4.3.0
-vk-1.0.25
-vortice.d3dcompiler-2.1.0
-vortice.direct3d11-2.1.0
-vortice.directx-2.1.0
-vortice.dxgi-2.1.0
-vortice.mathematics-1.3.24
-"
-
-DOTNET_SLOT="6.0"
-
-inherit dotnet-utils desktop xdg
-
-DESCRIPTION="Custom Launcher for Final Fantasy XIV Online (Crossplatform rewrite)"
-
-HOMEPAGE="https://github.com/goatcorp/XIVLauncher.Core/"
-
-IUSE="+aria2 act dx9 +libsecret abi_x86_32"
-
-REQUIRED_USE="act? ( abi_x86_32 ) dx9? ( abi_x86_32 )"
-
-RDEPEND="
-	aria2? ( net-misc/aria2 )
-	libsecret? ( app-crypt/libsecret )
-	media-libs/libsdl2[abi_x86_32?]
-	sys-apps/attr[abi_x86_32?]
-	media-libs/fontconfig[abi_x86_32?]
-	media-libs/lcms[abi_x86_32?]
-	dev-libs/libxml2[abi_x86_32?]
-	x11-libs/libXcursor[abi_x86_32?]
-	x11-libs/libXrandr[abi_x86_32?]
-	x11-libs/libXdamage[abi_x86_32?]
-	x11-libs/libXi[abi_x86_32?]
-	sys-devel/gettext[abi_x86_32?]
-	media-libs/freetype:2[abi_x86_32?]
-	media-libs/glu[abi_x86_32?]
-	x11-libs/libSM[abi_x86_32?]
-	app-emulation/faudio[abi_x86_32?]
-"
-
-XIVQL_COMMIT="223db565dbe88cf770c2a383fb3fb2b2ff28ec51"
-
-SRC_URI="
-https://github.com/goatcorp/XIVLauncher.Core/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
-https://github.com/goatcorp/FFXIVQuickLauncher/archive/${XIVQL_COMMIT}.tar.gz -> FFXIVQuickLauncher-${XIVQL_COMMIT}.tar.gz
-$(nuget_uris)
-"
-
-S="${WORKDIR}/XIVLauncher.Core-${PV}/src"
-
-LICENSE="GPL-3"
-
-SLOT="0"
-KEYWORDS="~amd64"
-
-src_prepare() {
-	rmdir "${WORKDIR}/XIVLauncher.Core-${PV}/lib/FFXIVQuickLauncher" || die
-	mv "${WORKDIR}/FFXIVQuickLauncher-${XIVQL_COMMIT}" \
-		"${WORKDIR}/XIVLauncher.Core-${PV}/lib/FFXIVQuickLauncher" || die
-	sed -i "s/git -C .* describe --long --always --dirty &gt; \$(VerFile)/echo ${PV}/" \
-		XIVLauncher.Core/XIVLauncher.Core.csproj
-
-	dotnet-utils_src_prepare
-}
-
-src_compile() {
-	cd XIVLauncher.Core
-	dotnet-utils_src_compile
-}
-
-src_install() {
-	domenu ../misc/linux_distrib/XIVLauncher.desktop
-	newicon -s 512 ../misc/linux_distrib/512.png xivlauncher.png
-
-	cd XIVLauncher.Core/bin/Release/net6.0/linux-x64/publish
-	insinto opt/xivlauncher
-	doins -r *
-	fperms +x /opt/xivlauncher/XIVLauncher.Core
-	dosym ../../opt/xivlauncher/XIVLauncher.Core usr/bin/${PN}
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2023-03-24 11:43 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2023-03-24 11:43 UTC (permalink / raw
  To: gentoo-commits

commit:     b82d5a7c3544d3a5d5eb79402e7a157c08d1e71f
Author:     Anna (navi) Figueiredo Gomes <navi <AT> vlhl <DOT> dev>
AuthorDate: Thu Mar 23 18:42:51 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Mar 23 18:42:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b82d5a7c

games-util/xivlauncher: Revbump due to RDEPEND change.

Signed-off-by: Anna (navi) Figueiredo Gomes <navi <AT> vlhl.dev>

 .../xivlauncher/{xivlauncher-1.0.3.ebuild => xivlauncher-1.0.3-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-util/xivlauncher/xivlauncher-1.0.3.ebuild b/games-util/xivlauncher/xivlauncher-1.0.3-r1.ebuild
similarity index 100%
rename from games-util/xivlauncher/xivlauncher-1.0.3.ebuild
rename to games-util/xivlauncher/xivlauncher-1.0.3-r1.ebuild


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2023-03-24 11:43 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2023-03-24 11:43 UTC (permalink / raw
  To: gentoo-commits

commit:     bf189f488086799ccc137abdfa230844ca95901b
Author:     Anna (navi) Figueiredo Gomes <navi <AT> vlhl <DOT> dev>
AuthorDate: Thu Mar 23 18:16:14 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Mar 23 18:16:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bf189f48

games-util/xivlauncher: Remove faudio dependency

Signed-off-by: Anna (navi) Figueiredo Gomes <navi <AT> vlhl.dev>

 games-util/xivlauncher/xivlauncher-1.0.3.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/games-util/xivlauncher/xivlauncher-1.0.3.ebuild b/games-util/xivlauncher/xivlauncher-1.0.3.ebuild
index 564e9d8e0..7e313033f 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.3.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.3.ebuild
@@ -220,7 +220,6 @@ RDEPEND="
 	media-libs/freetype:2[abi_x86_32?]
 	media-libs/glu[abi_x86_32?]
 	x11-libs/libSM[abi_x86_32?]
-	app-emulation/faudio[abi_x86_32?]
 "
 
 XIVQL_COMMIT="77115d3f7d920179ce83f0708ec97ba2450ce795"


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2023-06-26 22:01 Haelwenn Monnier
  0 siblings, 0 replies; 15+ messages in thread
From: Haelwenn Monnier @ 2023-06-26 22:01 UTC (permalink / raw
  To: gentoo-commits

commit:     f7f55dc05aeb124e2ea55736b13d15c281da3469
Author:     Anna (navi) Figueiredo Gomes <navi <AT> vlhl <DOT> dev>
AuthorDate: Mon Jun 26 18:13:29 2023 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Mon Jun 26 18:14:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f7f55dc0

games-util/xivlauncher: add missing nugget

this is only required in some systems like whyyyy

Signed-off-by: Anna (navi) Figueiredo Gomes <navi <AT> vlhl.dev>

 games-util/xivlauncher/Manifest                                         | 2 ++
 .../{xivlauncher-1.0.4.ebuild => xivlauncher-1.0.4-r1.ebuild}           | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index 892ea15b2..913967df5 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -20,6 +20,7 @@ DIST microsoft.aspnetcore.app.runtime.linux-musl-arm.6.0.10.nupkg 10091308 BLAKE
 DIST microsoft.aspnetcore.app.runtime.linux-musl-arm64.6.0.10.nupkg 9860220 BLAKE2B 68def043eb256be639d8a6600f9059b097fe0469b436294f929ed17ecfc2525073706ceeb1fb78106e3f46d6fe42e3d9a0d316d603f46882cbc2c7115a2a4b13 SHA512 ada55aeb7492df96ddc5402d4d47869f06e97dd2d7f45854b33c1b7302b4a670b532ba2a42e54b62c6711cd6116625b13e987d3347ddfb0a589c4ed39f31bec3
 DIST microsoft.aspnetcore.app.runtime.linux-musl-x64.6.0.10.nupkg 10213128 BLAKE2B 9084f4f47faea5ac42b18c909b82173587859be4e9464fcf74b7b701b9756fc52cc8ce1b51b37b41b1c52d078c436d0fb9dfd6b5e2cc99af384ad4cb919cf1d9 SHA512 9d26e4f8f3dfdd199e7bebf45321f306762c4bb3982b06da6b1c9fa31fec845b9c6c3ac6099bef8df68eeb2284f934e793db66cff0720cfed6737560887f0963
 DIST microsoft.aspnetcore.app.runtime.linux-x64.6.0.10.nupkg 10211750 BLAKE2B 7768680ee0560d023840224adcce2360bf69d5af3e092f85dda248aa4bf6496f3a2ef66822c38154f540a432b844fb317c416f6720683b058bedbeb2b0de1ec7 SHA512 5d272d25ef3902b3e9bc413eccca4ba8536a7bfd7dfd2690083b4074292399e87f6623b7344723271f1cd4d40acfb7dae32a6ee34578286da5baaec8d7295771
+DIST microsoft.aspnetcore.app.runtime.linux-x64.6.0.12.nupkg 10216624 BLAKE2B 0eef3cfce00db73c90dd4690e6e93e7085364b3c3365e91a4e02e3241a7a3cb10a4e246e7616378aee2b7d6c0546c937e5e9ce96877e37a261c0dc5ec20e2c53 SHA512 f3adb56d2e0ed4427607f409665c1fc3ab43d6e97ba1897d8f43bba949bad178097121256841986c5cbae71a232d2b6e761f29ac833e082889e86703ebc1a69e
 DIST microsoft.bcl.asyncinterfaces.6.0.0.nupkg 76354 BLAKE2B aca3f5db71e4037dbdd604aeaebcd0962ccc171915b77b4c409ab744bf0a469c7d588f9504fc7fa49e3863e9593b66b4083235cb49e812d1f87b3dadb32e6003 SHA512 221a05a0c910f7a87b620d8f3831ed392b4eb95d112bee274d35f27009ad2a26445de9d7cd235fe6fb4a03f2550874bda3be3dddd96edaf9c0852a9c23d7b099
 DIST microsoft.codeanalysis.analyzers.3.3.3.nupkg 1111022 BLAKE2B 8704bf2c8a57bdca4ad3d5a2531ff47b0b44d2461ce3c8eec4b58f5cb38f9371fe5aaeb8026a3abbf6299fe30b3f059c892ee6dd239a03eb8b36462f132a2b4b SHA512 0d4896db8aff9d731c5b1c8f73a4b37460c3f08080fbeac0ecf169abf5bdff9c9a994778f453816b888e939d9d0d615245c91a2e4ba31f85d2ea8de222767104
 DIST microsoft.codeanalysis.bannedapianalyzers.3.3.3.nupkg 569671 BLAKE2B b57ef6e58eccb55d784abc5811352bf37a25100397d715bc2dc1c9c030f4a796885ab91935fbcadb765b5aca82768c49c22994f3270d25578fb784fc506b8a9f SHA512 02a4ffcdc5f33c9f2952d5a8d399b33611e00c387476ba1768c8c41cf3a778ec0ee0c60af2e87ab6a678320f4b7444aa20e6966158a4d5b9cca945cf637c06db
@@ -37,6 +38,7 @@ DIST microsoft.netcore.app.runtime.linux-musl-arm.6.0.10.nupkg 33378344 BLAKE2B
 DIST microsoft.netcore.app.runtime.linux-musl-arm64.6.0.10.nupkg 33190040 BLAKE2B 14d82fb84876c0877c4d41505c7d0884b93bf2fb26d2231ab4d724fad2fb88e52412e121a1b7b53d5bae4e68d1ce1e8e1084aab51e941d43a2a24901160df827 SHA512 9a745f69f2f9d2899d33a9b9a6af30953bbbf111ab2aa70d37b19279f3fc32d02121a5322973e7aa61fba555a51b5adacad5497279ef0717187f3d628722ab8d
 DIST microsoft.netcore.app.runtime.linux-musl-x64.6.0.10.nupkg 32800865 BLAKE2B 9f5764ef9520ee5c7c48426c04a50ebc605b80203210d95db1665fb62e44ce9ecd9e68c3b141044265fd4494e4d4701919011ae33884a29d5b2d3b6eb5ba2ef4 SHA512 3183c2ed2a020488ceaaf047608fafc2e33d149d090096ec72c47e452ed0d3c165da251f3ec940b12efec5dbd9c0f26ba0c8a74e97391c44f63aa591a1966405
 DIST microsoft.netcore.app.runtime.linux-x64.6.0.10.nupkg 33220407 BLAKE2B 1e4f1a25017caa3b9d1f3863e0c194fb870c56cabf70652d5027ee210a7af06655569d308843999b5f5bbfc3f828978cbf50fc9176dcf485a0d6d95d7e1891b8 SHA512 316628636d605a940564b22ce8912a422e44ed111eea8a643a2d9c5da1c2250aeb0e36d9a5cfda86e5b934c629332b28a0065fff25dff167ecaf1b742d986fea
+DIST microsoft.netcore.app.runtime.linux-x64.6.0.12.nupkg 33224601 BLAKE2B eef5b6090c3839358f0644d6320c9ef2a73173ac1002043bb09b22256b6fe155c891ed16732916e9554e3423943f66b87b78bcf359a630f684af760edaeae28d SHA512 b08e107dd7bd74931caf8e576d8f41c3b5d471f438b54262eaae314828e8978b1e34178321075ca7a511100b964df2b4d2262d58e8b196a519ca0cdd41e19aa6
 DIST microsoft.netcore.platforms.1.1.0.nupkg 17960 BLAKE2B 6a9fa22d75f5a1c65746dd71a63c3d4e37c393e99c23007c10f5ecce248a04863bf26e7562c7751177a6985eaac266c29cc6a5443a4a853e773f88994ad2a3fd SHA512 6bf892c274596fe2c7164e3d8503b24e187f64d0b7bec6d9b05eb95f04086fceb7a85ea6b2685d42dc465c52f6f0e6f636c0b3fddac48f6f0125dfd83e92d106
 DIST microsoft.netcore.targets.1.1.0.nupkg 18162 BLAKE2B 419d19e0da934ab4b9db75dd66cc22b83a003f34e93cf7a92feccf4f32d3d695e18b826b1aba13073dd4ec53aa7905a67346921d1055516647ddcde0d79009f1 SHA512 1ef033a68688aab9997ec1c0378acb1638b4afb618e533fcaf749d93389737ba94f4a0a94481becdf701c7e988ae2fe390136a8eae225887ee60db45063490fe
 DIST microsoft.win32.primitives.4.3.0.nupkg 63333 BLAKE2B 132ec29940d4b716110980c4f9a06ba15183d29de638379d09998124605165e51652b2727e3892b57dbc7cacfdc71f9e1b59c9dd5463a524657351f5385d896d SHA512 366f07a79d72f6d61c2b7c43eaa938dd68dfb6b83599d1f6e02089b136fa82bec74b6d54d6e03e08a3c612d51c5596e3535cbc2b29f39b97a827b3e7c79826f0

diff --git a/games-util/xivlauncher/xivlauncher-1.0.4.ebuild b/games-util/xivlauncher/xivlauncher-1.0.4-r1.ebuild
similarity index 99%
rename from games-util/xivlauncher/xivlauncher-1.0.4.ebuild
rename to games-util/xivlauncher/xivlauncher-1.0.4-r1.ebuild
index 6f6a684b2..9afe74d81 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.4.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.4-r1.ebuild
@@ -22,6 +22,7 @@ microsoft.aspnetcore.app.runtime.linux-musl-arm-6.0.10
 microsoft.aspnetcore.app.runtime.linux-musl-arm64-6.0.10
 microsoft.aspnetcore.app.runtime.linux-musl-x64-6.0.10
 microsoft.aspnetcore.app.runtime.linux-x64-6.0.10
+microsoft.aspnetcore.app.runtime.linux-x64-6.0.12
 microsoft.bcl.asyncinterfaces-6.0.0
 microsoft.codeanalysis.analyzers-3.3.3
 microsoft.codeanalysis.bannedapianalyzers-3.3.3
@@ -39,6 +40,7 @@ microsoft.netcore.app.runtime.linux-musl-arm-6.0.10
 microsoft.netcore.app.runtime.linux-musl-arm64-6.0.10
 microsoft.netcore.app.runtime.linux-musl-x64-6.0.10
 microsoft.netcore.app.runtime.linux-x64-6.0.10
+microsoft.netcore.app.runtime.linux-x64-6.0.12
 microsoft.netcore.platforms-1.1.0
 microsoft.netcore.targets-1.1.0
 microsoft.win32.primitives-4.3.0


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2023-10-05  6:18 Viorel Munteanu
  0 siblings, 0 replies; 15+ messages in thread
From: Viorel Munteanu @ 2023-10-05  6:18 UTC (permalink / raw
  To: gentoo-commits

commit:     9c9beb804a602c93befebafe4ca371e9f7c30d2a
Author:     Anna (navi) Figueiredo Gomes <navi <AT> vlhl <DOT> dev>
AuthorDate: Wed Oct  4 22:19:27 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Wed Oct  4 22:19:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9c9beb80

games-util/xivlauncher: add 1.0.6, drop 1.0.5

Signed-off-by: Anna (navi) Figueiredo Gomes <navi <AT> vlhl.dev>

 games-util/xivlauncher/Manifest                                       | 4 ++--
 .../{xivlauncher-1.0.5.ebuild => xivlauncher-1.0.6.ebuild}            | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index b6deed0f86..993ad6d6fc 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -1,4 +1,4 @@
-DIST FFXIVQuickLauncher-5e1022893d0aa52da84680b7c0694bdd5d560b32.tar.gz 5266640 BLAKE2B 5e9fb5df090184c0422936d4c62af1f73ea03c447adb7ba00717ce40fe09086713b6be1708158bb0112ea8c9e6324acd2705caaea414c32314c35fb446a2bf5d SHA512 1c7a2790da8e3350ee74ed60935753f971b5166993694d313f31d7b245a7a39bc96c0f33c92d00a3adc6d600dfb4a4fe07e8b16f28e86808d11b9dfbb2b08bf0
+DIST FFXIVQuickLauncher-e8e22c32969a858343b751dbbda4777606ba5717.tar.gz 5267549 BLAKE2B f143db989db4c47a8012040a34298b6293fe48732b3f43780f04b2530ca13bd75df4c9511c104b05897a787f6f915c14d958a3b7bde9ea99c7e4060f3bdca3c9 SHA512 128f170822eaa5277c4788ef838ca4f0bda75c17f3456922d4e3d68ef607687d9fe38b55024003c64400d3a486db595a6a317b731f82c4054974a49c9584c71e
 DIST castle.core.4.4.1.nupkg 919111 BLAKE2B 5ee1245ef79f00b89fd03957b260337b4af242667c10cd9189540853344d062e27dee224989ef6a29544083f9a8416a197b9d97ba38ee1ace4630e89893355e7 SHA512 b27c340df07622abda8543a48c057eb936c9b02b7ed2d6f58e09e33bd5a5f70c7a2ee867127a05697e5a4127ba40494a17ea40080482578328aa8a33ae97aa3a
 DIST cheaploc.1.1.6.nupkg 17585 BLAKE2B 1ed77a02342449f2b20fc97f0dfca7122637beb9f5f08854dc3d6c4f3676340686e49ac46173945f90dc56e7f41bc719d1976b5b4e61f1b25ced0b94cdb6a29d SHA512 ff2d6e19a08b54d288eced17cafe2dca9943bc7b0fab131c477f9ce7d8390762b11949228bc4193e661490432828ea8596ccb3d0d01ce2e990c346caa4cbb8fa
 DIST commandlineparser.2.9.1.nupkg 496069 BLAKE2B e2c4b38841f83d6bc10432b8055af90369f1fe0a10105a58b51b44cd48e5d84cb0b5e4b19f444d8c81b38646a62c7c4d11cbd710e92fea68be3ebea6ab98e3f1 SHA512 4f364e45c9668c7e7cc6a922b488f3fa523033c20d7a432694f0a6af05ce528ea0481d8375e2f4f1032c6990347b4803ce9a0e48068c6fe15ec46fb1254f085d
@@ -185,4 +185,4 @@ DIST vortice.direct3d11.2.1.0.nupkg 764570 BLAKE2B 0bacd329d8a582ecbf8d762b209df
 DIST vortice.directx.2.1.0.nupkg 240511 BLAKE2B 0fefe0ee66eac71d05eb3f4e93f09e445042005a2db44cba52692ce018207dceb5a1c4c1e1d04e8510fecaa52e1f9ab19f10a3f00e36781f5e0204ab645694fa SHA512 03e8beeb88c81f1e158ae7804feb84d17191356c17438de5332bbc8d3b96cb12c4ac5d84296751fda2c6b1f50a688336c9c5b14509c3f3e3fa410927a79afd76
 DIST vortice.dxgi.2.1.0.nupkg 84022 BLAKE2B 1e6e550a4c9752db0204d2c6dace2f70190bb562faaa5f59074a1d5b3fe511426f7a776d80d9d847adb3bcbc28da4fa7124aa0abe1c4970f1c8eb70f2f0a2d56 SHA512 cf1e4e46608209a0809d9103dc65b614afaae12b1195ed279ef639f3475c2e2ecaca627b8fef9dba780edfc70a78c441cf2881a4ea3d70d524d58f556ae23c7f
 DIST vortice.mathematics.1.3.24.nupkg 115105 BLAKE2B 077d18cbc13b6fe6c5aee95680cb1d80b5927c58ae0061cd487c6b4f4f1ad732f6238f5cc5b1971fffcba8ac9d982f107af1c133c3226e8ca150a2c4b514f4bf SHA512 601b828fd182e2a77d989581ccd2e90f150155267f09f10eaf8af0e77a6ba4fc34cc040c42adb4b57c9e809bae7f96f5c21b0f10d73bde0d8d3c9d0414693d08
-DIST xivlauncher-1.0.5.tar.gz 18456312 BLAKE2B 657e86f0da27c69578a99731677d0c3daec83fba8cd74460ef77ae123dfbcfb02c6231037fab51910e4090c1bed06f4733de50ca34bebabb90a1e9612286e09a SHA512 20b814283cc1b36c10d28d63e3b8f28dc456f670182129fba26f722ec6fb069eb94609675186c8e8cfb277c29897383070be66d8f9348c7a1b681856b2ef7de3
+DIST xivlauncher-1.0.6.tar.gz 18456404 BLAKE2B c37a5cc05070ce1914b6d784f2742ec9ff4adea9370605b1605db7093ed3e5bde3e57f5d5098770317d43fded51cfab3723208a273d07b885dad91489dbce8a7 SHA512 90ef341ec64eb03f1d0efdf60b42f53b22d3b7e747341312e248ef7dba34d83b45b98ab0973ec575352208ba3074bd0daf03b6d16371e5af571277fbdfeb2e7a

diff --git a/games-util/xivlauncher/xivlauncher-1.0.5.ebuild b/games-util/xivlauncher/xivlauncher-1.0.6.ebuild
similarity index 99%
rename from games-util/xivlauncher/xivlauncher-1.0.5.ebuild
rename to games-util/xivlauncher/xivlauncher-1.0.6.ebuild
index 66fc37f919..a3685faea7 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.5.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.6.ebuild
@@ -217,7 +217,7 @@ RDEPEND="
 	x11-libs/libSM
 "
 
-XIVQL_COMMIT="5e1022893d0aa52da84680b7c0694bdd5d560b32"
+XIVQL_COMMIT="e8e22c32969a858343b751dbbda4777606ba5717"
 
 SRC_URI="
 	https://github.com/goatcorp/XIVLauncher.Core/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2023-10-05  6:18 Viorel Munteanu
  0 siblings, 0 replies; 15+ messages in thread
From: Viorel Munteanu @ 2023-10-05  6:18 UTC (permalink / raw
  To: gentoo-commits

commit:     39d4970a0c2ff70ceb35ae2618d252751052c0dd
Author:     Anna (navi) Figueiredo Gomes <navi <AT> vlhl <DOT> dev>
AuthorDate: Wed Oct  4 20:47:04 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Wed Oct  4 20:52:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=39d4970a

games-util/xivlauncher: drop 1.0.4, add 1.0.5

Signed-off-by: Anna (navi) Figueiredo Gomes <navi <AT> vlhl.dev>

 games-util/xivlauncher/Manifest                    |  30 +--
 games-util/xivlauncher/metadata.xml                |   2 -
 games-util/xivlauncher/xivlauncher-1.0.4-r2.ebuild | 278 ---------------------
 games-util/xivlauncher/xivlauncher-1.0.5.ebuild    | 254 +++++++++++++++++++
 4 files changed, 260 insertions(+), 304 deletions(-)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index 913967df56..b6deed0f86 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -1,4 +1,4 @@
-DIST FFXIVQuickLauncher-77115d3f7d920179ce83f0708ec97ba2450ce795.tar.gz 5288268 BLAKE2B 9cfad06eeb53d4552ccf656da5f21c5c810abb3ca18e941791532f6b2f99d2449cefba5f6cb850ff1ab66883a97b61b4b2849d29ba34de6d39cf0a27212ddff0 SHA512 e7124653828584d53e2ab06b6d766efe2ca5803f7e63c8eadac79d5a9f563e62572650819ee20039f6eb26fadc479ebcc144a92df71f368e55be0b23eac3e2f5
+DIST FFXIVQuickLauncher-5e1022893d0aa52da84680b7c0694bdd5d560b32.tar.gz 5266640 BLAKE2B 5e9fb5df090184c0422936d4c62af1f73ea03c447adb7ba00717ce40fe09086713b6be1708158bb0112ea8c9e6324acd2705caaea414c32314c35fb446a2bf5d SHA512 1c7a2790da8e3350ee74ed60935753f971b5166993694d313f31d7b245a7a39bc96c0f33c92d00a3adc6d600dfb4a4fe07e8b16f28e86808d11b9dfbb2b08bf0
 DIST castle.core.4.4.1.nupkg 919111 BLAKE2B 5ee1245ef79f00b89fd03957b260337b4af242667c10cd9189540853344d062e27dee224989ef6a29544083f9a8416a197b9d97ba38ee1ace4630e89893355e7 SHA512 b27c340df07622abda8543a48c057eb936c9b02b7ed2d6f58e09e33bd5a5f70c7a2ee867127a05697e5a4127ba40494a17ea40080482578328aa8a33ae97aa3a
 DIST cheaploc.1.1.6.nupkg 17585 BLAKE2B 1ed77a02342449f2b20fc97f0dfca7122637beb9f5f08854dc3d6c4f3676340686e49ac46173945f90dc56e7f41bc719d1976b5b4e61f1b25ced0b94cdb6a29d SHA512 ff2d6e19a08b54d288eced17cafe2dca9943bc7b0fab131c477f9ce7d8390762b11949228bc4193e661490432828ea8596ccb3d0d01ce2e990c346caa4cbb8fa
 DIST commandlineparser.2.9.1.nupkg 496069 BLAKE2B e2c4b38841f83d6bc10432b8055af90369f1fe0a10105a58b51b44cd48e5d84cb0b5e4b19f444d8c81b38646a62c7c4d11cbd710e92fea68be3ebea6ab98e3f1 SHA512 4f364e45c9668c7e7cc6a922b488f3fa523033c20d7a432694f0a6af05ce528ea0481d8375e2f4f1032c6990347b4803ce9a0e48068c6fe15ec46fb1254f085d
@@ -14,43 +14,24 @@ DIST goaaats.veldrid.sdl2.4.9.0-beta1-g70f642e82e.nupkg 1480273 BLAKE2B a0919921
 DIST goaaats.veldrid.startuputilities.4.9.0-beta1-g70f642e82e.nupkg 27873 BLAKE2B 8cf5bcc6841533fcd4cf24410a532b455a8264b105f1863a605ce728be9353a977dac87b9e9d52e906c18e2dafeb87d2ed73e448cd80253f051fd8c3bfdaed78 SHA512 18ca2ee4328c369273ff0f89608af4bfd6bf287d13a7498ebd0024ae9de4d6e61018426b64649dbb80a0de9acb903fc61e102636661e7ee3777e142c757ec759
 DIST imgui.net.1.87.2.nupkg 2532510 BLAKE2B 81afc68d85afb9c3b3995774d2a7d4e82cbdc8dec5c11a865c1386a40479e5703b3df5702784997a9ab439378c1a9f1fea6e48b0b7d33c8be6e2410545bdde8e SHA512 79244d3ee0dbb332452c8a0d7fe7e9ae42dc80945815290acdb1a95d2f43f700ceaaca7b7a937bb82e77310805aeacccb587b5480cdc2b895678fbf317ca1085
 DIST keysharp.1.0.5.nupkg 83058 BLAKE2B a5622d01e18e9433ff86fe3287d3caae2fbd81f83ba17bf302d82c8f2e77f1087ba261da7d455b6552d1399577954f6e98bb8c555999bb3b3b74505d4e581df1 SHA512 dcdfd91333a299c5c846d34429992bde26d2e03c9c7d6f1a258ca809f409c2d833df5c41e928b07084b63bf661cfff1dd62bef5f90b189c315fdb795bfa4beb4
-DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.10.nupkg 10089887 BLAKE2B 88b7d6c875642358253514fa37f39a2ead7243633b77489a4f6f6d9e2e16a6def6ce392fa2dd3bdeddcb9333be29e4dc5996a942ce6666c330657b5855bc0f73 SHA512 3b85af7a52c3cf603a45e5bf47934f5671cc5b23c8d4f62d41788f215aeb2f63219951918fe392a8380a2c4891b5c31408e1de653e821de76ea0fe42fc6ac60d
-DIST microsoft.aspnetcore.app.runtime.linux-arm64.6.0.10.nupkg 9858859 BLAKE2B 9bf86012f62b54d82c85deed67d4db1faadd1093726f8275450d7892b526095c9ca46ca24a2bdf447bc981a592144aec43e6c48869787842af2d44f838c81abd SHA512 8a92c5595028a9ef81fd1ba32f20bd1a8b7dc4d7609b05e7381f15d8777d84952712fb67fc0beb380146007fd71b0575cb258b72e9ff7d1eb4b12821cc557969
-DIST microsoft.aspnetcore.app.runtime.linux-musl-arm.6.0.10.nupkg 10091308 BLAKE2B a356963fd4b6f0b18ec76a63147229c99dea46caaac41c6c8c049436735c04ba5e775ea70c719cc5629dd2f33d2e0a7e2a7d39774bbdbfd5b89b95418e4760c2 SHA512 795c63d8222096b20b49e800940d6ce05824d073af9eae35a589db1de6d84ff13c5c96a159f925bbd2d41ac28b0c396a4f119e9c5696c0a99e6ba994ef5bd1c8
-DIST microsoft.aspnetcore.app.runtime.linux-musl-arm64.6.0.10.nupkg 9860220 BLAKE2B 68def043eb256be639d8a6600f9059b097fe0469b436294f929ed17ecfc2525073706ceeb1fb78106e3f46d6fe42e3d9a0d316d603f46882cbc2c7115a2a4b13 SHA512 ada55aeb7492df96ddc5402d4d47869f06e97dd2d7f45854b33c1b7302b4a670b532ba2a42e54b62c6711cd6116625b13e987d3347ddfb0a589c4ed39f31bec3
-DIST microsoft.aspnetcore.app.runtime.linux-musl-x64.6.0.10.nupkg 10213128 BLAKE2B 9084f4f47faea5ac42b18c909b82173587859be4e9464fcf74b7b701b9756fc52cc8ce1b51b37b41b1c52d078c436d0fb9dfd6b5e2cc99af384ad4cb919cf1d9 SHA512 9d26e4f8f3dfdd199e7bebf45321f306762c4bb3982b06da6b1c9fa31fec845b9c6c3ac6099bef8df68eeb2284f934e793db66cff0720cfed6737560887f0963
-DIST microsoft.aspnetcore.app.runtime.linux-x64.6.0.10.nupkg 10211750 BLAKE2B 7768680ee0560d023840224adcce2360bf69d5af3e092f85dda248aa4bf6496f3a2ef66822c38154f540a432b844fb317c416f6720683b058bedbeb2b0de1ec7 SHA512 5d272d25ef3902b3e9bc413eccca4ba8536a7bfd7dfd2690083b4074292399e87f6623b7344723271f1cd4d40acfb7dae32a6ee34578286da5baaec8d7295771
-DIST microsoft.aspnetcore.app.runtime.linux-x64.6.0.12.nupkg 10216624 BLAKE2B 0eef3cfce00db73c90dd4690e6e93e7085364b3c3365e91a4e02e3241a7a3cb10a4e246e7616378aee2b7d6c0546c937e5e9ce96877e37a261c0dc5ec20e2c53 SHA512 f3adb56d2e0ed4427607f409665c1fc3ab43d6e97ba1897d8f43bba949bad178097121256841986c5cbae71a232d2b6e761f29ac833e082889e86703ebc1a69e
 DIST microsoft.bcl.asyncinterfaces.6.0.0.nupkg 76354 BLAKE2B aca3f5db71e4037dbdd604aeaebcd0962ccc171915b77b4c409ab744bf0a469c7d588f9504fc7fa49e3863e9593b66b4083235cb49e812d1f87b3dadb32e6003 SHA512 221a05a0c910f7a87b620d8f3831ed392b4eb95d112bee274d35f27009ad2a26445de9d7cd235fe6fb4a03f2550874bda3be3dddd96edaf9c0852a9c23d7b099
 DIST microsoft.codeanalysis.analyzers.3.3.3.nupkg 1111022 BLAKE2B 8704bf2c8a57bdca4ad3d5a2531ff47b0b44d2461ce3c8eec4b58f5cb38f9371fe5aaeb8026a3abbf6299fe30b3f059c892ee6dd239a03eb8b36462f132a2b4b SHA512 0d4896db8aff9d731c5b1c8f73a4b37460c3f08080fbeac0ecf169abf5bdff9c9a994778f453816b888e939d9d0d615245c91a2e4ba31f85d2ea8de222767104
 DIST microsoft.codeanalysis.bannedapianalyzers.3.3.3.nupkg 569671 BLAKE2B b57ef6e58eccb55d784abc5811352bf37a25100397d715bc2dc1c9c030f4a796885ab91935fbcadb765b5aca82768c49c22994f3270d25578fb784fc506b8a9f SHA512 02a4ffcdc5f33c9f2952d5a8d399b33611e00c387476ba1768c8c41cf3a778ec0ee0c60af2e87ab6a678320f4b7444aa20e6966158a4d5b9cca945cf637c06db
 DIST microsoft.codeanalysis.common.4.0.1.nupkg 4472019 BLAKE2B 2a649895cd6ffd9b506bda09812ae298b5038baa83ddf9b96fe2750d1eb037feead4fd4c937e66bd8ec400655468a978c5be56d3f380decdcac13dfd3c014559 SHA512 27dc41d25ec9c2048a34552854f88db11874f3f4d847c826af2d382e9fcd59b8518c522f44a0296801c1c9fe630e513bc59526a20ebaf37146d064868272cc82
 DIST microsoft.codeanalysis.csharp.4.0.1.nupkg 10536054 BLAKE2B 998c2b8197cd921e4a0d10287a160bf48d62b43ab052194e52fe959f291fcf0d44c40c6036d66a924d8c61482c0d4d6cf9ffa0b083290d3b8c7a84d59d7fad0c SHA512 534149bfdf25a3fcafd5f31dda0c6f08413345d7e70b5ddc794c92473e1de024f353d5cfc975ac6e33c4f336e3890548f7ba506e425a85ba140654a764440ad3
 DIST microsoft.codeanalysis.netanalyzers.6.0.0.nupkg 3969653 BLAKE2B b62fa54d9df3ef8f6a2b6595259273ead2c7bcae850f577a1d0e40273c5f79b8c0895f18b291ba1f62b6a8dddaeb3d4a83f9aa20b67068b45fb8ba6e6a9bd21d SHA512 8d16b934642e2a61a6676d3522677961e68271174875f17573e905a926ec1ef57342d3a0156b4ef6e0dd488138616093191c24570601bc194fbc7a12195859f9
-DIST microsoft.netcore.app.host.linux-arm.6.0.10.nupkg 4044648 BLAKE2B 1dd282c800eabbf7c36f1bc91d8badd47e4a734d9566ae2a817c8bcece8b93a985a38449ab7f4d9b9bab5ba450f7123cdf037ed60945ca96a5857b1a60113204 SHA512 1261eea67f907d19694f3e95ce8def2e845b0b47ea426f1f534a1d9dee2a916abb72b91e4bf9cffe6458e47e09408a047315c3b5e78680b314bb83b4fdea1e59
-DIST microsoft.netcore.app.host.linux-arm64.6.0.10.nupkg 4515601 BLAKE2B f510ac14b2dfb90ea5e5d82c70e5fd265c80341ae161c373498dd36782740f206ba21bf21763902feb5c5b9be6af95486622aef9b29fad96548c3ae784fffec9 SHA512 363d143e191901dd5a73f07feb413a51ed7e43afe221cc137bad467e816f99dd375822faa4faedd5590f7708c47f37e38652be6c447eaf17f7adbde0e79e07c6
-DIST microsoft.netcore.app.host.linux-musl-arm.6.0.10.nupkg 4051066 BLAKE2B 0959655685303abaeaeea2187d76b383c0e9e8c8056313ffcf7ae960f27622426187ff415f61b637e902098f049160ef7132e964dfa4902bfac784eeac0eafa7 SHA512 37a1d2a918ed9c5dde6734625da488aaf40ee27b569c4407c8507eeb355aeac130499445841681ac4411ce23f07f4809303d1b33ce59fc59b03e8eb0c676943d
-DIST microsoft.netcore.app.host.linux-musl-arm64.6.0.10.nupkg 4522947 BLAKE2B 16b9fb9a6be65b6a2d2779e649da1f9726756e15e5e1052665883d1b7e71f9cb6e4eee462ed2729f5b36a148f07b11f54943a2008c8f29cb57e3a862acb304dc SHA512 5303f16f06d406acfa53c43046c5264a1d1c0cbf500dc13d6c6b5c65b8e642b7682b7452260dec45ee386cabea435d799f6b90016f0b59790d169c2a53c24ed1
-DIST microsoft.netcore.app.host.linux-musl-x64.6.0.10.nupkg 4908277 BLAKE2B 6ec6ac97ebb95fe68e2252fd40cf43b2bdee740e1543c4311e36370aab00ea318ff597934ab886fc7c5a0b135cf178fed758443319574e0155e69d492afa902d SHA512 9ec3293f8928d05a79fe1c42d9306333d0caf333537a0c85a6e5ef965d3c27108cedc133caa6638d980b7412372719e2937fa2f869ac596fe9686a2c5e8744c0
-DIST microsoft.netcore.app.runtime.linux-arm.6.0.10.nupkg 33353218 BLAKE2B 214eeb98e680a10ad65ecafe234d8b04534b8c942b18ab9e485f5004b4b216fffef7ac7d87d1bfcd81c971401053116ad487131253ad44918c4db2fdc3c79d9c SHA512 af8716882969e19bb724df5b45efcbab4334a11ce4dbb1fe8d014af9b1ddd08ab7aa1c44990eb38a2d916d62b51ac601dec12d477670961a7915ad6b5d4f6eac
-DIST microsoft.netcore.app.runtime.linux-arm64.6.0.10.nupkg 33172746 BLAKE2B 7481044590bed08e7105a04fc67df86f80cb530b599e50b4f3ec62f0cde54214dd5fc0c61dce3a0d53b8067b81f1fa722426370d6c4ee4c5d48ee25f4d19ecf1 SHA512 4b9f1ed5376ce6e68e35eca71b7042a5a1135e3ada85851a86dc48e2c5fe3d1f0c3d3d19eb3242dcb32c7d5f15857ec702fb54fa4ba6bff54b68f6d6d6480366
-DIST microsoft.netcore.app.runtime.linux-musl-arm.6.0.10.nupkg 33378344 BLAKE2B a09c9f14db3a47f383886733b5c64039b1008240ce4546e954a7ea3d1a53c1d1d3efdba748f5b66c8ce87e8c0208e779cfa6f53f924aca2e8b30eb4756106992 SHA512 7a64f1c85a9e83bc6087371e2eacad9db2f3426d16b94f830fb388287653a588f6c173007ed8bb6c344d7e2a7a142402e5e332c479a111b1bc99cc3afcbe6304
-DIST microsoft.netcore.app.runtime.linux-musl-arm64.6.0.10.nupkg 33190040 BLAKE2B 14d82fb84876c0877c4d41505c7d0884b93bf2fb26d2231ab4d724fad2fb88e52412e121a1b7b53d5bae4e68d1ce1e8e1084aab51e941d43a2a24901160df827 SHA512 9a745f69f2f9d2899d33a9b9a6af30953bbbf111ab2aa70d37b19279f3fc32d02121a5322973e7aa61fba555a51b5adacad5497279ef0717187f3d628722ab8d
-DIST microsoft.netcore.app.runtime.linux-musl-x64.6.0.10.nupkg 32800865 BLAKE2B 9f5764ef9520ee5c7c48426c04a50ebc605b80203210d95db1665fb62e44ce9ecd9e68c3b141044265fd4494e4d4701919011ae33884a29d5b2d3b6eb5ba2ef4 SHA512 3183c2ed2a020488ceaaf047608fafc2e33d149d090096ec72c47e452ed0d3c165da251f3ec940b12efec5dbd9c0f26ba0c8a74e97391c44f63aa591a1966405
-DIST microsoft.netcore.app.runtime.linux-x64.6.0.10.nupkg 33220407 BLAKE2B 1e4f1a25017caa3b9d1f3863e0c194fb870c56cabf70652d5027ee210a7af06655569d308843999b5f5bbfc3f828978cbf50fc9176dcf485a0d6d95d7e1891b8 SHA512 316628636d605a940564b22ce8912a422e44ed111eea8a643a2d9c5da1c2250aeb0e36d9a5cfda86e5b934c629332b28a0065fff25dff167ecaf1b742d986fea
-DIST microsoft.netcore.app.runtime.linux-x64.6.0.12.nupkg 33224601 BLAKE2B eef5b6090c3839358f0644d6320c9ef2a73173ac1002043bb09b22256b6fe155c891ed16732916e9554e3423943f66b87b78bcf359a630f684af760edaeae28d SHA512 b08e107dd7bd74931caf8e576d8f41c3b5d471f438b54262eaae314828e8978b1e34178321075ca7a511100b964df2b4d2262d58e8b196a519ca0cdd41e19aa6
+DIST microsoft.codeanalysis.netanalyzers.7.0.0.nupkg 4203065 BLAKE2B b3ac29feb084bbf2aa4104b449e8386a3b29ca1521d265d35289e642ed83c8dc1afa23def88fbae04b724627e59c65f85fb7d911b72154657dc60ce9d4ae60d7 SHA512 81b21fb62a0694a075b982a034ba9593921c109f5aade95c0c33ad3822b80d9873c69f99c0dab690ca3a64a704182dccadfef540a8643f009f460c955249b8f6
 DIST microsoft.netcore.platforms.1.1.0.nupkg 17960 BLAKE2B 6a9fa22d75f5a1c65746dd71a63c3d4e37c393e99c23007c10f5ecce248a04863bf26e7562c7751177a6985eaac266c29cc6a5443a4a853e773f88994ad2a3fd SHA512 6bf892c274596fe2c7164e3d8503b24e187f64d0b7bec6d9b05eb95f04086fceb7a85ea6b2685d42dc465c52f6f0e6f636c0b3fddac48f6f0125dfd83e92d106
 DIST microsoft.netcore.targets.1.1.0.nupkg 18162 BLAKE2B 419d19e0da934ab4b9db75dd66cc22b83a003f34e93cf7a92feccf4f32d3d695e18b826b1aba13073dd4ec53aa7905a67346921d1055516647ddcde0d79009f1 SHA512 1ef033a68688aab9997ec1c0378acb1638b4afb618e533fcaf749d93389737ba94f4a0a94481becdf701c7e988ae2fe390136a8eae225887ee60db45063490fe
 DIST microsoft.win32.primitives.4.3.0.nupkg 63333 BLAKE2B 132ec29940d4b716110980c4f9a06ba15183d29de638379d09998124605165e51652b2727e3892b57dbc7cacfdc71f9e1b59c9dd5463a524657351f5385d896d SHA512 366f07a79d72f6d61c2b7c43eaa938dd68dfb6b83599d1f6e02089b136fa82bec74b6d54d6e03e08a3c612d51c5596e3535cbc2b29f39b97a827b3e7c79826f0
 DIST microsoft.win32.registry.6.0.0-preview.5.21301.5.nupkg 185810 BLAKE2B fc5cedf835986ca9ace9d6e85059b1d75ca22fb93d268361e2fec79038032f7fb47a60771fcc8c7a2681d3028a938f0a99e39efc51fd4929b4fb09d298114684 SHA512 08b2e4f2e6d60d6ad1714ec2922d70974a48cfc32c49cb966450cfa07e755974615281622e18c1fa3036f23cd27275328f417d675271eabc2fa17463bf4ed7f0
 DIST microsoft.win32.systemevents.6.0.0.nupkg 157768 BLAKE2B 0a5cea49c552a8d3e5aa2e8913fc4929ea318026b02a85c03665fe8bc449d59f838ef9a1044e0e034f6c30c7b63187c02bf6df4106b19e801d6c194ea5641941 SHA512 5e274ace996c3eba63099ed5116f9dc39f69f684f7c1e7623c28c3c73988b75c67dfcc929a50a761f0222df243dd540720a6e588e91dfa784f81bfce7a893875
 DIST mono.cecil.0.9.6.1.nupkg 878045 BLAKE2B 7f233884bbfb8ec59e1131bf5725758b5fc2d1409719c1a5f8cf3bcb093188d635d2f9139512ae158a4517c48d7245aebd5dd7ca02c7e54ef87647eb090bed09 SHA512 967e275ee367c36f101c102128ad3c6d8478135b3e1e35dcc88984ce837d43bbd6b59f9000173628177da65a0059b79a2c0c0605b4f822aa5ca164dd0e13b3a1
-DIST mono.nat.3.0.1.nupkg 78045 BLAKE2B 66bdf10699d26599fb3a61a54ced59cd47556df05c5dec5d8b1a4a90563171652e2ca002e001a771a06a71c67ada4d2564e1f0e6c8d7fcbc3668fc49315d46fd SHA512 f4c41ae553c05990fafb76de1052656eb98266b401897d5caa9aa623da9b7079fb08532b54ec4ce8461f772aac7fae7bfb20d916c8ccfd27ed95c2b995a08ad7
-DIST monotorrent.2.0.0.nupkg 292359 BLAKE2B 1f9266b42bfdced92db045beefcb43592c29bb90ec318f996c8810caeaa505fa33c400458af80c8e824939a2e9d9ca3d7eda80370c35eb754e4520c3ffe9da3c SHA512 bc5b6fcfe0f29443e5b63f694ff7d597cb08d40231969f572bfa9cc45af25d2d8fafb6447626b63c224a55378cd54b18a5d27d3c7ef8e1cffe58b7adf15f3b4b
 DIST netstandard.library.1.6.1.nupkg 17360 BLAKE2B 02badd3473451f83997f0b66d05f1541c741e65b9127b8b27ab391260df7939f235eb6648b11c7c11cc5400489ddf1cd26820b7bdf6fd9f1d8f0dfdfeef96acc SHA512 0972dc2dbb4925e896f62bce2e59d4e48639320ee38ad3016dcd485fbd6936a0ed08073ad5eef2a612dff05dfc390f3930fff9e79d87a06070eeb8128277cbd0
 DIST netstandard.library.2.0.3.nupkg 3146139 BLAKE2B 311e5367398f76c74e78930bc2cd39e450a86bd8626311ded8d58bd84c94a8a84db3c11b2bc10f3eeba20a9d081fe7827981f702ad746b49ae3108c949ba1022 SHA512 e78f0cea69c14895b1b089644077dbce8631a626055d96522f4d29e061d8bfc3e48aa1419e74faf265b998612c03f721f5f0cef4690f824150a5689764dee601
 DIST newtonsoft.json.12.0.2.nupkg 2521025 BLAKE2B 2d6a40a97fedde8a83cef9d4ea9f5635efc83f4f7f6a8d38633e1d2011c9e9a1120979db181396c894f38c4fe0515b86781407fa607bd402dbad80f41d6cfd51 SHA512 9adc1e0573d6869d42310013b414fb65f319adb6414ca7e31b0cfa63be4dc068f1fc6ced0da5277f0f062bd299d93e1f0c8a8a2720e373d471970e7e1b615c54
-DIST reusabletasks.2.0.0.nupkg 38836 BLAKE2B 7837e5a03a89f6587fb22cf24ccfc9804b9ae9400e6041e08188cbd1d7800258e14e35b1e5ee636c18bb09aa3347b2dd7ac66e22baaeab5a09958c9455c840e6 SHA512 92f8cb334e126f7364e2afe8065d6921f537434645ac06f782ce1ebb9f2ff4db5637f584202d3c552b3a4bdd56ba9cea864682fc4e9032e2735ea03110ca1a88
+DIST pinvoke.kernel32.0.7.124.nupkg 566434 BLAKE2B 2e5449f762f37ce0181fda3488b4f3751f0402a0e077fc49169ef8d0809bddfb4eabac48752dff2a24f61f6008db07bee06ab84ead4ca267cc2e7f8dba2f6947 SHA512 d5c8c8c7b7c79349f1e9cc4de98713dc51aaf9c07aafede11fc7a470be7842786030de9c3bc112c1b1b05e4abda0eef6e10f6e8c1953c1948315f3fdee9d94df
+DIST pinvoke.windows.core.0.7.124.nupkg 823190 BLAKE2B 183cd0aa897826683ec9f50c8516aa07626d9771108ade799fe13ce48b64e29d3677c8795285ef50715b2798ef0f6bdb1dde24b4b9087b1fa9477b67cb528e54 SHA512 9919acc43e188d5ce9457f7e35d7cecf6c99fe0d8a21539b061825de92b99333f5d650fa3316f1b1aa7568a4f67578071f184d92346f903bfa165f8c6742d685
 DIST runtime.any.system.collections.4.3.0.nupkg 107990 BLAKE2B 802e2ae919a4834150d825ac086d8f47e2185e31b60b45f3dbe5f63b1d714953d9faaa7d8fe4cc25a1ea8495c4f8fd925bb198eea0b67e594a8558238b18196c SHA512 9f8833176c139b71a58694ae401c5aec209a63227be07c7ab559bef772082bd1f6cc38ba2949cb1c8e5c5514ad9f4ff51859838dc2f28191f8bb7ae611a50239
 DIST runtime.any.system.diagnostics.tools.4.3.0.nupkg 43707 BLAKE2B 33d1c57eb4e50c06488da02ab2bb1b8dba9948026053e662986af05b74045c014e76815edbb588f10d6a904de22e4c50177f31f3fac36d159b9af361a4cb2b62 SHA512 bd257401e179d4b836a4a2f7236a0e303ae997d2453c946bf272036620a0b14e85e5f42c229332930a954655ab4cae359d191a3e3d9746df09535a651367764c
 DIST runtime.any.system.diagnostics.tracing.4.3.0.nupkg 49844 BLAKE2B e35998e1369bacc9fa90f74825e021c62b9c671ac9b7cfad4e9b455656bd40e968f348ba8943ed670c74c22bddb1c94ccf5058885233607e3c73a5c7d2a56688 SHA512 0b480d21e23c38965222be7fa1e1a0c7e444cebdf400d1db8d3ac609f893b82d78c5d8b271da61808b7b179dd6466a0090bd807fc2d35020f93a00f0213bb436
@@ -93,6 +74,7 @@ DIST runtime.unix.system.net.sockets.4.3.0.nupkg 105673 BLAKE2B 06119cfdac3ce590
 DIST runtime.unix.system.private.uri.4.3.0.nupkg 75969 BLAKE2B 82611545be3eba44ccfbef1f104e9b5afade845fd3b30c6cb40171368330f9d4bb2ad8752e415aa3b1678ec140c40f8e72cd4cc3731f42ca64016c1a1dce70cf SHA512 203ebe272791d79ab0c40afe9d0543852ee91b9fb4ae5bc15524d97728bc8bc9d7e0cbcf65d1fab8cfb0aa7a4ae37e7938933eef127aa5ea46f60e57b6ad2d91
 DIST runtime.unix.system.runtime.extensions.4.3.0.nupkg 54075 BLAKE2B f81d86cc15c63aa0b4a3d03546a07649587af7a0285af0de4123734e719fc023fa4227b7abb18307d4fc060e2952c157ec72b3bb85d49ab8508d8167b1aeedd7 SHA512 54b81784c08e934389c59e6e155af6b1855e4bbc41678b01a702c94e6daba87c6ddfd16fe9e2cb61f3097bfa4950dbc37781454d027ce5ba6c50a393cc91b888
 DIST serilog.2.12.0.nupkg 769482 BLAKE2B 178f0796f7a9cd82d60a6d8c1501dd4b5432bdcc9d41061572eb5e0a1e0da924f48c2557dc43e610f9f49da80ba459e2301d43772130b22be5e464764db5e945 SHA512 3546b98340b8399a8ca778b9b82072833ade67b2a016fe261f5a93a3f9afda222a1f432b146dc06edddb68e6bd32bffa4a9aacaae03205c365b43f88044111fd
+DIST serilog.enrichers.sensitive.1.7.2.nupkg 43495 BLAKE2B d81fc9fbfadc4cf0907483bf89b10ad5753e7440f948c7fdf7018acbf5f24a772672fdd8aba27db80570a1b67a50d2d676638bac74f0d29f8f8bc0f50fa608f5 SHA512 1d00c76200801da8796d95f16966670e381c8f33cfd818927d66540d36f759e1d5238447dba879f9b100c9b44738db29556c7cba89619f675f08b904ae2d327b
 DIST serilog.enrichers.thread.3.1.0.nupkg 21848 BLAKE2B 049af072c4f2c850e4a9658e188bd78332badeacc866d55cd3d1d905f375498b4593eda6857e0840b07ac8061f9cbe33d25a25ed8e041a0d30ba8e3917eb34aa SHA512 5b12100c1061517a9ddef3e960ebe209658cccfa95ce48dd36ecb70fd556101365dd9a6710991d440f4e723e0112f41e7653599bc7310f60144547bab69402e6
 DIST serilog.sinks.async.1.5.0.nupkg 54510 BLAKE2B a69fbd38a7f3d718ac337caf1755db414edfa953982270bd9588291651f03ba25b9d02bb5773803e78d6f5d1aaa1c83fff3b1839d89548ed715bb94f8bd30be0 SHA512 567425afcf810299105a4f472b7ed9f02f873b8a5a5d2a751a8780f8ca7516cf354b7c27fe2a02b86ddebcd39095b0b7833faea7911dee6d5aead64122679a73
 DIST serilog.sinks.console.3.1.1.nupkg 60982 BLAKE2B 5f03b1c34e739854822e1cef5e57b19d78c9fe3467dbc3bb57877fb7f7833f0fb3a27344ff3cfd9160171764f8f4ac2a4f3cefd055b2584042c7e1696fd0a47a SHA512 7c8d1fc4afdd715d3261d02a76b2781164bb0274b2be5c83355d07919177d8060d1eeed35ca9e637a410c85262c021d9169ea0864b15021c21fad1eca651c314
@@ -203,4 +185,4 @@ DIST vortice.direct3d11.2.1.0.nupkg 764570 BLAKE2B 0bacd329d8a582ecbf8d762b209df
 DIST vortice.directx.2.1.0.nupkg 240511 BLAKE2B 0fefe0ee66eac71d05eb3f4e93f09e445042005a2db44cba52692ce018207dceb5a1c4c1e1d04e8510fecaa52e1f9ab19f10a3f00e36781f5e0204ab645694fa SHA512 03e8beeb88c81f1e158ae7804feb84d17191356c17438de5332bbc8d3b96cb12c4ac5d84296751fda2c6b1f50a688336c9c5b14509c3f3e3fa410927a79afd76
 DIST vortice.dxgi.2.1.0.nupkg 84022 BLAKE2B 1e6e550a4c9752db0204d2c6dace2f70190bb562faaa5f59074a1d5b3fe511426f7a776d80d9d847adb3bcbc28da4fa7124aa0abe1c4970f1c8eb70f2f0a2d56 SHA512 cf1e4e46608209a0809d9103dc65b614afaae12b1195ed279ef639f3475c2e2ecaca627b8fef9dba780edfc70a78c441cf2881a4ea3d70d524d58f556ae23c7f
 DIST vortice.mathematics.1.3.24.nupkg 115105 BLAKE2B 077d18cbc13b6fe6c5aee95680cb1d80b5927c58ae0061cd487c6b4f4f1ad732f6238f5cc5b1971fffcba8ac9d982f107af1c133c3226e8ca150a2c4b514f4bf SHA512 601b828fd182e2a77d989581ccd2e90f150155267f09f10eaf8af0e77a6ba4fc34cc040c42adb4b57c9e809bae7f96f5c21b0f10d73bde0d8d3c9d0414693d08
-DIST xivlauncher-1.0.4.tar.gz 18456127 BLAKE2B 5254c1e890852af0dd93dcc6d1b95ffca911e24e11374d360016784f33f1150e6a1e084c776aa34a0afaadfd399b64e8803c3eab4f1ce0c2366b45c203d4f103 SHA512 de551367d8c2d93e02f7d9f4b6b2e7fdd562efe15e31d2c3429206be962604dd17e4ef9be58815a2a0e4e3b270616148babcdfaed23020f31677a9af6d0c47af
+DIST xivlauncher-1.0.5.tar.gz 18456312 BLAKE2B 657e86f0da27c69578a99731677d0c3daec83fba8cd74460ef77ae123dfbcfb02c6231037fab51910e4090c1bed06f4733de50ca34bebabb90a1e9612286e09a SHA512 20b814283cc1b36c10d28d63e3b8f28dc456f670182129fba26f722ec6fb069eb94609675186c8e8cfb277c29897383070be66d8f9348c7a1b681856b2ef7de3

diff --git a/games-util/xivlauncher/metadata.xml b/games-util/xivlauncher/metadata.xml
index a31b49aace..2fd2b460ac 100644
--- a/games-util/xivlauncher/metadata.xml
+++ b/games-util/xivlauncher/metadata.xml
@@ -7,9 +7,7 @@
   </maintainer>
   <use>
     <flag name="libsecret">Enable secrets/password storage support.</flag>
-    <flag name="act">Advanced Combat Tracker in Final Fantasy XIV.</flag>
     <flag name="aria2">Enable Aria2 support.</flag>
-    <flag name="dx9">Support for running the dx9 api in wined3d/dxvk.</flag>
   </use>
   <upstream>
     <remote-id type="github">goatcorp/XIVLauncher.Core</remote-id>

diff --git a/games-util/xivlauncher/xivlauncher-1.0.4-r2.ebuild b/games-util/xivlauncher/xivlauncher-1.0.4-r2.ebuild
deleted file mode 100644
index be161148f4..0000000000
--- a/games-util/xivlauncher/xivlauncher-1.0.4-r2.ebuild
+++ /dev/null
@@ -1,278 +0,0 @@
-EAPI=7
-
-NUGETS="
-castle.core-4.4.1
-cheaploc-1.1.6
-commandlineparser-2.9.1
-config.net-4.19.0
-downloader-2.2.8
-goaaats.nativelibraryloader-4.9.0-beta1-g70f642e82e
-goaaats.steamworks-2.3.4
-goaaats.veldrid-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.imagesharp-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.metalbindings-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.openglbindings-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.sdl2-4.9.0-beta1-g70f642e82e
-goaaats.veldrid.startuputilities-4.9.0-beta1-g70f642e82e
-imgui.net-1.87.2
-keysharp-1.0.5
-microsoft.aspnetcore.app.runtime.linux-arm-6.0.10
-microsoft.aspnetcore.app.runtime.linux-arm64-6.0.10
-microsoft.aspnetcore.app.runtime.linux-musl-arm-6.0.10
-microsoft.aspnetcore.app.runtime.linux-musl-arm64-6.0.10
-microsoft.aspnetcore.app.runtime.linux-musl-x64-6.0.10
-microsoft.aspnetcore.app.runtime.linux-x64-6.0.10
-microsoft.aspnetcore.app.runtime.linux-x64-6.0.12
-microsoft.bcl.asyncinterfaces-6.0.0
-microsoft.codeanalysis.analyzers-3.3.3
-microsoft.codeanalysis.bannedapianalyzers-3.3.3
-microsoft.codeanalysis.common-4.0.1
-microsoft.codeanalysis.csharp-4.0.1
-microsoft.codeanalysis.netanalyzers-6.0.0
-microsoft.netcore.app.host.linux-arm-6.0.10
-microsoft.netcore.app.host.linux-arm64-6.0.10
-microsoft.netcore.app.host.linux-musl-arm-6.0.10
-microsoft.netcore.app.host.linux-musl-arm64-6.0.10
-microsoft.netcore.app.host.linux-musl-x64-6.0.10
-microsoft.netcore.app.runtime.linux-arm-6.0.10
-microsoft.netcore.app.runtime.linux-arm64-6.0.10
-microsoft.netcore.app.runtime.linux-musl-arm-6.0.10
-microsoft.netcore.app.runtime.linux-musl-arm64-6.0.10
-microsoft.netcore.app.runtime.linux-musl-x64-6.0.10
-microsoft.netcore.app.runtime.linux-x64-6.0.10
-microsoft.netcore.app.runtime.linux-x64-6.0.12
-microsoft.netcore.platforms-1.1.0
-microsoft.netcore.targets-1.1.0
-microsoft.win32.primitives-4.3.0
-microsoft.win32.registry-6.0.0-preview.5.21301.5
-microsoft.win32.systemevents-6.0.0
-mono.cecil-0.9.6.1
-mono.nat-3.0.1
-monotorrent-2.0.0
-netstandard.library-1.6.1
-netstandard.library-2.0.3
-newtonsoft.json-12.0.2
-reusabletasks-2.0.0
-runtime.any.system.collections-4.3.0
-runtime.any.system.diagnostics.tools-4.3.0
-runtime.any.system.diagnostics.tracing-4.3.0
-runtime.any.system.globalization-4.3.0
-runtime.any.system.globalization.calendars-4.3.0
-runtime.any.system.io-4.3.0
-runtime.any.system.reflection-4.3.0
-runtime.any.system.reflection.extensions-4.3.0
-runtime.any.system.reflection.primitives-4.3.0
-runtime.any.system.resources.resourcemanager-4.3.0
-runtime.any.system.runtime-4.3.0
-runtime.any.system.runtime.handles-4.3.0
-runtime.any.system.runtime.interopservices-4.3.0
-runtime.any.system.text.encoding-4.3.0
-runtime.any.system.text.encoding.extensions-4.3.0
-runtime.any.system.threading.tasks-4.3.0
-runtime.any.system.threading.timer-4.3.0
-runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.native.system-4.3.0
-runtime.native.system.io.compression-4.3.0
-runtime.native.system.net.http-4.3.0
-runtime.native.system.security.cryptography.apple-4.3.0
-runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple-4.3.0
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl-4.3.0
-runtime.unix.microsoft.win32.primitives-4.3.0
-runtime.unix.system.console-4.3.0
-runtime.unix.system.diagnostics.debug-4.3.0
-runtime.unix.system.io.filesystem-4.3.0
-runtime.unix.system.net.primitives-4.3.0
-runtime.unix.system.net.sockets-4.3.0
-runtime.unix.system.private.uri-4.3.0
-runtime.unix.system.runtime.extensions-4.3.0
-serilog-2.12.0
-serilog.enrichers.thread-3.1.0
-serilog.sinks.async-1.5.0
-serilog.sinks.console-3.1.1
-serilog.sinks.console-4.0.1
-serilog.sinks.debug-1.0.1
-serilog.sinks.file-5.0.0
-sharedmemory-2.3.2
-sharpgen.runtime-2.0.0-beta.10
-sharpgen.runtime.com-2.0.0-beta.10
-sixlabors.imagesharp-1.0.4
-system.appcontext-4.3.0
-system.buffers-4.3.0
-system.buffers-4.4.0
-system.buffers-4.5.1
-system.collections-4.3.0
-system.collections.concurrent-4.3.0
-system.collections.immutable-5.0.0
-system.collections.nongeneric-4.3.0
-system.collections.specialized-4.3.0
-system.componentmodel-4.3.0
-system.componentmodel.primitives-4.3.0
-system.componentmodel.typeconverter-4.3.0
-system.configuration.configurationmanager-6.0.0
-system.console-4.3.0
-system.diagnostics.debug-4.3.0
-system.diagnostics.diagnosticsource-4.3.0
-system.diagnostics.tools-4.3.0
-system.diagnostics.tracesource-4.3.0
-system.diagnostics.tracing-4.3.0
-system.drawing.common-6.0.0
-system.dynamic.runtime-4.3.0
-system.globalization-4.3.0
-system.globalization.calendars-4.3.0
-system.globalization.extensions-4.3.0
-system.io-4.3.0
-system.io.compression-4.3.0
-system.io.compression.zipfile-4.3.0
-system.io.filesystem-4.3.0
-system.io.filesystem.primitives-4.3.0
-system.linq-4.3.0
-system.linq.expressions-4.3.0
-system.memory-4.5.4
-system.net.http-4.3.0
-system.net.nameresolution-4.3.0
-system.net.primitives-4.3.0
-system.net.sockets-4.3.0
-system.numerics.vectors-4.4.0
-system.numerics.vectors-4.5.0
-system.objectmodel-4.3.0
-system.private.uri-4.3.0
-system.reflection-4.3.0
-system.reflection.emit-4.3.0
-system.reflection.emit.ilgeneration-4.3.0
-system.reflection.emit.ilgeneration-4.7.0
-system.reflection.emit.lightweight-4.3.0
-system.reflection.emit.lightweight-4.7.0
-system.reflection.extensions-4.3.0
-system.reflection.metadata-5.0.0
-system.reflection.primitives-4.3.0
-system.reflection.typeextensions-4.3.0
-system.resources.resourcemanager-4.3.0
-system.runtime-4.3.0
-system.runtime.compilerservices.unsafe-4.4.0
-system.runtime.compilerservices.unsafe-4.5.0
-system.runtime.compilerservices.unsafe-4.5.3
-system.runtime.compilerservices.unsafe-5.0.0
-system.runtime.compilerservices.unsafe-6.0.0
-system.runtime.extensions-4.3.0
-system.runtime.handles-4.3.0
-system.runtime.interopservices-4.3.0
-system.runtime.interopservices.runtimeinformation-4.3.0
-system.runtime.numerics-4.3.0
-system.security.accesscontrol-6.0.0
-system.security.accesscontrol-6.0.0-preview.5.21301.5
-system.security.claims-4.3.0
-system.security.cryptography.algorithms-4.3.0
-system.security.cryptography.cng-4.3.0
-system.security.cryptography.csp-4.3.0
-system.security.cryptography.encoding-4.3.0
-system.security.cryptography.openssl-4.3.0
-system.security.cryptography.primitives-4.3.0
-system.security.cryptography.protecteddata-6.0.0
-system.security.cryptography.x509certificates-4.3.0
-system.security.permissions-6.0.0
-system.security.principal-4.3.0
-system.security.principal.windows-4.3.0
-system.security.principal.windows-5.0.0
-system.security.principal.windows-6.0.0-preview.5.21301.5
-system.text.encoding-4.3.0
-system.text.encoding.codepages-4.5.1
-system.text.encoding.extensions-4.3.0
-system.text.encodings.web-6.0.0
-system.text.json-6.0.6
-system.text.regularexpressions-4.3.0
-system.threading-4.3.0
-system.threading.tasks-4.3.0
-system.threading.tasks.extensions-4.3.0
-system.threading.tasks.extensions-4.5.4
-system.threading.threadpool-4.3.0
-system.threading.timer-4.3.0
-system.windows.extensions-6.0.0
-system.xml.readerwriter-4.3.0
-system.xml.xdocument-4.3.0
-system.xml.xmldocument-4.3.0
-vk-1.0.25
-vortice.d3dcompiler-2.1.0
-vortice.direct3d11-2.1.0
-vortice.directx-2.1.0
-vortice.dxgi-2.1.0
-vortice.mathematics-1.3.24
-"
-
-DOTNET_SLOT="6.0"
-
-inherit dotnet-utils desktop xdg
-
-DESCRIPTION="Custom Launcher for Final Fantasy XIV Online (Crossplatform rewrite)"
-
-HOMEPAGE="https://github.com/goatcorp/XIVLauncher.Core/"
-
-IUSE="+aria2 +libsecret"
-
-RDEPEND="
-	aria2? ( net-misc/aria2 )
-	libsecret? ( app-crypt/libsecret )
-	media-libs/libsdl2
-	sys-apps/attr
-	media-libs/fontconfig
-	media-libs/lcms
-	dev-libs/libxml2
-	x11-libs/libXcursor
-	x11-libs/libXrandr
-	x11-libs/libXdamage
-	x11-libs/libXi
-	sys-devel/gettext
-	|| ( sys-libs/libunwind sys-libs/llvm-libunwind )
-	media-libs/freetype:2
-	media-libs/glu
-	x11-libs/libSM
-"
-
-XIVQL_COMMIT="77115d3f7d920179ce83f0708ec97ba2450ce795"
-
-SRC_URI="
-https://github.com/goatcorp/XIVLauncher.Core/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
-https://github.com/goatcorp/FFXIVQuickLauncher/archive/${XIVQL_COMMIT}.tar.gz -> FFXIVQuickLauncher-${XIVQL_COMMIT}.tar.gz
-$(nuget_uris)
-"
-
-S="${WORKDIR}/XIVLauncher.Core-${PV}/src"
-
-LICENSE="GPL-3"
-
-SLOT="0"
-KEYWORDS="~amd64"
-
-src_prepare() {
-	rmdir "${WORKDIR}/XIVLauncher.Core-${PV}/lib/FFXIVQuickLauncher" || die
-	mv "${WORKDIR}/FFXIVQuickLauncher-${XIVQL_COMMIT}" \
-		"${WORKDIR}/XIVLauncher.Core-${PV}/lib/FFXIVQuickLauncher" || die
-	sed -i "s/git -C .* describe --long --always --dirty &gt; \$(VerFile)/echo ${PV}/" \
-		XIVLauncher.Core/XIVLauncher.Core.csproj
-
-	dotnet-utils_src_prepare
-}
-
-src_compile() {
-	cd XIVLauncher.Core
-	dotnet-utils_src_compile
-}
-
-src_install() {
-	domenu ../misc/linux_distrib/XIVLauncher.desktop
-	newicon -s 512 ../misc/linux_distrib/512.png xivlauncher.png
-
-	cd XIVLauncher.Core/bin/Release/net6.0/linux-x64/publish
-	insinto opt/xivlauncher
-	doins -r *
-	fperms +x /opt/xivlauncher/XIVLauncher.Core
-	dosym /opt/xivlauncher/XIVLauncher.Core usr/bin/xivlauncher
-}

diff --git a/games-util/xivlauncher/xivlauncher-1.0.5.ebuild b/games-util/xivlauncher/xivlauncher-1.0.5.ebuild
new file mode 100644
index 0000000000..66fc37f919
--- /dev/null
+++ b/games-util/xivlauncher/xivlauncher-1.0.5.ebuild
@@ -0,0 +1,254 @@
+EAPI=8
+
+DOTNET_PKG_COMPAT="6.0"
+NUGETS="
+castle.core@4.4.1
+cheaploc@1.1.6
+commandlineparser@2.9.1
+config.net@4.19.0
+downloader@2.2.8
+goaaats.nativelibraryloader@4.9.0-beta1-g70f642e82e
+goaaats.steamworks@2.3.4
+goaaats.veldrid@4.9.0-beta1-g70f642e82e
+goaaats.veldrid.imagesharp@4.9.0-beta1-g70f642e82e
+goaaats.veldrid.metalbindings@4.9.0-beta1-g70f642e82e
+goaaats.veldrid.openglbindings@4.9.0-beta1-g70f642e82e
+goaaats.veldrid.sdl2@4.9.0-beta1-g70f642e82e
+goaaats.veldrid.startuputilities@4.9.0-beta1-g70f642e82e
+imgui.net@1.87.2
+keysharp@1.0.5
+microsoft.bcl.asyncinterfaces@6.0.0
+microsoft.codeanalysis.analyzers@3.3.3
+microsoft.codeanalysis.bannedapianalyzers@3.3.3
+microsoft.codeanalysis.common@4.0.1
+microsoft.codeanalysis.csharp@4.0.1
+microsoft.codeanalysis.netanalyzers@6.0.0
+microsoft.codeanalysis.netanalyzers@7.0.0
+microsoft.netcore.platforms@1.1.0
+microsoft.netcore.targets@1.1.0
+microsoft.win32.primitives@4.3.0
+microsoft.win32.registry@6.0.0-preview.5.21301.5
+microsoft.win32.systemevents@6.0.0
+mono.cecil@0.9.6.1
+netstandard.library@1.6.1
+netstandard.library@2.0.3
+newtonsoft.json@12.0.2
+pinvoke.kernel32@0.7.124
+pinvoke.windows.core@0.7.124
+runtime.any.system.collections@4.3.0
+runtime.any.system.diagnostics.tools@4.3.0
+runtime.any.system.diagnostics.tracing@4.3.0
+runtime.any.system.globalization@4.3.0
+runtime.any.system.globalization.calendars@4.3.0
+runtime.any.system.io@4.3.0
+runtime.any.system.reflection@4.3.0
+runtime.any.system.reflection.extensions@4.3.0
+runtime.any.system.reflection.primitives@4.3.0
+runtime.any.system.resources.resourcemanager@4.3.0
+runtime.any.system.runtime@4.3.0
+runtime.any.system.runtime.handles@4.3.0
+runtime.any.system.runtime.interopservices@4.3.0
+runtime.any.system.text.encoding@4.3.0
+runtime.any.system.text.encoding.extensions@4.3.0
+runtime.any.system.threading.tasks@4.3.0
+runtime.any.system.threading.timer@4.3.0
+runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.native.system@4.3.0
+runtime.native.system.io.compression@4.3.0
+runtime.native.system.net.http@4.3.0
+runtime.native.system.security.cryptography.apple@4.3.0
+runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple@4.3.0
+runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.unix.microsoft.win32.primitives@4.3.0
+runtime.unix.system.console@4.3.0
+runtime.unix.system.diagnostics.debug@4.3.0
+runtime.unix.system.io.filesystem@4.3.0
+runtime.unix.system.net.primitives@4.3.0
+runtime.unix.system.net.sockets@4.3.0
+runtime.unix.system.private.uri@4.3.0
+runtime.unix.system.runtime.extensions@4.3.0
+serilog@2.12.0
+serilog.enrichers.sensitive@1.7.2
+serilog.enrichers.thread@3.1.0
+serilog.sinks.async@1.5.0
+serilog.sinks.console@3.1.1
+serilog.sinks.console@4.0.1
+serilog.sinks.debug@1.0.1
+serilog.sinks.file@5.0.0
+sharedmemory@2.3.2
+sharpgen.runtime@2.0.0-beta.10
+sharpgen.runtime.com@2.0.0-beta.10
+sixlabors.imagesharp@1.0.4
+system.appcontext@4.3.0
+system.buffers@4.3.0
+system.buffers@4.4.0
+system.buffers@4.5.1
+system.collections@4.3.0
+system.collections.concurrent@4.3.0
+system.collections.immutable@5.0.0
+system.collections.nongeneric@4.3.0
+system.collections.specialized@4.3.0
+system.componentmodel@4.3.0
+system.componentmodel.primitives@4.3.0
+system.componentmodel.typeconverter@4.3.0
+system.configuration.configurationmanager@6.0.0
+system.console@4.3.0
+system.diagnostics.debug@4.3.0
+system.diagnostics.diagnosticsource@4.3.0
+system.diagnostics.tools@4.3.0
+system.diagnostics.tracesource@4.3.0
+system.diagnostics.tracing@4.3.0
+system.drawing.common@6.0.0
+system.dynamic.runtime@4.3.0
+system.globalization@4.3.0
+system.globalization.calendars@4.3.0
+system.globalization.extensions@4.3.0
+system.io@4.3.0
+system.io.compression@4.3.0
+system.io.compression.zipfile@4.3.0
+system.io.filesystem@4.3.0
+system.io.filesystem.primitives@4.3.0
+system.linq@4.3.0
+system.linq.expressions@4.3.0
+system.memory@4.5.4
+system.net.http@4.3.0
+system.net.nameresolution@4.3.0
+system.net.primitives@4.3.0
+system.net.sockets@4.3.0
+system.numerics.vectors@4.4.0
+system.numerics.vectors@4.5.0
+system.objectmodel@4.3.0
+system.private.uri@4.3.0
+system.reflection@4.3.0
+system.reflection.emit@4.3.0
+system.reflection.emit.ilgeneration@4.3.0
+system.reflection.emit.ilgeneration@4.7.0
+system.reflection.emit.lightweight@4.3.0
+system.reflection.emit.lightweight@4.7.0
+system.reflection.extensions@4.3.0
+system.reflection.metadata@5.0.0
+system.reflection.primitives@4.3.0
+system.reflection.typeextensions@4.3.0
+system.resources.resourcemanager@4.3.0
+system.runtime@4.3.0
+system.runtime.compilerservices.unsafe@4.4.0
+system.runtime.compilerservices.unsafe@4.5.0
+system.runtime.compilerservices.unsafe@4.5.3
+system.runtime.compilerservices.unsafe@5.0.0
+system.runtime.compilerservices.unsafe@6.0.0
+system.runtime.extensions@4.3.0
+system.runtime.handles@4.3.0
+system.runtime.interopservices@4.3.0
+system.runtime.interopservices.runtimeinformation@4.3.0
+system.runtime.numerics@4.3.0
+system.security.accesscontrol@6.0.0
+system.security.accesscontrol@6.0.0-preview.5.21301.5
+system.security.claims@4.3.0
+system.security.cryptography.algorithms@4.3.0
+system.security.cryptography.cng@4.3.0
+system.security.cryptography.csp@4.3.0
+system.security.cryptography.encoding@4.3.0
+system.security.cryptography.openssl@4.3.0
+system.security.cryptography.primitives@4.3.0
+system.security.cryptography.protecteddata@6.0.0
+system.security.cryptography.x509certificates@4.3.0
+system.security.permissions@6.0.0
+system.security.principal@4.3.0
+system.security.principal.windows@4.3.0
+system.security.principal.windows@5.0.0
+system.security.principal.windows@6.0.0-preview.5.21301.5
+system.text.encoding@4.3.0
+system.text.encoding.codepages@4.5.1
+system.text.encoding.extensions@4.3.0
+system.text.encodings.web@6.0.0
+system.text.json@6.0.6
+system.text.regularexpressions@4.3.0
+system.threading@4.3.0
+system.threading.tasks@4.3.0
+system.threading.tasks.extensions@4.3.0
+system.threading.tasks.extensions@4.5.4
+system.threading.threadpool@4.3.0
+system.threading.timer@4.3.0
+system.windows.extensions@6.0.0
+system.xml.readerwriter@4.3.0
+system.xml.xdocument@4.3.0
+system.xml.xmldocument@4.3.0
+vk@1.0.25
+vortice.d3dcompiler@2.1.0
+vortice.direct3d11@2.1.0
+vortice.directx@2.1.0
+vortice.dxgi@2.1.0
+vortice.mathematics@1.3.24
+"
+
+inherit dotnet-pkg desktop xdg
+
+DESCRIPTION="Custom Launcher for Final Fantasy XIV Online (Crossplatform rewrite)"
+
+HOMEPAGE="https://github.com/goatcorp/XIVLauncher.Core/"
+
+IUSE="+aria2 +libsecret"
+
+RDEPEND="
+	aria2? ( net-misc/aria2 )
+	libsecret? ( app-crypt/libsecret )
+	media-libs/libsdl2
+	sys-apps/attr
+	media-libs/fontconfig
+	media-libs/lcms
+	dev-libs/libxml2
+	x11-libs/libXcursor
+	x11-libs/libXrandr
+	x11-libs/libXdamage
+	x11-libs/libXi
+	sys-devel/gettext
+	|| ( sys-libs/libunwind sys-libs/llvm-libunwind )
+	media-libs/freetype:2
+	media-libs/glu
+	x11-libs/libSM
+"
+
+XIVQL_COMMIT="5e1022893d0aa52da84680b7c0694bdd5d560b32"
+
+SRC_URI="
+	https://github.com/goatcorp/XIVLauncher.Core/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
+	https://github.com/goatcorp/FFXIVQuickLauncher/archive/${XIVQL_COMMIT}.tar.gz
+		-> FFXIVQuickLauncher-${XIVQL_COMMIT}.tar.gz
+	${NUGET_URIS}
+"
+
+S="${WORKDIR}/XIVLauncher.Core-${PV}/src"
+
+DOTNET_PKG_PROJECTS=( "${S}/XIVLauncher.Core/XIVLauncher.Core.csproj" )
+
+LICENSE="GPL-3"
+
+SLOT="0"
+KEYWORDS="~amd64"
+
+src_prepare() {
+	rmdir "${WORKDIR}/XIVLauncher.Core-${PV}/lib/FFXIVQuickLauncher" || die
+	mv "${WORKDIR}/FFXIVQuickLauncher-${XIVQL_COMMIT}" \
+		"${WORKDIR}/XIVLauncher.Core-${PV}/lib/FFXIVQuickLauncher" || die
+	sed -i "s/git -C .* describe --long --always --dirty &gt; \$(VerFile)/echo ${PV}/" \
+		XIVLauncher.Core/XIVLauncher.Core.csproj
+
+	dotnet-pkg_src_prepare
+}
+
+src_install() {
+	dotnet-pkg-base_install
+	dotnet-pkg-base_dolauncher "/usr/share/${P}/XIVLauncher.Core" "xivlauncher"
+
+	domenu ../misc/linux_distrib/XIVLauncher.desktop
+	newicon -s 512 ../misc/linux_distrib/512.png xivlauncher.png
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2024-02-18 18:16 Julien Roy
  0 siblings, 0 replies; 15+ messages in thread
From: Julien Roy @ 2024-02-18 18:16 UTC (permalink / raw
  To: gentoo-commits

commit:     f1f18d4fa475908d292e3e9e3a5125ddd3a20384
Author:     Kayla Thompson <nop <AT> unearthly <DOT> dev>
AuthorDate: Sun Feb 18 17:03:50 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun Feb 18 17:04:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1f18d4f

games-util/xivlauncher: drop 1.0.6, fix 1.0.7

Incorrect path for openssl configuration

Signed-off-by: Kayla Thompson <nop <AT> unearthly.dev>

 games-util/xivlauncher/Manifest                    |  16 --
 games-util/xivlauncher/xivlauncher-1.0.6.ebuild    | 254 ---------------------
 ...er-1.0.7.ebuild => xivlauncher-1.0.7-r1.ebuild} |   2 +-
 3 files changed, 1 insertion(+), 271 deletions(-)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index 0123f414a7..c8fe4c6571 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -1,18 +1,10 @@
 DIST FFXIVQuickLauncher-c8a5471e0343c5ef89ccce698179324c44a3bce9.tar.gz 5268190 BLAKE2B b1b15b5163a69a74d6611ff1ca6df529497f61947bbe9f850290eff447631c61db1970c869e47f6d8062c760adc6bc66bb9a158a8674e64702fbaf7be7ddf545 SHA512 2e575a750e804e4859402a1f64ac232a38707a981d3a1ddba6da486278827507939a0edaebee7b980e206d16e073d57069e3eeb23af8e15377a8547ddcc6f1ab
-DIST FFXIVQuickLauncher-e8e22c32969a858343b751dbbda4777606ba5717.tar.gz 5267549 BLAKE2B f143db989db4c47a8012040a34298b6293fe48732b3f43780f04b2530ca13bd75df4c9511c104b05897a787f6f915c14d958a3b7bde9ea99c7e4060f3bdca3c9 SHA512 128f170822eaa5277c4788ef838ca4f0bda75c17f3456922d4e3d68ef607687d9fe38b55024003c64400d3a486db595a6a317b731f82c4054974a49c9584c71e
 DIST castle.core.4.4.1.nupkg 919111 BLAKE2B 5ee1245ef79f00b89fd03957b260337b4af242667c10cd9189540853344d062e27dee224989ef6a29544083f9a8416a197b9d97ba38ee1ace4630e89893355e7 SHA512 b27c340df07622abda8543a48c057eb936c9b02b7ed2d6f58e09e33bd5a5f70c7a2ee867127a05697e5a4127ba40494a17ea40080482578328aa8a33ae97aa3a
 DIST cheaploc.1.1.6.nupkg 17585 BLAKE2B 1ed77a02342449f2b20fc97f0dfca7122637beb9f5f08854dc3d6c4f3676340686e49ac46173945f90dc56e7f41bc719d1976b5b4e61f1b25ced0b94cdb6a29d SHA512 ff2d6e19a08b54d288eced17cafe2dca9943bc7b0fab131c477f9ce7d8390762b11949228bc4193e661490432828ea8596ccb3d0d01ce2e990c346caa4cbb8fa
 DIST commandlineparser.2.9.1.nupkg 496069 BLAKE2B e2c4b38841f83d6bc10432b8055af90369f1fe0a10105a58b51b44cd48e5d84cb0b5e4b19f444d8c81b38646a62c7c4d11cbd710e92fea68be3ebea6ab98e3f1 SHA512 4f364e45c9668c7e7cc6a922b488f3fa523033c20d7a432694f0a6af05ce528ea0481d8375e2f4f1032c6990347b4803ce9a0e48068c6fe15ec46fb1254f085d
 DIST config.net.4.19.0.nupkg 224230 BLAKE2B 81d9af329eeef4fd936351aa4c61957c43672bce351143c2f3a6b71a19e9a6b3595e312ff79c6c6ae54b05bb6abf952b3cd79702b34cc2e238a213efe1d74407 SHA512 62e44041c1baca88f0d7ce1c65edebb845c0fac14784d62f47908fd03434ac9abf5f142a7ae6eb2d68cd8c46435f2c71d8e9ff72c4a5e1de50c19f40ff5a3a91
 DIST downloader.2.2.8.nupkg 134929 BLAKE2B 5151b9ce44e864fccacac7827a33f400f872c709c2cc8f5cb7329f29738a1617e987d3c1c35bbcf6e88f84b3a1ce33a5164d5a5c50f1191780ef436c4558f908 SHA512 366be64bd23c63137355826476c864b5681c290e60a7d40899af0ecf2e980ba2a03e9113ecd32a09b40d7b5e4be3913706d21e01289b085fd0eeecbd282d3335
-DIST goaaats.nativelibraryloader.4.9.0-beta1-g70f642e82e.nupkg 22508 BLAKE2B 0c8cdcf09351f18a3bbfa623958b79cb3cdb1cdf8fb596c4652f9ba834e8885b7ff5f64eb9d7d846270ba554773ce8ab448c25cb1e30d8e1848bfc4370f9b75b SHA512 5a7d007930f196b82299b9a371dcc70a4962d6fb938c3b04174488e6aa02746c55022fc1db00765c9dd8ec91c61e3529d86d8bd61292ff04f81e5058da0feba3
 DIST goaaats.steamworks.2.3.4.nupkg 929848 BLAKE2B a0ee5f4f72d366b68919d23224611fa7e5dee4d78b0c607f742fae0fb69b742864f5f069a116bb531e2ef28efc655b5fe24701eb31949d119737ce811812bf83 SHA512 af40b958d208e81c1374ad14c2c4c989934e31fa2afc46990efdc02b3d443068e82716249bc3c575cc2aa627556fcb1795a4e932ccea438acbcd0935967801cf
-DIST goaaats.veldrid.4.9.0-beta1-g70f642e82e.nupkg 312436 BLAKE2B d54627c540c1c395996782d7818357d15b2be499650b54918b7db71f80eae931d6c2da2f3e75d617c232ad7fd5daa895f9f0f09e5ec68a7627d1201eb7c2e082 SHA512 434649d07db4b2b048dced42a6f14e42945f7874a5067b9a162de659ebed0f830a1fab6517cafd945cd007bcfead2bb7d97aa55e9e94db4b914ab44858dfb098
-DIST goaaats.veldrid.imagesharp.4.9.0-beta1-g70f642e82e.nupkg 26972 BLAKE2B 7f3f7db3e6c56b49b7f82d622d46292d656566bf9a1c15b321493096c0e19b5e843a4ed1d89adb66be5268b13b691bffab038b32a38ccf457c74ffc0c40dfbdc SHA512 1c9a3d2d8e4b2e2eef271ca1022e32a9bfd1415c7a8d1dc0e08e58096b6a2c1d30b1d22996ce8825b894a731c6a98306086b2e9fbde4efba70cfd0945bbae307
-DIST goaaats.veldrid.metalbindings.4.9.0-beta1-g70f642e82e.nupkg 55350 BLAKE2B a76fc1aa3b8afce356ed3dfeaee469d590df766899c6fba31e87e73f099c701a7b4cf29e1a3bde597008bde2d33bc6740fbc760351891fb5bdd0272507c85f15 SHA512 486a699e5850272dd312ea1f76850cbb4d138c6b60f96fd4d4ff2ff09bc7a82c8aa788a9f1db688ce119d540621602746e6d43e3a173f9f6af7772ba7856c727
-DIST goaaats.veldrid.openglbindings.4.9.0-beta1-g70f642e82e.nupkg 64101 BLAKE2B faa7f6160504d9acbb345c6a391c114e017210b89014641de3b6a4e090e83f65e8e51141f8da6b214c76341c3f8ee0f28fb3aff487c283568d045f5e63f11d3f SHA512 098d204c05cf9121b8521a31fd5a974a53c4d42ba30c045251626b1f780b3e3b2ae87d5450f08e4f8b5f9ed2ce5cc212a1f607ead0359479620a769a68993701
-DIST goaaats.veldrid.sdl2.4.9.0-beta1-g70f642e82e.nupkg 1480273 BLAKE2B a09199216d636691f3241c176f266b7f327ed37e1ca5e4d3ed91c66e55b0cdc91f37707ab892259cc82dc932a0f9ac3fcb300196b323c8c2e785725f63cd8946 SHA512 2fbe959a87c7ff160d9e293962b49a4a1d6d511e501bf9e81e8b2c8cc8dc242ef3fe26767558db777987a667ebc0c3bae23bc0891f25882071c75930cfe81e3b
-DIST goaaats.veldrid.startuputilities.4.9.0-beta1-g70f642e82e.nupkg 27873 BLAKE2B 8cf5bcc6841533fcd4cf24410a532b455a8264b105f1863a605ce728be9353a977dac87b9e9d52e906c18e2dafeb87d2ed73e448cd80253f051fd8c3bfdaed78 SHA512 18ca2ee4328c369273ff0f89608af4bfd6bf287d13a7498ebd0024ae9de4d6e61018426b64649dbb80a0de9acb903fc61e102636661e7ee3777e142c757ec759
 DIST imgui.net.1.87.2.nupkg 2532510 BLAKE2B 81afc68d85afb9c3b3995774d2a7d4e82cbdc8dec5c11a865c1386a40479e5703b3df5702784997a9ab439378c1a9f1fea6e48b0b7d33c8be6e2410545bdde8e SHA512 79244d3ee0dbb332452c8a0d7fe7e9ae42dc80945815290acdb1a95d2f43f700ceaaca7b7a937bb82e77310805aeacccb587b5480cdc2b895678fbf317ca1085
 DIST keysharp.1.0.5.nupkg 83058 BLAKE2B a5622d01e18e9433ff86fe3287d3caae2fbd81f83ba17bf302d82c8f2e77f1087ba261da7d455b6552d1399577954f6e98bb8c555999bb3b3b74505d4e581df1 SHA512 dcdfd91333a299c5c846d34429992bde26d2e03c9c7d6f1a258ca809f409c2d833df5c41e928b07084b63bf661cfff1dd62bef5f90b189c315fdb795bfa4beb4
 DIST microsoft.bcl.asyncinterfaces.6.0.0.nupkg 76354 BLAKE2B aca3f5db71e4037dbdd604aeaebcd0962ccc171915b77b4c409ab744bf0a469c7d588f9504fc7fa49e3863e9593b66b4083235cb49e812d1f87b3dadb32e6003 SHA512 221a05a0c910f7a87b620d8f3831ed392b4eb95d112bee274d35f27009ad2a26445de9d7cd235fe6fb4a03f2550874bda3be3dddd96edaf9c0852a9c23d7b099
@@ -92,9 +84,7 @@ DIST serilog.sinks.console.4.0.1.nupkg 103972 BLAKE2B 5a017756c31da3cd3f64ba1cb0
 DIST serilog.sinks.debug.1.0.1.nupkg 27986 BLAKE2B 886dc773d78eb3e58b3acdf14d9ca41f979edfc78cc7976d5516fe01fb366685df98dac91a7db2d3f7d4f7bb023ee8f29aa19a25230a501d97c4f46f182523e2 SHA512 9779d881a046c44efb9935c3bf962d1da88b0d92c519c3b0b405ae05b92879e2799f5c23b2808922029d5c0ed34cecbd9a2bf056304ea35af6d5ea3a0af26cb5
 DIST serilog.sinks.file.5.0.0.nupkg 170448 BLAKE2B a2c58b4b2c43ee9c13e43bd341c4a352214f870d2c6cc6f3fa71138aa8b07f8cafbdf0184a3522d0333480b0ae252d5124e1e3fd5dc26df89474cf9e2a147dda SHA512 e0139b1c37bbc6e8dcf4b44f696fae1212c7793a69d599d3a555f69d2ceaa92f2417a0d4d2845d80ea8be494d4fd994841b916b197f8dc597afb6a6d91528356
 DIST sharedmemory.2.3.2.nupkg 245351 BLAKE2B cddb0cdafdf69bc621b506cb9bc0a2c78990b135e60304b1d8a586e340774e0b45cc232e69f40d54d4079a3423d0e5c9ae3a4f8635fcc530bd95ae1afde41ce7 SHA512 e36dd912c4138225e8d98024da9fb9d0ee407f79baaa8ef9839a3f62669b82aa170bd28e256cb86a957fc8f0e54b9873c267305d619f9ffac4a259c6fe571746
-DIST sharpgen.runtime.2.0.0-beta.10.nupkg 279180 BLAKE2B 0e4c38dd9e5682b5a6ca8f8a797ac367ccb6206e2e2c931bb67b6956672ee7580ab406ec2064c24e60b7f92f48d697aea7cec047cd3fea53017c2e7fa4e8009a SHA512 dbde7a005568a8dd8d02d40be63a70962d0afa73754bbeac312cddfaf2cd4b9cc15a43fe7781748d7cb46a538aa4671d0a16a869e66ce42c68d33107cae02fbb
 DIST sharpgen.runtime.2.0.0-beta.13.nupkg 267678 BLAKE2B 65935f595eb9295e3ffb5659f9892e47f4f16fd0eaf82b16edf3e0ef95733ddcf98bb4c8e2c883363085fa1cb905f70f03c44a32f5c8c0633092cfd73df92a71 SHA512 ab45430585b7ed8ec39f644fc1cc18d4a7b88106f07d0008768b776d49c90f8089871426e2f6a66550143d87142e42c1fc75e98b02a9b3f5cf1e65daa2354827
-DIST sharpgen.runtime.com.2.0.0-beta.10.nupkg 313125 BLAKE2B 693047643ecce861b44d839de930f558c2f9fbd3aba3097c76d1a1d0790d815061e4a3dfde256231ab37e5079d07eacfb9dda954ca57de5ede2b2b2c31a13d75 SHA512 553e05f29e82389e265cbc1c1f0aa0cd523a57ade3e222767847cd01eb8843bfa0a7c9382975b13d76505b7b3a8f71d28e426f1a0172482b972a0b1a20e99b69
 DIST sharpgen.runtime.com.2.0.0-beta.13.nupkg 519850 BLAKE2B e1647dbf2b507086f1bbd2e2710ba8d02d31419df78b515b88250f3b537fd43347846bfd76b03f3f3a0542ddc83f292c99123167dafdc1c50ca8fea1714776ea SHA512 c5ef144366c4755b9ba7eaa2fa82097b4b86f92e4f2535b6dc5e5749b4dbe3bc14aa33e7a685bfbb472cd65d9e6198acbdcc86b1fee0ff9f36cd61802b5bb51c
 DIST sixlabors.imagesharp.1.0.4.nupkg 3824917 BLAKE2B b6312a7d2ea09569b185361c40569209d281a6f5feb6687c452dc912e20aef6b409657a97c05dbae1b396e31ccab8d10a3c35fb92e7a7892ee29dcc982f5cf2b SHA512 66d710910a44505cdee5bbcfa7c2d2d6025891f7c1facdea8fd52e46fbc76122ab4f7bd1e1656ab782dd84292d59bddec93a1ecf8b94117dad75b5f69b52e23e
 DIST system.appcontext.4.1.0.nupkg 146990 BLAKE2B 7881a5a903a358e19b0de72fe800c70ac9233e7c5e1e4115d69be6f8dbc4fbe86debb79bcd453295730e803ff1da974075c999f52e4c721e085676746c2f9b58 SHA512 f724af13eb14aa57255f82841683a93b427de172b8d31b9fe2c6bc8c21a795e60ecf211b4e49e1c2e285fe1ad498e6bd9c843e109a60a3dc27b49df560106e96
@@ -232,15 +222,9 @@ DIST veldrid.openglbindings.4.9.0.nupkg 66821 BLAKE2B c1309775f5eafa96655b200000
 DIST veldrid.sdl2.4.9.0.nupkg 1483550 BLAKE2B 12915c7f14f571101aff8245cad36f8219ab1e9f6c751ccfebff1f7dc290e93574a21e97644df9c16e50733b3cf10a5fd7a3e123bc0f8519dd1840985a48c99d SHA512 bab0b135a3dde3b96fb7bb016c4c609921010199b5198a977853d7f65815e722282913da32969eb937c2c7a9ec1b222e7035e807784b8349147eb6771f7eb377
 DIST veldrid.startuputilities.4.9.0.nupkg 28452 BLAKE2B fb859ba44a25f99745e980081595d74d57cd3911f03bf95ca9c5d4b78bc431116214795426bcec3b686d049ae5625728a817fe40319c39842fd0445112182e21 SHA512 f90a86c2a158e1f3248565e648c41a4c8955abac7ddb3fb783385955b0b96341ec6b5d714e727bb080a19abe323672b282d8feb8b56571bd899fc1ff1f9761bc
 DIST vk.1.0.25.nupkg 221120 BLAKE2B 6019768603784793d155cc0f97bb6bf0f2221e575652b36984dbc81184ce378255f35440816944be869ab530cd8485b4c6924b38d6a1296885f60a7163fa5fcc SHA512 6f946367a8ff946e01870f8f1677eeffcef1c6d14b7341c1d067928121f875957f607c3b6e9b91280272434686ce4bf4b0dedfb5e14592fe9a72459a56fa17cb
-DIST vortice.d3dcompiler.2.1.0.nupkg 91915 BLAKE2B d58ee7e36581a0bd0e42b16929420f33c9e5edfe415f7084b16922757aa322c0d97beeafc3d777ab52e7648df6a8b29902ab4cea402ab996538798a5b24d62f3 SHA512 36fc6956110cf69019e72c6b2f5bd7ee5e723d986bfb5518257d4061726e2a8907d6bb8f4b20b8bcd9d3f4ce2dec7cbc9f959b9d864b454b94ad13831c746fca
 DIST vortice.d3dcompiler.2.3.0.nupkg 79908 BLAKE2B 3dc19f63544c793e8ce76e33ec77b5285eada5caa463ac62bd62ccfbd0f3d27a04d6ddcebb2ce0e521f4a45c1a982f60af99c67a454b6da9f17ec44e94da83a4 SHA512 7500b4810e54932f72fcccfc621177af3f76b7c52482790e69879aca5d92bc1d5bc0a54546034efcd275504b7162ed51e3618029d8e05a03c068e6289a164d37
-DIST vortice.direct3d11.2.1.0.nupkg 764570 BLAKE2B 0bacd329d8a582ecbf8d762b209df6d1bfe4c5679adf91dc88bce6871a6795fe5ca4cbb8b610b5db40284622e7cf45995d185cca794d19416802a63ac7ac6168 SHA512 2085053037004fa2d1a6cafffb3ade91809e080f943da65780beb7029ec3c5f8e5b9180edac41c897885b063d73caa4d5cfe4ee6174a4682f96c683129b98205
 DIST vortice.direct3d11.2.3.0.nupkg 1000170 BLAKE2B 3cb6882ff784a72f887265ce366ee8161b89653517edeabd618f01f4c68492f51438edd4da886d331974fb8b412c04f7b0109bf46638380b72ff76724c1725b7 SHA512 3ce3c39c241ffab511b0ef5370bc74e08af48eba7cfe86a7082a5392c11672f456fd9157d63b9dddec791ebb3008d7f3b976fa5fb9109667434133042323e252
-DIST vortice.directx.2.1.0.nupkg 240511 BLAKE2B 0fefe0ee66eac71d05eb3f4e93f09e445042005a2db44cba52692ce018207dceb5a1c4c1e1d04e8510fecaa52e1f9ab19f10a3f00e36781f5e0204ab645694fa SHA512 03e8beeb88c81f1e158ae7804feb84d17191356c17438de5332bbc8d3b96cb12c4ac5d84296751fda2c6b1f50a688336c9c5b14509c3f3e3fa410927a79afd76
 DIST vortice.directx.2.3.0.nupkg 1123600 BLAKE2B 4af31197c9056e95d1ad3f860696637150ea950665a76efb6365b39b11b4b4d1cf6480ac8df82e945b0c5b187135f6e2bd22f1295a7b230a94d881d9c1d59af7 SHA512 3366ab9156a17cc0389fb7948f8385783672cedc30f03f13fff53ef6ab1678af61f560919e6ac50387c44b6722414f6986d55435791c4dd1d29a6e80f08b21a1
-DIST vortice.dxgi.2.1.0.nupkg 84022 BLAKE2B 1e6e550a4c9752db0204d2c6dace2f70190bb562faaa5f59074a1d5b3fe511426f7a776d80d9d847adb3bcbc28da4fa7124aa0abe1c4970f1c8eb70f2f0a2d56 SHA512 cf1e4e46608209a0809d9103dc65b614afaae12b1195ed279ef639f3475c2e2ecaca627b8fef9dba780edfc70a78c441cf2881a4ea3d70d524d58f556ae23c7f
 DIST vortice.dxgi.2.3.0.nupkg 339067 BLAKE2B 63a8f23f3a5a29b7b68c5429005c3ca0d623b8122d0b1fbd9ec9715cc78283df3951ebeed624d98ca2032ffcd3361f8d944c68176fff40800936c044e8ebe1c0 SHA512 adaad404537114fd3092817419680b78e1cfca01c7b3e0941f98071dbefad4160355d868f63ccf7187d4e6b4b7341fd01f406d9ff0de23f9676af4afb62dd31f
-DIST vortice.mathematics.1.3.24.nupkg 115105 BLAKE2B 077d18cbc13b6fe6c5aee95680cb1d80b5927c58ae0061cd487c6b4f4f1ad732f6238f5cc5b1971fffcba8ac9d982f107af1c133c3226e8ca150a2c4b514f4bf SHA512 601b828fd182e2a77d989581ccd2e90f150155267f09f10eaf8af0e77a6ba4fc34cc040c42adb4b57c9e809bae7f96f5c21b0f10d73bde0d8d3c9d0414693d08
 DIST vortice.mathematics.1.4.25.nupkg 360426 BLAKE2B 31780297d1e2e5bcdae92f34a93982c63bcf42ebbbb5ac848c4fbaea6d9340724ae83826fa20d0b1e82456f1f66d0332dd2e85f5f623d03fb53b5d4b7d6eb86b SHA512 4721b4514028384405e213a33b152a2760794e62d62f7078352486d43636f428c8a815d18d02f4cdca6168ef44898da85ec55760b25f240f0c074e3ea978f0db
-DIST xivlauncher-1.0.6.tar.gz 18456404 BLAKE2B c37a5cc05070ce1914b6d784f2742ec9ff4adea9370605b1605db7093ed3e5bde3e57f5d5098770317d43fded51cfab3723208a273d07b885dad91489dbce8a7 SHA512 90ef341ec64eb03f1d0efdf60b42f53b22d3b7e747341312e248ef7dba34d83b45b98ab0973ec575352208ba3074bd0daf03b6d16371e5af571277fbdfeb2e7a
 DIST xivlauncher-1.0.7.tar.gz 18456119 BLAKE2B 13160afa3522228e0527c6fe076bc876ba29ed7131a68b6f7389f9c906517b3c0df6abf14acee5fdca94cf3888ae129333dead125d21d6c11bf3b7734238955a SHA512 5ec547bf557561cd35635c4fdc079344b0e502dd619a2b5a872bd577a02126437dd63479dd72987435854f464fcc15ff7d677d190ec46e3054bb303981bd22d0

diff --git a/games-util/xivlauncher/xivlauncher-1.0.6.ebuild b/games-util/xivlauncher/xivlauncher-1.0.6.ebuild
deleted file mode 100644
index a3685faea7..0000000000
--- a/games-util/xivlauncher/xivlauncher-1.0.6.ebuild
+++ /dev/null
@@ -1,254 +0,0 @@
-EAPI=8
-
-DOTNET_PKG_COMPAT="6.0"
-NUGETS="
-castle.core@4.4.1
-cheaploc@1.1.6
-commandlineparser@2.9.1
-config.net@4.19.0
-downloader@2.2.8
-goaaats.nativelibraryloader@4.9.0-beta1-g70f642e82e
-goaaats.steamworks@2.3.4
-goaaats.veldrid@4.9.0-beta1-g70f642e82e
-goaaats.veldrid.imagesharp@4.9.0-beta1-g70f642e82e
-goaaats.veldrid.metalbindings@4.9.0-beta1-g70f642e82e
-goaaats.veldrid.openglbindings@4.9.0-beta1-g70f642e82e
-goaaats.veldrid.sdl2@4.9.0-beta1-g70f642e82e
-goaaats.veldrid.startuputilities@4.9.0-beta1-g70f642e82e
-imgui.net@1.87.2
-keysharp@1.0.5
-microsoft.bcl.asyncinterfaces@6.0.0
-microsoft.codeanalysis.analyzers@3.3.3
-microsoft.codeanalysis.bannedapianalyzers@3.3.3
-microsoft.codeanalysis.common@4.0.1
-microsoft.codeanalysis.csharp@4.0.1
-microsoft.codeanalysis.netanalyzers@6.0.0
-microsoft.codeanalysis.netanalyzers@7.0.0
-microsoft.netcore.platforms@1.1.0
-microsoft.netcore.targets@1.1.0
-microsoft.win32.primitives@4.3.0
-microsoft.win32.registry@6.0.0-preview.5.21301.5
-microsoft.win32.systemevents@6.0.0
-mono.cecil@0.9.6.1
-netstandard.library@1.6.1
-netstandard.library@2.0.3
-newtonsoft.json@12.0.2
-pinvoke.kernel32@0.7.124
-pinvoke.windows.core@0.7.124
-runtime.any.system.collections@4.3.0
-runtime.any.system.diagnostics.tools@4.3.0
-runtime.any.system.diagnostics.tracing@4.3.0
-runtime.any.system.globalization@4.3.0
-runtime.any.system.globalization.calendars@4.3.0
-runtime.any.system.io@4.3.0
-runtime.any.system.reflection@4.3.0
-runtime.any.system.reflection.extensions@4.3.0
-runtime.any.system.reflection.primitives@4.3.0
-runtime.any.system.resources.resourcemanager@4.3.0
-runtime.any.system.runtime@4.3.0
-runtime.any.system.runtime.handles@4.3.0
-runtime.any.system.runtime.interopservices@4.3.0
-runtime.any.system.text.encoding@4.3.0
-runtime.any.system.text.encoding.extensions@4.3.0
-runtime.any.system.threading.tasks@4.3.0
-runtime.any.system.threading.timer@4.3.0
-runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.native.system@4.3.0
-runtime.native.system.io.compression@4.3.0
-runtime.native.system.net.http@4.3.0
-runtime.native.system.security.cryptography.apple@4.3.0
-runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple@4.3.0
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.unix.microsoft.win32.primitives@4.3.0
-runtime.unix.system.console@4.3.0
-runtime.unix.system.diagnostics.debug@4.3.0
-runtime.unix.system.io.filesystem@4.3.0
-runtime.unix.system.net.primitives@4.3.0
-runtime.unix.system.net.sockets@4.3.0
-runtime.unix.system.private.uri@4.3.0
-runtime.unix.system.runtime.extensions@4.3.0
-serilog@2.12.0
-serilog.enrichers.sensitive@1.7.2
-serilog.enrichers.thread@3.1.0
-serilog.sinks.async@1.5.0
-serilog.sinks.console@3.1.1
-serilog.sinks.console@4.0.1
-serilog.sinks.debug@1.0.1
-serilog.sinks.file@5.0.0
-sharedmemory@2.3.2
-sharpgen.runtime@2.0.0-beta.10
-sharpgen.runtime.com@2.0.0-beta.10
-sixlabors.imagesharp@1.0.4
-system.appcontext@4.3.0
-system.buffers@4.3.0
-system.buffers@4.4.0
-system.buffers@4.5.1
-system.collections@4.3.0
-system.collections.concurrent@4.3.0
-system.collections.immutable@5.0.0
-system.collections.nongeneric@4.3.0
-system.collections.specialized@4.3.0
-system.componentmodel@4.3.0
-system.componentmodel.primitives@4.3.0
-system.componentmodel.typeconverter@4.3.0
-system.configuration.configurationmanager@6.0.0
-system.console@4.3.0
-system.diagnostics.debug@4.3.0
-system.diagnostics.diagnosticsource@4.3.0
-system.diagnostics.tools@4.3.0
-system.diagnostics.tracesource@4.3.0
-system.diagnostics.tracing@4.3.0
-system.drawing.common@6.0.0
-system.dynamic.runtime@4.3.0
-system.globalization@4.3.0
-system.globalization.calendars@4.3.0
-system.globalization.extensions@4.3.0
-system.io@4.3.0
-system.io.compression@4.3.0
-system.io.compression.zipfile@4.3.0
-system.io.filesystem@4.3.0
-system.io.filesystem.primitives@4.3.0
-system.linq@4.3.0
-system.linq.expressions@4.3.0
-system.memory@4.5.4
-system.net.http@4.3.0
-system.net.nameresolution@4.3.0
-system.net.primitives@4.3.0
-system.net.sockets@4.3.0
-system.numerics.vectors@4.4.0
-system.numerics.vectors@4.5.0
-system.objectmodel@4.3.0
-system.private.uri@4.3.0
-system.reflection@4.3.0
-system.reflection.emit@4.3.0
-system.reflection.emit.ilgeneration@4.3.0
-system.reflection.emit.ilgeneration@4.7.0
-system.reflection.emit.lightweight@4.3.0
-system.reflection.emit.lightweight@4.7.0
-system.reflection.extensions@4.3.0
-system.reflection.metadata@5.0.0
-system.reflection.primitives@4.3.0
-system.reflection.typeextensions@4.3.0
-system.resources.resourcemanager@4.3.0
-system.runtime@4.3.0
-system.runtime.compilerservices.unsafe@4.4.0
-system.runtime.compilerservices.unsafe@4.5.0
-system.runtime.compilerservices.unsafe@4.5.3
-system.runtime.compilerservices.unsafe@5.0.0
-system.runtime.compilerservices.unsafe@6.0.0
-system.runtime.extensions@4.3.0
-system.runtime.handles@4.3.0
-system.runtime.interopservices@4.3.0
-system.runtime.interopservices.runtimeinformation@4.3.0
-system.runtime.numerics@4.3.0
-system.security.accesscontrol@6.0.0
-system.security.accesscontrol@6.0.0-preview.5.21301.5
-system.security.claims@4.3.0
-system.security.cryptography.algorithms@4.3.0
-system.security.cryptography.cng@4.3.0
-system.security.cryptography.csp@4.3.0
-system.security.cryptography.encoding@4.3.0
-system.security.cryptography.openssl@4.3.0
-system.security.cryptography.primitives@4.3.0
-system.security.cryptography.protecteddata@6.0.0
-system.security.cryptography.x509certificates@4.3.0
-system.security.permissions@6.0.0
-system.security.principal@4.3.0
-system.security.principal.windows@4.3.0
-system.security.principal.windows@5.0.0
-system.security.principal.windows@6.0.0-preview.5.21301.5
-system.text.encoding@4.3.0
-system.text.encoding.codepages@4.5.1
-system.text.encoding.extensions@4.3.0
-system.text.encodings.web@6.0.0
-system.text.json@6.0.6
-system.text.regularexpressions@4.3.0
-system.threading@4.3.0
-system.threading.tasks@4.3.0
-system.threading.tasks.extensions@4.3.0
-system.threading.tasks.extensions@4.5.4
-system.threading.threadpool@4.3.0
-system.threading.timer@4.3.0
-system.windows.extensions@6.0.0
-system.xml.readerwriter@4.3.0
-system.xml.xdocument@4.3.0
-system.xml.xmldocument@4.3.0
-vk@1.0.25
-vortice.d3dcompiler@2.1.0
-vortice.direct3d11@2.1.0
-vortice.directx@2.1.0
-vortice.dxgi@2.1.0
-vortice.mathematics@1.3.24
-"
-
-inherit dotnet-pkg desktop xdg
-
-DESCRIPTION="Custom Launcher for Final Fantasy XIV Online (Crossplatform rewrite)"
-
-HOMEPAGE="https://github.com/goatcorp/XIVLauncher.Core/"
-
-IUSE="+aria2 +libsecret"
-
-RDEPEND="
-	aria2? ( net-misc/aria2 )
-	libsecret? ( app-crypt/libsecret )
-	media-libs/libsdl2
-	sys-apps/attr
-	media-libs/fontconfig
-	media-libs/lcms
-	dev-libs/libxml2
-	x11-libs/libXcursor
-	x11-libs/libXrandr
-	x11-libs/libXdamage
-	x11-libs/libXi
-	sys-devel/gettext
-	|| ( sys-libs/libunwind sys-libs/llvm-libunwind )
-	media-libs/freetype:2
-	media-libs/glu
-	x11-libs/libSM
-"
-
-XIVQL_COMMIT="e8e22c32969a858343b751dbbda4777606ba5717"
-
-SRC_URI="
-	https://github.com/goatcorp/XIVLauncher.Core/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
-	https://github.com/goatcorp/FFXIVQuickLauncher/archive/${XIVQL_COMMIT}.tar.gz
-		-> FFXIVQuickLauncher-${XIVQL_COMMIT}.tar.gz
-	${NUGET_URIS}
-"
-
-S="${WORKDIR}/XIVLauncher.Core-${PV}/src"
-
-DOTNET_PKG_PROJECTS=( "${S}/XIVLauncher.Core/XIVLauncher.Core.csproj" )
-
-LICENSE="GPL-3"
-
-SLOT="0"
-KEYWORDS="~amd64"
-
-src_prepare() {
-	rmdir "${WORKDIR}/XIVLauncher.Core-${PV}/lib/FFXIVQuickLauncher" || die
-	mv "${WORKDIR}/FFXIVQuickLauncher-${XIVQL_COMMIT}" \
-		"${WORKDIR}/XIVLauncher.Core-${PV}/lib/FFXIVQuickLauncher" || die
-	sed -i "s/git -C .* describe --long --always --dirty &gt; \$(VerFile)/echo ${PV}/" \
-		XIVLauncher.Core/XIVLauncher.Core.csproj
-
-	dotnet-pkg_src_prepare
-}
-
-src_install() {
-	dotnet-pkg-base_install
-	dotnet-pkg-base_dolauncher "/usr/share/${P}/XIVLauncher.Core" "xivlauncher"
-
-	domenu ../misc/linux_distrib/XIVLauncher.desktop
-	newicon -s 512 ../misc/linux_distrib/512.png xivlauncher.png
-}

diff --git a/games-util/xivlauncher/xivlauncher-1.0.7.ebuild b/games-util/xivlauncher/xivlauncher-1.0.7-r1.ebuild
similarity index 99%
rename from games-util/xivlauncher/xivlauncher-1.0.7.ebuild
rename to games-util/xivlauncher/xivlauncher-1.0.7-r1.ebuild
index 6cee51c20d..d849b4b06d 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.7.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.7-r1.ebuild
@@ -292,7 +292,7 @@ src_install() {
 	cp "${FILESDIR}/openssl.cnf" "${DOTNET_PKG_OUTPUT}/"
 
 	dotnet-pkg-base_install
-	dotnet-pkg-base_append_launchervar "OPENSSL_CONF=/usr/share/${P}/XIVLauncher.Core/openssl.cnf"
+	dotnet-pkg-base_append_launchervar "OPENSSL_CONF=/usr/share/${P}/openssl.cnf"
 	dotnet-pkg-base_dolauncher "/usr/share/${P}/XIVLauncher.Core" "xivlauncher"
 
 	domenu ../misc/linux_distrib/XIVLauncher.desktop


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2024-03-19 10:44 Julien Roy
  0 siblings, 0 replies; 15+ messages in thread
From: Julien Roy @ 2024-03-19 10:44 UTC (permalink / raw
  To: gentoo-commits

commit:     2d3ae6b283a49d29689c00cc42e0bb023615842a
Author:     Edgar Luque <edgar <AT> edgarluque <DOT> com>
AuthorDate: Tue Mar 19 10:29:29 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue Mar 19 10:29:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2d3ae6b2

games-util/xivlauncher: add 1.0.8, drop 1.0.7-r1

Signed-off-by: Edgar Luque <edgar <AT> edgarluque.com>

 games-util/xivlauncher/Manifest                                       | 4 ++--
 games-util/xivlauncher/metadata.xml                                   | 4 ++++
 .../{xivlauncher-1.0.7-r1.ebuild => xivlauncher-1.0.8.ebuild}         | 2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index c8fe4c6571..da0558961c 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -1,4 +1,4 @@
-DIST FFXIVQuickLauncher-c8a5471e0343c5ef89ccce698179324c44a3bce9.tar.gz 5268190 BLAKE2B b1b15b5163a69a74d6611ff1ca6df529497f61947bbe9f850290eff447631c61db1970c869e47f6d8062c760adc6bc66bb9a158a8674e64702fbaf7be7ddf545 SHA512 2e575a750e804e4859402a1f64ac232a38707a981d3a1ddba6da486278827507939a0edaebee7b980e206d16e073d57069e3eeb23af8e15377a8547ddcc6f1ab
+DIST FFXIVQuickLauncher-020dde9d504f879a56b08fde570bcb4b5772ed3e.tar.gz 5268185 BLAKE2B f38e8b3dac305dbd3766cee888e9b545cf1d8bfcf6b43103a48706ddac1e9c53cf40833c208ea2ffbb7fa39ebf9900d56200dfc576a8309be4ff22874db32b7e SHA512 3d8cc220411b43a9e8c8dc5eae90fcf9b3415a9cf22851b4149eaa4e0d2065c1de7048cdad8427ae698d1936df43a1ff206ced2dea843d2aecd586355a97ee50
 DIST castle.core.4.4.1.nupkg 919111 BLAKE2B 5ee1245ef79f00b89fd03957b260337b4af242667c10cd9189540853344d062e27dee224989ef6a29544083f9a8416a197b9d97ba38ee1ace4630e89893355e7 SHA512 b27c340df07622abda8543a48c057eb936c9b02b7ed2d6f58e09e33bd5a5f70c7a2ee867127a05697e5a4127ba40494a17ea40080482578328aa8a33ae97aa3a
 DIST cheaploc.1.1.6.nupkg 17585 BLAKE2B 1ed77a02342449f2b20fc97f0dfca7122637beb9f5f08854dc3d6c4f3676340686e49ac46173945f90dc56e7f41bc719d1976b5b4e61f1b25ced0b94cdb6a29d SHA512 ff2d6e19a08b54d288eced17cafe2dca9943bc7b0fab131c477f9ce7d8390762b11949228bc4193e661490432828ea8596ccb3d0d01ce2e990c346caa4cbb8fa
 DIST commandlineparser.2.9.1.nupkg 496069 BLAKE2B e2c4b38841f83d6bc10432b8055af90369f1fe0a10105a58b51b44cd48e5d84cb0b5e4b19f444d8c81b38646a62c7c4d11cbd710e92fea68be3ebea6ab98e3f1 SHA512 4f364e45c9668c7e7cc6a922b488f3fa523033c20d7a432694f0a6af05ce528ea0481d8375e2f4f1032c6990347b4803ce9a0e48068c6fe15ec46fb1254f085d
@@ -227,4 +227,4 @@ DIST vortice.direct3d11.2.3.0.nupkg 1000170 BLAKE2B 3cb6882ff784a72f887265ce366e
 DIST vortice.directx.2.3.0.nupkg 1123600 BLAKE2B 4af31197c9056e95d1ad3f860696637150ea950665a76efb6365b39b11b4b4d1cf6480ac8df82e945b0c5b187135f6e2bd22f1295a7b230a94d881d9c1d59af7 SHA512 3366ab9156a17cc0389fb7948f8385783672cedc30f03f13fff53ef6ab1678af61f560919e6ac50387c44b6722414f6986d55435791c4dd1d29a6e80f08b21a1
 DIST vortice.dxgi.2.3.0.nupkg 339067 BLAKE2B 63a8f23f3a5a29b7b68c5429005c3ca0d623b8122d0b1fbd9ec9715cc78283df3951ebeed624d98ca2032ffcd3361f8d944c68176fff40800936c044e8ebe1c0 SHA512 adaad404537114fd3092817419680b78e1cfca01c7b3e0941f98071dbefad4160355d868f63ccf7187d4e6b4b7341fd01f406d9ff0de23f9676af4afb62dd31f
 DIST vortice.mathematics.1.4.25.nupkg 360426 BLAKE2B 31780297d1e2e5bcdae92f34a93982c63bcf42ebbbb5ac848c4fbaea6d9340724ae83826fa20d0b1e82456f1f66d0332dd2e85f5f623d03fb53b5d4b7d6eb86b SHA512 4721b4514028384405e213a33b152a2760794e62d62f7078352486d43636f428c8a815d18d02f4cdca6168ef44898da85ec55760b25f240f0c074e3ea978f0db
-DIST xivlauncher-1.0.7.tar.gz 18456119 BLAKE2B 13160afa3522228e0527c6fe076bc876ba29ed7131a68b6f7389f9c906517b3c0df6abf14acee5fdca94cf3888ae129333dead125d21d6c11bf3b7734238955a SHA512 5ec547bf557561cd35635c4fdc079344b0e502dd619a2b5a872bd577a02126437dd63479dd72987435854f464fcc15ff7d677d190ec46e3054bb303981bd22d0
+DIST xivlauncher-1.0.8.tar.gz 18613651 BLAKE2B f381f8ce5a6e1165b72e0e28cee3638d70a07e9c8240ad72699b1727903411677797a13e450949d26ab8be9048de79b0ae082047dc3bb45899ac49e3972e1037 SHA512 3ed549f30266263400c1a1388c97b41370f6c5e51189a8439f1467036a446029889d86da13dd69fe1399f31deb0783224e005f3eabbfa40d34904eb8fc375c37

diff --git a/games-util/xivlauncher/metadata.xml b/games-util/xivlauncher/metadata.xml
index 2fd2b460ac..f484e17e6a 100644
--- a/games-util/xivlauncher/metadata.xml
+++ b/games-util/xivlauncher/metadata.xml
@@ -5,6 +5,10 @@
     <email>navi@vlhl.dev</email>
     <name>Anna Figueiredo Gomes</name>
   </maintainer>
+  <maintainer type="person">
+    <email>edgar@edgarluque.com</email>
+    <name>Edgar Luque</name>
+  </maintainer>
   <use>
     <flag name="libsecret">Enable secrets/password storage support.</flag>
     <flag name="aria2">Enable Aria2 support.</flag>

diff --git a/games-util/xivlauncher/xivlauncher-1.0.7-r1.ebuild b/games-util/xivlauncher/xivlauncher-1.0.8.ebuild
similarity index 99%
rename from games-util/xivlauncher/xivlauncher-1.0.7-r1.ebuild
rename to games-util/xivlauncher/xivlauncher-1.0.8.ebuild
index d849b4b06d..70e7097fe6 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.7-r1.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.8.ebuild
@@ -259,7 +259,7 @@ RDEPEND="
 	x11-libs/libSM
 "
 
-XIVQL_COMMIT="c8a5471e0343c5ef89ccce698179324c44a3bce9"
+XIVQL_COMMIT="020dde9d504f879a56b08fde570bcb4b5772ed3e"
 
 SRC_URI="
 	https://github.com/goatcorp/XIVLauncher.Core/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2024-07-08 16:47 David Roman
  0 siblings, 0 replies; 15+ messages in thread
From: David Roman @ 2024-07-08 16:47 UTC (permalink / raw
  To: gentoo-commits

commit:     dfffdd4de7b4f6cc20fc470b072f9daa076ee1ff
Author:     Edgar Luque <edgar <AT> edgarluque <DOT> com>
AuthorDate: Sun Jul  7 06:55:01 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jul  7 06:55:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dfffdd4d

games-util/xivlauncher: Add QA_FLAGS_IGNORED and missing rdepend on glib

Signed-off-by: Edgar Luque <edgar <AT> edgarluque.com>

 games-util/xivlauncher/xivlauncher-1.1.0.ebuild | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/games-util/xivlauncher/xivlauncher-1.1.0.ebuild b/games-util/xivlauncher/xivlauncher-1.1.0.ebuild
index e136cc3ab..e847c5f11 100644
--- a/games-util/xivlauncher/xivlauncher-1.1.0.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.1.0.ebuild
@@ -273,6 +273,14 @@ RDEPEND="
 	media-libs/freetype:2
 	media-libs/glu
 	x11-libs/libSM
+	dev-libs/glib
+"
+
+QA_FLAGS_IGNORED="
+/opt/xivlauncher/libsteam_api64.so
+/opt/xivlauncher/libskeychain.so
+/opt/xivlauncher/libcimgui.so
+/opt/xivlauncher/XIVLauncher.Core
 "
 
 DOTNET_PKG_PROJECTS=("${S}/XIVLauncher.Core/XIVLauncher.Core.csproj")


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2024-07-08 16:47 David Roman
  0 siblings, 0 replies; 15+ messages in thread
From: David Roman @ 2024-07-08 16:47 UTC (permalink / raw
  To: gentoo-commits

commit:     dd99540964ed73424989446d6523be0e57c525fb
Author:     Edgar Luque <edgar <AT> edgarluque <DOT> com>
AuthorDate: Sun Jul  7 06:57:37 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jul  7 06:57:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dd995409

games-util/xivlauncher: Bump 1.1.0 to 1.1.0-r1

Signed-off-by: Edgar Luque <edgar <AT> edgarluque.com>

 .../xivlauncher/{xivlauncher-1.1.0.ebuild => xivlauncher-1.1.0-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-util/xivlauncher/xivlauncher-1.1.0.ebuild b/games-util/xivlauncher/xivlauncher-1.1.0-r1.ebuild
similarity index 100%
rename from games-util/xivlauncher/xivlauncher-1.1.0.ebuild
rename to games-util/xivlauncher/xivlauncher-1.1.0-r1.ebuild


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

* [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/
@ 2024-11-02 20:52 David Roman
  0 siblings, 0 replies; 15+ messages in thread
From: David Roman @ 2024-11-02 20:52 UTC (permalink / raw
  To: gentoo-commits

commit:     71e3817162cd8acc3a0390b6c5a62fabc70c7a0a
Author:     Edgar Luque <edgar <AT> edgarluque <DOT> com>
AuthorDate: Fri Nov  1 19:30:45 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Nov  1 19:30:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71e38171

games-util/xivlauncher: add 1.1.1, drop 1.1.0-r1

Signed-off-by: Edgar Luque <edgar <AT> edgarluque.com>

 games-util/xivlauncher/Manifest                                         | 2 +-
 .../{xivlauncher-1.1.0-r1.ebuild => xivlauncher-1.1.1.ebuild}           | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index 198851a2e..c1aa292e9 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -227,4 +227,4 @@ DIST vortice.direct3d11.2.3.0.nupkg 1000170 BLAKE2B 3cb6882ff784a72f887265ce366e
 DIST vortice.directx.2.3.0.nupkg 1123600 BLAKE2B 4af31197c9056e95d1ad3f860696637150ea950665a76efb6365b39b11b4b4d1cf6480ac8df82e945b0c5b187135f6e2bd22f1295a7b230a94d881d9c1d59af7 SHA512 3366ab9156a17cc0389fb7948f8385783672cedc30f03f13fff53ef6ab1678af61f560919e6ac50387c44b6722414f6986d55435791c4dd1d29a6e80f08b21a1
 DIST vortice.dxgi.2.3.0.nupkg 339067 BLAKE2B 63a8f23f3a5a29b7b68c5429005c3ca0d623b8122d0b1fbd9ec9715cc78283df3951ebeed624d98ca2032ffcd3361f8d944c68176fff40800936c044e8ebe1c0 SHA512 adaad404537114fd3092817419680b78e1cfca01c7b3e0941f98071dbefad4160355d868f63ccf7187d4e6b4b7341fd01f406d9ff0de23f9676af4afb62dd31f
 DIST vortice.mathematics.1.4.25.nupkg 360426 BLAKE2B 31780297d1e2e5bcdae92f34a93982c63bcf42ebbbb5ac848c4fbaea6d9340724ae83826fa20d0b1e82456f1f66d0332dd2e85f5f623d03fb53b5d4b7d6eb86b SHA512 4721b4514028384405e213a33b152a2760794e62d62f7078352486d43636f428c8a815d18d02f4cdca6168ef44898da85ec55760b25f240f0c074e3ea978f0db
-DIST xivlauncher-1.1.0.tar.gz 18616929 BLAKE2B 2608230f02399a84fd436c22314f1c3f94bdb3f5d9ec4657b15041daea50474eccfe12349e395834e157a4145c1c59c67264566299eb918bb5e34eada8d4e472 SHA512 8049f5bd735de7837752473c51f8eb38b2f6cc12581ee2873afebe947382eb6df189275813dbcb018a38c03f82d4b0f722fd4a8e6acbee39b2a22c3b2787fc6c
+DIST xivlauncher-1.1.1.tar.gz 18043980 BLAKE2B dbf6095ad207d0d51519914d685f63c5353aa8b39ab0f3a71fd414bf8e30cf02ba97a02e8a09fafa6d25669f1e1c97940a9cf560d2e60f142b05fb2dec45dcb0 SHA512 500b96970caa370f50033e4365c960282a8041fa432cfbb17147edbba1a4f0cbb47b976a9995790ef46ed11955039d91b4752337bbd97628a21a76871758f763

diff --git a/games-util/xivlauncher/xivlauncher-1.1.0-r1.ebuild b/games-util/xivlauncher/xivlauncher-1.1.1.ebuild
similarity index 100%
rename from games-util/xivlauncher/xivlauncher-1.1.0-r1.ebuild
rename to games-util/xivlauncher/xivlauncher-1.1.1.ebuild


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

end of thread, other threads:[~2024-11-02 20:52 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-19 10:44 [gentoo-commits] repo/proj/guru:master commit in: games-util/xivlauncher/ Julien Roy
  -- strict thread matches above, loose matches on Subject: below --
2024-11-02 20:52 David Roman
2024-07-08 16:47 David Roman
2024-07-08 16:47 David Roman
2024-02-18 18:16 Julien Roy
2023-10-05  6:18 Viorel Munteanu
2023-10-05  6:18 Viorel Munteanu
2023-06-26 22:01 Haelwenn Monnier
2023-03-24 11:43 Florian Schmaus
2023-03-24 11:43 Florian Schmaus
2023-01-24  9:10 Florian Schmaus
2023-01-24  9:10 Florian Schmaus
2022-12-09 17:57 Ronny Gutbrod
2022-12-09 16:26 Ronny Gutbrod
2022-11-26 10:54 Florian Schmaus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox