From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F3258138334 for ; Sun, 22 Dec 2019 19:58:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29FECE0AF9; Sun, 22 Dec 2019 19:58:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D08EE0AF9 for ; Sun, 22 Dec 2019 19:58:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9B1C34DA82 for ; Sun, 22 Dec 2019 19:58:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50F1E141F4 for ; Sun, 22 Dec 2019 19:58:25 +0000 (UTC) From: "Nick Sarnie" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nick Sarnie" Message-ID: <1577044681.40a064074c4e6508341fef697c86da1d1c5b959d.sarnex@gentoo> Subject: [gentoo-commits] repo/proj/wine:master commit in: virtual/wine/ X-VCS-Repository: repo/proj/wine X-VCS-Files: virtual/wine/wine-0-r7.ebuild X-VCS-Directories: virtual/wine/ X-VCS-Committer: sarnex X-VCS-Committer-Name: Nick Sarnie X-VCS-Revision: 40a064074c4e6508341fef697c86da1d1c5b959d X-VCS-Branch: master Date: Sun, 22 Dec 2019 19:58:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 62ec7482-e413-4cb1-95ca-b3ff6cde027c X-Archives-Hash: 9db771a6a1891755e12036879b1a3404 commit: 40a064074c4e6508341fef697c86da1d1c5b959d Author: Nick Sarnie gentoo org> AuthorDate: Sun Dec 22 19:58:01 2019 +0000 Commit: Nick Sarnie gentoo org> CommitDate: Sun Dec 22 19:58:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=40a06407 virtual/wine: Add 0-r7 Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: Nick Sarnie gentoo.org> virtual/wine/wine-0-r7.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/virtual/wine/wine-0-r7.ebuild b/virtual/wine/wine-0-r7.ebuild new file mode 100644 index 0000000..18cacfa --- /dev/null +++ b/virtual/wine/wine-0-r7.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual for Wine that supports multiple variants and slotting" + +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="+abi_x86_32 +abi_x86_64 staging" + +REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )" + +# Note, the ordering here is intentional, to take advantage of the short-circuit +# logic of portage, to enforce wine-vanilla as default for new users. The idea +# behind this is that some USE flags may pull in 3rd-party patchsets, so default +# of vanilla prevents that. +RDEPEND=" + staging? ( || ( + app-emulation/wine-staging[staging] + ) ) + || ( + app-emulation/wine-vanilla[abi_x86_32=,abi_x86_64=] + app-emulation/wine-staging[abi_x86_32=,abi_x86_64=] + ) + !app-emulation/wine:0"