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 3867A1382C5 for ; Mon, 17 May 2021 14:50:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 355ACE0798; Mon, 17 May 2021 14:50:02 +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 F3C4FE0798 for ; Mon, 17 May 2021 14:50:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AC879335C7E for ; Mon, 17 May 2021 14:50:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41449644 for ; Mon, 17 May 2021 14:49:59 +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: <1621262952.e4ad5d41ab71361b85ed4b6f2fce82bdda1c8645.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/swoole/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/swoole/swoole-4.2.13.ebuild dev-php/swoole/swoole-4.4.12.ebuild dev-php/swoole/swoole-4.4.14.ebuild dev-php/swoole/swoole-4.4.15.ebuild dev-php/swoole/swoole-4.4.16.ebuild dev-php/swoole/swoole-4.4.19.ebuild dev-php/swoole/swoole-4.5.9.ebuild X-VCS-Directories: dev-php/swoole/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: e4ad5d41ab71361b85ed4b6f2fce82bdda1c8645 X-VCS-Branch: master Date: Mon, 17 May 2021 14:49:59 +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: 63988c6b-dde2-4d1b-af1d-2aa780289121 X-Archives-Hash: 2cfa2df3804a70a0c9deee3ee00d0691 commit: e4ad5d41ab71361b85ed4b6f2fce82bdda1c8645 Author: Brian Evans gentoo org> AuthorDate: Mon May 17 14:49:12 2021 +0000 Commit: Brian Evans gentoo org> CommitDate: Mon May 17 14:49:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4ad5d41 dev-php/swoole: Swap EROOT for ESYSROOT in src_configure Signed-off-by: Brian Evans gentoo.org> dev-php/swoole/swoole-4.2.13.ebuild | 4 ++-- dev-php/swoole/swoole-4.4.12.ebuild | 4 ++-- dev-php/swoole/swoole-4.4.14.ebuild | 4 ++-- dev-php/swoole/swoole-4.4.15.ebuild | 4 ++-- dev-php/swoole/swoole-4.4.16.ebuild | 4 ++-- dev-php/swoole/swoole-4.4.19.ebuild | 4 ++-- dev-php/swoole/swoole-4.5.9.ebuild | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/dev-php/swoole/swoole-4.2.13.ebuild b/dev-php/swoole/swoole-4.2.13.ebuild index facb4470ae8..5f7e9c4b7df 100644 --- a/dev-php/swoole/swoole-4.2.13.ebuild +++ b/dev-php/swoole/swoole-4.2.13.ebuild @@ -44,7 +44,7 @@ IUSE="debug http2 mysql sockets ssl" src_configure() { # PostgreSQL disabled due to Gentoo's slot system - # JEMalloc not included as it refuses to find a ${EROOT}/usr/includes/jemalloc subdirectory + # JEMalloc not included as it refuses to find a ${ESYSROOT}/usr/includes/jemalloc subdirectory local PHP_EXT_ECONF_ARGS=( --enable-swoole --disable-coroutine-postgresql @@ -52,7 +52,7 @@ src_configure() { $(use_enable http2) $(use_enable mysql mysqlnd) $(use_enable ssl openssl) - $(use_with ssl openssl-dir "${EROOT}/usr") + $(use_with ssl openssl-dir "${ESYSROOT}/usr") $(use_enable sockets) ) diff --git a/dev-php/swoole/swoole-4.4.12.ebuild b/dev-php/swoole/swoole-4.4.12.ebuild index dd302030870..4d978ebbd61 100644 --- a/dev-php/swoole/swoole-4.4.12.ebuild +++ b/dev-php/swoole/swoole-4.4.12.ebuild @@ -49,14 +49,14 @@ RDEPEND="${DEPEND}" IUSE="debug http2 mysql sockets ssl" src_configure() { - # JEMalloc not included as it refuses to find a ${EROOT}/usr/includes/jemalloc subdirectory + # JEMalloc not included as it refuses to find a ${ESYSROOT}/usr/includes/jemalloc subdirectory local PHP_EXT_ECONF_ARGS=( --enable-swoole $(use_enable debug) $(use_enable http2) $(use_enable mysql mysqlnd) $(use_enable ssl openssl) - $(use_with ssl openssl-dir "${EROOT}/usr") + $(use_with ssl openssl-dir "${ESYSROOT}/usr") $(use_enable sockets) ) diff --git a/dev-php/swoole/swoole-4.4.14.ebuild b/dev-php/swoole/swoole-4.4.14.ebuild index dd302030870..4d978ebbd61 100644 --- a/dev-php/swoole/swoole-4.4.14.ebuild +++ b/dev-php/swoole/swoole-4.4.14.ebuild @@ -49,14 +49,14 @@ RDEPEND="${DEPEND}" IUSE="debug http2 mysql sockets ssl" src_configure() { - # JEMalloc not included as it refuses to find a ${EROOT}/usr/includes/jemalloc subdirectory + # JEMalloc not included as it refuses to find a ${ESYSROOT}/usr/includes/jemalloc subdirectory local PHP_EXT_ECONF_ARGS=( --enable-swoole $(use_enable debug) $(use_enable http2) $(use_enable mysql mysqlnd) $(use_enable ssl openssl) - $(use_with ssl openssl-dir "${EROOT}/usr") + $(use_with ssl openssl-dir "${ESYSROOT}/usr") $(use_enable sockets) ) diff --git a/dev-php/swoole/swoole-4.4.15.ebuild b/dev-php/swoole/swoole-4.4.15.ebuild index dd302030870..4d978ebbd61 100644 --- a/dev-php/swoole/swoole-4.4.15.ebuild +++ b/dev-php/swoole/swoole-4.4.15.ebuild @@ -49,14 +49,14 @@ RDEPEND="${DEPEND}" IUSE="debug http2 mysql sockets ssl" src_configure() { - # JEMalloc not included as it refuses to find a ${EROOT}/usr/includes/jemalloc subdirectory + # JEMalloc not included as it refuses to find a ${ESYSROOT}/usr/includes/jemalloc subdirectory local PHP_EXT_ECONF_ARGS=( --enable-swoole $(use_enable debug) $(use_enable http2) $(use_enable mysql mysqlnd) $(use_enable ssl openssl) - $(use_with ssl openssl-dir "${EROOT}/usr") + $(use_with ssl openssl-dir "${ESYSROOT}/usr") $(use_enable sockets) ) diff --git a/dev-php/swoole/swoole-4.4.16.ebuild b/dev-php/swoole/swoole-4.4.16.ebuild index dd302030870..4d978ebbd61 100644 --- a/dev-php/swoole/swoole-4.4.16.ebuild +++ b/dev-php/swoole/swoole-4.4.16.ebuild @@ -49,14 +49,14 @@ RDEPEND="${DEPEND}" IUSE="debug http2 mysql sockets ssl" src_configure() { - # JEMalloc not included as it refuses to find a ${EROOT}/usr/includes/jemalloc subdirectory + # JEMalloc not included as it refuses to find a ${ESYSROOT}/usr/includes/jemalloc subdirectory local PHP_EXT_ECONF_ARGS=( --enable-swoole $(use_enable debug) $(use_enable http2) $(use_enable mysql mysqlnd) $(use_enable ssl openssl) - $(use_with ssl openssl-dir "${EROOT}/usr") + $(use_with ssl openssl-dir "${ESYSROOT}/usr") $(use_enable sockets) ) diff --git a/dev-php/swoole/swoole-4.4.19.ebuild b/dev-php/swoole/swoole-4.4.19.ebuild index dd302030870..4d978ebbd61 100644 --- a/dev-php/swoole/swoole-4.4.19.ebuild +++ b/dev-php/swoole/swoole-4.4.19.ebuild @@ -49,14 +49,14 @@ RDEPEND="${DEPEND}" IUSE="debug http2 mysql sockets ssl" src_configure() { - # JEMalloc not included as it refuses to find a ${EROOT}/usr/includes/jemalloc subdirectory + # JEMalloc not included as it refuses to find a ${ESYSROOT}/usr/includes/jemalloc subdirectory local PHP_EXT_ECONF_ARGS=( --enable-swoole $(use_enable debug) $(use_enable http2) $(use_enable mysql mysqlnd) $(use_enable ssl openssl) - $(use_with ssl openssl-dir "${EROOT}/usr") + $(use_with ssl openssl-dir "${ESYSROOT}/usr") $(use_enable sockets) ) diff --git a/dev-php/swoole/swoole-4.5.9.ebuild b/dev-php/swoole/swoole-4.5.9.ebuild index 48523b05538..5d517105180 100644 --- a/dev-php/swoole/swoole-4.5.9.ebuild +++ b/dev-php/swoole/swoole-4.5.9.ebuild @@ -43,14 +43,14 @@ RDEPEND="${DEPEND}" IUSE="debug http2 mysql sockets ssl" src_configure() { - # JEMalloc not included as it refuses to find a ${EROOT}/usr/includes/jemalloc subdirectory + # JEMalloc not included as it refuses to find a ${ESYSROOT}/usr/includes/jemalloc subdirectory local PHP_EXT_ECONF_ARGS=( --enable-swoole $(use_enable debug) $(use_enable http2) $(use_enable mysql mysqlnd) $(use_enable ssl openssl) - $(use_with ssl openssl-dir "${EROOT}/usr") + $(use_with ssl openssl-dir "${ESYSROOT}/usr") $(use_enable sockets) )