From: "Ionen Wolkens" <ionen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-mono/
Date: Tue, 01 Apr 2025 04:33:39 +0000 (UTC) [thread overview]
Message-ID: <1743481989.052430226edbc9933e765d878df79f7e8bd338d9.ionen@gentoo> (raw)
commit: 052430226edbc9933e765d878df79f7e8bd338d9
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 1 04:31:24 2025 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Apr 1 04:33:09 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05243022
app-emulation/wine-mono: add 10.0.0
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
app-emulation/wine-mono/Manifest | 2 ++
app-emulation/wine-mono/wine-mono-10.0.0.ebuild | 33 +++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/app-emulation/wine-mono/Manifest b/app-emulation/wine-mono/Manifest
index f1ee7eee37ac..6ec3e2f0b2f1 100644
--- a/app-emulation/wine-mono/Manifest
+++ b/app-emulation/wine-mono/Manifest
@@ -1,3 +1,5 @@
+DIST wine-mono-10.0.0-x86.msi 84493824 BLAKE2B 013d38f30525295d83f430650269bdab12e73d8c7cf5084882eb7a4c4dd4fcca895128d51467154d94597ca67526696e55107bc8ed7418fc248ea2e20553195a SHA512 4238cef9a42b75fd8fc39ae042594266da971f00cb3f91d9bcb5e39454be7f9db403fd9f71c3d731fb692e5e25578a790723e2eac6a4cfbc34156e3c4cf4fb65
+DIST wine-mono-10.0.0-x86.tar.xz 38907080 BLAKE2B a7efb7e9e3c03a92f3fc2c66172a2597ab4febfbf23a98c20d9ba46c48f0b96f568b21ea61f43cfa0cbbad2557cfafd665b63f3115611f0df9dd75ab358ecf43 SHA512 e7e5867d34b64a9603fb919280d31cc3ae726fcfd22b4972bbfeda470aaddeb618b50f7d63b0a0ea15fd40f7d5e242c335bd84504a67d4e49b457591741acf5c
DIST wine-mono-7.4.0-x86.msi 87334912 BLAKE2B c0b778f9db59d1a2917631f1d6ca1a1798972a6a42e27975da78f3a35b77018a99228d7d95e5640c57618533a6b01bf2252859e3e978e2aa8dbdc8cd62afcc28 SHA512 cf35513b368324487c387d4339e5b05a90c4825b25ea603140524b79e69786ccc20dfb898213a9548c0313c0b0e4b160acb88364e4b280dd6712d185d9e5ae57
DIST wine-mono-7.4.0-x86.tar.xz 45404344 BLAKE2B 3a74106b9b3f21a88c2435f7988d66a54e08beea931a0ce0df6431c21add4ee2685bf9c9cb2404ee1a685736d61b1aee3cdd507130e5c5dddba7e506a2ff18bb SHA512 108cb5d969e84deeda3d2b11dba7cd73853fc3b088ecf2bcdb9bc5c5bbaaff03e72cd4f485d1935eda43cdd95b927886441be1d2204edeaee1ff1fea75735d22
DIST wine-mono-8.1.0-x86.msi 84905984 BLAKE2B 948b014fc6fba94bc97642b8aae266b8179b119ea3d8a0fdf47daee33eac65b8cc5dd1bc483ae4c66bdd1bdc10f4b73258bb6c83bca0911a30e86e358faafd20 SHA512 5c788dfa0c9b664242f3ce0ab24f3f9256dabf1e9fadc516140f267c763da1865b4536c707660acaf66e4a37d93198f5499971b4261e63d91252f6a7fc3eae4e
diff --git a/app-emulation/wine-mono/wine-mono-10.0.0.ebuild b/app-emulation/wine-mono/wine-mono-10.0.0.ebuild
new file mode 100644
index 000000000000..7fd66b53f70a
--- /dev/null
+++ b/app-emulation/wine-mono/wine-mono-10.0.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Replacement for the .NET runtime and class libraries in Wine"
+HOMEPAGE="
+ https://gitlab.winehq.org/wine/wine/-/wikis/Wine-Mono/
+ https://gitlab.winehq.org/mono/wine-mono/
+"
+SRC_URI="
+ shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.tar.xz )
+ !shared? ( https://dl.winehq.org/wine/${PN}/${PV}/${P}-x86.msi )
+"
+S=${WORKDIR}
+
+LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
+SLOT="${PV}"
+# keep straight-to-stable, builds nothing and the stabilization process
+# is wasteful and annoying for users using ~testing wine in stable
+# (wine also pins to specific versions, so stable won't use latest)
+KEYWORDS="amd64 x86"
+IUSE="+shared"
+
+src_install() {
+ insinto /usr/share/wine/mono
+
+ if use shared; then
+ doins -r ${P}
+ else
+ doins "${DISTDIR}"/${P}-x86.msi
+ fi
+}
next reply other threads:[~2025-04-01 4:33 UTC|newest]
Thread overview: 81+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-01 4:33 Ionen Wolkens [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-14 5:28 [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-mono/ Ionen Wolkens
2024-12-11 8:45 Ionen Wolkens
2024-12-11 8:45 Ionen Wolkens
2024-11-30 12:53 Ionen Wolkens
2024-11-08 23:29 Ionen Wolkens
2024-10-07 2:49 Sam James
2024-10-07 2:44 Sam James
2024-09-12 14:40 Ionen Wolkens
2024-09-07 3:23 Ionen Wolkens
2024-07-03 16:31 Jakov Smolić
2024-07-03 16:31 Jakov Smolić
2024-06-27 6:55 Ionen Wolkens
2024-06-27 6:55 Ionen Wolkens
2024-04-23 9:33 Ionen Wolkens
2024-03-20 7:17 Ionen Wolkens
2024-02-11 3:39 Sam James
2024-02-11 3:39 Sam James
2024-02-06 13:33 Ionen Wolkens
2024-02-06 5:29 Ionen Wolkens
2024-01-27 1:00 Ionen Wolkens
2023-10-26 12:49 Sam James
2023-10-26 12:49 Sam James
2023-10-24 22:11 Ionen Wolkens
2023-10-06 9:23 Arthur Zamarin
2023-08-19 9:51 Ionen Wolkens
2023-08-06 11:51 Sam James
2023-05-19 8:17 Ionen Wolkens
2023-05-11 17:01 Ionen Wolkens
2023-04-17 20:44 Ionen Wolkens
2023-03-04 12:08 Ionen Wolkens
2023-02-26 18:35 Arthur Zamarin
2023-02-26 0:30 Sam James
2022-12-02 3:18 Ionen Wolkens
2022-12-02 3:18 Ionen Wolkens
2022-12-02 3:18 Ionen Wolkens
2022-12-02 3:18 Ionen Wolkens
2022-10-26 10:13 Ionen Wolkens
2022-09-10 9:48 Ionen Wolkens
2022-09-10 9:48 Ionen Wolkens
2022-06-04 15:25 Nick Sarnie
2022-04-11 23:22 Sam James
2022-04-09 15:01 Nick Sarnie
2022-03-12 11:51 Jakov Smolić
2022-02-13 15:06 Nick Sarnie
2021-12-05 16:08 Nick Sarnie
2021-11-23 2:51 Nick Sarnie
2021-09-26 0:35 Nick Sarnie
2021-08-01 0:25 Nick Sarnie
2021-08-01 0:25 Nick Sarnie
2021-08-01 0:09 Nick Sarnie
2021-08-01 0:09 Nick Sarnie
2021-06-05 15:57 Nick Sarnie
2021-06-05 15:57 Nick Sarnie
2021-04-11 17:16 Nick Sarnie
2021-02-28 15:39 Sam James
2021-02-28 15:39 Sam James
2021-02-13 20:03 Nick Sarnie
2020-10-11 20:21 Nick Sarnie
2020-06-20 3:36 Nick Sarnie
2020-04-25 21:32 Nick Sarnie
2020-04-13 16:53 Agostino Sarubbo
2020-04-12 7:30 Agostino Sarubbo
2019-11-16 17:13 Nick Sarnie
2019-09-28 17:26 Nick Sarnie
2019-08-17 17:19 Nick Sarnie
2019-06-22 21:55 Nick Sarnie
2019-06-04 14:45 Thomas Deutschmann
2019-05-02 22:25 Nick Sarnie
2019-04-16 1:46 Nick Sarnie
2019-03-17 14:29 Nick Sarnie
2019-03-03 11:59 Mikle Kolyada
2019-01-27 16:51 Nick Sarnie
2018-08-24 4:09 Mikle Kolyada
2018-08-02 2:44 Nick Sarnie
2018-07-09 0:41 Mikle Kolyada
2018-07-02 0:49 Thomas Deutschmann
2017-09-28 22:32 NP Hardass
2017-09-13 22:53 NP Hardass
2017-09-13 19:48 NP Hardass
2017-04-10 17:22 NP Hardass
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1743481989.052430226edbc9933e765d878df79f7e8bd338d9.ionen@gentoo \
--to=ionen@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox