From d8cd749a861d9956e7aa1162a74f1aa96310e864 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Tue, 3 Jun 2014 16:24:46 +0300 Subject: [PATCH] Add manual pages for Limnoria* commands as we already have the commands. Squashed commit of the following: commit 7397647f7f5c44a9e883b500b9342936c14c0188 Author: Mikaela Suomalainen Date: Tue Jun 3 16:23:30 2014 +0300 setup.py: add missing ".1"s. commit f9a95ebb4900a4b13b0f69fc674d4e9a7f7b019b Author: Mikaela Suomalainen Date: Tue Jun 3 16:22:17 2014 +0300 fix c48e9f087daf7c69eca8c01c4e52b5843039a119 Limnoria, not Limnotia! commit 467480325a4b6e90ac10875316867d9a218a4bc6 Author: Mikaela Suomalainen Date: Tue Jun 3 16:16:14 2014 +0300 Add manual pages for limnoria* We already have binaries with name limnoria*, so it makes sense to also have manual pages. --- docs/man/limnoria-adduser.1 | 1 + docs/man/limnoria-botchk.1 | 1 + docs/man/limnoria-plugin-create.1 | 1 + docs/man/limnoria-plugin-doc.1 | 1 + docs/man/limnoria-test.1 | 1 + docs/man/limnoria-wizard.1 | 1 + docs/man/limnoria.1 | 1 + setup.py | 7 +++++++ 8 files changed, 14 insertions(+) create mode 120000 docs/man/limnoria-adduser.1 create mode 120000 docs/man/limnoria-botchk.1 create mode 120000 docs/man/limnoria-plugin-create.1 create mode 120000 docs/man/limnoria-plugin-doc.1 create mode 120000 docs/man/limnoria-test.1 create mode 120000 docs/man/limnoria-wizard.1 create mode 120000 docs/man/limnoria.1 diff --git a/docs/man/limnoria-adduser.1 b/docs/man/limnoria-adduser.1 new file mode 120000 index 000000000..3ee71dd35 --- /dev/null +++ b/docs/man/limnoria-adduser.1 @@ -0,0 +1 @@ +supybot-adduser.1 \ No newline at end of file diff --git a/docs/man/limnoria-botchk.1 b/docs/man/limnoria-botchk.1 new file mode 120000 index 000000000..ecfc0923b --- /dev/null +++ b/docs/man/limnoria-botchk.1 @@ -0,0 +1 @@ +supybot-botchk.1 \ No newline at end of file diff --git a/docs/man/limnoria-plugin-create.1 b/docs/man/limnoria-plugin-create.1 new file mode 120000 index 000000000..f8d9dbb27 --- /dev/null +++ b/docs/man/limnoria-plugin-create.1 @@ -0,0 +1 @@ +supybot-plugin-create.1 \ No newline at end of file diff --git a/docs/man/limnoria-plugin-doc.1 b/docs/man/limnoria-plugin-doc.1 new file mode 120000 index 000000000..1e641da42 --- /dev/null +++ b/docs/man/limnoria-plugin-doc.1 @@ -0,0 +1 @@ +supybot-plugin-doc.1 \ No newline at end of file diff --git a/docs/man/limnoria-test.1 b/docs/man/limnoria-test.1 new file mode 120000 index 000000000..9bc7b0ed6 --- /dev/null +++ b/docs/man/limnoria-test.1 @@ -0,0 +1 @@ +supybot-test.1 \ No newline at end of file diff --git a/docs/man/limnoria-wizard.1 b/docs/man/limnoria-wizard.1 new file mode 120000 index 000000000..a393d6544 --- /dev/null +++ b/docs/man/limnoria-wizard.1 @@ -0,0 +1 @@ +supybot-wizard.1 \ No newline at end of file diff --git a/docs/man/limnoria.1 b/docs/man/limnoria.1 new file mode 120000 index 000000000..d17d87ff5 --- /dev/null +++ b/docs/man/limnoria.1 @@ -0,0 +1 @@ +supybot.1 \ No newline at end of file diff --git a/setup.py b/setup.py index db1496076..99de87e66 100644 --- a/setup.py +++ b/setup.py @@ -272,6 +272,13 @@ setup( ('share/man/man1', ['docs/man/supybot-adduser.1']), ('share/man/man1', ['docs/man/supybot-plugin-doc.1']), ('share/man/man1', ['docs/man/supybot-plugin-create.1']), + ('share/man/man1', ['docs/man/limnoria.1']), + ('share/man/man1', ['docs/man/limnoria-test.1']), + ('share/man/man1', ['docs/man/limnoria-botchk.1']), + ('share/man/man1', ['docs/man/limnoria-wizard.1']), + ('share/man/man1', ['docs/man/limnoria-adduser.1']), + ('share/man/man1', ['docs/man/limnoria-plugin-doc.1']), + ('share/man/man1', ['docs/man/limnoria-plugin-create.1']), ] )