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 66520138350 for ; Thu, 23 Jan 2020 18:38:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C3E6E0A98; Thu, 23 Jan 2020 18:38:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 29204E0A97 for ; Thu, 23 Jan 2020 18:38:58 +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 CE58134E48A for ; Thu, 23 Jan 2020 18:38:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09027101 for ; Thu, 23 Jan 2020 18:38:55 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1579804729.faab86a2a5565c6d74f5b5875ac36cfd594b9af6.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-ssh2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild X-VCS-Directories: dev-php/pecl-ssh2/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: faab86a2a5565c6d74f5b5875ac36cfd594b9af6 X-VCS-Branch: master Date: Thu, 23 Jan 2020 18:38:55 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4b9143de-7e66-471d-b02d-d2a7209bb345 X-Archives-Hash: c19b5d11c39d89762ef7f8b5f5ff8c0c commit: faab86a2a5565c6d74f5b5875ac36cfd594b9af6 Author: Brian Evans gentoo org> AuthorDate: Thu Jan 23 18:05:12 2020 +0000 Commit: Brian Evans gentoo org> CommitDate: Thu Jan 23 18:38:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faab86a2 dev-php/pecl-ssh2: Drop unsupported slots from live build Signed-off-by: Brian Evans gentoo.org> dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild b/dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild index 583c2bfcf03..03d40dfe4d2 100644 --- a/dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild +++ b/dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild @@ -5,27 +5,16 @@ EAPI="7" PHP_EXT_NAME="ssh2" -USE_PHP="php5-6 php7-1 php7-2 php7-3 php7-4" +USE_PHP="php7-2 php7-3 php7-4" EGIT_REPO_URI="https://git.php.net/repository/pecl/networking/ssh2.git" inherit php-ext-source-r3 git-r3 -USE_PHP="php7-1 php7-2 php7-3 php7-4" - DESCRIPTION="PHP bindings for the libssh2 library" LICENSE="PHP-3.01" SLOT="7" IUSE="" KEYWORDS="" DEPEND=">=net-libs/libssh2-1.2" -RDEPEND="${DEPEND} - php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] )" +RDEPEND="${DEPEND}" HOMEPAGE="https://pecl.php.net/package/ssh2" - -src_prepare() { - if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3 || use php_targets_php7-4 ; then - php-ext-source-r3_src_prepare - else - default_src_prepare - fi -}