From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 27C28138206 for ; Tue, 2 Jan 2018 06:19:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C071DE0866; Tue, 2 Jan 2018 06:19:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A004DE0867 for ; Tue, 2 Jan 2018 06:19:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA38E335C0D for ; Tue, 2 Jan 2018 06:19:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1539C1AB for ; Tue, 2 Jan 2018 06:19:04 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1514873932.e5a20e46e5b0762e1b9a10ffdf04ad0de2949c98.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libssh2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libssh2/libssh2-1.8.0.ebuild X-VCS-Directories: net-libs/libssh2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e5a20e46e5b0762e1b9a10ffdf04ad0de2949c98 X-VCS-Branch: master Date: Tue, 2 Jan 2018 06:19:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d344a98f-23b4-498c-8e13-845771cd80cd X-Archives-Hash: aa31f6a02f5697ccef42ce55a64ad579 commit: e5a20e46e5b0762e1b9a10ffdf04ad0de2949c98 Author: Michał Górny gentoo org> AuthorDate: Mon Jan 1 22:08:31 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jan 2 06:18:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5a20e46 net-libs/libssh2: Clean old up net-libs/libssh2/libssh2-1.8.0.ebuild | 48 ----------------------------------- 1 file changed, 48 deletions(-) diff --git a/net-libs/libssh2/libssh2-1.8.0.ebuild b/net-libs/libssh2/libssh2-1.8.0.ebuild deleted file mode 100644 index 3cc10e06541..00000000000 --- a/net-libs/libssh2/libssh2-1.8.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_AUTORECONF=true -inherit autotools-multilib - -DESCRIPTION="Library implementing the SSH2 protocol" -HOMEPAGE="http://www.libssh2.org/" -SRC_URI="http://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 static-libs test zlib" - -DEPEND=" - !gcrypt? ( - !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) - ) - gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] ) - zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) -" -RDEPEND=" - ${DEPEND} -" - -DOCS=( NEWS README ) - -PATCHES=( "${FILESDIR}"/${PN}-1.8.0-libgcrypt-prefix.patch ) - -src_prepare() { - sed -i -e 's|mansyntax.sh||g' tests/Makefile.am || die - autotools-multilib_src_prepare -} - -multilib_src_configure() { - # Disable tests that require extra permissions (bug #333319) - use test && local -x ac_cv_path_SSHD= - - local myeconfargs=( - $(use_with zlib libz) - $(usex gcrypt --with-libgcrypt --with-openssl) - ) - autotools-utils_src_configure -}