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 8ED61138350 for ; Mon, 9 Mar 2020 14:56:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5D86E0843; Mon, 9 Mar 2020 14:56:15 +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 94337E0843 for ; Mon, 9 Mar 2020 14:56:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 844BD34F326 for ; Mon, 9 Mar 2020 14:56:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4020E14D for ; Mon, 9 Mar 2020 14:56:13 +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: <1583765726.35277459b38617e7c8bcaaab4cdedd57c13dd845.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: 35277459b38617e7c8bcaaab4cdedd57c13dd845 X-VCS-Branch: master Date: Mon, 9 Mar 2020 14:56:13 +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: ded9c084-497c-4a1f-8849-ddd42cbd6aa5 X-Archives-Hash: 75f7e21f821cd09710e3f57950a4729f commit: 35277459b38617e7c8bcaaab4cdedd57c13dd845 Author: Michael Haubenwallner gentoo org> AuthorDate: Mon Mar 9 14:36:08 2020 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Mon Mar 9 14:55:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35277459 sys-devel/parity: upstream changed arch names; drop _ in USE Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Michael Haubenwallner gentoo.org> sys-devel/parity/metadata.xml | 4 ++-- sys-devel/parity/parity-9999.ebuild | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sys-devel/parity/metadata.xml b/sys-devel/parity/metadata.xml index 40c8b82ed8b..606de9ef652 100644 --- a/sys-devel/parity/metadata.xml +++ b/sys-devel/parity/metadata.xml @@ -19,7 +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 + 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 f1ec325bab1..d6b23a8c4e0 100644 --- a/sys-devel/parity/parity-9999.ebuild +++ b/sys-devel/parity/parity-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,12 +9,12 @@ if [[ ${PV} == 9999 ]]; then DEPEND="dev-util/confix" else SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - KEYWORDS="" + KEYWORDS="~x64-cygwin" fi DESCRIPTION="A POSIX to native Win32 Cross-Compiler Tool (requires Visual Studio)" HOMEPAGE="https://github.com/haubi/parity" -parity-vcarchs() { echo x64 x86 ; } +parity-vcarchs() { echo x64=x86_64 x86=i686 ; } 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 16 ; } parity-vcvers() { @@ -25,7 +25,7 @@ parity-vcvers() { LICENSE="LGPL-3" SLOT="0" IUSE="$( - for a in $(parity-vcarchs); do echo "+vc_${a}"; done + for a in $(parity-vcarchs); do echo "+vc${a%=*}"; done for v in $(parity-vcvers-legacy); do echo "vc${v}"; done for v in $(parity-vcvers-current); do echo "+vc${v}"; done )" @@ -41,8 +41,8 @@ fi parity-enabled-vcarchs() { local enabled= a for a in $(parity-vcarchs) ; do - if use vc_${a} ; then - enabled+=",${a}" + if use vc${a%=*} ; then + enabled+=",${a#*=}" fi done echo ${enabled#,}