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 BE6A115803E for ; Mon, 1 Jan 2024 02:20:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F20472BC027; Mon, 1 Jan 2024 02:20:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D27F92BC027 for ; Mon, 1 Jan 2024 02:20:24 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1029533B864 for ; Mon, 1 Jan 2024 02:20:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6869912BB for ; Mon, 1 Jan 2024 02:20:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1704075585.ed7efdde467bc364ea1e0de15136bbd500724faf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/musl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/musl/musl-1.2.3-r7.ebuild sys-libs/musl/musl-1.2.3-r8.ebuild sys-libs/musl/musl-1.2.4-r1.ebuild sys-libs/musl/musl-9999.ebuild X-VCS-Directories: sys-libs/musl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ed7efdde467bc364ea1e0de15136bbd500724faf X-VCS-Branch: master Date: Mon, 1 Jan 2024 02:20:22 +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: 952c271d-5213-4dcf-851f-3394eb796168 X-Archives-Hash: d7fa11ea14a426b63068e184b0f96bef commit: ed7efdde467bc364ea1e0de15136bbd500724faf Author: Sam James gentoo org> AuthorDate: Mon Jan 1 02:19:45 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 1 02:19:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed7efdde sys-libs/musl: fix comment typo Signed-off-by: Sam James gentoo.org> sys-libs/musl/musl-1.2.3-r7.ebuild | 4 ++-- sys-libs/musl/musl-1.2.3-r8.ebuild | 4 ++-- sys-libs/musl/musl-1.2.4-r1.ebuild | 4 ++-- sys-libs/musl/musl-9999.ebuild | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sys-libs/musl/musl-1.2.3-r7.ebuild b/sys-libs/musl/musl-1.2.3-r7.ebuild index a201a7574d4a..c4e516a10a1a 100644 --- a/sys-libs/musl/musl-1.2.3-r7.ebuild +++ b/sys-libs/musl/musl-1.2.3-r7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -167,7 +167,7 @@ src_install() { rm -f "${ED}"/lib/ld-musl-${arch}.so.1 || die dosym8 -r /usr/lib/libc.so /lib/ld-musl-${arch}.so.1 - # If it's still a dead symlnk, OK, we really do need to abort. + # If it's still a dead symlink, OK, we really do need to abort. [[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die cp "${FILESDIR}"/ldconfig.in-r3 "${T}"/ldconfig.in || die diff --git a/sys-libs/musl/musl-1.2.3-r8.ebuild b/sys-libs/musl/musl-1.2.3-r8.ebuild index e50192bdc1fb..cda9968c6cc1 100644 --- a/sys-libs/musl/musl-1.2.3-r8.ebuild +++ b/sys-libs/musl/musl-1.2.3-r8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -167,7 +167,7 @@ src_install() { rm "${ED}"/lib/ld-musl-${arch}.so.1 || die if use split-usr; then dosym ../usr/lib/libc.so /lib/ld-musl-${arch}.so.1 - # If it's still a dead symlnk, OK, we really do need to abort. + # If it's still a dead symlink, OK, we really do need to abort. [[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die else dosym libc.so /usr/lib/ld-musl-${arch}.so.1 diff --git a/sys-libs/musl/musl-1.2.4-r1.ebuild b/sys-libs/musl/musl-1.2.4-r1.ebuild index 1d1973c35acc..2b3a3c526c33 100644 --- a/sys-libs/musl/musl-1.2.4-r1.ebuild +++ b/sys-libs/musl/musl-1.2.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -159,7 +159,7 @@ src_install() { rm "${ED}"/lib/ld-musl-${arch}.so.1 || die if use split-usr; then dosym ../usr/lib/libc.so /lib/ld-musl-${arch}.so.1 - # If it's still a dead symlnk, OK, we really do need to abort. + # If it's still a dead symlink, OK, we really do need to abort. [[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die else dosym libc.so /usr/lib/ld-musl-${arch}.so.1 diff --git a/sys-libs/musl/musl-9999.ebuild b/sys-libs/musl/musl-9999.ebuild index 2908fbd17541..6034c89cca3e 100644 --- a/sys-libs/musl/musl-9999.ebuild +++ b/sys-libs/musl/musl-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -155,7 +155,7 @@ src_install() { rm "${ED}"/lib/ld-musl-${arch}.so.1 || die if use split-usr; then dosym ../usr/lib/libc.so /lib/ld-musl-${arch}.so.1 - # If it's still a dead symlnk, OK, we really do need to abort. + # If it's still a dead symlink, OK, we really do need to abort. [[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die else dosym libc.so /usr/lib/ld-musl-${arch}.so.1