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 5943E158095 for ; Mon, 11 Jul 2022 04:26:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7897DE0F46; Mon, 11 Jul 2022 04:26:31 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 55CC0E0F46 for ; Mon, 11 Jul 2022 04:26:31 +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 B491A34104C for ; Mon, 11 Jul 2022 04:26:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CDA24EC for ; Mon, 11 Jul 2022 04:26:28 +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: <1657513556.829c4c6851ae5d306a7655293b436f2f620e77c8.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/epatch.eclass X-VCS-Directories: eclass/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 829c4c6851ae5d306a7655293b436f2f620e77c8 X-VCS-Branch: master Date: Mon, 11 Jul 2022 04:26:28 +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: 386d27de-ea14-4171-98a0-7d23866aca6b X-Archives-Hash: 1192da3498288f98ca59e35e0630e8fd commit: 829c4c6851ae5d306a7655293b436f2f620e77c8 Author: Mike Gilbert gentoo org> AuthorDate: Tue Jun 28 18:04:50 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Jul 11 04:25:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=829c4c68 epatch.eclass: drop support for EPATCH_SINGLE_MSG Signed-off-by: Mike Gilbert gentoo.org> eclass/epatch.eclass | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/eclass/epatch.eclass b/eclass/epatch.eclass index 6d000419b032..7c53e5fcf539 100644 --- a/eclass/epatch.eclass +++ b/eclass/epatch.eclass @@ -52,10 +52,6 @@ EPATCH_COMMON_OPTS="-g0 -E --no-backup-if-mismatch" # List of patches not to apply. Note this is only file names, # and not the full path. Globs accepted. EPATCH_EXCLUDE="" -# @VARIABLE: EPATCH_SINGLE_MSG -# @DESCRIPTION: -# Change the printed message for a single patch. -EPATCH_SINGLE_MSG="" # @VARIABLE: EPATCH_MULTI_MSG # @DESCRIPTION: # Change the printed message for multiple patches. @@ -235,11 +231,7 @@ epatch() { fi if [[ ${SINGLE_PATCH} == "yes" ]] ; then - if [[ -n ${EPATCH_SINGLE_MSG} ]] ; then - ebegin "${EPATCH_SINGLE_MSG}" - else - ebegin "Applying ${patchname}" - fi + ebegin "Applying ${patchname}" else ebegin " ${patchname}" fi