unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 71bd1356e5160368038bb0b0ab24f4f40a07139d 477 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
 
from sys import argv
srcdir = argv[1]
builddir = argv[2]
outfile = argv[3]

execfile(srcdir + '/conf.py')


roff_files = []
rst_files = []
out=open(outfile,'w')
for page in 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])]

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 71bd135 ...
found 71bd135 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).