Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libssh2/
Date: Tue, 02 Jan 2018 06:19:15
Message-Id: 1514873932.e5a20e46e5b0762e1b9a10ffdf04ad0de2949c98.mgorny@gentoo
1 commit: e5a20e46e5b0762e1b9a10ffdf04ad0de2949c98
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 1 22:08:31 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 06:18:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5a20e46
7
8 net-libs/libssh2: Clean old up
9
10 net-libs/libssh2/libssh2-1.8.0.ebuild | 48 -----------------------------------
11 1 file changed, 48 deletions(-)
12
13 diff --git a/net-libs/libssh2/libssh2-1.8.0.ebuild b/net-libs/libssh2/libssh2-1.8.0.ebuild
14 deleted file mode 100644
15 index 3cc10e06541..00000000000
16 --- a/net-libs/libssh2/libssh2-1.8.0.ebuild
17 +++ /dev/null
18 @@ -1,48 +0,0 @@
19 -# Copyright 1999-2017 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=5
23 -
24 -AUTOTOOLS_AUTORECONF=true
25 -inherit autotools-multilib
26 -
27 -DESCRIPTION="Library implementing the SSH2 protocol"
28 -HOMEPAGE="http://www.libssh2.org/"
29 -SRC_URI="http://www.${PN}.org/download/${P}.tar.gz"
30 -
31 -LICENSE="BSD"
32 -SLOT="0"
33 -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"
34 -IUSE="gcrypt libressl static-libs test zlib"
35 -
36 -DEPEND="
37 - !gcrypt? (
38 - !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] )
39 - libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] )
40 - )
41 - gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] )
42 - zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
43 -"
44 -RDEPEND="
45 - ${DEPEND}
46 -"
47 -
48 -DOCS=( NEWS README )
49 -
50 -PATCHES=( "${FILESDIR}"/${PN}-1.8.0-libgcrypt-prefix.patch )
51 -
52 -src_prepare() {
53 - sed -i -e 's|mansyntax.sh||g' tests/Makefile.am || die
54 - autotools-multilib_src_prepare
55 -}
56 -
57 -multilib_src_configure() {
58 - # Disable tests that require extra permissions (bug #333319)
59 - use test && local -x ac_cv_path_SSHD=
60 -
61 - local myeconfargs=(
62 - $(use_with zlib libz)
63 - $(usex gcrypt --with-libgcrypt --with-openssl)
64 - )
65 - autotools-utils_src_configure
66 -}