diff --git a/games-emulation/m64py/Manifest b/games-emulation/m64py/Manifest index 0da58f930eade..8fe89ab949501 100644 --- a/games-emulation/m64py/Manifest +++ b/games-emulation/m64py/Manifest @@ -1,3 +1 @@ DIST mupen64plus-ui-python-0.3.0.gh.tar.gz 11387994 BLAKE2B 5b76290fc3b2d64c65b19362e8f14f732f7c2fb22cff2bf921222ccc342c514cb10b2cde8899282e55884e4ff89ddba0befa90adc92328d4248fef694689f675 SHA512 67160e7bbce5a9a4a9f39b63bf1fda013b0ef537a5916e123c15a7c7e29e2e44e2438ea9b7fd5f8b24bc11114ac0bcf48fd11386ce70e4e3e1c51e1b8d15383b -DIST mupen64plus-ui-python-90093ce3b353ff0fbe3277eb5d75130debdf0fab.gh.tar.gz 14669607 BLAKE2B 98384d2fd8c0adda12500006e40aa50856cf74b71d8cd6b95a9717e864ebb85b76f8b3b719b84adca29a5269b8c5af447c144fb15f4e061ae44ff9d6cd097345 SHA512 75756367306a951110ed7b37aec875627d6e807e70d51518b771c4592c7e6bf7acc0e4e18531b33cabc2317c78b333e556f47e06227d8af0a767ca350c9685ee -DIST mupen64plus-ui-python-e24679436a93e8aae0aa664dc4b2dea40d8236c1.gh.tar.gz 14669412 BLAKE2B 08232599557503d606db9e44bdd6dbb30b3fa125bfd9b9bcc2cbc4b6ea71b567f5af4338d03e7580707db522249d9426ec4d64dc1e941a43076b2d21bc974b67 SHA512 2ba865041827a7f47d5151db6123abd62c964c024c14356aa5434619736b19ce150178d536cff1c84e93d0544823e173c67c0f08054c13e01f085912a9b8c2c6 diff --git a/games-emulation/m64py/files/m64py-0.2.5_p20211222-setuptools-69.patch b/games-emulation/m64py/files/m64py-0.2.5_p20211222-setuptools-69.patch deleted file mode 100644 index cb61839776e0a..0000000000000 --- a/games-emulation/m64py/files/m64py-0.2.5_p20211222-setuptools-69.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/setup.py b/setup.py -index b68b6e3..270291d 100644 ---- a/setup.py -+++ b/setup.py -@@ -15,6 +15,12 @@ import distutils.command.build as distutils_build - import distutils.command.clean as distutils_clean - import setuptools - -+try: -+ import setuptools.modified -+ distutils.dep_util = setuptools.modified -+except ImportError: -+ pass -+ - # Add the src folder to the path - sys.path.insert(0, os.path.realpath("src")) - diff --git a/games-emulation/m64py/m64py-0.2.5_p20211222.ebuild b/games-emulation/m64py/m64py-0.2.5_p20211222.ebuild deleted file mode 100644 index c0b4fa338a1d3..0000000000000 --- a/games-emulation/m64py/m64py-0.2.5_p20211222.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..11} ) - -inherit distutils-r1 qmake-utils xdg-utils - -EGIT_COMMIT="e24679436a93e8aae0aa664dc4b2dea40d8236c1" -MY_P=mupen64plus-ui-python-${EGIT_COMMIT} - -DESCRIPTION="A frontend for Mupen64Plus" -HOMEPAGE=" - https://m64py.sourceforge.net/ - https://github.com/mupen64plus/mupen64plus-ui-python/ -" -SRC_URI=" - https://github.com/mupen64plus/mupen64plus-ui-python/archive/${EGIT_COMMIT}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S=${WORKDIR}/${MY_P} - -LICENSE="GPL-3 LGPL-3 public-domain GPL-2 BSD CC-BY-SA-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="7z rar" - -RDEPEND=" - dev-python/pyqt5[gui,opengl,widgets,${PYTHON_USEDEP}] - dev-python/pysdl2[${PYTHON_USEDEP}] - media-libs/libsdl2[joystick,video] - >=games-emulation/mupen64plus-core-2.5:0/2-sdl2 - 7z? ( - app-arch/p7zip - ) - rar? ( - || ( - dev-python/rarfile[${PYTHON_USEDEP}] - app-arch/unrar - app-arch/rar - ) - ) -" -BDEPEND=" - dev-qt/linguist-tools:5 -" - -python_prepare_all() { - local PATCHES=( - # https://github.com/mupen64plus/mupen64plus-ui-python/issues/227 - "${FILESDIR}/${P}-setuptools-69.patch" - ) - - # set the correct search path - cat >> src/m64py/platform.py <<-_EOF_ || die - SEARCH_DIRS = ["/usr/$(get_libdir)/mupen64plus"] - _EOF_ - - distutils-r1_python_prepare_all -} - -python_compile() { - local -x PATH=$(qt5_get_bindir):${PATH} - distutils-r1_python_compile -} - -pkg_postinst() { - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_desktop_database_update -} diff --git a/games-emulation/m64py/m64py-0.2.5_p20231226.ebuild b/games-emulation/m64py/m64py-0.2.5_p20231226.ebuild deleted file mode 100644 index bf3b08f245005..0000000000000 --- a/games-emulation/m64py/m64py-0.2.5_p20231226.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) - -inherit distutils-r1 qmake-utils xdg-utils - -EGIT_COMMIT="90093ce3b353ff0fbe3277eb5d75130debdf0fab" -MY_P=mupen64plus-ui-python-${EGIT_COMMIT} - -DESCRIPTION="A frontend for Mupen64Plus" -HOMEPAGE=" - https://m64py.sourceforge.net/ - https://github.com/mupen64plus/mupen64plus-ui-python/ -" -SRC_URI=" - https://github.com/mupen64plus/mupen64plus-ui-python/archive/${EGIT_COMMIT}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S=${WORKDIR}/${MY_P} - -LICENSE="GPL-3 LGPL-3 public-domain GPL-2 BSD CC-BY-SA-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="7z rar" - -RDEPEND=" - dev-python/pyqt5[gui,opengl,widgets,${PYTHON_USEDEP}] - dev-python/pysdl2[${PYTHON_USEDEP}] - media-libs/libsdl2[joystick,video] - >=games-emulation/mupen64plus-core-2.5:0/2-sdl2 - 7z? ( - app-arch/p7zip - ) - rar? ( - || ( - dev-python/rarfile[${PYTHON_USEDEP}] - app-arch/unrar - app-arch/rar - ) - ) -" -BDEPEND=" - dev-qt/linguist-tools:5 -" - -python_prepare_all() { - # set the correct search path - cat >> src/m64py/platform.py <<-_EOF_ || die - SEARCH_DIRS = ["/usr/$(get_libdir)/mupen64plus"] - _EOF_ - - distutils-r1_python_prepare_all -} - -python_compile() { - local -x PATH=$(qt5_get_bindir):${PATH} - distutils-r1_python_compile -} - -pkg_postinst() { - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_desktop_database_update -}