diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2024-05-05 11:52:12 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2024-05-05 19:37:30 -0400 |
commit | c887406ab12d1c392c4f69d753a6acf554602901 (patch) | |
tree | 6e89e8524ee8e4173084934504408be0bf7afb50 /games-arcade | |
parent | profiles: unmask ovs and openvswitch (diff) | |
download | gentoo-c887406ab12d1c392c4f69d753a6acf554602901.tar.gz gentoo-c887406ab12d1c392c4f69d753a6acf554602901.tar.bz2 gentoo-c887406ab12d1c392c4f69d753a6acf554602901.zip |
games-arcade/funnyboat: enable py3.12 + tidy
Closes: https://bugs.gentoo.org/929569
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/funnyboat/funnyboat-1.5_p11-r3.ebuild | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/games-arcade/funnyboat/funnyboat-1.5_p11-r3.ebuild b/games-arcade/funnyboat/funnyboat-1.5_p11-r3.ebuild index 1001874ec143..e222147a995e 100644 --- a/games-arcade/funnyboat/funnyboat-1.5_p11-r3.ebuild +++ b/games-arcade/funnyboat/funnyboat-1.5_p11-r3.ebuild @@ -3,15 +3,16 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit desktop python-single-r1 wrapper DESCRIPTION="Side scrolling shooter game starring a steamboat on the sea" HOMEPAGE="https://funnyboat.sourceforge.net/" SRC_URI=" https://downloads.sourceforge.net/${PN}/${P/_p*}-src.zip - mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV/_p*}-${PV/*_p}.debian.tar.xz" -S="${WORKDIR}/${PN}" + mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV/_p*}-${PV/*_p}.debian.tar.xz +" +S=${WORKDIR}/${PN} LICENSE="BitstreamVera GPL-2 MIT" SLOT="0" @@ -22,10 +23,12 @@ RDEPEND=" ${PYTHON_DEPS} $(python_gen_cond_dep 'dev-python/pygame[${PYTHON_USEDEP}]') media-libs/sdl2-image[png] - media-libs/sdl2-mixer[vorbis]" + media-libs/sdl2-mixer[vorbis] +" BDEPEND=" ${PYTHON_DEPS} - app-arch/unzip" + app-arch/unzip +" PATCHES=( "${WORKDIR}"/debian/patches @@ -34,7 +37,7 @@ PATCHES=( src_prepare() { # Drop Debian specific patch - rm "${WORKDIR}"/debian/patches/use_debian_vera_ttf.patch || die + rm -- "${WORKDIR}"/debian/patches/use_debian_vera_ttf.patch || die default } |