From 624e8cd110f7237a630b4a1cb28590f42ab44529 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 24 Mar 2021 14:23:09 -0700 Subject: [PATCH 1/2] build: Rename markdown MPI manpages A number of the markdown-ized man pages in the MPI man3 section did not follow the expected naming convention, so rename them to have the suffix .3.md instead of just .md. The old names resulted in two problems: first, they were never instaleld and second, make maintainer-clean would delete them. Renaming the files to expected format fixes both issues. Signed-off-by: Brian Barrett --- .../man3/{MPI_Barrier.md => MPI_Barrier.3.md} | 0 .../man/man3/{MPI_Bcast.md => MPI_Bcast.3.md} | 0 .../man/man3/{MPI_Bsend.md => MPI_Bsend.3.md} | 0 ...{MPI_Bsend_init.md => MPI_Bsend_init.3.md} | 0 ...uffer_attach.md => MPI_Buffer_attach.3.md} | 0 ...uffer_detach.md => MPI_Buffer_detach.3.md} | 0 .../man3/{MPI_Cancel.md => MPI_Cancel.3.md} | 0 ...PI_Cart_coords.md => MPI_Cart_coords.3.md} | 0 ...PI_Cart_create.md => MPI_Cart_create.3.md} | 0 .../{MPI_Cart_get.md => MPI_Cart_get.3.md} | 0 .../{MPI_Cart_map.md => MPI_Cart_map.3.md} | 0 .../{MPI_Cart_rank.md => MPI_Cart_rank.3.md} | 0 ...{MPI_Cart_shift.md => MPI_Cart_shift.3.md} | 0 .../{MPI_Cart_sub.md => MPI_Cart_sub.3.md} | 0 ...PI_Cartdim_get.md => MPI_Cartdim_get.3.md} | 0 ...{MPI_Close_port.md => MPI_Close_port.3.md} | 0 ...PI_Comm_accept.md => MPI_Comm_accept.3.md} | 0 ...ndler.md => MPI_Comm_call_errhandler.3.md} | 0 ..._Comm_compare.md => MPI_Comm_compare.3.md} | 0 ..._Comm_connect.md => MPI_Comm_connect.3.md} | 0 ...PI_Comm_create.md => MPI_Comm_create.3.md} | 0 ...ler.md => MPI_Comm_create_errhandler.3.md} | 0 ...te_group.md => MPI_Comm_create_group.3.md} | 0 ..._keyval.md => MPI_Comm_create_keyval.3.md} | 0 ...lete_attr.md => MPI_Comm_delete_attr.3.md} | 0 ...disconnect.md => MPI_Comm_disconnect.3.md} | 0 .../{MPI_Comm_dup.md => MPI_Comm_dup.3.md} | 0 ...th_info.md => MPI_Comm_dup_with_info.3.md} | 0 ...ordered.md => MPI_File_write_ordered.3.md} | 0 ...n.md => MPI_File_write_ordered_begin.3.md} | 0 ...end.md => MPI_File_write_ordered_end.3.md} | 0 ...e_shared.md => MPI_File_write_shared.3.md} | 0 .../{MPI_Finalize.md => MPI_Finalize.3.md} | 0 .../{MPI_Finalized.md => MPI_Finalized.3.md} | 0 .../{MPI_Free_mem.md => MPI_Free_mem.3.md} | 0 .../man3/{MPI_Gather.md => MPI_Gather.3.md} | 0 .../man3/{MPI_Gatherv.md => MPI_Gatherv.3.md} | 0 .../mpi/man/man3/{MPI_Get.md => MPI_Get.3.md} | 0 ..._accumulate.md => MPI_Get_accumulate.3.md} | 0 ...PI_Get_address.md => MPI_Get_address.3.md} | 0 .../{MPI_Get_count.md => MPI_Get_count.3.md} | 0 ..._Get_elements.md => MPI_Get_elements.3.md} | 0 ...ersion.md => MPI_Get_library_version.3.md} | 0 ...or_name.md => MPI_Get_processor_name.3.md} | 0 ...PI_Get_version.md => MPI_Get_version.3.md} | 0 ..._Graph_create.md => MPI_Graph_create.3.md} | 0 .../{MPI_Graph_get.md => MPI_Graph_get.3.md} | 0 .../{MPI_Graph_map.md => MPI_Graph_map.3.md} | 0 ...ount.md => MPI_Graph_neighbors_count.3.md} | 0 ...raphdims_get.md => MPI_Graphdims_get.3.md} | 0 ...complete.md => MPI_Grequest_complete.3.md} | 0 ...quest_start.md => MPI_Grequest_start.3.md} | 0 ...roup_compare.md => MPI_Group_compare.3.md} | 0 ...ifference.md => MPI_Group_difference.3.md} | 0 ...{MPI_Group_excl.md => MPI_Group_excl.3.md} | 0 ...{MPI_Group_free.md => MPI_Group_free.3.md} | 0 ...{MPI_Group_incl.md => MPI_Group_incl.3.md} | 0 ...section.md => MPI_Group_intersection.3.md} | 0 ompi/mpi/man/man3/Makefile.am | 116 +++++++++--------- 59 files changed, 58 insertions(+), 58 deletions(-) rename ompi/mpi/man/man3/{MPI_Barrier.md => MPI_Barrier.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Bcast.md => MPI_Bcast.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Bsend.md => MPI_Bsend.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Bsend_init.md => MPI_Bsend_init.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Buffer_attach.md => MPI_Buffer_attach.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Buffer_detach.md => MPI_Buffer_detach.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cancel.md => MPI_Cancel.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cart_coords.md => MPI_Cart_coords.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cart_create.md => MPI_Cart_create.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cart_get.md => MPI_Cart_get.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cart_map.md => MPI_Cart_map.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cart_rank.md => MPI_Cart_rank.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cart_shift.md => MPI_Cart_shift.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cart_sub.md => MPI_Cart_sub.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Cartdim_get.md => MPI_Cartdim_get.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Close_port.md => MPI_Close_port.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_accept.md => MPI_Comm_accept.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_call_errhandler.md => MPI_Comm_call_errhandler.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_compare.md => MPI_Comm_compare.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_connect.md => MPI_Comm_connect.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_create.md => MPI_Comm_create.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_create_errhandler.md => MPI_Comm_create_errhandler.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_create_group.md => MPI_Comm_create_group.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_create_keyval.md => MPI_Comm_create_keyval.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_delete_attr.md => MPI_Comm_delete_attr.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_disconnect.md => MPI_Comm_disconnect.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_dup.md => MPI_Comm_dup.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Comm_dup_with_info.md => MPI_Comm_dup_with_info.3.md} (100%) rename ompi/mpi/man/man3/{MPI_File_write_ordered.md => MPI_File_write_ordered.3.md} (100%) rename ompi/mpi/man/man3/{MPI_File_write_ordered_begin.md => MPI_File_write_ordered_begin.3.md} (100%) rename ompi/mpi/man/man3/{MPI_File_write_ordered_end.md => MPI_File_write_ordered_end.3.md} (100%) rename ompi/mpi/man/man3/{MPI_File_write_shared.md => MPI_File_write_shared.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Finalize.md => MPI_Finalize.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Finalized.md => MPI_Finalized.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Free_mem.md => MPI_Free_mem.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Gather.md => MPI_Gather.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Gatherv.md => MPI_Gatherv.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Get.md => MPI_Get.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Get_accumulate.md => MPI_Get_accumulate.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Get_address.md => MPI_Get_address.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Get_count.md => MPI_Get_count.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Get_elements.md => MPI_Get_elements.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Get_library_version.md => MPI_Get_library_version.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Get_processor_name.md => MPI_Get_processor_name.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Get_version.md => MPI_Get_version.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Graph_create.md => MPI_Graph_create.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Graph_get.md => MPI_Graph_get.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Graph_map.md => MPI_Graph_map.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Graph_neighbors_count.md => MPI_Graph_neighbors_count.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Graphdims_get.md => MPI_Graphdims_get.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Grequest_complete.md => MPI_Grequest_complete.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Grequest_start.md => MPI_Grequest_start.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Group_compare.md => MPI_Group_compare.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Group_difference.md => MPI_Group_difference.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Group_excl.md => MPI_Group_excl.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Group_free.md => MPI_Group_free.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Group_incl.md => MPI_Group_incl.3.md} (100%) rename ompi/mpi/man/man3/{MPI_Group_intersection.md => MPI_Group_intersection.3.md} (100%) diff --git a/ompi/mpi/man/man3/MPI_Barrier.md b/ompi/mpi/man/man3/MPI_Barrier.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Barrier.md rename to ompi/mpi/man/man3/MPI_Barrier.3.md diff --git a/ompi/mpi/man/man3/MPI_Bcast.md b/ompi/mpi/man/man3/MPI_Bcast.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Bcast.md rename to ompi/mpi/man/man3/MPI_Bcast.3.md diff --git a/ompi/mpi/man/man3/MPI_Bsend.md b/ompi/mpi/man/man3/MPI_Bsend.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Bsend.md rename to ompi/mpi/man/man3/MPI_Bsend.3.md diff --git a/ompi/mpi/man/man3/MPI_Bsend_init.md b/ompi/mpi/man/man3/MPI_Bsend_init.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Bsend_init.md rename to ompi/mpi/man/man3/MPI_Bsend_init.3.md diff --git a/ompi/mpi/man/man3/MPI_Buffer_attach.md b/ompi/mpi/man/man3/MPI_Buffer_attach.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Buffer_attach.md rename to ompi/mpi/man/man3/MPI_Buffer_attach.3.md diff --git a/ompi/mpi/man/man3/MPI_Buffer_detach.md b/ompi/mpi/man/man3/MPI_Buffer_detach.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Buffer_detach.md rename to ompi/mpi/man/man3/MPI_Buffer_detach.3.md diff --git a/ompi/mpi/man/man3/MPI_Cancel.md b/ompi/mpi/man/man3/MPI_Cancel.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cancel.md rename to ompi/mpi/man/man3/MPI_Cancel.3.md diff --git a/ompi/mpi/man/man3/MPI_Cart_coords.md b/ompi/mpi/man/man3/MPI_Cart_coords.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cart_coords.md rename to ompi/mpi/man/man3/MPI_Cart_coords.3.md diff --git a/ompi/mpi/man/man3/MPI_Cart_create.md b/ompi/mpi/man/man3/MPI_Cart_create.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cart_create.md rename to ompi/mpi/man/man3/MPI_Cart_create.3.md diff --git a/ompi/mpi/man/man3/MPI_Cart_get.md b/ompi/mpi/man/man3/MPI_Cart_get.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cart_get.md rename to ompi/mpi/man/man3/MPI_Cart_get.3.md diff --git a/ompi/mpi/man/man3/MPI_Cart_map.md b/ompi/mpi/man/man3/MPI_Cart_map.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cart_map.md rename to ompi/mpi/man/man3/MPI_Cart_map.3.md diff --git a/ompi/mpi/man/man3/MPI_Cart_rank.md b/ompi/mpi/man/man3/MPI_Cart_rank.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cart_rank.md rename to ompi/mpi/man/man3/MPI_Cart_rank.3.md diff --git a/ompi/mpi/man/man3/MPI_Cart_shift.md b/ompi/mpi/man/man3/MPI_Cart_shift.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cart_shift.md rename to ompi/mpi/man/man3/MPI_Cart_shift.3.md diff --git a/ompi/mpi/man/man3/MPI_Cart_sub.md b/ompi/mpi/man/man3/MPI_Cart_sub.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cart_sub.md rename to ompi/mpi/man/man3/MPI_Cart_sub.3.md diff --git a/ompi/mpi/man/man3/MPI_Cartdim_get.md b/ompi/mpi/man/man3/MPI_Cartdim_get.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Cartdim_get.md rename to ompi/mpi/man/man3/MPI_Cartdim_get.3.md diff --git a/ompi/mpi/man/man3/MPI_Close_port.md b/ompi/mpi/man/man3/MPI_Close_port.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Close_port.md rename to ompi/mpi/man/man3/MPI_Close_port.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_accept.md b/ompi/mpi/man/man3/MPI_Comm_accept.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_accept.md rename to ompi/mpi/man/man3/MPI_Comm_accept.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_call_errhandler.md b/ompi/mpi/man/man3/MPI_Comm_call_errhandler.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_call_errhandler.md rename to ompi/mpi/man/man3/MPI_Comm_call_errhandler.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_compare.md b/ompi/mpi/man/man3/MPI_Comm_compare.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_compare.md rename to ompi/mpi/man/man3/MPI_Comm_compare.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_connect.md b/ompi/mpi/man/man3/MPI_Comm_connect.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_connect.md rename to ompi/mpi/man/man3/MPI_Comm_connect.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_create.md b/ompi/mpi/man/man3/MPI_Comm_create.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_create.md rename to ompi/mpi/man/man3/MPI_Comm_create.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_create_errhandler.md b/ompi/mpi/man/man3/MPI_Comm_create_errhandler.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_create_errhandler.md rename to ompi/mpi/man/man3/MPI_Comm_create_errhandler.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_create_group.md b/ompi/mpi/man/man3/MPI_Comm_create_group.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_create_group.md rename to ompi/mpi/man/man3/MPI_Comm_create_group.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_create_keyval.md b/ompi/mpi/man/man3/MPI_Comm_create_keyval.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_create_keyval.md rename to ompi/mpi/man/man3/MPI_Comm_create_keyval.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_delete_attr.md b/ompi/mpi/man/man3/MPI_Comm_delete_attr.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_delete_attr.md rename to ompi/mpi/man/man3/MPI_Comm_delete_attr.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_disconnect.md b/ompi/mpi/man/man3/MPI_Comm_disconnect.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_disconnect.md rename to ompi/mpi/man/man3/MPI_Comm_disconnect.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_dup.md b/ompi/mpi/man/man3/MPI_Comm_dup.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_dup.md rename to ompi/mpi/man/man3/MPI_Comm_dup.3.md diff --git a/ompi/mpi/man/man3/MPI_Comm_dup_with_info.md b/ompi/mpi/man/man3/MPI_Comm_dup_with_info.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Comm_dup_with_info.md rename to ompi/mpi/man/man3/MPI_Comm_dup_with_info.3.md diff --git a/ompi/mpi/man/man3/MPI_File_write_ordered.md b/ompi/mpi/man/man3/MPI_File_write_ordered.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_File_write_ordered.md rename to ompi/mpi/man/man3/MPI_File_write_ordered.3.md diff --git a/ompi/mpi/man/man3/MPI_File_write_ordered_begin.md b/ompi/mpi/man/man3/MPI_File_write_ordered_begin.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_File_write_ordered_begin.md rename to ompi/mpi/man/man3/MPI_File_write_ordered_begin.3.md diff --git a/ompi/mpi/man/man3/MPI_File_write_ordered_end.md b/ompi/mpi/man/man3/MPI_File_write_ordered_end.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_File_write_ordered_end.md rename to ompi/mpi/man/man3/MPI_File_write_ordered_end.3.md diff --git a/ompi/mpi/man/man3/MPI_File_write_shared.md b/ompi/mpi/man/man3/MPI_File_write_shared.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_File_write_shared.md rename to ompi/mpi/man/man3/MPI_File_write_shared.3.md diff --git a/ompi/mpi/man/man3/MPI_Finalize.md b/ompi/mpi/man/man3/MPI_Finalize.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Finalize.md rename to ompi/mpi/man/man3/MPI_Finalize.3.md diff --git a/ompi/mpi/man/man3/MPI_Finalized.md b/ompi/mpi/man/man3/MPI_Finalized.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Finalized.md rename to ompi/mpi/man/man3/MPI_Finalized.3.md diff --git a/ompi/mpi/man/man3/MPI_Free_mem.md b/ompi/mpi/man/man3/MPI_Free_mem.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Free_mem.md rename to ompi/mpi/man/man3/MPI_Free_mem.3.md diff --git a/ompi/mpi/man/man3/MPI_Gather.md b/ompi/mpi/man/man3/MPI_Gather.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Gather.md rename to ompi/mpi/man/man3/MPI_Gather.3.md diff --git a/ompi/mpi/man/man3/MPI_Gatherv.md b/ompi/mpi/man/man3/MPI_Gatherv.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Gatherv.md rename to ompi/mpi/man/man3/MPI_Gatherv.3.md diff --git a/ompi/mpi/man/man3/MPI_Get.md b/ompi/mpi/man/man3/MPI_Get.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Get.md rename to ompi/mpi/man/man3/MPI_Get.3.md diff --git a/ompi/mpi/man/man3/MPI_Get_accumulate.md b/ompi/mpi/man/man3/MPI_Get_accumulate.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Get_accumulate.md rename to ompi/mpi/man/man3/MPI_Get_accumulate.3.md diff --git a/ompi/mpi/man/man3/MPI_Get_address.md b/ompi/mpi/man/man3/MPI_Get_address.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Get_address.md rename to ompi/mpi/man/man3/MPI_Get_address.3.md diff --git a/ompi/mpi/man/man3/MPI_Get_count.md b/ompi/mpi/man/man3/MPI_Get_count.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Get_count.md rename to ompi/mpi/man/man3/MPI_Get_count.3.md diff --git a/ompi/mpi/man/man3/MPI_Get_elements.md b/ompi/mpi/man/man3/MPI_Get_elements.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Get_elements.md rename to ompi/mpi/man/man3/MPI_Get_elements.3.md diff --git a/ompi/mpi/man/man3/MPI_Get_library_version.md b/ompi/mpi/man/man3/MPI_Get_library_version.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Get_library_version.md rename to ompi/mpi/man/man3/MPI_Get_library_version.3.md diff --git a/ompi/mpi/man/man3/MPI_Get_processor_name.md b/ompi/mpi/man/man3/MPI_Get_processor_name.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Get_processor_name.md rename to ompi/mpi/man/man3/MPI_Get_processor_name.3.md diff --git a/ompi/mpi/man/man3/MPI_Get_version.md b/ompi/mpi/man/man3/MPI_Get_version.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Get_version.md rename to ompi/mpi/man/man3/MPI_Get_version.3.md diff --git a/ompi/mpi/man/man3/MPI_Graph_create.md b/ompi/mpi/man/man3/MPI_Graph_create.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Graph_create.md rename to ompi/mpi/man/man3/MPI_Graph_create.3.md diff --git a/ompi/mpi/man/man3/MPI_Graph_get.md b/ompi/mpi/man/man3/MPI_Graph_get.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Graph_get.md rename to ompi/mpi/man/man3/MPI_Graph_get.3.md diff --git a/ompi/mpi/man/man3/MPI_Graph_map.md b/ompi/mpi/man/man3/MPI_Graph_map.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Graph_map.md rename to ompi/mpi/man/man3/MPI_Graph_map.3.md diff --git a/ompi/mpi/man/man3/MPI_Graph_neighbors_count.md b/ompi/mpi/man/man3/MPI_Graph_neighbors_count.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Graph_neighbors_count.md rename to ompi/mpi/man/man3/MPI_Graph_neighbors_count.3.md diff --git a/ompi/mpi/man/man3/MPI_Graphdims_get.md b/ompi/mpi/man/man3/MPI_Graphdims_get.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Graphdims_get.md rename to ompi/mpi/man/man3/MPI_Graphdims_get.3.md diff --git a/ompi/mpi/man/man3/MPI_Grequest_complete.md b/ompi/mpi/man/man3/MPI_Grequest_complete.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Grequest_complete.md rename to ompi/mpi/man/man3/MPI_Grequest_complete.3.md diff --git a/ompi/mpi/man/man3/MPI_Grequest_start.md b/ompi/mpi/man/man3/MPI_Grequest_start.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Grequest_start.md rename to ompi/mpi/man/man3/MPI_Grequest_start.3.md diff --git a/ompi/mpi/man/man3/MPI_Group_compare.md b/ompi/mpi/man/man3/MPI_Group_compare.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Group_compare.md rename to ompi/mpi/man/man3/MPI_Group_compare.3.md diff --git a/ompi/mpi/man/man3/MPI_Group_difference.md b/ompi/mpi/man/man3/MPI_Group_difference.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Group_difference.md rename to ompi/mpi/man/man3/MPI_Group_difference.3.md diff --git a/ompi/mpi/man/man3/MPI_Group_excl.md b/ompi/mpi/man/man3/MPI_Group_excl.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Group_excl.md rename to ompi/mpi/man/man3/MPI_Group_excl.3.md diff --git a/ompi/mpi/man/man3/MPI_Group_free.md b/ompi/mpi/man/man3/MPI_Group_free.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Group_free.md rename to ompi/mpi/man/man3/MPI_Group_free.3.md diff --git a/ompi/mpi/man/man3/MPI_Group_incl.md b/ompi/mpi/man/man3/MPI_Group_incl.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Group_incl.md rename to ompi/mpi/man/man3/MPI_Group_incl.3.md diff --git a/ompi/mpi/man/man3/MPI_Group_intersection.md b/ompi/mpi/man/man3/MPI_Group_intersection.3.md similarity index 100% rename from ompi/mpi/man/man3/MPI_Group_intersection.md rename to ompi/mpi/man/man3/MPI_Group_intersection.3.md diff --git a/ompi/mpi/man/man3/Makefile.am b/ompi/mpi/man/man3/Makefile.am index cf62ec23a76..bf56550297d 100644 --- a/ompi/mpi/man/man3/Makefile.am +++ b/ompi/mpi/man/man3/Makefile.am @@ -24,68 +24,68 @@ include $(top_srcdir)/Makefile.ompi-rules # https://rmarkdown.rstudio.com/authoring_pandoc_markdown.html MD_FILES = \ - MPI_Barrier.md \ - MPI_Bsend.md \ - MPI_Bsend_init.md \ - MPI_Buffer_attach.md \ - MPI_Buffer_detach.md \ - MPI_Cancel.md \ - MPI_Cart_coords.md \ - MPI_Cart_create.md \ - MPI_Cart_get.md \ - MPI_Cart_map.md \ - MPI_Cart_rank.md \ - MPI_Cart_shift.md \ - MPI_Close_port.md \ - MPI_Cart_sub.md \ - MPI_Cartdim_get.md \ - MPI_Comm_accept.md \ - MPI_Comm_call_errhandler.md \ - MPI_Comm_compare.md \ - MPI_Comm_connect.md \ - MPI_Comm_create.md \ - MPI_Comm_create_errhandler.md \ - MPI_Comm_create_group.md \ - MPI_Comm_create_keyval.md \ - MPI_Comm_delete_attr.md \ - MPI_Comm_disconnect.md \ - MPI_Comm_dup.md \ - MPI_Comm_dup_with_info.md \ + MPI_Barrier.3.md \ + MPI_Bsend.3.md \ + MPI_Bsend_init.3.md \ + MPI_Buffer_attach.3.md \ + MPI_Buffer_detach.3.md \ + MPI_Cancel.3.md \ + MPI_Cart_coords.3.md \ + MPI_Cart_create.3.md \ + MPI_Cart_get.3.md \ + MPI_Cart_map.3.md \ + MPI_Cart_rank.3.md \ + MPI_Cart_shift.3.md \ + MPI_Close_port.3.md \ + MPI_Cart_sub.3.md \ + MPI_Cartdim_get.3.md \ + MPI_Comm_accept.3.md \ + MPI_Comm_call_errhandler.3.md \ + MPI_Comm_compare.3.md \ + MPI_Comm_connect.3.md \ + MPI_Comm_create.3.md \ + MPI_Comm_create_errhandler.3.md \ + MPI_Comm_create_group.3.md \ + MPI_Comm_create_keyval.3.md \ + MPI_Comm_delete_attr.3.md \ + MPI_Comm_disconnect.3.md \ + MPI_Comm_dup.3.md \ + MPI_Comm_dup_with_info.3.md \ MPI_T_init_thread.3.md \ MPI_Status_f2c.3.md \ MPI_Status_f082c.3.md \ MPI_Status_f082f.3.md \ - MPI_Bcast.md \ - MPI_File_write_ordered.md \ - MPI_File_write_ordered_begin.md \ - MPI_File_write_ordered_end.md \ - MPI_File_write_shared.md \ - MPI_Finalize.md \ - MPI_Finalized.md \ - MPI_Free_mem.md \ - MPI_Gather.md \ - MPI_Gatherv.md \ - MPI_Get.md \ - MPI_Get_accumulate.md \ - MPI_Get_address.md \ - MPI_Get_count.md \ - MPI_Get_elements.md \ - MPI_Get_library_version.md \ - MPI_Get_processor_name.md \ - MPI_Get_version.md \ - MPI_Graph_create.md \ - MPI_Graph_get.md \ - MPI_Graph_map.md \ - MPI_Graph_neighbors_count.md \ - MPI_Graphdims_get.md \ - MPI_Grequest_complete.md \ - MPI_Grequest_start.md \ - MPI_Group_compare.md \ - MPI_Group_difference.md \ - MPI_Group_excl.md \ - MPI_Group_free.md \ - MPI_Group_incl.md \ - MPI_Group_intersection.md + MPI_Bcast.3.md \ + MPI_File_write_ordered.3.md \ + MPI_File_write_ordered_begin.3.md \ + MPI_File_write_ordered_end.3.md \ + MPI_File_write_shared.3.md \ + MPI_Finalize.3.md \ + MPI_Finalized.3.md \ + MPI_Free_mem.3.md \ + MPI_Gather.3.md \ + MPI_Gatherv.3.md \ + MPI_Get.3.md \ + MPI_Get_accumulate.3.md \ + MPI_Get_address.3.md \ + MPI_Get_count.3.md \ + MPI_Get_elements.3.md \ + MPI_Get_library_version.3.md \ + MPI_Get_processor_name.3.md \ + MPI_Get_version.3.md \ + MPI_Graph_create.3.md \ + MPI_Graph_get.3.md \ + MPI_Graph_map.3.md \ + MPI_Graph_neighbors_count.3.md \ + MPI_Graphdims_get.3.md \ + MPI_Grequest_complete.3.md \ + MPI_Grequest_start.3.md \ + MPI_Group_compare.3.md \ + MPI_Group_difference.3.md \ + MPI_Group_excl.3.md \ + MPI_Group_free.3.md \ + MPI_Group_incl.3.md \ + MPI_Group_intersection.3.md TEMPLATE_FILES = \ MPI_Abort.3in \ From 21fb639dc584572ee8f38a6efa3f4f01d0bfc04f Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 24 Mar 2021 14:27:42 -0700 Subject: [PATCH 2/2] build: Fix manpage file permissions A number of the markdown man pages in the MPI section incorrectly had the execute bit set. This commit removes the execute bit. Signed-off-by: Brian Barrett --- ompi/mpi/man/man3/MPI_Cancel.3.md | 0 ompi/mpi/man/man3/MPI_Cart_coords.3.md | 0 ompi/mpi/man/man3/MPI_Cart_create.3.md | 0 ompi/mpi/man/man3/MPI_Cart_get.3.md | 0 ompi/mpi/man/man3/MPI_Cart_map.3.md | 0 ompi/mpi/man/man3/MPI_Cart_rank.3.md | 0 ompi/mpi/man/man3/MPI_Cart_shift.3.md | 0 ompi/mpi/man/man3/MPI_Cartdim_get.3.md | 0 ompi/mpi/man/man3/MPI_Close_port.3.md | 0 ompi/mpi/man/man3/MPI_Comm_accept.3.md | 0 ompi/mpi/man/man3/MPI_Comm_call_errhandler.3.md | 0 ompi/mpi/man/man3/MPI_Comm_compare.3.md | 0 ompi/mpi/man/man3/MPI_Comm_connect.3.md | 0 ompi/mpi/man/man3/MPI_Comm_create.3.md | 0 ompi/mpi/man/man3/MPI_Comm_create_errhandler.3.md | 0 ompi/mpi/man/man3/MPI_Comm_create_group.3.md | 0 ompi/mpi/man/man3/MPI_Comm_create_keyval.3.md | 0 ompi/mpi/man/man3/MPI_Comm_delete_attr.3.md | 0 ompi/mpi/man/man3/MPI_Comm_disconnect.3.md | 0 ompi/mpi/man/man3/MPI_Comm_dup.3.md | 0 ompi/mpi/man/man3/MPI_Comm_dup_with_info.3.md | 0 21 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Cancel.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Cart_coords.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Cart_create.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Cart_get.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Cart_map.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Cart_rank.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Cart_shift.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Cartdim_get.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Close_port.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_accept.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_call_errhandler.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_compare.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_connect.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_create.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_create_errhandler.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_create_group.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_create_keyval.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_delete_attr.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_disconnect.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_dup.3.md mode change 100755 => 100644 ompi/mpi/man/man3/MPI_Comm_dup_with_info.3.md diff --git a/ompi/mpi/man/man3/MPI_Cancel.3.md b/ompi/mpi/man/man3/MPI_Cancel.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Cart_coords.3.md b/ompi/mpi/man/man3/MPI_Cart_coords.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Cart_create.3.md b/ompi/mpi/man/man3/MPI_Cart_create.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Cart_get.3.md b/ompi/mpi/man/man3/MPI_Cart_get.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Cart_map.3.md b/ompi/mpi/man/man3/MPI_Cart_map.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Cart_rank.3.md b/ompi/mpi/man/man3/MPI_Cart_rank.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Cart_shift.3.md b/ompi/mpi/man/man3/MPI_Cart_shift.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Cartdim_get.3.md b/ompi/mpi/man/man3/MPI_Cartdim_get.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Close_port.3.md b/ompi/mpi/man/man3/MPI_Close_port.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_accept.3.md b/ompi/mpi/man/man3/MPI_Comm_accept.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_call_errhandler.3.md b/ompi/mpi/man/man3/MPI_Comm_call_errhandler.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_compare.3.md b/ompi/mpi/man/man3/MPI_Comm_compare.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_connect.3.md b/ompi/mpi/man/man3/MPI_Comm_connect.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_create.3.md b/ompi/mpi/man/man3/MPI_Comm_create.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_create_errhandler.3.md b/ompi/mpi/man/man3/MPI_Comm_create_errhandler.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_create_group.3.md b/ompi/mpi/man/man3/MPI_Comm_create_group.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_create_keyval.3.md b/ompi/mpi/man/man3/MPI_Comm_create_keyval.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_delete_attr.3.md b/ompi/mpi/man/man3/MPI_Comm_delete_attr.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_disconnect.3.md b/ompi/mpi/man/man3/MPI_Comm_disconnect.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_dup.3.md b/ompi/mpi/man/man3/MPI_Comm_dup.3.md old mode 100755 new mode 100644 diff --git a/ompi/mpi/man/man3/MPI_Comm_dup_with_info.3.md b/ompi/mpi/man/man3/MPI_Comm_dup_with_info.3.md old mode 100755 new mode 100644