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 (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 367CC1581F3 for ; Tue, 26 Nov 2024 11:34:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E2F8E07F1; Tue, 26 Nov 2024 11:34:22 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D109DE07F1 for ; Tue, 26 Nov 2024 11:34:21 +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 04AAE340BEF for ; Tue, 26 Nov 2024 11:34:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 691F9D81 for ; Tue, 26 Nov 2024 11:34:19 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1732620717.946770868f05d7340adad87bde656ec5b70644b3.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/alpine/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/alpine/alpine-2.26-r5.ebuild X-VCS-Directories: mail-client/alpine/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 946770868f05d7340adad87bde656ec5b70644b3 X-VCS-Branch: master Date: Tue, 26 Nov 2024 11:34:19 +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: 8aeabb0c-aae4-4344-8752-20088ce62aea X-Archives-Hash: 475d23b82521bb731500cb6dc6b6458b commit: 946770868f05d7340adad87bde656ec5b70644b3 Author: Holger Hoffstätte applied-asynchrony com> AuthorDate: Tue Nov 26 11:02:49 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Nov 26 11:31:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94677086 mail-client/alpine: list of patches must be sorted Use eapply instead of find, which will implicitly sort the list of patches. This also simplifies the entire procedure. Closes: https://bugs.gentoo.org/944973 Signed-off-by: Holger Hoffstätte applied-asynchrony.com> Signed-off-by: Ulrich Müller gentoo.org> mail-client/alpine/alpine-2.26-r5.ebuild | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mail-client/alpine/alpine-2.26-r5.ebuild b/mail-client/alpine/alpine-2.26-r5.ebuild index 60568914b89e..ebbe665ab898 100644 --- a/mail-client/alpine/alpine-2.26-r5.ebuild +++ b/mail-client/alpine/alpine-2.26-r5.ebuild @@ -29,10 +29,7 @@ src_prepare() { default # apply patches from upstream git to fix compiler issues - local patches=$(find "${WORKDIR}/${P}-patches" -type f -name "0*.patch") - for patch in ${patches}; do - eapply "${patch}" - done + eapply "${WORKDIR}"/${P}-patches/0*.patch # optional extra features, see https://alpineapp.email/alpine/index.html use chappa && eapply "${WORKDIR}/${P}-patches/chappa-rebased.patch"