public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: games-rpg/snoot-game/
@ 2022-12-01  3:59 Haelwenn Monnier
  0 siblings, 0 replies; 7+ messages in thread
From: Haelwenn Monnier @ 2022-12-01  3:59 UTC (permalink / raw
  To: gentoo-commits

commit:     832f08ebb66611d3f06ce61b1f6be92053032aad
Author:     Seth Price <sprice623 <AT> aol <DOT> com>
AuthorDate: Mon Nov 28 21:14:35 2022 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Mon Nov 28 21:14:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=832f08eb

games-rpg/snoot-game: new package, add 1.7

Signed-off-by: Seth Price <sprice623 <AT> aol.com>

 games-rpg/snoot-game/Manifest              |  1 +
 games-rpg/snoot-game/metadata.xml          | 18 ++++++++++++++
 games-rpg/snoot-game/snoot-game-1.7.ebuild | 38 ++++++++++++++++++++++++++++++
 3 files changed, 57 insertions(+)

diff --git a/games-rpg/snoot-game/Manifest b/games-rpg/snoot-game/Manifest
new file mode 100644
index 000000000..54a282092
--- /dev/null
+++ b/games-rpg/snoot-game/Manifest
@@ -0,0 +1 @@
+DIST SnootGame-Update7_Fangsgiving-linux.tar.bz2 357494376 BLAKE2B 13d1603d2b8d2936b76b1289dddc507617bb574bab938ae6b00ca1ce0d9ba3fd32f87fc649eedbb4fe1c3c73e81632faa16bb02aae5175ae3c3a32843236aa0f SHA512 58f70e59fa906bcfbfe52a13d4db22bad589f1ad55e8ebc11db420fee3be208bcd67e38caf6b58092a9e0d85e8d37a6aa2359f879091b8679d8523fc2b31e2bf

diff --git a/games-rpg/snoot-game/metadata.xml b/games-rpg/snoot-game/metadata.xml
new file mode 100644
index 000000000..6654dbec9
--- /dev/null
+++ b/games-rpg/snoot-game/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Seth Price</name>
+		<email>sprice623@aol.com</email>
+	</maintainer>
+	<longdescription lang="en">
+		You play as Anon, a lonely, faceless, nobody, reject who finds himself
+		in the dinosaur themed acid trip of a school named Volcano High.
+		Here Anon meets the qt ptero known as Fang and their clown-vomit colored
+		posse of reject friends and other associated thorns-in-the-side.
+	</longdescription>
+	<upstream>
+		<bugs-to>https://git.snootgame.xyz/Cavemanon/SnootGame/issues</bugs-to>
+		<changelog>https://snootgame.xyz/Patch7-changelog.html</changelog>
+	</upstream>
+</pkgmetadata>

diff --git a/games-rpg/snoot-game/snoot-game-1.7.ebuild b/games-rpg/snoot-game/snoot-game-1.7.ebuild
new file mode 100644
index 000000000..ec4305f70
--- /dev/null
+++ b/games-rpg/snoot-game/snoot-game-1.7.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+inherit python-single-r1 desktop wrapper
+
+DESCRIPTION="Visual novel parody of Goodbye Volcano High"
+MY_PV="Update7_Fangsgiving"
+HOMEPAGE="https://snootgame.xyz/"
+SRC_URI="https://secureupdates.snootgame.xyz/SnootGame-${MY_PV}-linux.tar.bz2"
+
+LICENSE="AGPL-3 CC-BY-SA-4.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}"
+BDEPEND="${RDEPEND}"
+
+S="${WORKDIR}/SnootGame-${MY_PV}-linux/"
+
+src_install() {
+	local dir=/opt/${PN}
+	insinto "${dir}"
+
+	doins -r "${S}/."
+	dodoc README.md
+
+	fperms +x ${dir}/lib/linux-i686/SnootGame
+	fperms +x ${dir}/lib/linux-x86_64/SnootGame
+	fperms +x ${dir}/SnootGame.sh
+
+	make_wrapper ${PN} "./SnootGame.sh" "${dir}" "${dir}"
+	make_desktop_entry ${PN} "Snoot Game"
+
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: games-rpg/snoot-game/
@ 2023-02-08 12:09 Florian Schmaus
  0 siblings, 0 replies; 7+ messages in thread
From: Florian Schmaus @ 2023-02-08 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     2ce43c8574dafe313048bd6e2c5c82712bc7bbe6
Author:     Seth Price <sprice623 <AT> aol <DOT> com>
AuthorDate: Tue Feb  7 16:57:22 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Feb  7 16:57:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2ce43c85

games-rpg/snoot-game: add 1.8, drop 1.7-r1

Signed-off-by: Seth Price <sprice623 <AT> aol.com>

 games-rpg/snoot-game/Manifest                                         | 2 +-
 .../snoot-game/{snoot-game-1.7-r1.ebuild => snoot-game-1.8.ebuild}    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-rpg/snoot-game/Manifest b/games-rpg/snoot-game/Manifest
index 54a282092..2338f45a7 100644
--- a/games-rpg/snoot-game/Manifest
+++ b/games-rpg/snoot-game/Manifest
@@ -1 +1 @@
-DIST SnootGame-Update7_Fangsgiving-linux.tar.bz2 357494376 BLAKE2B 13d1603d2b8d2936b76b1289dddc507617bb574bab938ae6b00ca1ce0d9ba3fd32f87fc649eedbb4fe1c3c73e81632faa16bb02aae5175ae3c3a32843236aa0f SHA512 58f70e59fa906bcfbfe52a13d4db22bad589f1ad55e8ebc11db420fee3be208bcd67e38caf6b58092a9e0d85e8d37a6aa2359f879091b8679d8523fc2b31e2bf
+DIST SnootGame-Patch8_NewYears-linux.tar.bz2 213046487 BLAKE2B c7a7b1f85eb46d7f5a67b7cd0f0a889cab33e44ade78a7e26b99d96243caa9b9cf3ea5ad1a8a7192ac7d3af65135bc49238391f40e82f8150ea8fac5a96617c9 SHA512 fa3dd74e3bf938a5ce59676f9d8332946d275d59115edd21f2c3df6d00f218542c4c9969ffa91f6a1200bdc715dc9d688ee4cfe7278bdbc9a236a2ac64d52a5f

diff --git a/games-rpg/snoot-game/snoot-game-1.7-r1.ebuild b/games-rpg/snoot-game/snoot-game-1.8.ebuild
similarity index 88%
rename from games-rpg/snoot-game/snoot-game-1.7-r1.ebuild
rename to games-rpg/snoot-game/snoot-game-1.8.ebuild
index f8441efe0..8813956fb 100644
--- a/games-rpg/snoot-game/snoot-game-1.7-r1.ebuild
+++ b/games-rpg/snoot-game/snoot-game-1.8.ebuild
@@ -7,9 +7,9 @@ PYTHON_COMPAT=( python3_{8,9,10,11} )
 inherit python-single-r1 desktop wrapper
 
 DESCRIPTION="Visual novel parody of Goodbye Volcano High"
-MY_PV="Update7_Fangsgiving"
+MY_PV="Patch8_NewYears"
 HOMEPAGE="https://snootgame.xyz/"
-SRC_URI="https://secureupdates.snootgame.xyz/SnootGame-${MY_PV}-linux.tar.bz2"
+SRC_URI="https://snootgame.xyz/downloads/game/SnootGame-${MY_PV}-linux.tar.bz2"
 
 LICENSE="AGPL-3 CC-BY-SA-4.0"
 SLOT="0"


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

* [gentoo-commits] repo/proj/guru:master commit in: games-rpg/snoot-game/
@ 2023-02-13 11:27 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2023-02-13 11:27 UTC (permalink / raw
  To: gentoo-commits

commit:     46ba88ec9e98210612916a530d777ecb1b9cb97b
Author:     Seth Price <sprice623 <AT> aol <DOT> com>
AuthorDate: Sat Feb 11 03:19:53 2023 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Feb 11 03:19:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46ba88ec

games-rpg/snoot-game: update ebuild

I thought `ebuild ./foo test` meant everything was fine,
but I was mistaken.  This commit contains everything
I should’ve done from the get-go.

Closes: https://bugs.gentoo.org/893748
Signed-off-by: Seth Price <sprice623 <AT> aol.com>

 games-rpg/snoot-game/snoot-game-1.8-r1.ebuild | 40 +++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild b/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild
new file mode 100644
index 000000000..f8b896dd4
--- /dev/null
+++ b/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9,10,11} )
+inherit python-single-r1 desktop wrapper
+
+DESCRIPTION="Visual novel parody of Goodbye Volcano High"
+MY_PV="Patch8_NewYears"
+HOMEPAGE="https://snootgame.xyz/"
+SRC_URI="https://snootgame.xyz/downloads/game/SnootGame-${MY_PV}-linux.tar.bz2"
+
+LICENSE="AGPL-3 CC-BY-SA-4.0"
+SLOT="0"
+KEYWORDS="~amd64"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS} virtual/opengl"
+BDEPEND="${RDEPEND}"
+
+S="${WORKDIR}/SnootGame-${MY_PV}-linux/"
+
+QA_PREBUILT="*"
+RESTRICT+=" strip"
+
+src_install() {
+	local dir=/opt/${PN}
+	insinto "${dir}"
+
+	doins -r "${S}/."
+	dodoc README.md
+
+	fperms +x ${dir}/lib/py3-linux-x86_64/SnootGame
+	fperms +x ${dir}/SnootGame.sh
+
+	make_wrapper ${PN} "./SnootGame.sh" "${dir}" "${dir}"
+	make_desktop_entry ${PN} "Snoot Game"
+
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: games-rpg/snoot-game/
@ 2024-04-30 12:22 David Roman
  0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-04-30 12:22 UTC (permalink / raw
  To: gentoo-commits

commit:     7ed5950744bd66d465bfc0b0c2fc20a6f24a8251
Author:     Seth M. Price <sprice623 <AT> aol <DOT> com>
AuthorDate: Mon Apr 29 22:59:00 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Apr 29 22:59:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7ed59507

games-rpg/snoot-game: add 1.9.1, drop 1.8-r1

Signed-off-by: Seth M. Price <sprice623 <AT> aol.com>

 games-rpg/snoot-game/Manifest                      |  2 +-
 games-rpg/snoot-game/metadata.xml                  |  3 +-
 games-rpg/snoot-game/snoot-game-1.8.ebuild         | 41 ----------------------
 ...-game-1.8-r1.ebuild => snoot-game-1.9.1.ebuild} |  7 ++--
 4 files changed, 5 insertions(+), 48 deletions(-)

diff --git a/games-rpg/snoot-game/Manifest b/games-rpg/snoot-game/Manifest
index 2338f45a76..b487043b60 100644
--- a/games-rpg/snoot-game/Manifest
+++ b/games-rpg/snoot-game/Manifest
@@ -1 +1 @@
-DIST SnootGame-Patch8_NewYears-linux.tar.bz2 213046487 BLAKE2B c7a7b1f85eb46d7f5a67b7cd0f0a889cab33e44ade78a7e26b99d96243caa9b9cf3ea5ad1a8a7192ac7d3af65135bc49238391f40e82f8150ea8fac5a96617c9 SHA512 fa3dd74e3bf938a5ce59676f9d8332946d275d59115edd21f2c3df6d00f218542c4c9969ffa91f6a1200bdc715dc9d688ee4cfe7278bdbc9a236a2ac64d52a5f
+DIST SnootGame-Patch9.1-RoastedLaika-linux.tar.bz2 442451820 BLAKE2B 20b4ac0f03e252af0c1426f2397342c557fb1bc7536cc2f0e58bc1e6e77f7410c82456f6f976b6e975e444b7e57e97d473b91aa26f017eaf92e40784ee610b57 SHA512 25de9815d8417d306fc80f7162b46b302c7251ff1664b25f6b1ddda2619547860c96436618fb440e81467c93d440fd98d0847f933f1b05e77183e68af8d0710e

diff --git a/games-rpg/snoot-game/metadata.xml b/games-rpg/snoot-game/metadata.xml
index 6654dbec90..b662ab079b 100644
--- a/games-rpg/snoot-game/metadata.xml
+++ b/games-rpg/snoot-game/metadata.xml
@@ -12,7 +12,6 @@
 		posse of reject friends and other associated thorns-in-the-side.
 	</longdescription>
 	<upstream>
-		<bugs-to>https://git.snootgame.xyz/Cavemanon/SnootGame/issues</bugs-to>
-		<changelog>https://snootgame.xyz/Patch7-changelog.html</changelog>
+		<bugs-to>https://git.cavemanon.xyz/Cavemanon/SnootGame/issues</bugs-to>
 	</upstream>
 </pkgmetadata>

diff --git a/games-rpg/snoot-game/snoot-game-1.8.ebuild b/games-rpg/snoot-game/snoot-game-1.8.ebuild
deleted file mode 100644
index 193d9858fa..0000000000
--- a/games-rpg/snoot-game/snoot-game-1.8.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10,11} )
-inherit python-single-r1 desktop wrapper
-
-DESCRIPTION="Visual novel parody of Goodbye Volcano High"
-MY_PV="Patch8_NewYears"
-HOMEPAGE="https://snootgame.xyz/"
-SRC_URI="https://snootgame.xyz/downloads/game/SnootGame-${MY_PV}-linux.tar.bz2"
-
-LICENSE="AGPL-3 CC-BY-SA-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS} virtual/opengl"
-BDEPEND="${RDEPEND}"
-
-S="${WORKDIR}/SnootGame-${MY_PV}-linux/"
-
-QA_PREBUILT="*"
-RESTRICT+=" strip"
-
-src_install() {
-	local dir=/opt/${PN}
-	insinto "${dir}"
-
-	doins -r "${S}/."
-	dodoc README.md
-
-	fperms +x ${dir}/lib/linux-i686/SnootGame
-	fperms +x ${dir}/lib/linux-x86_64/SnootGame
-	fperms +x ${dir}/SnootGame.sh
-
-	make_wrapper ${PN} "./SnootGame.sh" "${dir}" "${dir}"
-	make_desktop_entry ${PN} "Snoot Game"
-
-}

diff --git a/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild b/games-rpg/snoot-game/snoot-game-1.9.1.ebuild
similarity index 84%
rename from games-rpg/snoot-game/snoot-game-1.8-r1.ebuild
rename to games-rpg/snoot-game/snoot-game-1.9.1.ebuild
index f9aefbd652..92b4115187 100644
--- a/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild
+++ b/games-rpg/snoot-game/snoot-game-1.9.1.ebuild
@@ -3,13 +3,13 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10,11} )
+PYTHON_COMPAT=( python3_{10,11,12} )
 inherit python-single-r1 desktop wrapper
 
 DESCRIPTION="Visual novel parody of Goodbye Volcano High"
-MY_PV="Patch8_NewYears"
+MY_PV="Patch9.1-RoastedLaika"
 HOMEPAGE="https://snootgame.xyz/"
-SRC_URI="https://snootgame.xyz/downloads/game/SnootGame-${MY_PV}-linux.tar.bz2"
+SRC_URI="https://snootgame.xyz/bin/SnootGame-${MY_PV}-linux.tar.bz2"
 
 LICENSE="AGPL-3 CC-BY-SA-4.0"
 SLOT="0"
@@ -36,5 +36,4 @@ src_install() {
 
 	make_wrapper ${PN} "./SnootGame.sh" "${dir}" "${dir}"
 	make_desktop_entry ${PN} "Snoot Game"
-
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: games-rpg/snoot-game/
@ 2024-05-13 22:38 Julien Roy
  0 siblings, 0 replies; 7+ messages in thread
From: Julien Roy @ 2024-05-13 22:38 UTC (permalink / raw
  To: gentoo-commits

commit:     9d1e72d14bae00a7eb81988d2ad8a5bb41ce20fb
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon May 13 22:20:32 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon May 13 22:20:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9d1e72d1

games-rpg/snoot-game: update Manifest

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 games-rpg/snoot-game/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-rpg/snoot-game/Manifest b/games-rpg/snoot-game/Manifest
index b487043b60..2338f45a76 100644
--- a/games-rpg/snoot-game/Manifest
+++ b/games-rpg/snoot-game/Manifest
@@ -1 +1 @@
-DIST SnootGame-Patch9.1-RoastedLaika-linux.tar.bz2 442451820 BLAKE2B 20b4ac0f03e252af0c1426f2397342c557fb1bc7536cc2f0e58bc1e6e77f7410c82456f6f976b6e975e444b7e57e97d473b91aa26f017eaf92e40784ee610b57 SHA512 25de9815d8417d306fc80f7162b46b302c7251ff1664b25f6b1ddda2619547860c96436618fb440e81467c93d440fd98d0847f933f1b05e77183e68af8d0710e
+DIST SnootGame-Patch8_NewYears-linux.tar.bz2 213046487 BLAKE2B c7a7b1f85eb46d7f5a67b7cd0f0a889cab33e44ade78a7e26b99d96243caa9b9cf3ea5ad1a8a7192ac7d3af65135bc49238391f40e82f8150ea8fac5a96617c9 SHA512 fa3dd74e3bf938a5ce59676f9d8332946d275d59115edd21f2c3df6d00f218542c4c9969ffa91f6a1200bdc715dc9d688ee4cfe7278bdbc9a236a2ac64d52a5f


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

* [gentoo-commits] repo/proj/guru:master commit in: games-rpg/snoot-game/
@ 2024-11-06 11:20 David Roman
  0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-11-06 11:20 UTC (permalink / raw
  To: gentoo-commits

commit:     0b04db13414382c1851d304f2abaa05610bc9f3b
Author:     Seth M. Price <sprice623 <AT> aol <DOT> com>
AuthorDate: Tue Nov  5 01:56:17 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Nov  5 01:56:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0b04db13

games-rpg/snoot-game: add 1.11.1, drop 1.10.0

Signed-off-by: Seth M. Price <sprice623 <AT> aol.com>

 games-rpg/snoot-game/Manifest                                          | 2 +-
 .../snoot-game/{snoot-game-1.10.0.ebuild => snoot-game-1.11.1.ebuild}  | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/games-rpg/snoot-game/Manifest b/games-rpg/snoot-game/Manifest
index d0e0691cf..5cbcf31ca 100644
--- a/games-rpg/snoot-game/Manifest
+++ b/games-rpg/snoot-game/Manifest
@@ -1 +1 @@
-DIST SnootGame-Patch10-KurwaBobr-linux.tar.bz2 447762588 BLAKE2B e09caf75894573fb71d78a1e559c948ac3f185761c85e04493bf34db0c3373563480fc1829f35b9612757b680c6bfcf3b0a631e822a1b30523b912af9d1336f8 SHA512 5a9e9f871b2296be3e3f3066e79447ace96881ba4e0bbb8adca1bf4dd676049f3e946f4839d5e5249074a34203e0ffdd5f383829d8d78f97f355a9b86cc0f13e
+DIST SnootGame-Patch11.1-MoldyBuenoAlDante-linux.tar.bz2 254874335 BLAKE2B 8e75a511b8838105024e0c41cb16f39ce3ffedf291682396b160845145fb01dca8e099f99aa1a383405e8691258db25240f91f1b714275ad392cc62e9b4a153d SHA512 dd1fc59ee3ef7168ebe0b9ccd6ad3d24f05d7b8000e619238f6134724070773f61d8f3d3267b873d970434f5ddf3de0187263cec2dcf7841eb5aa7aedde7c643

diff --git a/games-rpg/snoot-game/snoot-game-1.10.0.ebuild b/games-rpg/snoot-game/snoot-game-1.11.1.ebuild
similarity index 95%
rename from games-rpg/snoot-game/snoot-game-1.10.0.ebuild
rename to games-rpg/snoot-game/snoot-game-1.11.1.ebuild
index 99c2c5fab..f75c1fa01 100644
--- a/games-rpg/snoot-game/snoot-game-1.10.0.ebuild
+++ b/games-rpg/snoot-game/snoot-game-1.11.1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 PYTHON_COMPAT=( python3_{10,11,12} )
 inherit python-single-r1 desktop wrapper
 
-MY_PV="Patch10-KurwaBobr"
+MY_PV="Patch11.1-MoldyBuenoAlDante"
 
 DESCRIPTION="Visual novel parody of Goodbye Volcano High"
 HOMEPAGE="https://snootgame.xyz/en"
@@ -31,7 +31,6 @@ src_install() {
 	insinto "${dir}"
 
 	doins -r "${S}/."
-	dodoc README.md
 
 	fperms +x ${dir}/lib/py3-linux-x86_64/SnootGame
 	fperms +x ${dir}/SnootGame.sh


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

* [gentoo-commits] repo/proj/guru:master commit in: games-rpg/snoot-game/
@ 2024-11-21 21:24 Julien Roy
  0 siblings, 0 replies; 7+ messages in thread
From: Julien Roy @ 2024-11-21 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     a2c6c6fe94bc135c5a9ac1ab2aa620e6ac4b28cc
Author:     Seth M. Price <sprice623 <AT> aol <DOT> com>
AuthorDate: Thu Nov 21 21:16:22 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Thu Nov 21 21:17:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a2c6c6fe

games-rpg/snoot-game: remove unused libs

Closes: https://bugs.gentoo.org/942973
Signed-off-by: Seth M. Price <sprice623 <AT> aol.com>

 ...e-1.11.1.ebuild => snoot-game-1.11.1-r1.ebuild} | 28 +++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/games-rpg/snoot-game/snoot-game-1.11.1.ebuild b/games-rpg/snoot-game/snoot-game-1.11.1-r1.ebuild
similarity index 61%
rename from games-rpg/snoot-game/snoot-game-1.11.1.ebuild
rename to games-rpg/snoot-game/snoot-game-1.11.1-r1.ebuild
index f75c1fa01..963935720 100644
--- a/games-rpg/snoot-game/snoot-game-1.11.1.ebuild
+++ b/games-rpg/snoot-game/snoot-game-1.11.1-r1.ebuild
@@ -26,13 +26,39 @@ BDEPEND="${RDEPEND}"
 
 QA_PREBUILT="*"
 
+src_prepare() {
+	default
+
+	MY_ARCH="$(uname -m)"
+
+	# Remove executables for other architectures
+	# (I tried using arrays but it was too much pain)
+	case "$MY_ARCH" in
+		aarch64)
+			rm -r "lib/py3-linux-armv7l"
+			rm -r "lib/py3-linux-x86_64"
+			;;
+		armv7l)
+			rm -r "lib/py3-linux-aarch64"
+			rm -r "lib/py3-linux-x86_64"
+			;;
+		x86_64)
+			rm -r "lib/py3-linux-aarch64"
+			rm -r "lib/py3-linux-armv7l"
+			;;
+		*)
+			die "unsupported architecture: $MY_ARCH"
+			;;
+	esac
+}
+
 src_install() {
 	local dir=/opt/${PN}
 	insinto "${dir}"
 
 	doins -r "${S}/."
 
-	fperms +x ${dir}/lib/py3-linux-x86_64/SnootGame
+	fperms +x ${dir}/lib/py3-linux-${MY_ARCH}/SnootGame
 	fperms +x ${dir}/SnootGame.sh
 
 	make_wrapper ${PN} "./SnootGame.sh" "${dir}" "${dir}"


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

end of thread, other threads:[~2024-11-21 21:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-01  3:59 [gentoo-commits] repo/proj/guru:master commit in: games-rpg/snoot-game/ Haelwenn Monnier
  -- strict thread matches above, loose matches on Subject: below --
2023-02-08 12:09 Florian Schmaus
2023-02-13 11:27 Andrew Ammerlaan
2024-04-30 12:22 David Roman
2024-05-13 22:38 Julien Roy
2024-11-06 11:20 David Roman
2024-11-21 21:24 Julien Roy

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