unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob b87fe3e80c0fdc395a1efc4d8e6e892c829bf095 513 bytes (raw)
name: doc/mkdocdeps.py 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
 
import sys

srcdir = sys.argv[1]
builddir = sys.argv[2]
outfile = sys.argv[3]

sys.path.insert(0, srcdir)
import conf

roff_files = []
rst_files = []
for page in conf.man_pages:
    rst_files = rst_files + ["{0:s}/{1:s}.rst".format(srcdir,page[0])]
    roff_files = roff_files + ["{0:s}/man/{1:s}.{2:d}".format(builddir,page[0],page[4])]

with open(outfile, 'w') as out:
    out.write('MAN_ROFF_FILES := ' + ' \\\n\t'.join(roff_files) + '\n')
    out.write('MAN_RST_FILES := ' + ' \\\n\t'.join(rst_files) + '\n')

debug log:

solving b87fe3e ...
found b87fe3e in https://yhetil.org/notmuch.git/

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).