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 281C5158091 for ; Tue, 14 Jun 2022 17:22:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70F66E079E; Tue, 14 Jun 2022 17:22:22 +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 56703E079E for ; Tue, 14 Jun 2022 17:22:22 +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 5006D341D5E for ; Tue, 14 Jun 2022 17:22:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0DA3105 for ; Tue, 14 Jun 2022 17:22:19 +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: <1655227334.9318243660ec9c508d29b99ba666513462b063b2.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: 9318243660ec9c508d29b99ba666513462b063b2 X-VCS-Branch: master Date: Tue, 14 Jun 2022 17:22: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: 24e08eb9-61ba-45a3-95aa-ea9f409ab7d1 X-Archives-Hash: b4b55f984aec8d0422ebce0cf20373f8 commit: 9318243660ec9c508d29b99ba666513462b063b2 Author: Lars Wendler gentoo org> AuthorDate: Tue Jun 14 17:17:49 2022 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Jun 14 17:22:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93182436 Revert "app-editors/nano: Don't uncomment all include lines in nanorc" This reverts commit d52b5ff9bca3e3752cba40050ec0dffe7f2abc1e. It breaks startup of nano: Error in /etc/nanorc on line 39: Unknown option "brackets" Error in /etc/nanorc on line 83: Unknown option "magic" Error in /etc/nanorc on line 128: Unknown option "punct" Error in /etc/nanorc on line 135: Unknown option "quotestr" Error in /etc/nanorc on line 190: Two single-column characters required Bug: https://bugs.gentoo.org/851726 Signed-off-by: Lars Wendler gentoo.org> app-editors/nano/{nano-6.2-r1.ebuild => nano-6.2.ebuild} | 2 +- app-editors/nano/{nano-6.3-r1.ebuild => nano-6.3.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-r1.ebuild b/app-editors/nano/nano-6.2.ebuild similarity index 98% rename from app-editors/nano/nano-6.2-r1.ebuild rename to app-editors/nano/nano-6.2.ebuild index bbea2f629b94..c76f1abb21ba 100644 --- a/app-editors/nano/nano-6.2-r1.ebuild +++ b/app-editors/nano/nano-6.2.ebuild @@ -76,7 +76,7 @@ src_install() { if ! use minimal ; then # Enable colorization by default. sed -i \ - -e '0,/^# include /s:# *::' \ + -e '/^# 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-r1.ebuild b/app-editors/nano/nano-6.3.ebuild similarity index 98% rename from app-editors/nano/nano-6.3-r1.ebuild rename to app-editors/nano/nano-6.3.ebuild index 52d1f38f69d5..9bd57c68b191 100644 --- a/app-editors/nano/nano-6.3-r1.ebuild +++ b/app-editors/nano/nano-6.3.ebuild @@ -76,7 +76,7 @@ src_install() { if ! use minimal ; then # Enable colorization by default. sed -i \ - -e '0,/^# include /s:# *::' \ + -e '/^# 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 cd424d2c2341..25ad3e614940 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 '0,/^# include /s:# *::' \ + -e '/^# include /s:# *::' \ "${ED}"/etc/nanorc || die # Since nano-5.0 these are no longer being "enabled" by default