File: update_boilerplate.py

package info (click to toggle)
wyrd 1.4.6-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,288 kB
  • sloc: ml: 11,059; sh: 5,531; ansic: 760; makefile: 302; python: 44
file content (43 lines) | stat: -rwxr-xr-x 1,566 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
import re
from glob import glob


BOILERPLATE = """\
(*  Wyrd -- a curses-based front-end for Remind
 *  Copyright (C) 2005, 2006, 2007, 2008, 2010, 2011-2013 Paul Pelzl
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License, Version 2,
 *  as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  Bug reports can be entered at http://bugs.launchpad.net/wyrd .
 *  For anything else, feel free to contact Paul Pelzl at <pelzlpj@gmail.com>.
 *)"""

boilerplate_regex = re.compile(r'\(\*.*?\*\)', re.DOTALL)

def update_boilerplate(filename):
    with open(filename, 'r') as f:
        content = f.read()
    content = boilerplate_regex.sub(BOILERPLATE, content, 1)
    with open(filename, 'w') as f:
        f.write(content)


AUTOGENERATED = ['install.ml', 'version.ml', 'setup.ml', 'make_oasis.ml']
FILENAMES     = [x for x in glob('*.ml') + glob('*.mli') + glob('*.ml.in') if x not in AUTOGENERATED]

for filename in FILENAMES:
    print 'Updating %s...' % filename
    update_boilerplate(filename)