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 6E2A0158091 for ; Tue, 14 Jun 2022 15:49:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2A34E086F; Tue, 14 Jun 2022 15:49:12 +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 2C2D2E086F for ; Tue, 14 Jun 2022 15:49:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 27D02341D70 for ; Tue, 14 Jun 2022 15:49:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98C564F6 for ; Tue, 14 Jun 2022 15:49:09 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1655221740.d52b5ff9bca3e3752cba40050ec0dffe7f2abc1e.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/nano/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/nano/nano-6.2-r1.ebuild app-editors/nano/nano-6.2.ebuild app-editors/nano/nano-6.3-r1.ebuild app-editors/nano/nano-6.3.ebuild app-editors/nano/nano-9999.ebuild X-VCS-Directories: app-editors/nano/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: d52b5ff9bca3e3752cba40050ec0dffe7f2abc1e X-VCS-Branch: master Date: Tue, 14 Jun 2022 15:49:09 +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: 10eb15d2-0cb9-4204-a739-48b2bfb5ef1f X-Archives-Hash: e6d457a10874c0031ab1261370a6b51c commit: d52b5ff9bca3e3752cba40050ec0dffe7f2abc1e Author: Lars Wendler gentoo org> AuthorDate: Tue Jun 14 15:47:41 2022 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Jun 14 15:49:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52b5ff9 app-editors/nano: Don't uncomment all include lines in nanorc Thanks-to: Jonathan Plews tuta.io> Closes: https://bugs.gentoo.org/851726 Signed-off-by: Lars Wendler gentoo.org> app-editors/nano/{nano-6.2.ebuild => nano-6.2-r1.ebuild} | 2 +- app-editors/nano/{nano-6.3.ebuild => nano-6.3-r1.ebuild} | 2 +- app-editors/nano/nano-9999.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-editors/nano/nano-6.2.ebuild b/app-editors/nano/nano-6.2-r1.ebuild similarity index 98% rename from app-editors/nano/nano-6.2.ebuild rename to app-editors/nano/nano-6.2-r1.ebuild index c76f1abb21ba..bbea2f629b94 100644 --- a/app-editors/nano/nano-6.2.ebuild +++ b/app-editors/nano/nano-6.2-r1.ebuild @@ -76,7 +76,7 @@ src_install() { if ! use minimal ; then # Enable colorization by default. sed -i \ - -e '/^# include /s:# *::' \ + -e '0,/^# include /s:# *::' \ "${ED}"/etc/nanorc || die # Since nano-5.0 these are no longer being "enabled" by default diff --git a/app-editors/nano/nano-6.3.ebuild b/app-editors/nano/nano-6.3-r1.ebuild similarity index 98% rename from app-editors/nano/nano-6.3.ebuild rename to app-editors/nano/nano-6.3-r1.ebuild index 9bd57c68b191..52d1f38f69d5 100644 --- a/app-editors/nano/nano-6.3.ebuild +++ b/app-editors/nano/nano-6.3-r1.ebuild @@ -76,7 +76,7 @@ src_install() { if ! use minimal ; then # Enable colorization by default. sed -i \ - -e '/^# include /s:# *::' \ + -e '0,/^# include /s:# *::' \ "${ED}"/etc/nanorc || die # Since nano-5.0 these are no longer being "enabled" by default diff --git a/app-editors/nano/nano-9999.ebuild b/app-editors/nano/nano-9999.ebuild index 25ad3e614940..cd424d2c2341 100644 --- a/app-editors/nano/nano-9999.ebuild +++ b/app-editors/nano/nano-9999.ebuild @@ -76,7 +76,7 @@ src_install() { if ! use minimal ; then # Enable colorization by default. sed -i \ - -e '/^# include /s:# *::' \ + -e '0,/^# include /s:# *::' \ "${ED}"/etc/nanorc || die # Since nano-5.0 these are no longer being "enabled" by default