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 C651715808E for ; Tue, 26 Apr 2022 07:41:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE511E07AE; Tue, 26 Apr 2022 07:41:55 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 21EE8E07AE for ; Tue, 26 Apr 2022 07:41:52 +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 D2B033415E1 for ; Tue, 26 Apr 2022 07:41:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EECA177 for ; Tue, 26 Apr 2022 07:41:49 +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: <1650947843.a5bd4baa0047470e2be18ac6404347207562f0a4.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: a5bd4baa0047470e2be18ac6404347207562f0a4 X-VCS-Branch: master Date: Tue, 26 Apr 2022 07:41:49 +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: 376ba353-6fa6-4c3c-8f00-5f7129fdaa0a X-Archives-Hash: e22687dc0cb4f691e4176069453d4747 commit: a5bd4baa0047470e2be18ac6404347207562f0a4 Author: Ulrich Müller gentoo org> AuthorDate: Sun Apr 24 11:42:22 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Apr 26 04:37:23 2022 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=a5bd4baa bin/gen-eclass-html.sh: Don't show mailto links man2html's heuristic for recognition of e-mail addresses is unreliable, therefore drop them all. Reported-by: Thomas Bracht Laumann Jespersen laumann.xyz> 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 df759e0..6021c1e 100755 --- a/bin/gen-eclass-html.sh +++ b/bin/gen-eclass-html.sh @@ -149,6 +149,7 @@ for i in "${MANPAGES[@]}"; do -e 's:\([^<>]*\):\1:g' \ -e 's:\([^<>]*\):\1:g' \ -e 's:\([^<>]*\):\1:g' \ + -e 's,\([^<>]*\),\1,g' \ -e 's:\([^<>]*\):\1:g' \ -e 's:
:
:g' \ -e 's:::g' \