From: Sergei Trofimovich Date: Sun, 19 Apr 2020 15:00:17 +0000 (+0100) Subject: net-wireless/cpyrit-cuda: fix lexicographical version compare X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=95cd637b195737a6d1144bfcfcdb636bf5f6dd86;p=gentoo.git net-wireless/cpyrit-cuda: fix lexicographical version compare Closes: https://bugs.gentoo.org/705270 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich --- diff --git a/net-wireless/cpyrit-cuda/cpyrit-cuda-0.5.0.ebuild b/net-wireless/cpyrit-cuda/cpyrit-cuda-0.5.0.ebuild index 3b338589951f..3c8d5c041e81 100644 --- a/net-wireless/cpyrit-cuda/cpyrit-cuda-0.5.0.ebuild +++ b/net-wireless/cpyrit-cuda/cpyrit-cuda-0.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 ) DISTUTILS_SINGLE_IMPL=1 -inherit toolchain-funcs distutils-r1 +inherit toolchain-funcs distutils-r1 eapi7-ver DESCRIPTION="A sub-package that adds CUDA-capability to Pyrit" HOMEPAGE="https://github.com/JPaulMora/Pyrit" @@ -26,8 +26,8 @@ PDEPEND="~net-wireless/pyrit-${PV}" S="${WORKDIR}/Pyrit-${PV}/modules/cpyrit_cuda" pkg_pretend() { - if tc-is-gcc && [[ $(gcc-version) > 4.8 ]]; then - die "gcc 4.9 and up are not supported" + if tc-is-gcc && ver_test $(gcc-version) -ge 4.8; then + die "gcc 4.8 and up are not supported" fi }