* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2018-04-24 19:26 Pacho Ramos
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos @ 2018-04-24 19:26 UTC (permalink / raw
To: gentoo-commits
commit: c526a7fabac93bef392a9eb8f5b5ebad678e3484
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 24 18:05:58 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Apr 24 19:26:06 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c526a7fa
games-arcade/solarwolf: Stop using games.eclass, fix doman call (#619948)
Package-Manager: Portage-2.3.31, Repoman-2.3.9
games-arcade/solarwolf/solarwolf-1.5-r1.ebuild | 36 ++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild
new file mode 100644
index 00000000000..dc3d846b8b7
--- /dev/null
+++ b/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Action/arcade recreation of SolarFox"
+HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/"
+SRC_URI="http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~x86"
+IUSE=""
+
+RDEPEND="
+ >=dev-python/pygame-1.5.6
+ media-libs/sdl-mixer[mod,vorbis]
+"
+DEPEND=""
+
+src_prepare() {
+ default
+ find . -name .xvpics -print0 | xargs -0 rm -fr
+ gunzip dist/${PN}.6.gz || die #619948
+}
+
+src_install() {
+ insinto /usr/share/${PN}
+ doins -r code data *py
+ make_wrapper ${PN} "python2 ./solarwolf.py" /usr/share/${PN}
+ doicon dist/${PN}.png
+ make_desktop_entry ${PN} SolarWolf
+ einstalldocs
+ doman dist/${PN}.6
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2018-04-24 19:26 Pacho Ramos
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos @ 2018-04-24 19:26 UTC (permalink / raw
To: gentoo-commits
commit: 8b6aaf3967854aa7510e9757bb121711f117cb6a
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 24 18:06:19 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Apr 24 19:26:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b6aaf39
games-arcade/solarwolf: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
games-arcade/solarwolf/solarwolf-1.5.ebuild | 32 -----------------------------
1 file changed, 32 deletions(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5.ebuild b/games-arcade/solarwolf/solarwolf-1.5.ebuild
deleted file mode 100644
index b96deec76ce..00000000000
--- a/games-arcade/solarwolf/solarwolf-1.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="action/arcade recreation of SolarFox"
-HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/"
-SRC_URI="http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~x86"
-IUSE=""
-
-RDEPEND=">=dev-python/pygame-1.5.6
- media-libs/sdl-mixer[mod,vorbis]"
-
-src_prepare() {
- find . -name .xvpics -print0 | xargs -0 rm -fr
-}
-
-src_install() {
- insinto "$(games_get_libdir)"/${PN}
- doins -r code data *py
- games_make_wrapper ${PN} "python2 ./solarwolf.py" "$(games_get_libdir)"/${PN}
- doicon dist/${PN}.png
- make_desktop_entry ${PN} SolarWolf
- dodoc readme.txt
- doman dist/${PN}.6.gz
- prepgamesdirs
-}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2018-08-27 21:23 James Le Cuirot
0 siblings, 0 replies; 15+ messages in thread
From: James Le Cuirot @ 2018-08-27 21:23 UTC (permalink / raw
To: gentoo-commits
commit: a11257d4e60457a09b8631986477004c77ab2732
Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Fri Aug 3 01:25:42 2018 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Aug 27 21:23:02 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a11257d4
games-arcade/solarwolf: add explicit desktop inheritance
eutils may not always inherit desktop.
Package-Manager: Portage-2.3.44, Repoman-2.3.10
games-arcade/solarwolf/solarwolf-1.5-r1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild
index dc3d846b8b7..e47801d87ca 100644
--- a/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild
@@ -2,7 +2,8 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils
+
+inherit desktop eutils
DESCRIPTION="Action/arcade recreation of SolarFox"
HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2019-12-25 17:08 Pacho Ramos
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos @ 2019-12-25 17:08 UTC (permalink / raw
To: gentoo-commits
commit: 72041a9a261251486fa6faa9b01c69109f41eb66
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 25 17:07:54 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Dec 25 17:08:04 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72041a9a
games-arcade/solarwolf: Drop old
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5-r1.ebuild | 37 --------------------------
1 file changed, 37 deletions(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild
deleted file mode 100644
index e47801d87ca..00000000000
--- a/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop eutils
-
-DESCRIPTION="Action/arcade recreation of SolarFox"
-HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/"
-SRC_URI="http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~x86"
-IUSE=""
-
-RDEPEND="
- >=dev-python/pygame-1.5.6
- media-libs/sdl-mixer[mod,vorbis]
-"
-DEPEND=""
-
-src_prepare() {
- default
- find . -name .xvpics -print0 | xargs -0 rm -fr
- gunzip dist/${PN}.6.gz || die #619948
-}
-
-src_install() {
- insinto /usr/share/${PN}
- doins -r code data *py
- make_wrapper ${PN} "python2 ./solarwolf.py" /usr/share/${PN}
- doicon dist/${PN}.png
- make_desktop_entry ${PN} SolarWolf
- einstalldocs
- doman dist/${PN}.6
-}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2019-12-25 17:08 Pacho Ramos
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos @ 2019-12-25 17:08 UTC (permalink / raw
To: gentoo-commits
commit: b36fc70d5b59c2ba6bedecc20629c3d6d1a86253
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 25 17:07:39 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Dec 25 17:08:04 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b36fc70d
games-arcade/solarwolf: Fix PYTHON_USEDEP
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
index cf1968f2691..8f291786f9c 100644
--- a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
@@ -21,7 +21,7 @@ IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
- >=dev-python/pygame-1.5.6
+ >=dev-python/pygame-1.5.6[${PYTHON_USEDEP}]
media-libs/sdl-mixer[mod,vorbis]
"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2019-12-25 17:08 Pacho Ramos
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos @ 2019-12-25 17:08 UTC (permalink / raw
To: gentoo-commits
commit: 7a550f9142402d46d9a46b0a298d0891b267aff3
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 25 17:06:55 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Dec 25 17:08:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a550f91
games-arcade/solarwolf: Debian fixes, python3 support
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
games-arcade/solarwolf/Manifest | 1 +
games-arcade/solarwolf/solarwolf-1.5-r2.ebuild | 47 ++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/games-arcade/solarwolf/Manifest b/games-arcade/solarwolf/Manifest
index 20ce6d8d7d2..dd673590cfd 100644
--- a/games-arcade/solarwolf/Manifest
+++ b/games-arcade/solarwolf/Manifest
@@ -1 +1,2 @@
DIST solarwolf-1.5.tar.gz 2045888 BLAKE2B 66498b1d9b202b45ff87ea9d4b1ab14dcb6e343e8b0761576cfbf1c84ee9575cbf665e4b94552eb764f5e4fbaa02739f62c9eb20217085a6d18483d3ca7eb587 SHA512 44d84976f7797e3b859f1e5e50f9f964e5c6d6d4437ad25cf04720035e8697cc0c86490fdbbf8d923320a5c15c6e3afd1fbcfb9f17e7e31ce6f7264004e991f2
+DIST solarwolf_1.5+dfsg1-1.debian.tar.xz 8392 BLAKE2B 099543a22e93775756a90867dfeb7926ab9131b8367fa356a6d74efb682d17c5426f5f5372079052967a752a0c75e1d2db36b2ce0b43d00010c65468da968817 SHA512 b4d8ad1a0e83e4cf97185b075a53b7f66fbc20f865e490f714295f678fc675a111d2318e7c0b543028b5d948677140070acb9c04b07fdab1165e37606f34d87a
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
new file mode 100644
index 00000000000..cf1968f2691
--- /dev/null
+++ b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit desktop eutils python-r1
+
+DESCRIPTION="Action/arcade recreation of SolarFox"
+HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/"
+SRC_URI="
+ http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz
+ mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}+dfsg1-1.debian.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~x86"
+
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ >=dev-python/pygame-1.5.6
+ media-libs/sdl-mixer[mod,vorbis]
+"
+DEPEND="${RDEPEND}"
+BDEPEND=""
+
+src_prepare() {
+ default
+
+ eapply -p1 "${WORKDIR}"/debian/patches/*.patch
+
+ find . -name .xvpics -print0 | xargs -0 rm -fr
+ gunzip dist/${PN}.6.gz || die #619948
+}
+
+src_install() {
+ insinto /usr/share/${PN}
+ doins -r code data *py
+ make_wrapper ${PN} "python3 ./solarwolf.py" /usr/share/${PN}
+ newicon data/ship-big.png ${PN}.png
+ make_desktop_entry ${PN} SolarWolf
+ einstalldocs
+ doman dist/${PN}.6
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2019-12-26 15:38 David Seifert
0 siblings, 0 replies; 15+ messages in thread
From: David Seifert @ 2019-12-26 15:38 UTC (permalink / raw
To: gentoo-commits
commit: f798b1ff41d3b070cb14673e37664bdcd3c332a1
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 26 15:38:33 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Dec 26 15:38:33 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f798b1ff
games-arcade/solarwolf: Remove py3.8 for now
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
index 8f291786f9c..58715f576cc 100644
--- a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7} )
inherit desktop eutils python-r1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2019-12-27 11:05 Pacho Ramos
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos @ 2019-12-27 11:05 UTC (permalink / raw
To: gentoo-commits
commit: 560a7e898cd402d4e1c732c9960831cb0b6751e6
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 27 11:01:00 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Dec 27 11:01:00 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=560a7e89
games-arcade/solarwolf: Add py3.8 (with new pygame py3-only)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
index 58715f576cc..8f291786f9c 100644
--- a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
inherit desktop eutils python-r1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2021-04-04 7:27 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2021-04-04 7:27 UTC (permalink / raw
To: gentoo-commits
commit: 6bf7256a530204e8891024da918a973841f92288
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 4 07:24:06 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 4 07:26:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bf7256a
games-arcade/solarwolf: eutils--, wrapper++
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5-r2.ebuild | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
index 2911c2d187f..4d060a7fedb 100644
--- a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
-inherit desktop eutils python-r1
+PYTHON_COMPAT=( python3_{7,8} )
+inherit desktop python-r1 wrapper
DESCRIPTION="Action/arcade recreation of SolarFox"
HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/"
@@ -17,31 +17,34 @@ LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~x86"
-IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RDEPEND="${PYTHON_DEPS}
+RDEPEND="
+ ${PYTHON_DEPS}
>=dev-python/pygame-1.5.6[${PYTHON_USEDEP}]
media-libs/sdl-mixer[mod,vorbis]
"
DEPEND="${RDEPEND}"
-BDEPEND=""
src_prepare() {
default
eapply -p1 "${WORKDIR}"/debian/patches/*.patch
- find . -name .xvpics -print0 | xargs -0 rm -fr
- gunzip dist/${PN}.6.gz || die #619948
+ find . -name .xvpics -print0 | xargs -0 rm -fr || die
+ # bug #619948
+ gunzip dist/${PN}.6.gz || die
}
src_install() {
insinto /usr/share/${PN}
doins -r code data *py
+
make_wrapper ${PN} "python3 ./solarwolf.py" /usr/share/${PN}
+
newicon data/ship-big.png ${PN}.png
make_desktop_entry ${PN} SolarWolf
+
einstalldocs
doman dist/${PN}.6
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2021-06-01 10:55 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2021-06-01 10:55 UTC (permalink / raw
To: gentoo-commits
commit: 9f2157fafaa1ce8fec718db428d6ba0c4779f269
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 1 10:51:38 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 10:51:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f2157fa
games-arcade/solarwolf: add Python 3.9
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
index 4d060a7fedb..2ec0e6da2f7 100644
--- a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
inherit desktop python-r1 wrapper
DESCRIPTION="Action/arcade recreation of SolarFox"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2021-07-21 13:08 Ionen Wolkens
0 siblings, 0 replies; 15+ messages in thread
From: Ionen Wolkens @ 2021-07-21 13:08 UTC (permalink / raw
To: gentoo-commits
commit: ac455f7cee741c0240665dfe5905b2252fcbaa68
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 21 07:37:41 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Jul 21 13:07:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac455f7c
games-arcade/solarwolf: add 1.5_p3, EAPI 7->8, various fixes
Was previously given python 3.9 compat but wouldn't startup with
it due to 3.9's isAlive() removal. Bump to newer debian patchset
to fix this.
Also:
- python-r1 -> python-single-r1 wrt bug #710232
- updated deps for SDL2 and added missing sdl2-image[gif,png]
- don't call "python3" directly
- einstalldocs was a noop, replace by dodoc readme.txt
- fix HOMEPAGE not to point to a directory listing
- default to windowed or may be difficult to use depending on display
Closes: https://bugs.gentoo.org/710232
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-arcade/solarwolf/Manifest | 1 +
games-arcade/solarwolf/solarwolf-1.5_p3.ebuild | 60 ++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/games-arcade/solarwolf/Manifest b/games-arcade/solarwolf/Manifest
index dd673590cfd..f762a44d476 100644
--- a/games-arcade/solarwolf/Manifest
+++ b/games-arcade/solarwolf/Manifest
@@ -1,2 +1,3 @@
DIST solarwolf-1.5.tar.gz 2045888 BLAKE2B 66498b1d9b202b45ff87ea9d4b1ab14dcb6e343e8b0761576cfbf1c84ee9575cbf665e4b94552eb764f5e4fbaa02739f62c9eb20217085a6d18483d3ca7eb587 SHA512 44d84976f7797e3b859f1e5e50f9f964e5c6d6d4437ad25cf04720035e8697cc0c86490fdbbf8d923320a5c15c6e3afd1fbcfb9f17e7e31ce6f7264004e991f2
DIST solarwolf_1.5+dfsg1-1.debian.tar.xz 8392 BLAKE2B 099543a22e93775756a90867dfeb7926ab9131b8367fa356a6d74efb682d17c5426f5f5372079052967a752a0c75e1d2db36b2ce0b43d00010c65468da968817 SHA512 b4d8ad1a0e83e4cf97185b075a53b7f66fbc20f865e490f714295f678fc675a111d2318e7c0b543028b5d948677140070acb9c04b07fdab1165e37606f34d87a
+DIST solarwolf_1.5+dfsg1-3.debian.tar.xz 8944 BLAKE2B 7d83da34338e069d5076e7852f87f233043bfd3f3b2fe93a03fc3fcc631545ff666922d776d25689dec0723b077a373b30aed70ff713e27fad2c0f77bcf3b40e SHA512 e443c6096d7fae2ead3a4d6cacd21590dbdd89ae3293bbd3a219a5337647088b417d6712cef0839c394bc18570d0255d2c3af12a0fc1aae718955ddc64dced95
diff --git a/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild b/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
new file mode 100644
index 00000000000..93c392620e1
--- /dev/null
+++ b/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+inherit desktop python-single-r1
+
+MY_P="${PN}-$(ver_cut 1-2)"
+
+DESCRIPTION="Action/arcade recreation of SolarFox"
+HOMEPAGE="https://www.pygame.org/shredwheat/solarwolf/index.shtml"
+SRC_URI="
+ http://www.pygame.org/shredwheat/solarwolf/${MY_P}.tar.gz
+ mirror://debian/pool/main/s/solarwolf/${MY_P/-/_}+dfsg1-${PV/*_p}.debian.tar.xz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+ ${PYTHON_DEPS}
+ $(python_gen_cond_dep 'dev-python/pygame[${PYTHON_USEDEP}]')
+ media-libs/sdl2-image[gif,png]
+ media-libs/sdl2-mixer[mod,vorbis]"
+BDEPEND="${PYTHON_DEPS}"
+
+PATCHES=(
+ "${WORKDIR}"/debian/patches
+)
+
+src_prepare() {
+ default
+
+ sed -e "/CODEDIR = \"/s|= .*|= \"${EPREFIX}/usr/share/${PN}/code\"|" \
+ -e "/DATADIR = \"/s|= .*|= \"${EPREFIX}/usr/share/${PN}\"|" \
+ -i ${PN}.py || die
+ python_fix_shebang ${PN}.py
+
+ # default to windowed given it forces resolution and menus can be invisible
+ sed -i '/^display = 1/s/1/0/' code/game.py || die
+
+ rm -r data/.xvpics || die
+ gzip -d dist/${PN}.6.gz || die
+}
+
+src_install() {
+ newbin ${PN}.py ${PN}
+ doman dist/${PN}.6
+
+ insinto /usr/share/${PN}
+ doins -r code data
+
+ dodoc readme.txt
+
+ newicon data/ship-big.png ${PN}.png
+ make_desktop_entry ${PN} SolarWolf
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2021-07-21 13:08 Ionen Wolkens
0 siblings, 0 replies; 15+ messages in thread
From: Ionen Wolkens @ 2021-07-21 13:08 UTC (permalink / raw
To: gentoo-commits
commit: 0d90a1e0122df306009673d5f1360ccf3603ca4d
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 21 07:50:43 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Jul 21 13:07:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d90a1e0
games-arcade/solarwolf: drop 1.5-r2
This version wouldn't start with python3.9, little sense in keeping.
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-arcade/solarwolf/Manifest | 1 -
games-arcade/solarwolf/solarwolf-1.5-r2.ebuild | 50 --------------------------
2 files changed, 51 deletions(-)
diff --git a/games-arcade/solarwolf/Manifest b/games-arcade/solarwolf/Manifest
index f762a44d476..a92669c7f33 100644
--- a/games-arcade/solarwolf/Manifest
+++ b/games-arcade/solarwolf/Manifest
@@ -1,3 +1,2 @@
DIST solarwolf-1.5.tar.gz 2045888 BLAKE2B 66498b1d9b202b45ff87ea9d4b1ab14dcb6e343e8b0761576cfbf1c84ee9575cbf665e4b94552eb764f5e4fbaa02739f62c9eb20217085a6d18483d3ca7eb587 SHA512 44d84976f7797e3b859f1e5e50f9f964e5c6d6d4437ad25cf04720035e8697cc0c86490fdbbf8d923320a5c15c6e3afd1fbcfb9f17e7e31ce6f7264004e991f2
-DIST solarwolf_1.5+dfsg1-1.debian.tar.xz 8392 BLAKE2B 099543a22e93775756a90867dfeb7926ab9131b8367fa356a6d74efb682d17c5426f5f5372079052967a752a0c75e1d2db36b2ce0b43d00010c65468da968817 SHA512 b4d8ad1a0e83e4cf97185b075a53b7f66fbc20f865e490f714295f678fc675a111d2318e7c0b543028b5d948677140070acb9c04b07fdab1165e37606f34d87a
DIST solarwolf_1.5+dfsg1-3.debian.tar.xz 8944 BLAKE2B 7d83da34338e069d5076e7852f87f233043bfd3f3b2fe93a03fc3fcc631545ff666922d776d25689dec0723b077a373b30aed70ff713e27fad2c0f77bcf3b40e SHA512 e443c6096d7fae2ead3a4d6cacd21590dbdd89ae3293bbd3a219a5337647088b417d6712cef0839c394bc18570d0255d2c3af12a0fc1aae718955ddc64dced95
diff --git a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
deleted file mode 100644
index 2ec0e6da2f7..00000000000
--- a/games-arcade/solarwolf/solarwolf-1.5-r2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-inherit desktop python-r1 wrapper
-
-DESCRIPTION="Action/arcade recreation of SolarFox"
-HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/"
-SRC_URI="
- http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz
- mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}+dfsg1-1.debian.tar.xz
-"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~x86"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
- ${PYTHON_DEPS}
- >=dev-python/pygame-1.5.6[${PYTHON_USEDEP}]
- media-libs/sdl-mixer[mod,vorbis]
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
-
- eapply -p1 "${WORKDIR}"/debian/patches/*.patch
-
- find . -name .xvpics -print0 | xargs -0 rm -fr || die
- # bug #619948
- gunzip dist/${PN}.6.gz || die
-}
-
-src_install() {
- insinto /usr/share/${PN}
- doins -r code data *py
-
- make_wrapper ${PN} "python3 ./solarwolf.py" /usr/share/${PN}
-
- newicon data/ship-big.png ${PN}.png
- make_desktop_entry ${PN} SolarWolf
-
- einstalldocs
- doman dist/${PN}.6
-}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2021-11-14 0:45 Ionen Wolkens
0 siblings, 0 replies; 15+ messages in thread
From: Ionen Wolkens @ 2021-11-14 0:45 UTC (permalink / raw
To: gentoo-commits
commit: a6cc1804d1496628c4a837c0dec95cfaeabf2eb2
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 13 19:38:14 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 00:44:12 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6cc1804
games-arcade/solarwolf: enable py3.10
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5_p3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild b/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
index 93c392620e1..5801f8c2782 100644
--- a/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit desktop python-single-r1
MY_P="${PN}-$(ver_cut 1-2)"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2023-01-17 6:03 Ionen Wolkens
0 siblings, 0 replies; 15+ messages in thread
From: Ionen Wolkens @ 2023-01-17 6:03 UTC (permalink / raw
To: gentoo-commits
commit: 8d2c9ed2fef2fcf2b30af072d15d0c74a9480b59
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 17 05:15:35 2023 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Jan 17 05:54:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d2c9ed2
games-arcade/solarwolf: enable py3.11
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5_p3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild b/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
index 671c5b7a202f..af9f1057179c 100644
--- a/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
inherit desktop python-single-r1
MY_P="${PN}-$(ver_cut 1-2)"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/
@ 2024-05-05 23:44 Ionen Wolkens
0 siblings, 0 replies; 15+ messages in thread
From: Ionen Wolkens @ 2024-05-05 23:44 UTC (permalink / raw
To: gentoo-commits
commit: e11dd370dd5b16fe85e53e78180dae61617748be
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun May 5 16:31:55 2024 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun May 5 23:37:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e11dd370
games-arcade/solarwolf: enable py3.12 + tidy
Closes: https://bugs.gentoo.org/929571
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-arcade/solarwolf/solarwolf-1.5_p3.ebuild | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild b/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
index 63dbad85cf2b..b9697d085237 100644
--- a/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
+++ b/games-arcade/solarwolf/solarwolf-1.5_p3.ebuild
@@ -1,19 +1,20 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit desktop python-single-r1
-MY_P="${PN}-$(ver_cut 1-2)"
+MY_P=${PN}-$(ver_cut 1-2)
DESCRIPTION="Action/arcade recreation of SolarFox"
HOMEPAGE="https://www.pygame.org/shredwheat/solarwolf/index.shtml"
SRC_URI="
http://www.pygame.org/shredwheat/solarwolf/${MY_P}.tar.gz
- mirror://debian/pool/main/s/solarwolf/${MY_P/-/_}+dfsg1-${PV/*_p}.debian.tar.xz"
-S="${WORKDIR}/${MY_P}"
+ mirror://debian/pool/main/s/solarwolf/${MY_P/-/_}+dfsg1-${PV/*_p}.debian.tar.xz
+"
+S=${WORKDIR}/${MY_P}
LICENSE="LGPL-2.1"
SLOT="0"
@@ -24,7 +25,8 @@ RDEPEND="
${PYTHON_DEPS}
$(python_gen_cond_dep 'dev-python/pygame[${PYTHON_USEDEP}]')
media-libs/sdl2-image[gif,png]
- media-libs/sdl2-mixer[mod,vorbis]"
+ media-libs/sdl2-mixer[mod,vorbis]
+"
BDEPEND="${PYTHON_DEPS}"
PATCHES=(
^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2024-05-05 23:44 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-01 10:55 [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-05-05 23:44 Ionen Wolkens
2023-01-17 6:03 Ionen Wolkens
2021-11-14 0:45 Ionen Wolkens
2021-07-21 13:08 Ionen Wolkens
2021-07-21 13:08 Ionen Wolkens
2021-04-04 7:27 Sam James
2019-12-27 11:05 Pacho Ramos
2019-12-26 15:38 David Seifert
2019-12-25 17:08 Pacho Ramos
2019-12-25 17:08 Pacho Ramos
2019-12-25 17:08 Pacho Ramos
2018-08-27 21:23 James Le Cuirot
2018-04-24 19:26 Pacho Ramos
2018-04-24 19:26 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox