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 8513C138334 for ; Fri, 23 Aug 2019 14:57:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3844E07A7; Fri, 23 Aug 2019 14:57:25 +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 C3338E07A7 for ; Fri, 23 Aug 2019 14:57:25 +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 768B034A216 for ; Fri, 23 Aug 2019 14:57:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C88CE266 for ; Fri, 23 Aug 2019 14:57:21 +0000 (UTC) From: "Michael Haubenwallner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Haubenwallner" Message-ID: <1566572217.0385ac994786119ca0d166b59e0fc8c4fa446208.haubi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/parity/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/parity/metadata.xml sys-devel/parity/parity-9999.ebuild X-VCS-Directories: sys-devel/parity/ X-VCS-Committer: haubi X-VCS-Committer-Name: Michael Haubenwallner X-VCS-Revision: 0385ac994786119ca0d166b59e0fc8c4fa446208 X-VCS-Branch: master Date: Fri, 23 Aug 2019 14:57:21 +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: d55149b2-8e5e-40d6-b468-1cdf38ff82eb X-Archives-Hash: fe9fa4c0454434cce40ad6c1828cf99c commit: 0385ac994786119ca0d166b59e0fc8c4fa446208 Author: Michael Haubenwallner gentoo org> AuthorDate: Fri Aug 23 14:52:34 2019 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Fri Aug 23 14:56:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0385ac99 sys-devel/parity: support x64; no more legacy MSVC by default Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Michael Haubenwallner gentoo.org> sys-devel/parity/metadata.xml | 1 + sys-devel/parity/parity-9999.ebuild | 12 +++++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/sys-devel/parity/metadata.xml b/sys-devel/parity/metadata.xml index f6466ef21aa..b5ae82a3cc8 100644 --- a/sys-devel/parity/metadata.xml +++ b/sys-devel/parity/metadata.xml @@ -19,6 +19,7 @@ Enable support for Visual Studio 2015 Enable support for Visual Studio 2017 Enable support for Visual Studio 2019 + Enable support for 64bit Visual Studio compilers Enable support for 32bit Visual Studio compilers diff --git a/sys-devel/parity/parity-9999.ebuild b/sys-devel/parity/parity-9999.ebuild index 38577c8f86b..50ab4b1e491 100644 --- a/sys-devel/parity/parity-9999.ebuild +++ b/sys-devel/parity/parity-9999.ebuild @@ -14,14 +14,20 @@ fi DESCRIPTION="A POSIX to native Win32 Cross-Compiler Tool (requires Visual Studio)" HOMEPAGE="https://github.com/haubi/parity" -parity-vcarchs() { echo x86 ; } -parity-vcvers() { echo 7_0 7_1 8_0 9_0 10_0 11_0 12_0 14_0 15_0 16_2 ; } +parity-vcarchs() { echo x64 x86 ; } +parity-vcvers-legacy() { echo 7_0 7_1 8_0 9_0 ; } +parity-vcvers-current() { echo 10_0 11_0 12_0 14_0 15_0 16_2 ; } +parity-vcvers() { + parity-vcvers-legacy + parity-vcvers-current +} LICENSE="LGPL-3" SLOT="0" IUSE="$( for a in $(parity-vcarchs); do echo "+vc_${a}"; done - for v in $(parity-vcvers); do echo "+vc${v}"; done + for v in $(parity-vcvers-legacy); do echo "vc${v}"; done + for v in $(parity-vcvers-current); do echo "+vc${v}"; done )" if [[ ${PV} == 9999 ]]; then