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 050A2138334 for ; Tue, 26 Jun 2018 20:21:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1F8EE0921; Tue, 26 Jun 2018 20:21:47 +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 A4ECFE0921 for ; Tue, 26 Jun 2018 20:21:47 +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 72A1E335CA7 for ; Tue, 26 Jun 2018 20:21:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BAE72C2 for ; Tue, 26 Jun 2018 20:21:43 +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: <1530044487.515e521c643a8d92c25a8a1e66c9c200a1f4f3c0.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/php/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/php/php-5.6.35-r1.ebuild dev-lang/php/php-5.6.36.ebuild dev-lang/php/php-7.0.29.ebuild dev-lang/php/php-7.0.30.ebuild dev-lang/php/php-7.1.16.ebuild dev-lang/php/php-7.1.18.ebuild dev-lang/php/php-7.1.19.ebuild dev-lang/php/php-7.2.7.ebuild dev-lang/php/php-7.3.0_alpha1.ebuild X-VCS-Directories: dev-lang/php/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 515e521c643a8d92c25a8a1e66c9c200a1f4f3c0 X-VCS-Branch: master Date: Tue, 26 Jun 2018 20:21:43 +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: dc60675e-5424-4a53-bda6-1637b5d67615 X-Archives-Hash: 80f355d02fc7cef7f7b18b9003740722 commit: 515e521c643a8d92c25a8a1e66c9c200a1f4f3c0 Author: Brian Evans gentoo org> AuthorDate: Tue Jun 26 20:21:27 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Tue Jun 26 20:21:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515e521c dev-lang/php: Silence uncontrolable repoman warnings The addpredicts originate due to libsnmp that PHP cannot change in its behaviour Silence the warnings to find real problems Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-lang/php/php-5.6.35-r1.ebuild | 10 +++++----- dev-lang/php/php-5.6.36.ebuild | 10 +++++----- dev-lang/php/php-7.0.29.ebuild | 10 +++++----- dev-lang/php/php-7.0.30.ebuild | 10 +++++----- dev-lang/php/php-7.1.16.ebuild | 10 +++++----- dev-lang/php/php-7.1.18.ebuild | 10 +++++----- dev-lang/php/php-7.1.19.ebuild | 10 +++++----- dev-lang/php/php-7.2.7.ebuild | 10 +++++----- dev-lang/php/php-7.3.0_alpha1.ebuild | 10 +++++----- 9 files changed, 45 insertions(+), 45 deletions(-) diff --git a/dev-lang/php/php-5.6.35-r1.ebuild b/dev-lang/php/php-5.6.35-r1.ebuild index bb5bbdaecb0..56d281890cd 100644 --- a/dev-lang/php/php-5.6.35-r1.ebuild +++ b/dev-lang/php/php-5.6.35-r1.ebuild @@ -272,8 +272,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -530,8 +530,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -544,7 +544,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi="" diff --git a/dev-lang/php/php-5.6.36.ebuild b/dev-lang/php/php-5.6.36.ebuild index 4c6e6b97966..a4c512c99b7 100644 --- a/dev-lang/php/php-5.6.36.ebuild +++ b/dev-lang/php/php-5.6.36.ebuild @@ -273,8 +273,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -531,8 +531,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -545,7 +545,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi="" diff --git a/dev-lang/php/php-7.0.29.ebuild b/dev-lang/php/php-7.0.29.ebuild index 0c32a2cff73..a5743214637 100644 --- a/dev-lang/php/php-7.0.29.ebuild +++ b/dev-lang/php/php-7.0.29.ebuild @@ -244,8 +244,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -498,8 +498,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -512,7 +512,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi="" diff --git a/dev-lang/php/php-7.0.30.ebuild b/dev-lang/php/php-7.0.30.ebuild index 30e7685c388..4ecf2102f2a 100644 --- a/dev-lang/php/php-7.0.30.ebuild +++ b/dev-lang/php/php-7.0.30.ebuild @@ -244,8 +244,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -498,8 +498,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -512,7 +512,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi="" diff --git a/dev-lang/php/php-7.1.16.ebuild b/dev-lang/php/php-7.1.16.ebuild index ca595ad6fca..0adf8fe59a0 100644 --- a/dev-lang/php/php-7.1.16.ebuild +++ b/dev-lang/php/php-7.1.16.ebuild @@ -226,8 +226,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -480,8 +480,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -494,7 +494,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi="" diff --git a/dev-lang/php/php-7.1.18.ebuild b/dev-lang/php/php-7.1.18.ebuild index d2e931661bb..29a9d115dfd 100644 --- a/dev-lang/php/php-7.1.18.ebuild +++ b/dev-lang/php/php-7.1.18.ebuild @@ -224,8 +224,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -478,8 +478,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -492,7 +492,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi="" diff --git a/dev-lang/php/php-7.1.19.ebuild b/dev-lang/php/php-7.1.19.ebuild index a3757ac5b58..1432a2ae457 100644 --- a/dev-lang/php/php-7.1.19.ebuild +++ b/dev-lang/php/php-7.1.19.ebuild @@ -221,8 +221,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -475,8 +475,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -489,7 +489,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi="" diff --git a/dev-lang/php/php-7.2.7.ebuild b/dev-lang/php/php-7.2.7.ebuild index 0970a2fa088..ecf193ae0d1 100644 --- a/dev-lang/php/php-7.2.7.ebuild +++ b/dev-lang/php/php-7.2.7.ebuild @@ -226,8 +226,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -487,8 +487,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -501,7 +501,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi="" diff --git a/dev-lang/php/php-7.3.0_alpha1.ebuild b/dev-lang/php/php-7.3.0_alpha1.ebuild index 2fcf528ff92..27d2d493ca1 100644 --- a/dev-lang/php/php-7.3.0_alpha1.ebuild +++ b/dev-lang/php/php-7.3.0_alpha1.ebuild @@ -229,8 +229,8 @@ src_prepare() { } src_configure() { - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn PHP_DESTDIR="${EPREFIX}/usr/$(get_libdir)/php${SLOT}" @@ -490,8 +490,8 @@ src_configure() { src_compile() { # snmp seems to run during src_compile, too (bug #324739) - addpredict /usr/share/snmp/mibs/.index - addpredict /var/lib/net-snmp/mib_indexes + addpredict /usr/share/snmp/mibs/.index #nowarn + addpredict /var/lib/net-snmp/mib_indexes #nowarn for sapi in ${SAPIS} ; do if use "${sapi}"; then @@ -504,7 +504,7 @@ src_compile() { src_install() { # see bug #324739 for what happens when we don't have that - addpredict /usr/share/snmp/mibs/.index + addpredict /usr/share/snmp/mibs/.index #nowarn # grab the first SAPI that got built and install common files from there local first_sapi=""