Diff libssh2-1.11.0-r2 with a libssh2-9999

/usr/portage/net-libs/libssh2/libssh2-9999.ebuild 2023-10-09 14:52:34.592368479 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit cmake-multilib
6
inherit cmake-multilib git-r3
7 7

  
8 8
DESCRIPTION="Library implementing the SSH2 protocol"
9 9
HOMEPAGE="https://www.libssh2.org"
10
SRC_URI="https://www.libssh2.org/download/${P}.tar.xz"
10
EGIT_REPO_URI="https://github.com/libssh2/libssh2"
11 11

  
12 12
LICENSE="BSD"
13 13
SLOT="0"
14
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
14
KEYWORDS=""
15 15
IUSE="gcrypt mbedtls test zlib"
16 16
REQUIRED_USE="?? ( gcrypt mbedtls )"
17 17
RESTRICT="!test? ( test )"
......
26 26
	)
27 27
	zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
28 28
"
29
DEPEND="
30
	${RDEPEND}
31
"
29
DEPEND="${RDEPEND}"
32 30

  
33 31
PATCHES=(
34 32
	"${FILESDIR}"/${PN}-1.11.0-mansyntax_sh.patch
35
	"${FILESDIR}"/${PN}-1.11.0-size_t.patch
36 33
)
37 34

  
38 35
multilib_src_configure() {
......
48 45
		-DBUILD_TESTING=$(usex test)
49 46
		-DCRYPTO_BACKEND=${crypto_backend}
50 47
		-DENABLE_ZLIB_COMPRESSION=$(usex zlib)
48
		-DRUN_SSHD_TESTS=OFF
49
		-DRUN_DOCKER_TESTS=OFF
51 50
	)
52 51

  
53 52
	if use test ; then
Thank you!