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 027471382C5 for ; Sat, 5 May 2018 18:18:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B861E07DB; Sat, 5 May 2018 18:18:49 +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 DD7D5E07DB for ; Sat, 5 May 2018 18:18:47 +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 61EFD335C75 for ; Sat, 5 May 2018 18:18:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF92A35 for ; Sat, 5 May 2018 18:18:44 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1525544312.8a44ba018c02b632ab8424727f63f2d0ef13b81b.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/glibc/glibc-2.19-r2.ebuild sys-libs/glibc/glibc-2.27-r2.ebuild sys-libs/glibc/glibc-9999.ebuild X-VCS-Directories: sys-libs/glibc/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 8a44ba018c02b632ab8424727f63f2d0ef13b81b X-VCS-Branch: master Date: Sat, 5 May 2018 18:18:44 +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: 2113839f-78fe-44e6-af66-be968d66b205 X-Archives-Hash: e5b47a0f60414770aa027db35aa446d0 commit: 8a44ba018c02b632ab8424727f63f2d0ef13b81b Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 5 18:18:32 2018 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sat May 5 18:18:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a44ba01 sys-libs/glibc: Remove remaining occurrences of in_iuse Package-Manager: Portage-2.3.36, Repoman-2.3.9 sys-libs/glibc/glibc-2.19-r2.ebuild | 10 +++++----- sys-libs/glibc/glibc-2.27-r2.ebuild | 10 +++++----- sys-libs/glibc/glibc-9999.ebuild | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/sys-libs/glibc/glibc-2.19-r2.ebuild b/sys-libs/glibc/glibc-2.19-r2.ebuild index 1b071fb4d3d..b2b9a397b55 100644 --- a/sys-libs/glibc/glibc-2.19-r2.ebuild +++ b/sys-libs/glibc/glibc-2.19-r2.ebuild @@ -895,8 +895,8 @@ glibc_do_configure() { --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion="$(glibc_banner)" $(use_multiarch || echo --disable-multi-arch) - $(in_iuse systemtap && use_enable systemtap) - $(in_iuse nscd && use_enable nscd) + $(use_enable systemtap) + $(use_enable nscd) ${EXTRA_ECONF} ) @@ -904,8 +904,8 @@ glibc_do_configure() { myconf+=( $(use_enable vanilla timezone-tools) ) # These libs don't have configure flags. - ac_cv_lib_audit_audit_log_user_avc_message=$(in_iuse audit && usex audit || echo no) - ac_cv_lib_cap_cap_init=$(in_iuse caps && usex caps || echo no) + ac_cv_lib_audit_audit_log_user_avc_message=$(usex audit || echo no) + ac_cv_lib_cap_cap_init=$(usex caps || echo no) # There is no configure option for this and we need to export it # since the glibc build will re-run configure on itself @@ -1174,7 +1174,7 @@ glibc_do_src_install() { # With devpts under Linux mounted properly, we do not need the pt_chown # binary to be setuid. This is because the default owners/perms will be # exactly what we want. - if in_iuse suid && ! use suid ; then + if ! use suid ; then find "${ED}" -name pt_chown -exec chmod -s {} + fi diff --git a/sys-libs/glibc/glibc-2.27-r2.ebuild b/sys-libs/glibc/glibc-2.27-r2.ebuild index b45dd3a4921..3d2fa240025 100644 --- a/sys-libs/glibc/glibc-2.27-r2.ebuild +++ b/sys-libs/glibc/glibc-2.27-r2.ebuild @@ -894,8 +894,8 @@ glibc_do_configure() { --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion="$(glibc_banner)" $(use_multiarch || echo --disable-multi-arch) - $(in_iuse systemtap && use_enable systemtap) - $(in_iuse nscd && use_enable nscd) + $(use_enable systemtap) + $(use_enable nscd) ${EXTRA_ECONF} ) @@ -903,8 +903,8 @@ glibc_do_configure() { myconf+=( $(use_enable vanilla timezone-tools) ) # These libs don't have configure flags. - ac_cv_lib_audit_audit_log_user_avc_message=$(in_iuse audit && usex audit || echo no) - ac_cv_lib_cap_cap_init=$(in_iuse caps && usex caps || echo no) + ac_cv_lib_audit_audit_log_user_avc_message=$(usex audit || echo no) + ac_cv_lib_cap_cap_init=$(usex caps || echo no) # There is no configure option for this and we need to export it # since the glibc build will re-run configure on itself @@ -1209,7 +1209,7 @@ glibc_do_src_install() { # With devpts under Linux mounted properly, we do not need the pt_chown # binary to be setuid. This is because the default owners/perms will be # exactly what we want. - if in_iuse suid && ! use suid ; then + if ! use suid ; then find "${ED}" -name pt_chown -exec chmod -s {} + fi diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index 7c5d09ab85a..ee82933c663 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-9999.ebuild @@ -886,8 +886,8 @@ glibc_do_configure() { --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion="$(glibc_banner)" $(use_multiarch || echo --disable-multi-arch) - $(in_iuse systemtap && use_enable systemtap) - $(in_iuse nscd && use_enable nscd) + $(use_enable systemtap) + $(use_enable nscd) ${EXTRA_ECONF} ) @@ -895,8 +895,8 @@ glibc_do_configure() { myconf+=( $(use_enable vanilla timezone-tools) ) # These libs don't have configure flags. - ac_cv_lib_audit_audit_log_user_avc_message=$(in_iuse audit && usex audit || echo no) - ac_cv_lib_cap_cap_init=$(in_iuse caps && usex caps || echo no) + ac_cv_lib_audit_audit_log_user_avc_message=$(usex audit || echo no) + ac_cv_lib_cap_cap_init=$(usex caps || echo no) # There is no configure option for this and we need to export it # since the glibc build will re-run configure on itself @@ -1201,7 +1201,7 @@ glibc_do_src_install() { # With devpts under Linux mounted properly, we do not need the pt_chown # binary to be setuid. This is because the default owners/perms will be # exactly what we want. - if in_iuse suid && ! use suid ; then + if ! use suid ; then find "${ED}" -name pt_chown -exec chmod -s {} + fi