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 EF0B1139694 for ; Fri, 21 Apr 2017 20:32:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5ABFE0BDF; Fri, 21 Apr 2017 20:32:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 90DE2E0BDF for ; Fri, 21 Apr 2017 20:32:24 +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 F0F32340AC7 for ; Fri, 21 Apr 2017 20:32:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6338173EF for ; Fri, 21 Apr 2017 20:32:21 +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: <1492806728.a1ac40c0f2bcf4ba27f2208c19edfc26b02fff08.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-amqp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-amqp/pecl-amqp-1.9.0.ebuild X-VCS-Directories: dev-php/pecl-amqp/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: a1ac40c0f2bcf4ba27f2208c19edfc26b02fff08 X-VCS-Branch: master Date: Fri, 21 Apr 2017 20:32:21 +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: 8d1a5601-2f9f-4b46-afc0-5279cc7e255f X-Archives-Hash: cc1e0a86a10892dc00e697eac3a623e7 commit: a1ac40c0f2bcf4ba27f2208c19edfc26b02fff08 Author: Brian Evans gentoo org> AuthorDate: Fri Apr 21 20:32:08 2017 +0000 Commit: Brian Evans gentoo org> CommitDate: Fri Apr 21 20:32:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1ac40c0 dev-php/pecl-amqp: Add missing ssl USE requirement on rabbitmq-c This causes a build failure for those with ssl off Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-php/pecl-amqp/pecl-amqp-1.9.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-php/pecl-amqp/pecl-amqp-1.9.0.ebuild b/dev-php/pecl-amqp/pecl-amqp-1.9.0.ebuild index 5960e89908b..20df124580c 100644 --- a/dev-php/pecl-amqp/pecl-amqp-1.9.0.ebuild +++ b/dev-php/pecl-amqp/pecl-amqp-1.9.0.ebuild @@ -14,5 +14,6 @@ LICENSE="PHP-3.01" SLOT="0" IUSE="" -DEPEND=">=net-libs/rabbitmq-c-0.5.2 virtual/pkgconfig" -RDEPEND=">=net-libs/rabbitmq-c-0.5.2:=" +DEPEND=">=net-libs/rabbitmq-c-0.5.2[ssl] virtual/pkgconfig" +RDEPEND=">=net-libs/rabbitmq-c-0.5.2:=[ssl]" +PHP_EXT_ECONF_ARGS=()