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 D8FBC139694 for ; Mon, 17 Jul 2017 20:31:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2563FE0E20; Mon, 17 Jul 2017 20:31:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 EA25BE0E20 for ; Mon, 17 Jul 2017 20:31:19 +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 BA81534176D for ; Mon, 17 Jul 2017 20:31:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BB8A7489 for ; Mon, 17 Jul 2017 20:31:17 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1500323466.f0ba17f4d1ad4caadae0e10f23fbbf904a6db953.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/udev/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/udev/udev-234.ebuild sys-fs/udev/udev-9999.ebuild X-VCS-Directories: sys-fs/udev/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: f0ba17f4d1ad4caadae0e10f23fbbf904a6db953 X-VCS-Branch: master Date: Mon, 17 Jul 2017 20:31:17 +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: bd131710-aa50-47e0-97fe-66bf63474cb1 X-Archives-Hash: 571838d2508b463f9c1d4ee465c46d5f commit: f0ba17f4d1ad4caadae0e10f23fbbf904a6db953 Author: Mike Gilbert gentoo org> AuthorDate: Mon Jul 17 20:30:58 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Jul 17 20:31:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0ba17f4 sys-fs/udev: use chrpath instead of patchelf patchelf does not work on ARM. Bug: https://github.com/NixOS/patchelf/issues/8 Package-Manager: Portage-2.3.6_p16, Repoman-2.3.2_p84 sys-fs/udev/udev-234.ebuild | 7 ++----- sys-fs/udev/udev-9999.ebuild | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/sys-fs/udev/udev-234.ebuild b/sys-fs/udev/udev-234.ebuild index a0c39c43d08..4c503363030 100644 --- a/sys-fs/udev/udev-234.ebuild +++ b/sys-fs/udev/udev-234.ebuild @@ -41,11 +41,11 @@ COMMON_DEPEND=">=sys-apps/util-linux-2.27.1[${MULTILIB_USEDEP}] !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )" DEPEND="${COMMON_DEPEND} + app-admin/chrpath dev-util/gperf >=dev-util/intltool-0.50 >=dev-util/meson-0.40.0 dev-util/ninja - >=dev-util/patchelf-0.9 >=sys-apps/coreutils-8.16 virtual/os-headers virtual/pkgconfig @@ -172,10 +172,7 @@ multilib_src_compile() { # meson uses an private python script for this strip_rpath() { - local x - for x; do - patchelf --remove-rpath "${x}" || die - done + chrpath -d "$@" || die } multilib_src_install() { diff --git a/sys-fs/udev/udev-9999.ebuild b/sys-fs/udev/udev-9999.ebuild index a0c39c43d08..4c503363030 100644 --- a/sys-fs/udev/udev-9999.ebuild +++ b/sys-fs/udev/udev-9999.ebuild @@ -41,11 +41,11 @@ COMMON_DEPEND=">=sys-apps/util-linux-2.27.1[${MULTILIB_USEDEP}] !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )" DEPEND="${COMMON_DEPEND} + app-admin/chrpath dev-util/gperf >=dev-util/intltool-0.50 >=dev-util/meson-0.40.0 dev-util/ninja - >=dev-util/patchelf-0.9 >=sys-apps/coreutils-8.16 virtual/os-headers virtual/pkgconfig @@ -172,10 +172,7 @@ multilib_src_compile() { # meson uses an private python script for this strip_rpath() { - local x - for x; do - patchelf --remove-rpath "${x}" || die - done + chrpath -d "$@" || die } multilib_src_install() {