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