From b90b8e0d10ad57d269ea6f22dcba130bb3e18ebc Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Tue, 12 Aug 2025 22:33:16 +0100 Subject: [PATCH] app-emulation/protontricks: Drop old 1.12.0 Signed-off-by: James Le Cuirot --- app-emulation/protontricks/Manifest | 1 - .../protontricks/protontricks-1.12.0.ebuild | 59 ------------------- 2 files changed, 60 deletions(-) delete mode 100644 app-emulation/protontricks/protontricks-1.12.0.ebuild diff --git a/app-emulation/protontricks/Manifest b/app-emulation/protontricks/Manifest index c18b949083b94..5410c477f5fe9 100644 --- a/app-emulation/protontricks/Manifest +++ b/app-emulation/protontricks/Manifest @@ -1,4 +1,3 @@ DIST protontricks-1.10.5.tar.gz 163931 BLAKE2B 299fd6c77460de3d2fa1b585a1ad3dae857e4b78898c753007b358cc25b82918d33cb31c2028a4b1b562ee6c20b95ebafc532d97e2bc1fa5358464c6a4c1da5c SHA512 305b27ceaf428946a0ed09994173c861da1097c0bd21eebcc8b255bed3c4c50a920f0cc422601fbd44e0af373b71e928096fdd6f4cc2aa05c88126212fb4401f -DIST protontricks-1.12.0.tar.gz 177554 BLAKE2B e9f2d38af1480eb70495b8a15e6c293800a16a5d797e539315ad071856860ef287f406bd9426796a0b121334e24357cbfc19e9b09d51675010fad4f738f2897c SHA512 3671ada90edcca4ea658c6df349ee50d10bcc68013c11b2a0c87cb402514a2f71a8d83f76066d4d9e512e61179cc8c64d0077cd2dc59b7e6648c29aae1695de5 DIST protontricks-1.12.1.tar.gz 178969 BLAKE2B a7734f6afc1cbddb4a0311d3afb0c89c92a86122cde6ff11e3874ffc5c993a6b21df1eec8772b3afe422e600afc82cfcd09c77047bd34a250df268c64fafbe8c SHA512 83b08df73efb33d60d3d89315a28fb8ed169e09a46d397221b83c4e5c24bdc3a58d66582aade15db7e2bdfc617a235550673fd2f1ec1713bd7c3681c6bf3008a DIST protontricks-1.13.0.tar.gz 181370 BLAKE2B e07ff851fafdd0b85ac04206f06ebb3b7dede1d4a2ad2d73029bd39d03299eae30dfdff0b726c8b7a4e403b0a5cfe7dd0a3216b0dcd2da0708f6032fa5d6c0d7 SHA512 c092e024166cfb139dd5966afb790e7773f02e73046cf197abc52d72fde8ef001db3c7730f9710e8c4204f4058abb780d934e3c1163f4143fd9cb27d8884df7a diff --git a/app-emulation/protontricks/protontricks-1.12.0.ebuild b/app-emulation/protontricks/protontricks-1.12.0.ebuild deleted file mode 100644 index 00b66953382be..0000000000000 --- a/app-emulation/protontricks/protontricks-1.12.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..13} pypy3 pypy3_11 ) -DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 pypi xdg-utils - -DESCRIPTION="app-emulation/winetricks wrapper for Proton (Steam Play) games" -HOMEPAGE="https://github.com/Matoking/protontricks" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+gui" - -RDEPEND=" - app-emulation/winetricks[gui?] - $(python_gen_cond_dep ' - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/vdf-3.4_p20240630[${PYTHON_USEDEP}] - ') - gui? ( gnome-extra/zenity )" -BDEPEND="$(python_gen_cond_dep ' - dev-python/setuptools-scm[${PYTHON_USEDEP}] -')" - -DOCS=( CHANGELOG.md README.md ) - -distutils_enable_tests pytest - -src_prepare() { - default - sed -i "/^from /s/\._vdf/vdf/g" src/protontricks/steam.py || die - rm -r src/protontricks/_vdf || die -} - -pkg_postinst() { - xdg_desktop_database_update - - elog - - if ! use gui; then - ewarn "Please note that disabling USE=gui does *not* presently remove the --gui command-line option," - ewarn "it just means using this option will fail unless gnome-extra/zenity happens to be installed." - ewarn - fi - - elog "Protontricks can only find games for which a Proton prefix already exists." - elog "Make sure to run a Proton game at least once before trying to use protontricks on it." - elog -} - -pkg_postrm() { - xdg_desktop_database_update -}