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 11828139085 for ; Tue, 3 Jan 2017 05:05:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43928E0D35; Tue, 3 Jan 2017 05:05:46 +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 0BE1AE0D35 for ; Tue, 3 Jan 2017 05:05:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E477340DC7 for ; Tue, 3 Jan 2017 05:05:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8EB02521 for ; Tue, 3 Jan 2017 05:05:42 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1483419820.c9face083ba534f37d02a1c4d76c6337fef4c911.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-stomp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild dev-php/pecl-stomp/pecl-stomp-1.0.9.ebuild dev-php/pecl-stomp/pecl-stomp-2.0.0-r1.ebuild dev-php/pecl-stomp/pecl-stomp-2.0.0.ebuild X-VCS-Directories: dev-php/pecl-stomp/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: c9face083ba534f37d02a1c4d76c6337fef4c911 X-VCS-Branch: master Date: Tue, 3 Jan 2017 05:05:42 +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: cbbb33f4-f207-412c-840e-232e6ebdc926 X-Archives-Hash: fbca9d3f52e9c496e04e7a63353cbb6e commit: c9face083ba534f37d02a1c4d76c6337fef4c911 Author: Michael Orlitzky gentoo org> AuthorDate: Tue Jan 3 04:57:50 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Tue Jan 3 05:03:40 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9face08 dev-php/pecl-stomp: new revisions fixing the no-ssl build. The main reason for these two new revisions are to fix what happens when USE="-ssl" is set. The build system expects --with-openssl-dir=no in that case, so the existing --without-openssl-dir was causing it to crash. That should now be fixed; I've used "usex" instead of "use_with". Some other minor fixes were made: * The LICENSE for this package is PHP-3.01, not PHP-3. * The "ssl" flag was also defaulted to being on, which -- unless critical -- kind of defeats the purpose of USE flags. It now defaults to being off. * Two eclass variables that were set to their default values have been removed. * The test suite is now enabled, but only for v2.0.0 where it actually passes (even though failure doesn't kill the build?). Gentoo-Bug: 603560 Package-Manager: portage-2.3.0 ...l-stomp-1.0.9.ebuild => pecl-stomp-1.0.9-r1.ebuild} | 18 +++++++++--------- ...l-stomp-2.0.0.ebuild => pecl-stomp-2.0.0-r1.ebuild} | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/dev-php/pecl-stomp/pecl-stomp-1.0.9.ebuild b/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild similarity index 69% rename from dev-php/pecl-stomp/pecl-stomp-1.0.9.ebuild rename to dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild index 2ac7efc..ca443b9 100644 --- a/dev-php/pecl-stomp/pecl-stomp-1.0.9.ebuild +++ b/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild @@ -1,13 +1,11 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="6" +EAPI=6 USE_PHP="php5-6 php7-0" PHP_EXT_NAME="stomp" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" DOCS=( CREDITS doc/classes.php doc/functions.php ) inherit php-ext-pecl-r3 @@ -16,10 +14,10 @@ USE_PHP="php5-6" KEYWORDS="~amd64 ~x86" -DESCRIPTION="PHP extension to communicate with Stomp compliant Message Brokers" -LICENSE="PHP-3" +DESCRIPTION="PHP extension to communicate with Stomp message brokers" +LICENSE="PHP-3.01" SLOT="0" -IUSE="examples +ssl" +IUSE="examples ssl" DEPEND="${DEPEND} php_targets_php5-6? ( dev-lang/php:5.6[ssl?] ) @@ -37,8 +35,10 @@ src_prepare() { } src_configure() { - local PHP_EXT_ECONF_ARGS=( --enable-stomp - $(use_with ssl openssl-dir=/usr) ) + local PHP_EXT_ECONF_ARGS=( + --enable-stomp + --with-openssl-dir=$(usex ssl "${EPREFIX}/usr") + ) php-ext-source-r3_src_configure } diff --git a/dev-php/pecl-stomp/pecl-stomp-2.0.0.ebuild b/dev-php/pecl-stomp/pecl-stomp-2.0.0-r1.ebuild similarity index 69% rename from dev-php/pecl-stomp/pecl-stomp-2.0.0.ebuild rename to dev-php/pecl-stomp/pecl-stomp-2.0.0-r1.ebuild index 08bd349..a64f473 100644 --- a/dev-php/pecl-stomp/pecl-stomp-2.0.0.ebuild +++ b/dev-php/pecl-stomp/pecl-stomp-2.0.0-r1.ebuild @@ -1,13 +1,11 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="6" +EAPI=6 USE_PHP="php5-6 php7-0" PHP_EXT_NAME="stomp" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" DOCS=( CREDITS doc/classes.php doc/functions.php ) inherit php-ext-pecl-r3 @@ -16,10 +14,10 @@ USE_PHP="php7-0" KEYWORDS="~amd64 ~x86" -DESCRIPTION="PHP extension to communicate with Stomp compliant Message Brokers" -LICENSE="PHP-3" +DESCRIPTION="PHP extension to communicate with Stomp message brokers" +LICENSE="PHP-3.01" SLOT="7" -IUSE="examples +ssl" +IUSE="examples ssl test" DEPEND="${DEPEND} php_targets_php7-0? ( dev-lang/php:7.0[ssl?] ) @@ -37,8 +35,10 @@ src_prepare() { } src_configure() { - local PHP_EXT_ECONF_ARGS=( --enable-stomp - $(use_with ssl openssl-dir=/usr) ) + local PHP_EXT_ECONF_ARGS=( + --enable-stomp + --with-openssl-dir=$(usex ssl "${EPREFIX}/usr") + ) php-ext-source-r3_src_configure }