diff options
author | Michael Haubenwallner <haubi@gentoo.org> | 2020-03-09 15:36:08 +0100 |
---|---|---|
committer | Michael Haubenwallner <haubi@gentoo.org> | 2020-03-09 15:55:26 +0100 |
commit | 35277459b38617e7c8bcaaab4cdedd57c13dd845 (patch) | |
tree | 7ff97f4a64e4d32e29a49da073d0af50d2547bb4 /sys-devel/parity | |
parent | mail-client/claws-mail: Revbump to depend on app-text/enchant:2 (diff) | |
download | gentoo-35277459b38617e7c8bcaaab4cdedd57c13dd845.tar.gz gentoo-35277459b38617e7c8bcaaab4cdedd57c13dd845.tar.bz2 gentoo-35277459b38617e7c8bcaaab4cdedd57c13dd845.zip |
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 <haubi@gentoo.org>
Diffstat (limited to 'sys-devel/parity')
-rw-r--r-- | sys-devel/parity/metadata.xml | 4 | ||||
-rw-r--r-- | 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 40c8b82ed8b6..606de9ef652a 100644 --- a/sys-devel/parity/metadata.xml +++ b/sys-devel/parity/metadata.xml @@ -19,7 +19,7 @@ <flag name="vc14_0">Enable support for Visual Studio 2015</flag> <flag name="vc15">Enable support for Visual Studio 2017</flag> <flag name="vc16">Enable support for Visual Studio 2019</flag> - <flag name="vc_x64">Enable support for 64bit Visual Studio compilers</flag> - <flag name="vc_x86">Enable support for 32bit Visual Studio compilers</flag> + <flag name="vcx64">Enable support for 64bit Visual Studio compilers</flag> + <flag name="vcx86">Enable support for 32bit Visual Studio compilers</flag> </use> </pkgmetadata> diff --git a/sys-devel/parity/parity-9999.ebuild b/sys-devel/parity/parity-9999.ebuild index f1ec325bab1f..d6b23a8c4e03 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#,} |