From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.6 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id C15EB1F4B4 for ; Mon, 1 Feb 2021 05:57:22 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1612159040; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=eAzVH0Rd5xUe9q8NW2XN1gGLuEzbKHOGXvqKYd5BeSs=; b=ZgpeINf+a30U9zWSr62FK5wg/0VdGzVmZov/vVKDTfthYkEfD0MkfMKxu/g4/4LonRs8Ay +FJDUm/Wogcw58Rld2X+1Cbu25QlSunNCIuOkH0fzj8dHe0Jkh1vbC2d0QDfztuXkFg71h H6ne2T2pGg7/rkcMbDYG6Syum4W6oCqEE1lMo/3LgiE9qrNbSAo/dNxFnXBjluT9k98qug kCbe2dSdoTpRXSISnu/jL4KHa1SkTbqni1s/4kzUDlj5Yqo6QbDNF/USO43kvg43IaHbOI xhwyObu3k9bj+S9COGbyWAyv0l3pOHtTmkBzQdTLzAmDqo+HR5L8p18ourZ4Ow== From: Kyle Meyer To: meta@public-inbox.org Subject: [PATCH 0/2] doc: initial lei manpages Date: Mon, 1 Feb 2021 00:57:01 -0500 Message-Id: <20210201055704.26683-1-kyle@kyleam.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyle@kyleam.com List-Id: Prompted by <20210124120217.GA12880@dcvr>, here's my attempt to start lei's manpages. The first patch adds a manpage for lei and each of its currently implemented subcommands. The second patch adds an overview/quickstart. I'm not really sure this is in a good state. I ran out of time to give it a complete read-through, I feel like it may need a bit more flesh just to be a good _start_, and I probably injected a good amount of my own confusion into them. Anyway, it still may be useful to get feedback on, especially because I probably won't be able to work on it in the next couple of days. [1/2] doc: start manpages for lei commands [2/2] doc: add lei-overview(7) Documentation/.gitignore | 1 + Documentation/lei-add-external.pod | 49 ++++++++++ Documentation/lei-config.pod | 26 ++++++ Documentation/lei-daemon-kill.pod | 28 ++++++ Documentation/lei-daemon-pid.pod | 28 ++++++ Documentation/lei-forget-external.pod | 40 ++++++++ Documentation/lei-init.pod | 42 +++++++++ Documentation/lei-ls-external.pod | 38 ++++++++ Documentation/lei-overview.pod | 72 +++++++++++++++ Documentation/lei-q.pod | 127 ++++++++++++++++++++++++++ Documentation/lei.pod | 90 ++++++++++++++++++ Documentation/txt2pre | 12 ++- MANIFEST | 10 ++ Makefile.PL | 7 +- 14 files changed, 567 insertions(+), 3 deletions(-) create mode 100644 Documentation/lei-add-external.pod create mode 100644 Documentation/lei-config.pod create mode 100644 Documentation/lei-daemon-kill.pod create mode 100644 Documentation/lei-daemon-pid.pod create mode 100644 Documentation/lei-forget-external.pod create mode 100644 Documentation/lei-init.pod create mode 100644 Documentation/lei-ls-external.pod create mode 100644 Documentation/lei-overview.pod create mode 100644 Documentation/lei-q.pod create mode 100644 Documentation/lei.pod base-commit: dd1a1bceb56692722b1fb4a27391c80307403d86 -- 2.30.0