From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id BB4AF3858403; Thu, 25 Apr 2024 17:44:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BB4AF3858403 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1714067051; bh=fXneAGpx2LvfuzA/q/TJiutTVrRhsA7pAUcDzx9hL/Q=; h=From:To:Subject:Date:From; b=aqHBdvY8OiQxgJYvFsoys47FzoaC9uAGzDCa/tYRqOKdLDtrdDVABuNWc/kv6NWE2 YKBI5jvbiYFAsG3R0YUYHLuFIGMZKnOJfceUw61CypDiJe+CDcZJkFf7X8T0k92ESS 9jHRitpAWnI60Fw7wuf8/x1O8ldMqyC7MWu+MyQk= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r14-10129] libstdc++: Rename man pages to use '::' instead of '_' X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 6391cf8bd9c1d71805d9aba00b25fdaa550f39c8 X-Git-Newrev: 8d80e3c5a641556e32fdf3637f08a0648f5aaab3 Message-Id: <20240425174411.BB4AF3858403@sourceware.org> Date: Thu, 25 Apr 2024 17:44:11 +0000 (GMT) List-Id: https://gcc.gnu.org/g:8d80e3c5a641556e32fdf3637f08a0648f5aaab3 commit r14-10129-g8d80e3c5a641556e32fdf3637f08a0648f5aaab3 Author: Jonathan Wakely Date: Thu Apr 25 14:02:36 2024 +0100 libstdc++: Rename man pages to use '::' instead of '_' The Doxygen-generated man pages for some new types need to be renamed to use '::' instead of '_' in the filenames. libstdc++-v3/ChangeLog: * scripts/run_doxygen: Rename man pages for nested types. Diff: --- libstdc++-v3/scripts/run_doxygen | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/libstdc++-v3/scripts/run_doxygen b/libstdc++-v3/scripts/run_doxygen index ea9bcb56553..11f24b058af 100644 --- a/libstdc++-v3/scripts/run_doxygen +++ b/libstdc++-v3/scripts/run_doxygen @@ -415,8 +415,21 @@ for f in __cxxabiv1_*; do mv $f $newname done +mv std::__unspecified___exception_ptr.3 std::exception_ptr.3 + # Then piecemeal nested classes +for f in std*distribution_param_type.3; do + newname=`echo $f | sed 's/distribution_param_type/distribution::param_type/'` + mv $f $newname +done + +for f in std*filesystem::path_iterator.3; do + newname=`echo $f | sed 's/path_iterator/path::iterator/'` + mv $f $newname +done + +mv std::chrono::tzdb_list_const_iterator.3 std::chrono::tzdb_list::const_iterator.3 # Generic removal bits, where there are things in the generated man # pages that need to be killed.