]> git.donarmstrong.com Git - lilypond.git/blob - buildscripts/makelsr.py
LSR: update buildscript for new directories.
[lilypond.git] / buildscripts / makelsr.py
1 #!/usr/bin/python
2 import sys
3 import os
4 import os.path
5 import shutil
6
7 dirs =
8 ['ancient','chords','connecting','contemporary','expressive','education','guitar','parts','pitch','repeats','scheme','spacing','staff','text','vocal','other','non-music','engravers','instrument-specific']
9 notsafe=[]
10
11 try:
12         in_dir = sys.argv[1]
13 except:
14         print "Please specify input_file."
15         sys.exit()
16
17 def copy_with_warning(src, dest):
18         msg = '%%  Do not edit this file; it is auto-generated from LSR!\n'
19         open (dest, 'w').write( msg + open (src).read() )
20
21
22 def copy_dir_with_test(srcdir, destdir):
23         if not(os.path.exists(srcdir)):
24                 return
25         file_names = os.listdir (srcdir)
26         for file in file_names:
27                 if (file.endswith ('.ly')):
28                         src = os.path.join (srcdir, file)
29                         dest = os.path.join (destdir, file)
30                         copy_with_warning(src, dest)
31                         os.system('convert-ly -e ' + dest)
32                         s = os.system('lilypond -dno-print-pages -dsafe -o /tmp/lsrtest ' + dest)
33                         if s:
34                                 notsafe.append(dest)
35
36
37 for dir in dirs:
38         srcdir = os.path.join (in_dir, dir)
39         destdir = os.path.join ('input', 'lsr', dir)
40         if not(os.path.isdir(destdir)):
41                 print "Please run this script from the head of the source tree,"
42                 print "  and/or check that you have the right categories."
43                 sys.exit()
44
45         ## clean out existing files
46         file_names = os.listdir (destdir)
47         for file in file_names:
48                 if (file.endswith ('.ly')):
49                         os.remove( os.path.join(destdir,file) )
50         ## copy in new files from LSR download
51         copy_dir_with_test( srcdir, destdir )
52         ## copy in new files in source tree
53         copy_dir_with_test( os.path.join ('input', 'new', dir), destdir )
54
55
56 file=open("lsr-unsafe.txt", 'w')
57 for s in notsafe:
58         file.write(s+'\n')
59 file.close()
60 print
61 print
62 print "Unsafe files printed in lsr-unsafe.txt: CHECK MANUALLY!"
63 print "  xargs git-diff < lsr-unsafe.txt"
64 print
65