Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-mono/
Date: Fri, 02 Dec 2022 03:19:00
Message-Id: 1669950840.e38c1a2f33132a5016b0e887dec4b67839a69025.ionen@gentoo
1 commit: e38c1a2f33132a5016b0e887dec4b67839a69025
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 1 17:22:27 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 2 03:14:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e38c1a2f
7
8 app-emulation/wine-mono: sync old 7.0.0+7.3.0 ebuilds with new
9
10 Except for keeping the old SRC_URI, no reason to replace tarballs.
11
12 Doing this given (at least) 7.0.0 will be kept for a while.
13
14 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
15
16 app-emulation/wine-mono/wine-mono-7.0.0.ebuild | 17 +++++++----------
17 app-emulation/wine-mono/wine-mono-7.3.0.ebuild | 17 +++++++----------
18 2 files changed, 14 insertions(+), 20 deletions(-)
19
20 diff --git a/app-emulation/wine-mono/wine-mono-7.0.0.ebuild b/app-emulation/wine-mono/wine-mono-7.0.0.ebuild
21 index cbd75a5c9f9d..a1496c91940d 100644
22 --- a/app-emulation/wine-mono/wine-mono-7.0.0.ebuild
23 +++ b/app-emulation/wine-mono/wine-mono-7.0.0.ebuild
24 @@ -1,29 +1,26 @@
25 # Copyright 1999-2022 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=7
29 +EAPI=8
30
31 -DESCRIPTION="Wine Mono is a replacement for the .NET runtime and class libraries in Wine"
32 +DESCRIPTION="Replacement for the .NET runtime and class libraries in Wine"
33 HOMEPAGE="https://www.winehq.org/"
34 SRC_URI="
35 - !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )
36 shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.tar.xz )
37 -"
38 + !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )"
39 +S="${WORKDIR}"
40
41 LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
42 SLOT="${PV}"
43 KEYWORDS="amd64 x86"
44 IUSE="+shared"
45
46 -DEPEND="!!app-emulation/wine:0"
47 -
48 -S="${WORKDIR}"
49 -
50 src_install() {
51 insinto /usr/share/wine/mono
52 +
53 if use shared; then
54 - doins -r "${P}"
55 + doins -r ${P}
56 else
57 - doins "${DISTDIR}/${P}-x86.msi"
58 + doins "${DISTDIR}"/${P}-x86.msi
59 fi
60 }
61
62 diff --git a/app-emulation/wine-mono/wine-mono-7.3.0.ebuild b/app-emulation/wine-mono/wine-mono-7.3.0.ebuild
63 index 0836b039a90f..83761501a6f1 100644
64 --- a/app-emulation/wine-mono/wine-mono-7.3.0.ebuild
65 +++ b/app-emulation/wine-mono/wine-mono-7.3.0.ebuild
66 @@ -1,29 +1,26 @@
67 # Copyright 1999-2022 Gentoo Authors
68 # Distributed under the terms of the GNU General Public License v2
69
70 -EAPI=7
71 +EAPI=8
72
73 -DESCRIPTION="Wine Mono is a replacement for the .NET runtime and class libraries in Wine"
74 +DESCRIPTION="Replacement for the .NET runtime and class libraries in Wine"
75 HOMEPAGE="https://www.winehq.org/"
76 SRC_URI="
77 - !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )
78 shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.tar.xz )
79 -"
80 + !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )"
81 +S="${WORKDIR}"
82
83 LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
84 SLOT="${PV}"
85 KEYWORDS="~amd64 ~x86"
86 IUSE="+shared"
87
88 -DEPEND="!!app-emulation/wine:0"
89 -
90 -S="${WORKDIR}"
91 -
92 src_install() {
93 insinto /usr/share/wine/mono
94 +
95 if use shared; then
96 - doins -r "${P}"
97 + doins -r ${P}
98 else
99 - doins "${DISTDIR}/${P}-x86.msi"
100 + doins "${DISTDIR}"/${P}-x86.msi
101 fi
102 }