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