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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3B02C15800A for ; Sat, 5 Aug 2023 22:41:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F79D2BC03C; Sat, 5 Aug 2023 22:41:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49EA92BC03B for ; Sat, 5 Aug 2023 22:41:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 96F5F340E62 for ; Sat, 5 Aug 2023 22:41:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13E84F20 for ; Sat, 5 Aug 2023 22:41:37 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1691275200.d3bdfb88a875e6af2682f327327f20588158b740.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmpack/libmpack-1.0.5-r3.ebuild X-VCS-Directories: dev-libs/libmpack/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: d3bdfb88a875e6af2682f327327f20588158b740 X-VCS-Branch: master Date: Sat, 5 Aug 2023 22:41:37 +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: 551329c2-6648-45d7-a116-f0c8cd6c7699 X-Archives-Hash: 8427adec2111d1a3114b9480c827a7a0 commit: d3bdfb88a875e6af2682f327327f20588158b740 Author: Conrad Kostecki gentoo org> AuthorDate: Sat Aug 5 22:30:05 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Aug 5 22:40:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3bdfb88 dev-libs/libmpack: fix QA ExcessiveLineLength Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/libmpack/libmpack-1.0.5-r3.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-libs/libmpack/libmpack-1.0.5-r3.ebuild b/dev-libs/libmpack/libmpack-1.0.5-r3.ebuild index e3c8855055af..961da8a30902 100644 --- a/dev-libs/libmpack/libmpack-1.0.5-r3.ebuild +++ b/dev-libs/libmpack/libmpack-1.0.5-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -58,7 +58,10 @@ src_install() { if [[ ${CHOST} == *-darwin* ]] ; then local file="libmpack.0.0.0.dylib" - install_name_tool -id "${EPREFIX}/usr/$(get_libdir)/${file}" "${ED}/usr/$(get_libdir)/${file}" || die "Failed to adjust install_name" + install_name_tool \ + -id "${EPREFIX}/usr/$(get_libdir)/${file}" \ + "${ED}/usr/$(get_libdir)/${file}" \ + || die "Failed to adjust install_name" fi find "${ED}" -name '*.la' -delete || die