public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-simulation/sky-rogue/
@ 2020-08-29 19:49 James Le Cuirot
  0 siblings, 0 replies; 3+ messages in thread
From: James Le Cuirot @ 2020-08-29 19:49 UTC (permalink / raw
  To: gentoo-commits

commit:     fd6284c9283c2635a06bcbb9b9e32cd424b78fa3
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 29 11:49:32 2020 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 29 19:49:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd6284c9

games-simulation/sky-rogue: New package

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 games-simulation/sky-rogue/Manifest             |  1 +
 games-simulation/sky-rogue/metadata.xml         |  8 ++++
 games-simulation/sky-rogue/sky-rogue-1.3.ebuild | 51 +++++++++++++++++++++++++
 3 files changed, 60 insertions(+)

diff --git a/games-simulation/sky-rogue/Manifest b/games-simulation/sky-rogue/Manifest
new file mode 100644
index 00000000000..c1dbc83c1d2
--- /dev/null
+++ b/games-simulation/sky-rogue/Manifest
@@ -0,0 +1 @@
+DIST sky-rogue-linux.zip 153094990 BLAKE2B 2129f624a7b56ec0ddbf6869a75f94468d4efe9efade4d47549b2ae1eebfb4b6e4939190d97acd820c2f46a1a9b2d52614e5a1c7ace717071d482db21b1bd1e1 SHA512 f25dfed7d78355fdbd5a643ec11f948020256fce38e80f9bb8084b875203b26490af6b0164684c187493697a132c7fdc9b40af6b793fd50c9a176285c508d8df

diff --git a/games-simulation/sky-rogue/metadata.xml b/games-simulation/sky-rogue/metadata.xml
new file mode 100644
index 00000000000..26079e608be
--- /dev/null
+++ b/games-simulation/sky-rogue/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>games@gentoo.org</email>
+		<name>Gentoo Games Project</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/games-simulation/sky-rogue/sky-rogue-1.3.ebuild b/games-simulation/sky-rogue/sky-rogue-1.3.ebuild
new file mode 100644
index 00000000000..d5ad8217583
--- /dev/null
+++ b/games-simulation/sky-rogue/sky-rogue-1.3.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils desktop xdg
+
+MY_PN="${PN//-}"
+DESCRIPTION="A fwooshy rogue-lite action flight simulator"
+HOMEPAGE="https://skyroguegame.com/"
+SRC_URI="${PN}-linux.zip"
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+RESTRICT="bindist fetch splitdebug"
+
+RDEPEND="
+	sys-libs/zlib
+	virtual/opengl
+"
+
+BDEPEND="
+	app-arch/unzip
+"
+
+S="${WORKDIR}"
+
+DIR="/opt/${PN}"
+QA_PREBUILT="${DIR#/}/*"
+
+pkg_nofetch() {
+	einfo "Please buy and download ${SRC_URI} from:"
+	einfo "  https://fractal-phase.itch.io/${PN}"
+	einfo "and move it to your distfiles directory."
+}
+
+src_install() {
+	exeinto "${DIR}"
+	newexe ${MY_PN}.$(usex amd64 x86_64 x86) ${MY_PN}
+	make_wrapper ${PN} "${DIR}"/${MY_PN}
+
+	insinto "${DIR}"
+	doins -r ${MY_PN}_Data/
+	rm -r "${ED}/${DIR}"/${MY_PN}_Data/*/$(usex amd64 x86 x86_64) || die
+
+	# Some Unity games have a GUI launcher but this one doesn't use it.
+	rm "${ED}/${DIR}"/${MY_PN}_Data/Plugins/*/ScreenSelector.so || die
+
+	newicon -s 128 ${MY_PN}_Data/Resources/UnityPlayer.png ${PN}.png
+	make_desktop_entry ${PN} "Sky Rogue"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-simulation/sky-rogue/
@ 2021-08-23  4:06 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2021-08-23  4:06 UTC (permalink / raw
  To: gentoo-commits

commit:     a78ad3c569f5ba2317dbc9cf7f33076b92dee104
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 22 02:29:41 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 23 04:06:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a78ad3c5

games-simulation/sky-rogue: tidy ebuild

Signed-off-by: Sam James <sam <AT> gentoo.org>

 games-simulation/sky-rogue/sky-rogue-1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-simulation/sky-rogue/sky-rogue-1.3.ebuild b/games-simulation/sky-rogue/sky-rogue-1.3.ebuild
index 8f7e9f217ce..6c6f0c4dc91 100644
--- a/games-simulation/sky-rogue/sky-rogue-1.3.ebuild
+++ b/games-simulation/sky-rogue/sky-rogue-1.3.ebuild
@@ -9,6 +9,8 @@ MY_PN="${PN//-}"
 DESCRIPTION="A fwooshy rogue-lite action flight simulator"
 HOMEPAGE="https://skyroguegame.com/"
 SRC_URI="${PN}-linux.zip"
+S="${WORKDIR}"
+
 LICENSE="all-rights-reserved"
 SLOT="0"
 KEYWORDS="-* ~amd64 ~x86"
@@ -23,8 +25,6 @@ BDEPEND="
 	app-arch/unzip
 "
 
-S="${WORKDIR}"
-
 DIR="/opt/${PN}"
 QA_PREBUILT="${DIR#/}/*"
 


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

* [gentoo-commits] repo/gentoo:master commit in: games-simulation/sky-rogue/
@ 2022-03-16 21:40 James Le Cuirot
  0 siblings, 0 replies; 3+ messages in thread
From: James Le Cuirot @ 2022-03-16 21:40 UTC (permalink / raw
  To: gentoo-commits

commit:     46a7bae7dec34c9466a38be239d610393655f22b
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 21:39:46 2022 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 21:39:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46a7bae7

games-simulation/sky-rogue: Bump to 1.3.3, drop old 1.3, EAPI 8

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 games-simulation/sky-rogue/Manifest                                   | 2 +-
 .../sky-rogue/{sky-rogue-1.3.ebuild => sky-rogue-1.3.3.ebuild}        | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-simulation/sky-rogue/Manifest b/games-simulation/sky-rogue/Manifest
index c1dbc83c1d26..e95da2810216 100644
--- a/games-simulation/sky-rogue/Manifest
+++ b/games-simulation/sky-rogue/Manifest
@@ -1 +1 @@
-DIST sky-rogue-linux.zip 153094990 BLAKE2B 2129f624a7b56ec0ddbf6869a75f94468d4efe9efade4d47549b2ae1eebfb4b6e4939190d97acd820c2f46a1a9b2d52614e5a1c7ace717071d482db21b1bd1e1 SHA512 f25dfed7d78355fdbd5a643ec11f948020256fce38e80f9bb8084b875203b26490af6b0164684c187493697a132c7fdc9b40af6b793fd50c9a176285c508d8df
+DIST sky-rogue-linux.zip 155725341 BLAKE2B e5c55aac026f57ce97711be21bdff4d33499f54569f4be6a4705488cc95afd7f5c94f6640b95266aa5da6229fcce0387a40aadd577c5a47f6639d92fab0b8d1a SHA512 df0809675e85884a3d45f3ac2afbe2c475a0662f96e917574dd097ccd1fcbfd8a4b84f1b66b4d0c7ad52c73ccb44e686ee3fd6505fb7ea6ea2be42dfcb0d9b58

diff --git a/games-simulation/sky-rogue/sky-rogue-1.3.ebuild b/games-simulation/sky-rogue/sky-rogue-1.3.3.ebuild
similarity index 96%
rename from games-simulation/sky-rogue/sky-rogue-1.3.ebuild
rename to games-simulation/sky-rogue/sky-rogue-1.3.3.ebuild
index 6c6f0c4dc910..49f186785ecd 100644
--- a/games-simulation/sky-rogue/sky-rogue-1.3.ebuild
+++ b/games-simulation/sky-rogue/sky-rogue-1.3.3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit desktop wrapper xdg
 


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

end of thread, other threads:[~2022-03-16 21:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-23  4:06 [gentoo-commits] repo/gentoo:master commit in: games-simulation/sky-rogue/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2022-03-16 21:40 James Le Cuirot
2020-08-29 19:49 James Le Cuirot

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