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/wine-mono/
Date: Sat, 04 Jun 2022 15:26:00
Message-Id: 1654355713.e88ba4d4228598324cdfee830e76b9b580e5428f.sarnex@gentoo
1 commit: e88ba4d4228598324cdfee830e76b9b580e5428f
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 15:14:05 2022 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 15:15:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88ba4d4
7
8 app-emulation/wine-mono: Version bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
12
13 app-emulation/wine-mono/Manifest | 2 ++
14 app-emulation/wine-mono/wine-mono-7.3.0.ebuild | 29 ++++++++++++++++++++++++++
15 2 files changed, 31 insertions(+)
16
17 diff --git a/app-emulation/wine-mono/Manifest b/app-emulation/wine-mono/Manifest
18 index 0bea0023c2cd..f91d18c12a82 100644
19 --- a/app-emulation/wine-mono/Manifest
20 +++ b/app-emulation/wine-mono/Manifest
21 @@ -8,3 +8,5 @@ DIST wine-mono-7.1.1-x86.msi 86606336 BLAKE2B 817d02bc090e5f324519a118de53a51510
22 DIST wine-mono-7.1.1-x86.tar.xz 45220396 BLAKE2B 8a4cfa9496a51adb884c9062162413564cb939624ec551e97467eed41efc6e67e6296b2b0924eaa9565e98ea5595e140db691f23ef28edbf16456e3f6d39bd05 SHA512 b52f8a71900a34c687fd86559db16f2b7a3abe0f3965b5050e1859646c7bb00e070cc394f9a175995ccb50501d15844853b49931a7ac7cd2022581e241f31924
23 DIST wine-mono-7.2.0-x86.msi 86910464 BLAKE2B 4e07c88202b85141faa5fe66e8254839f9d048922fcae6f71468273c1443c148f32746f0cc58b8c16f4f5c46678076072ae5a443e090371ad863387f4c5f15f0 SHA512 855a829a247de1e6ee31e07d06cc9d23b3011f43937c13a04f992fbc99080c32cd2dfc44e07bbdf6a71935b75192dd0648288c622eae00b3226e3c58ff55d826
24 DIST wine-mono-7.2.0-x86.tar.xz 42477712 BLAKE2B f82e5b16b7f6554d919fa082eaa1686a22b798b1cf377aaa6b29f67682749a6e851cd3ee4d52a227c8d279442ed018704a92e3917593de70e588b47a7635395b SHA512 791c93425f37dfb7d481f0afb1b15bd18b084a764d70d2bf211fe791c94c44673940177870dae898e6b0adf3bf08f01f0ecb2fc1c5783c96f4ed4cede8fdb34d
25 +DIST wine-mono-7.3.0-x86.msi 86919680 BLAKE2B 917aa260ba7a012ed1e1565f8ed23225c82060c82dbb74a1e0d105a7b38a1d840c20689e0a8e7cc1a5c5de938807c78f36c98cbef07270accaf789b6b031f22d SHA512 d92ab4a9d0ac1c48dfec583b1681317e9ec9556efcb18766a865bee06a3a53ea08159099ca3ec92149f677d67583648991d59adb9b8a612ef41de06da8c77fd2
26 +DIST wine-mono-7.3.0-x86.tar.xz 43557004 BLAKE2B 919912faf97cf38b2fcc9813de4e035d907b0a00db78d2a251c1c43dab65ba44847ecbf494a15dba761d9ba8203855c1a6e5f5bbd07f20484c9948c3cfe4d3bc SHA512 c26dc21d0d462b3c79e778497815e33d26b5ab545eba0552b436f30d9b7aa340ccdef69fe0dcbf32c04330e6d0f813314646ded7d2d24e6f4746e4893adbbf7f
27
28 diff --git a/app-emulation/wine-mono/wine-mono-7.3.0.ebuild b/app-emulation/wine-mono/wine-mono-7.3.0.ebuild
29 new file mode 100644
30 index 000000000000..0836b039a90f
31 --- /dev/null
32 +++ b/app-emulation/wine-mono/wine-mono-7.3.0.ebuild
33 @@ -0,0 +1,29 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +DESCRIPTION="Wine Mono is a replacement for the .NET runtime and class libraries in Wine"
40 +HOMEPAGE="https://www.winehq.org/"
41 +SRC_URI="
42 + !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )
43 + shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.tar.xz )
44 +"
45 +
46 +LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
47 +SLOT="${PV}"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="+shared"
50 +
51 +DEPEND="!!app-emulation/wine:0"
52 +
53 +S="${WORKDIR}"
54 +
55 +src_install() {
56 + insinto /usr/share/wine/mono
57 + if use shared; then
58 + doins -r "${P}"
59 + else
60 + doins "${DISTDIR}/${P}-x86.msi"
61 + fi
62 +}