Gentoo Archives: gentoo-commits

From: Nick Sarnie <sarnex@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/wine/
Date: Mon, 25 Nov 2019 01:47:11
Message-Id: 1574646403.aecda2f12d7476116b5223b755f5e52a1856363d.sarnex@gentoo
1 commit: aecda2f12d7476116b5223b755f5e52a1856363d
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 25 01:43:04 2019 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 25 01:46:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aecda2f1
7
8 virtual/wine: Remove reference to last rited package
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.18
11 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
12
13 virtual/wine/wine-0-r7.ebuild | 26 ++++++++++++++++++++++++++
14 1 file changed, 26 insertions(+)
15
16 diff --git a/virtual/wine/wine-0-r7.ebuild b/virtual/wine/wine-0-r7.ebuild
17 new file mode 100644
18 index 00000000000..c169693fcdb
19 --- /dev/null
20 +++ b/virtual/wine/wine-0-r7.ebuild
21 @@ -0,0 +1,26 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DESCRIPTION="Virtual for Wine that supports multiple variants and slotting"
28 +
29 +SLOT="0"
30 +KEYWORDS="~amd64 ~x86"
31 +IUSE="+abi_x86_32 +abi_x86_64 staging"
32 +
33 +REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )"
34 +
35 +# Note, the ordering here is intentional, to take advantage of the short-circuit
36 +# logic of portage, to enforce wine-vanilla as default for new users. The idea
37 +# behind this is that some USE flags may pull in 3rd-party patchsets, so default
38 +# of vanilla prevents that.
39 +RDEPEND="
40 + staging? ( || (
41 + app-emulation/wine-staging[staging]
42 + ) )
43 + || (
44 + app-emulation/wine-vanilla[abi_x86_32=,abi_x86_64=]
45 + app-emulation/wine-staging[abi_x86_32=,abi_x86_64=]
46 + )
47 + !app-emulation/wine:0"