1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#!/usr/bin/env python3
import fnmatch
import os
from setuptools import setup, distutils
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def glob(fname):
return fnmatch.filter(os.listdir(os.path.abspath(os.path.dirname(__file__))), fname)
def generate_manpage(src, dst):
import docutils.core
distutils.log.info("generating a manpage from %s to %s", src, dst)
docutils.core.publish_file(source_path=src, destination_path=dst, writer_name='manpage')
def man_name(fname):
import re
matches = re.compile(r'^:Manual section: *([0-9]*)', re.MULTILINE).search(read(fname))
if matches:
section = matches.groups()[0]
else:
section = '7'
base = os.path.splitext(fname)[0]
manfname = base + '.' + section
return manfname
def man_path(fname):
category = fname.rsplit('.', 1)[1]
return os.path.join('share', 'man', 'man' + category), [fname]
def man_files(pattern):
return list(map(man_path, map(man_name, glob(pattern))))
__manpages__ = 'pristine-lfs.rst'
from setuptools.command import build_py
build_py_org = build_py.build_py
class build_py_new(build_py_org):
def run(self):
build_py_org.run(self)
if not self.dry_run:
for page in glob(__manpages__):
generate_manpage(page, man_name(page))
build_py.build_py = build_py_new
__name__ = "pristine-lfs"
setup(
data_files = [
(os.path.join('share', 'doc', __name__), glob('*.rst')),
(os.path.join('share', 'doc', __name__), ['CONTRIBUTORS', 'COPYING'])
] + man_files(__manpages__)
)
|