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: Wed, 01 Feb 2023 22:41:51
Message-Id: 1675291265.1fbc8695575005ce294e980ae383d202630aa1b4.marecki@gentoo
1 commit: 1fbc8695575005ce294e980ae383d202630aa1b4
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 1 22:41:05 2023 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 1 22:41:05 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fbc8695
7
8 app-emulation/protontricks: drop 1.9.2
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-emulation/protontricks/Manifest | 1 -
13 .../protontricks/protontricks-1.9.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 f56b92b2d44e..b9ded840fc67 100644
18 --- a/app-emulation/protontricks/Manifest
19 +++ b/app-emulation/protontricks/Manifest
20 @@ -1,2 +1 @@
21 DIST protontricks-1.10.1.tar.gz 160943 BLAKE2B 12361ce009a62bdba8c420069f87879bf22e047df8bd6d843fb8672222fe6ab04d61f03a44c43a147729461a2f872e2239ee97d737aba28ffdbb273e797be218 SHA512 0b6e3277ea8a106d2bc52cc805b0c3a023733f0a6554fabfe9f32ff27d1bdf04058a419a719c7ca81dc45759a803a83b03408806e4b9328664e572655a3c4df0
22 -DIST protontricks-1.9.2.tar.gz 158505 BLAKE2B ea4bc39d835d28c3f1ba50fa64d9a646ec9ef535b7369517b77bccaceb62cb922bed8844a8a4ea1d4561e248e302628379326a4760b25ac24411e679d018cee0 SHA512 75158c5a8a86edaafcb5be1b01053db91e45754488db0febe026ef0cbfbbb67fa6f3f17d60fec997c6dd19a73245ee408bd2220e09a3983ccd253e6e4c10457d
23
24 diff --git a/app-emulation/protontricks/protontricks-1.9.2.ebuild b/app-emulation/protontricks/protontricks-1.9.2.ebuild
25 deleted file mode 100644
26 index 755e05d48934..000000000000
27 --- a/app-emulation/protontricks/protontricks-1.9.2.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2023 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{9..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 -}