From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id B055A158088 for ; Wed, 22 Oct 2025 16:08:25 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 973BE341021 for ; Wed, 22 Oct 2025 16:08:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8F6CB1104B5; Wed, 22 Oct 2025 16:08:24 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 833991104B5 for ; Wed, 22 Oct 2025 16:08:24 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 382D5340FFE for ; Wed, 22 Oct 2025 16:08:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C09481F2F for ; Wed, 22 Oct 2025 16:08:22 +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: <1761149063.634ceaf6023ed755a36df8011da29dcd06737aa7.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: bin/ X-VCS-Repository: proj/devmanual X-VCS-Files: bin/gen-eclass-html.sh X-VCS-Directories: bin/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 634ceaf6023ed755a36df8011da29dcd06737aa7 X-VCS-Branch: master Date: Wed, 22 Oct 2025 16:08:22 +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: 0a56adcb-6400-4dfa-96d4-ff1eff74eceb X-Archives-Hash: 2f852741bb79960b6f54e7c144affbc1 commit: 634ceaf6023ed755a36df8011da29dcd06737aa7 Author: Swagtoy ow swag toys> AuthorDate: Tue Oct 21 02:50:43 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Oct 22 16:04:23 2025 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=634ceaf6 bin/gen-eclass-html.sh: Work around man2html not converting the tilde character Seen in ebuild(5). Signed-off-by: Swagtoy ow.swag.toys> Signed-off-by: Ulrich Müller gentoo.org> bin/gen-eclass-html.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/gen-eclass-html.sh b/bin/gen-eclass-html.sh index 4dacfa4..cef0305 100755 --- a/bin/gen-eclass-html.sh +++ b/bin/gen-eclass-html.sh @@ -157,6 +157,7 @@ for i in "${MANPAGES[@]}"; do -e 's:\([^<>]*\):\1:g' \ -e 's:\([^<>]*\):\1:g' \ -e 's,\([^<>]*\),\1,g' \ + -e 's:\[ti\]:~:g' \ -e 's:\([^<>]*\):\1:g' \ -e 's:
:
:g' \ -e 's:::g' \