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 AD337158091 for ; Fri, 3 Jun 2022 18:49:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF0FCE0898; Fri, 3 Jun 2022 18:49:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 9ED10E0898 for ; Fri, 3 Jun 2022 18:49:38 +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 7E85834189F for ; Fri, 3 Jun 2022 18:49:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA8F9471 for ; Fri, 3 Jun 2022 18:49:35 +0000 (UTC) From: "Steve Arnold" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Steve Arnold" Message-ID: <1654282168.7d4d0e4d56b4ae928be9eaf9ca0c41f4d871f48b.nerdboy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/newlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/newlib/newlib-4.2.0.20211231.ebuild sys-libs/newlib/newlib-9999.ebuild X-VCS-Directories: sys-libs/newlib/ X-VCS-Committer: nerdboy X-VCS-Committer-Name: Steve Arnold X-VCS-Revision: 7d4d0e4d56b4ae928be9eaf9ca0c41f4d871f48b X-VCS-Branch: master Date: Fri, 3 Jun 2022 18:49:35 +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: bc21423a-24e8-4af2-a0f4-3bf7445e13b3 X-Archives-Hash: 2f6a507d5b867a4806af049a08bf71e5 commit: 7d4d0e4d56b4ae928be9eaf9ca0c41f4d871f48b Author: Steve Arnold gentoo org> AuthorDate: Fri Jun 3 18:48:51 2022 +0000 Commit: Steve Arnold gentoo org> CommitDate: Fri Jun 3 18:49:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d4d0e4d sys-libs/newlib: add libgloss to regex in 2 most recent versions * required for some arm/riscv elf toolchains/targets Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Steve Arnold gentoo.org> sys-libs/newlib/newlib-4.2.0.20211231.ebuild | 2 +- sys-libs/newlib/newlib-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-libs/newlib/newlib-4.2.0.20211231.ebuild b/sys-libs/newlib/newlib-4.2.0.20211231.ebuild index 92cb0eb38425..39e03d098e4d 100644 --- a/sys-libs/newlib/newlib-4.2.0.20211231.ebuild +++ b/sys-libs/newlib/newlib-4.2.0.20211231.ebuild @@ -136,7 +136,7 @@ src_install() { emake -j1 DESTDIR="${NEWLIBNANOTMPINSTALL}" install # Rename nano lib* files to lib*_nano and move to the real ${D} local nanolibfiles="" - nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|m\|rdimon\)\.a" -print) + nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|m\|rdimon\|gloss\)\.a" -print) for f in ${nanolibfiles}; do local l="${f##${NEWLIBNANOTMPINSTALL}}" mv -v "${f}" "${D}/${l%%\.a}_nano.a" || die diff --git a/sys-libs/newlib/newlib-9999.ebuild b/sys-libs/newlib/newlib-9999.ebuild index 92cb0eb38425..39e03d098e4d 100644 --- a/sys-libs/newlib/newlib-9999.ebuild +++ b/sys-libs/newlib/newlib-9999.ebuild @@ -136,7 +136,7 @@ src_install() { emake -j1 DESTDIR="${NEWLIBNANOTMPINSTALL}" install # Rename nano lib* files to lib*_nano and move to the real ${D} local nanolibfiles="" - nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|m\|rdimon\)\.a" -print) + nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|m\|rdimon\|gloss\)\.a" -print) for f in ${nanolibfiles}; do local l="${f##${NEWLIBNANOTMPINSTALL}}" mv -v "${f}" "${D}/${l%%\.a}_nano.a" || die