X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=buildscripts%2Fmakelsr.py;h=a5fd48013e4e6f12af5c15dcb6c4d6c0616ba745;hb=dcd296e0d46d85e892a3237f6354502b5be614a9;hp=366653cfeb7831654da99c2623bf4900f87d4f78;hpb=033735cefc1d7cb31af1a7f73efea560ebd2c095;p=lilypond.git diff --git a/buildscripts/makelsr.py b/buildscripts/makelsr.py index 366653cfeb..a5fd48013e 100755 --- a/buildscripts/makelsr.py +++ b/buildscripts/makelsr.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import sys import os @@ -10,16 +10,17 @@ This script must be run from top of the source tree; it updates snippets input/lsr with snippets in input/new or LSR_SNIPPETS_DIR. ''' -LY_HEADER_LSR = '''%%%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it -%%%% This file is in the public domain. -%%%% Tags: %(tags)s +LY_HEADER_LSR = '''%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% This file is in the public domain. ''' -LY_HEADER_NEW = '''%%%% Do not edit this file; it is auto-generated from input/new +LY_HEADER_NEW = '''%% Do not edit this file; it is auto-generated from input/new +%% This file is in the public domain. ''' DEST = os.path.join ('input', 'lsr') NEW_LYS = os.path.join ('input', 'new') +TEXIDOCS = os.path.join ('input', 'texidocs') TAGS = [] # NR 1 @@ -51,31 +52,45 @@ unconverted = [] notags_files = [] # mark the section that will be printed verbatim by lilypond-book -end_header_re = re.compile ('(\\header {.*?"\\s*}\n)\n', re.M | re.S) +end_header_re = re.compile ('(\\header {.+?(?:"\\s*|\\s+)}\n)\n', re.M | re.S) def mark_verbatim_section (ly_code): - return end_header_re.sub ('\\1% begin verbatim\n', ly_code) + return end_header_re.sub ('\\1% begin verbatim\n', ly_code, 1) + +begin_header_re = re.compile ('\\header\\s*{', re.M) + +# add tags to ly files from LSR +def add_tags (ly_code, tags): + return begin_header_re.sub ('\\g<0>\n lsrtags = "' + tags + '"\n', ly_code, 1) def copy_ly (srcdir, name, tags): global unsafe global unconverted dest = os.path.join (DEST, name) - f = open (dest, 'w') tags = ', '.join (tags) + s = open (os.path.join (srcdir, name)).read () + + texidoc_translations_path = os.path.join (TEXIDOCS, + os.path.splitext (name)[0] + '.texidoc') + if os.path.exists (texidoc_translations_path): + texidoc_translations = open (texidoc_translations_path).read () + s = begin_header_re.sub ('\\g<0>\n' + texidoc_translations, s, 1) + if in_dir in srcdir: - h = LY_HEADER_LSR + s = LY_HEADER_LSR + add_tags (s, tags) else: - h = LY_HEADER_NEW - f.write (h % vars ()) - f.write (mark_verbatim_section (open (os.path.join (srcdir, name)).read ())) - f.close () - e = os.system('convert-ly -e ' + dest) + s = LY_HEADER_NEW + s + + s = mark_verbatim_section (s) + open (dest, 'w').write (s) + + e = os.system ("convert-ly -e '%s'" % dest) if e: unconverted.append (dest) if os.path.exists (dest + '~'): os.remove (dest + '~') # -V seems to make unsafe snippets fail nicer/sooner - e = os.system ('nice lilypond -V -dno-print-pages -dsafe -o /tmp/lsrtest ' + dest) + e = os.system ("lilypond -V -dno-print-pages -dsafe -o /tmp/lsrtest '%s'" % dest) if e: unsafe.append (dest) @@ -144,7 +159,8 @@ dump_file_list ('lsr-unsafe.txt', unsafe) sys.stderr.write (''' Unsafe files printed in lsr-unsafe.txt: CHECK MANUALLY! - xargs git-diff < lsr-unsafe.txt + git add input/lsr + xargs git-diff HEAD < lsr-unsafe.txt ''')