From: "Brian Dolbec" <dolsen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gentoo-keys:master commit in: py2man/
Date: Mon, 5 Jan 2015 23:12:37 +0000 (UTC) [thread overview]
Message-ID: <1420496513.a051bd81ac741839c74c94060e4d509e3d4b06b0.dolsen@gentoo> (raw)
commit: a051bd81ac741839c74c94060e4d509e3d4b06b0
Author: Pavlos Ratis <dastergon <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 5 15:56:40 2015 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Mon Jan 5 22:21:53 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=a051bd81
py2man: tiny updates
---
py2man/command.template | 3 ++-
py2man/manpages.py | 16 +++++++---------
py2man/sub-command.template | 3 ++-
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/py2man/command.template b/py2man/command.template
index 5879a05..e2111e3 100644
--- a/py2man/command.template
+++ b/py2man/command.template
@@ -28,4 +28,5 @@ Gentoo Keys project is under GPL-2 License.
.BR gkeys.conf (1),
%(actions)s
-(This man page was auto-generated from source)
+.SH NOTE
+This is an auto-generated man page from source
diff --git a/py2man/manpages.py b/py2man/manpages.py
index 0fd82ed..d5828f8 100644
--- a/py2man/manpages.py
+++ b/py2man/manpages.py
@@ -5,12 +5,12 @@
import os
from datetime import datetime
-from .options import LONG_OPTIONS, SHORT_OPTS
+from options import LONG_OPTIONS, SHORT_OPTS
ActionStr = '.BR gkeys-%s (1),'
-ExampleHeader = '''.SH Example'''
+EXAMPLEHEADER = '''.SH Example'''
BreakStr = '''.br
%s'''
@@ -45,12 +45,12 @@ class ManPage(object):
wrapl = 72 + escapes
output = []
line = firstline.rstrip('%(opts)s') % data
- ll = len(line)
+ line_len = len(line)
l1 = True
for opt in opts:
- if (ll + len(SHORT_OPTS[opt])) < wrapl:
+ if (line_len + len(SHORT_OPTS[opt])) < wrapl:
line = line + '%s ' % SHORT_OPTS[opt]
- ll = len(line)
+ line_len = len(line)
else:
if l1:
output.append(line)
@@ -58,7 +58,7 @@ class ManPage(object):
else:
output.append(BreakStr % line)
line = indent + '%s ' % SHORT_OPTS[opt]
- ll = len(line)
+ line_len = len(line)
return '\n'.join(output)
@@ -101,10 +101,8 @@ class ManPage(object):
@staticmethod
def gen_subcmd(cmds):
- #print(cmds.values())
output = []
for cmd in list(cmds):
- print(cmd)
if cmd.startswith('--'):
output.append(SubCmdHdr % cmd.strip('-').upper())
else:
@@ -130,7 +128,7 @@ class ManPage(object):
data['long_desc'] = Action_Map[action]['long_desc']
if Action_Map[action]['example']:
data['example'] = self.gen_example(Action_Map[action]['example'])
- data['exampleheader'] = ExampleHeader
+ data['exampleheader'] = EXAMPLEHEADER
else:
data['example'] = ''
data['exampleheader'] = ''
diff --git a/py2man/sub-command.template b/py2man/sub-command.template
index 89d1b1b..f15fa0e 100644
--- a/py2man/sub-command.template
+++ b/py2man/sub-command.template
@@ -32,4 +32,5 @@ Gentoo Keys project is under GPL-2 License.
.BR gkeys.conf (1),
%(actions)s
-(This man page was auto-generated from source)
+.SH NOTE
+This is an auto-generated man page from source
next reply other threads:[~2015-01-05 23:12 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-05 23:12 Brian Dolbec [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-07-07 5:23 [gentoo-commits] proj/gentoo-keys:master commit in: py2man/ Brian Dolbec
2015-01-07 23:39 Brian Dolbec
2015-01-06 21:45 Brian Dolbec
2015-01-06 21:45 Brian Dolbec
2015-01-06 21:45 Brian Dolbec
2015-01-05 23:12 Brian Dolbec
2015-01-05 23:12 Brian Dolbec
2015-01-05 23:12 Brian Dolbec
2015-01-05 23:12 Brian Dolbec
2015-01-05 23:12 Brian Dolbec
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1420496513.a051bd81ac741839c74c94060e4d509e3d4b06b0.dolsen@gentoo \
--to=dolsen@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox