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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EFDED138334 for ; Sun, 25 Aug 2019 08:43:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13D44E07F6; Sun, 25 Aug 2019 08:43:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7B6FE07F6 for ; Sun, 25 Aug 2019 08:43:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8335434A265 for ; Sun, 25 Aug 2019 08:43:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE4BC76F for ; Sun, 25 Aug 2019 08:43:39 +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: <1566722601.9df1efd58647227d1371a4089b6ebdee599fdf4d.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: 9df1efd58647227d1371a4089b6ebdee599fdf4d X-VCS-Branch: master Date: Sun, 25 Aug 2019 08:43:39 +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: 96e7a768-bdee-4600-a7bf-b699cba52dc9 X-Archives-Hash: ab5e29f2bcdc92d6231d0e3faacd3893 commit: 9df1efd58647227d1371a4089b6ebdee599fdf4d Author: Ulrich Müller gentoo org> AuthorDate: Sun Aug 25 08:43:21 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Aug 25 08:43:21 2019 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=9df1efd5 gen-eclass-html.sh: Consider only manpages for HTML generation. Closes: https://github.com/gentoo/devmanual.gentoo.org/pull/102 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 db61319..1aa57f6 100755 --- a/bin/gen-eclass-html.sh +++ b/bin/gen-eclass-html.sh @@ -38,6 +38,7 @@ EOF # We also need the ebuild man page for i in $(/usr/bin/qlist eclass-manpages) /usr/share/man/man5/ebuild.5.bz2; do BASENAME="$(basename $i .5.bz2)" + [[ ${BASENAME} != "${i}" ]] || continue DIRNAME="${OUTPUTDIR}/${BASENAME}" TMP="${DIRNAME}/index.html.tmp" FINAL="${DIRNAME}/index.html"