Gentoo Archives: gentoo-commits

From: Nick Sarnie <sarnex@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/winetricks/
Date: Fri, 27 Aug 2021 14:07:11
Message-Id: 1630073142.1bd5d5b89fe2e7e54e3db22e994735ea021dacb6.sarnex@gentoo
1 commit: 1bd5d5b89fe2e7e54e3db22e994735ea021dacb6
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 27 14:04:53 2021 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 27 14:05:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bd5d5b8
7
8 app-emulation/winetricks: Sync with ::wine
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
12
13 app-emulation/winetricks/Manifest | 1 +
14 .../winetricks/winetricks-20210825.ebuild | 91 ++++++++++++++++++++++
15 2 files changed, 92 insertions(+)
16
17 diff --git a/app-emulation/winetricks/Manifest b/app-emulation/winetricks/Manifest
18 index 0e90059e5f1..23eabc5f7da 100644
19 --- a/app-emulation/winetricks/Manifest
20 +++ b/app-emulation/winetricks/Manifest
21 @@ -1,2 +1,3 @@
22 DIST winetricks-20210206.tar.gz 690837 BLAKE2B a1d068e9659f6b176873af49994f1e0ca884eaa1ac9b8f5dd6d7abe79a2b8b827a2334efa7862547b17cca5bcfc285ce2d65ac0e5736cddcc777d4df2dbc7af9 SHA512 57f2ce5fe531eb6ee9a578ca565fadf5ef2e6e1379abee640ee9dc0d6000c92ce983c7507002bc6ace613d6d0dd03260ede11f7bf267adf19eb67900a0449f58
23 +DIST winetricks-20210825.tar.gz 689728 BLAKE2B 32fc9639f215180e03c79d55359c7aa005c005ed6a3a21916de7172dc541994a786b64f8323034b3e43e0619569b39f79dc98830546db1d684badf96cdb898c4 SHA512 b9eb61a0bfe4001cb23f41f3b4707333be81660372347b5e8fe887fe1e2278bd5e2b91e0c5ddd73010652902a8985f0e253792c8769216de397ca75fac8b0c81
24 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f SHA512 59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a
25
26 diff --git a/app-emulation/winetricks/winetricks-20210825.ebuild b/app-emulation/winetricks/winetricks-20210825.ebuild
27 new file mode 100644
28 index 00000000000..89dcbb57c97
29 --- /dev/null
30 +++ b/app-emulation/winetricks/winetricks-20210825.ebuild
31 @@ -0,0 +1,91 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit xdg
38 +
39 +if [[ ${PV} == "99999999" ]] ; then
40 + EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git"
41 + inherit git-r3
42 + SRC_URI=""
43 +else
44 + SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 + KEYWORDS="~amd64 ~x86"
46 +fi
47 +
48 +wtg="winetricks-gentoo-2012.11.24"
49 +
50 +SRC_URI="${SRC_URI}
51 + gtk? ( https://dev.gentoo.org/~chiitoo/distfiles/${wtg}.tar.bz2 )
52 + kde? ( https://dev.gentoo.org/~chiitoo/distfiles/${wtg}.tar.bz2 )
53 +"
54 +
55 +DESCRIPTION="Easy way to install DLLs needed to work around problems in Wine"
56 +HOMEPAGE="https://github.com/Winetricks/winetricks https://wiki.winehq.org/Winetricks"
57 +
58 +LICENSE="LGPL-2.1+"
59 +SLOT="0"
60 +IUSE="gtk kde rar test"
61 +RESTRICT="!test? ( test )"
62 +
63 +# dev-util/shellcheck is not available for x86
64 +RESTRICT+=" x86? ( test )"
65 +
66 +BDEPEND="
67 + test? (
68 + dev-python/bashate
69 + dev-util/checkbashisms
70 + || (
71 + dev-util/shellcheck-bin
72 + dev-util/shellcheck
73 + )
74 + )
75 +"
76 +DEPEND=""
77 +RDEPEND="${DEPEND}
78 + app-arch/cabextract
79 + app-arch/p7zip
80 + app-arch/unzip
81 + net-misc/wget
82 + virtual/wine
83 + x11-misc/xdg-utils
84 + gtk? ( gnome-extra/zenity )
85 + kde? ( kde-apps/kdialog )
86 + rar? ( app-arch/unrar )
87 +"
88 +
89 +# Test targets include syntax checks only, not the "heavy duty" tests
90 +# that would require a lot of disk space, as well as network access.
91 +
92 +# This uses a non-standard "Wine" category, which is provided by
93 +# '/etc/xdg/menus/applications-merged/wine.menu' from the
94 +# 'app-emulation/wine-desktop-common' package.
95 +# https://bugs.gentoo.org/451552
96 +QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
97 +
98 +src_unpack() {
99 + if [[ ${PV} == "99999999" ]]; then
100 + git-r3_src_unpack
101 +
102 + if use gtk || use kde; then
103 + unpack ${wtg}.tar.bz2
104 + fi
105 +
106 + else
107 + default
108 + fi
109 +}
110 +
111 +src_test() {
112 + ./tests/shell-checks || die "Test(s) failed."
113 +}
114 +
115 +src_install() {
116 + default
117 +
118 + if ! use gtk && ! use kde; then
119 + rm -r "${ED}"/usr/share/applications || die
120 + rm -r "${ED}"/usr/share/icons || die
121 + fi
122 +}