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: Thu, 01 Sep 2022 15:34:46
Message-Id: 1662046476.262ba1c9d3b4dc7c5f27d6a39a6a56226d08fa30.marecki@gentoo
1 commit: 262ba1c9d3b4dc7c5f27d6a39a6a56226d08fa30
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 15:16:48 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 15:34:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=262ba1c9
7
8 app-emulation/protontricks: drop 1.8.2
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-emulation/protontricks/Manifest | 1 -
13 .../protontricks/protontricks-1.8.2.ebuild | 63 ----------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/app-emulation/protontricks/Manifest b/app-emulation/protontricks/Manifest
17 index 8278d0bde780..d6b7225d8dfa 100644
18 --- a/app-emulation/protontricks/Manifest
19 +++ b/app-emulation/protontricks/Manifest
20 @@ -1,2 +1 @@
21 -DIST protontricks-1.8.2.tar.gz 153142 BLAKE2B c0757973f7e1c442ab0bba27c2c739a7b24d45bab31ec308ec195290e35392d222369dbfe64f558e21ed1b61d13bdae629c0ba8b2f81b9af2b4f2f94c30ba9ea SHA512 9b83c34847e8ea8ae86f77330f626748a8ef5682c99619d90fea0c52de3ccd5b4285e5dfc676b8c046b9deec996847dbb0586596428507e162e255a852b28cd1
22 DIST protontricks-1.9.0.tar.gz 154202 BLAKE2B e998bd899ec953ed7ee0bb0f3944da0212b71f2d0eef6c6996040e4d9c607f7bc73b52df4cbc6a70480b308473fa8c0978415a6202f498247bf91662761adf5c SHA512 43ffd2a5cd4d58c44696a2a66da0223a93d553822fdc92a476c661d69f7522d2aef12787bfc33610751bc1171fb1a3da169e3d40a2b60863a9f37ed205771835
23
24 diff --git a/app-emulation/protontricks/protontricks-1.8.2.ebuild b/app-emulation/protontricks/protontricks-1.8.2.ebuild
25 deleted file mode 100644
26 index 78ec733bccc6..000000000000
27 --- a/app-emulation/protontricks/protontricks-1.8.2.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..11} pypy3 )
36 -DISTUTILS_SINGLE_IMPL=1
37 -DISTUTILS_USE_PEP517=setuptools
38 -
39 -inherit distutils-r1 xdg-utils
40 -
41 -DESCRIPTION="app-emulation/winetricks wrapper for Proton (Steam Play) games"
42 -HOMEPAGE="https://github.com/Matoking/protontricks"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${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/setuptools[${PYTHON_USEDEP}]
53 - dev-python/vdf[${PYTHON_USEDEP}]
54 - ')
55 - gui? ( gnome-extra/zenity
56 - || (
57 - app-emulation/winetricks[gtk]
58 - app-emulation/winetricks[kde]
59 - )
60 - )"
61 -BDEPEND="$(python_gen_cond_dep '
62 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
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 - xdg_desktop_database_update
76 -
77 - elog
78 -
79 - if ! use gui; then
80 - ewarn "Please note that disabling USE=gui does *not* presently remove the --gui command-line option,"
81 - ewarn "it just means using this option will fail unless gnome-extra/zenity happens to be installed."
82 - ewarn
83 - fi
84 -
85 - elog "Protontricks can only find games for which a Proton prefix already exists."
86 - elog "Make sure to run a Proton game at least once before trying to use protontricks on it."
87 - elog
88 -}
89 -
90 -pkg_postrm() {
91 - xdg_desktop_database_update
92 -}