Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/protontricks/
Date: Sat, 17 Jul 2021 21:20:01
Message-Id: 1626556792.2031a3e79ecdf1266fa59f069ccb14b2c566f459.marecki@gentoo
1 commit: 2031a3e79ecdf1266fa59f069ccb14b2c566f459
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 17 21:13:05 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 21:19:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2031a3e7
7
8 app-emulation/protontricks: drop 1.5.0
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-emulation/protontricks/Manifest | 1 -
13 .../protontricks/protontricks-1.5.0.ebuild | 57 ----------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/app-emulation/protontricks/Manifest b/app-emulation/protontricks/Manifest
17 index ea1b275d57f..333044bea96 100644
18 --- a/app-emulation/protontricks/Manifest
19 +++ b/app-emulation/protontricks/Manifest
20 @@ -1,2 +1 @@
21 -DIST protontricks-1.5.0.tar.gz 46957 BLAKE2B 622affd9a1bfff3a5cd76fa8e279f25b5c91a6f040b6cc4e5f42e58be08a232fad2be179a47e063b45b1b1bb11b6ae9ce26cce499f4c1dae460be0bb8247e619 SHA512 6df3e0dd638684e70a8d40b7440e2340765109e31dd47fa5e33e4959bc34d3ff4cfa70c8689cafdcce82f1d97ba6d25de724ca7439e5d1ffd634b729ab222716
22 DIST protontricks-1.5.2.tar.gz 49590 BLAKE2B 9a4f6b5869d2d23d104c3785a99549e74168d7dea429bed78ed00029ed6431460bab2c8fdd4f3905943b3e93075dea4bc9b0bf472f0044e5cbae3c335d128c12 SHA512 9e57c7ea61ae9a6638ee967041672a85962c9210fe329600bf30ab78f46b2a23cc6f859fb78e50e94686794b3fad81185d83222ca8f67e1dc73b578df7dcd411
23
24 diff --git a/app-emulation/protontricks/protontricks-1.5.0.ebuild b/app-emulation/protontricks/protontricks-1.5.0.ebuild
25 deleted file mode 100644
26 index 9db87c7635e..00000000000
27 --- a/app-emulation/protontricks/protontricks-1.5.0.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
36 -DISTUTILS_SINGLE_IMPL=1
37 -DISTUTILS_USE_SETUPTOOLS=rdepend
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="app-emulation/winetricks wrapper for Proton (Steam Play) games"
42 -HOMEPAGE="https://github.com/Matoking/protontricks"
43 -SRC_URI="https://github.com/Matoking/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="GPL-3"
46 -SLOT="0"
47 -KEYWORDS="amd64"
48 -IUSE="+gui"
49 -
50 -RDEPEND="app-emulation/winetricks
51 - $(python_gen_cond_dep '
52 - dev-python/vdf[${PYTHON_USEDEP}]
53 - ')
54 - gui? ( gnome-extra/zenity
55 - || (
56 - app-emulation/winetricks[gtk]
57 - app-emulation/winetricks[kde]
58 - )
59 - )"
60 -
61 -PATCHES=(
62 - "${FILESDIR}"/${PN}-1.5.0_no-setuptools-scm.patch
63 -)
64 -
65 -DOCS=( CHANGELOG.md README.md )
66 -
67 -distutils_enable_tests pytest
68 -
69 -python_prepare_all() {
70 - distutils-r1_python_prepare_all
71 - echo "version = '${PV}'" > "${S}"/src/${PN}/_version.py || die "Failed to generate the version file"
72 -}
73 -
74 -pkg_postinst() {
75 - elog
76 -
77 - if ! use gui; then
78 - ewarn "Please note that disabling USE=gui does *not* presently remove the --gui command-line option,"
79 - ewarn "it just means using this option will fail unless gnome-extra/zenity happens to be installed."
80 - ewarn
81 - fi
82 -
83 - elog "Protontricks can only find games for which a Proton prefix already exists."
84 - elog "Make sure to run a Proton game at least once before trying to use protontricks on it."
85 - elog
86 -}