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: Fri, 28 Jan 2022 14:45:16
Message-Id: 1643381103.cb36720752fb4d49f7f0a6fb86be930cda461744.marecki@gentoo
1 commit: cb36720752fb4d49f7f0a6fb86be930cda461744
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 28 14:44:52 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 14:45:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb367207
7
8 app-emulation/protontricks: drop 1.6.2-r1
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-emulation/protontricks/Manifest | 1 -
13 .../protontricks/protontricks-1.6.2-r1.ebuild | 62 ----------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/app-emulation/protontricks/Manifest b/app-emulation/protontricks/Manifest
17 index 07d2be25f81c..1a71b52afbc1 100644
18 --- a/app-emulation/protontricks/Manifest
19 +++ b/app-emulation/protontricks/Manifest
20 @@ -1,3 +1,2 @@
21 DIST protontricks-1.6.0.tar.gz 61220 BLAKE2B 8a9af6f8cc134ad0e74b4c5e6c35bc8344687e65cc9811ca54402b16f723264cef8def6e733a532fd412db51d0ec63533baec52699ae994a97ecad0a25ebe847 SHA512 7276d7de1f0c18afc5c67552290888e3851bd5f073bbbf684000be66c2e65abac84b079373b120ff0ab6e4f4919caf8ee1288a2320de6c37629cb1185dfbea29
22 -DIST protontricks-1.6.2.tar.gz 137643 BLAKE2B 09e6c37291eb47224d8f7cfcb5e864c86f6ea7ddcbbd11d1d64fbd24b2eed35aacfacad72e8481d7a3c76a915727e7dd8a58e80af9d208892a434dafb4098c17 SHA512 d0acf685c0f4480360bdf9c4e6444d51262316710d1dc6b0ca612da26a56efca647e9cdc030639bcaaa929077062cfa04a024b657a9456677d751758fe7d8552
23 DIST protontricks-1.7.0.tar.gz 139203 BLAKE2B d93bbb672286d32743da1473e132508084bae527159911367c51e88686c38d3bad0a2f72a2c0f0feb09412e31e6d5bb20dfe113b9e71e4e655693bfbe663a968 SHA512 c12f211051bc23c8eb03c5385e8245361d72dcce1e641a7da1f87f344db5fdc7d698bd7691e0855ae025c1d94944db89b380805664d87123b6252d06259480ff
24
25 diff --git a/app-emulation/protontricks/protontricks-1.6.2-r1.ebuild b/app-emulation/protontricks/protontricks-1.6.2-r1.ebuild
26 deleted file mode 100644
27 index 8ff35081420b..000000000000
28 --- a/app-emulation/protontricks/protontricks-1.6.2-r1.ebuild
29 +++ /dev/null
30 @@ -1,62 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 -DISTUTILS_SINGLE_IMPL=1
38 -DISTUTILS_USE_SETUPTOOLS=rdepend
39 -
40 -inherit distutils-r1 xdg-utils
41 -
42 -DESCRIPTION="app-emulation/winetricks wrapper for Proton (Steam Play) games"
43 -HOMEPAGE="https://github.com/Matoking/protontricks"
44 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="GPL-3"
47 -SLOT="0"
48 -KEYWORDS="~amd64"
49 -IUSE="+gui"
50 -
51 -RDEPEND="app-emulation/winetricks
52 - $(python_gen_cond_dep '
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 -}