diff options
author | Jeroen Roovers <jer@gentoo.org> | 2018-10-05 20:20:43 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2018-10-05 20:20:58 +0200 |
commit | 9e69c9a316fd7c0d34c954d01b843158ee5b6ab2 (patch) | |
tree | e16b9c63fd239345c53c04cbfbe235185ca2de21 /net-libs/libssh2/libssh2-1.8.0-r2.ebuild | |
parent | app-admin/testdisk: Add myself as co-maintainer (diff) | |
download | gentoo-9e69c9a316fd7c0d34c954d01b843158ee5b6ab2.tar.gz gentoo-9e69c9a316fd7c0d34c954d01b843158ee5b6ab2.tar.bz2 gentoo-9e69c9a316fd7c0d34c954d01b843158ee5b6ab2.zip |
net-libs/libssh2: Add RESTRICT=test
Many of the tests require app-emulation/docker to be set up and working.
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'net-libs/libssh2/libssh2-1.8.0-r2.ebuild')
-rw-r--r-- | net-libs/libssh2/libssh2-1.8.0-r2.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net-libs/libssh2/libssh2-1.8.0-r2.ebuild b/net-libs/libssh2/libssh2-1.8.0-r2.ebuild index 76496b69216c..501d50e45694 100644 --- a/net-libs/libssh2/libssh2-1.8.0-r2.ebuild +++ b/net-libs/libssh2/libssh2-1.8.0-r2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit cmake-utils multilib-minimal +inherit cmake-multilib DESCRIPTION="Library implementing the SSH2 protocol" HOMEPAGE="https://www.libssh2.org" @@ -11,10 +11,11 @@ SRC_URI="https://www.${PN}.org/download/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris" -IUSE="gcrypt libressl mbedtls test zlib" +IUSE="gcrypt libressl mbedtls zlib" REQUIRED_USE=" ?? ( gcrypt libressl mbedtls ) " +RESTRICT="test" RDEPEND=" !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}] ) @@ -23,7 +24,9 @@ RDEPEND=" mbedtls? ( net-libs/mbedtls[${MULTILIB_USEDEP}] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) " -DEPEND="${RDEPEND}" +DEPEND=" + ${RDEPEND} +" PATCHES=( "${FILESDIR}"/${PN}-1.8.0-libgcrypt-prefix.patch |