Apply license code packed into gather_sources.py

This commit is contained in:
Guilhem Lavaux 2013-03-02 16:43:58 -05:00
parent 12ca3bf2e3
commit 175e746d02
2 changed files with 0 additions and 45 deletions

View file

@ -1,26 +0,0 @@
import shutil
import tempfile
import sys
import re
rex = "@FILENAME@"
filename = sys.argv[1]
fh = file("header.txt")
header = fh.read()
header_translated = re.sub(r'@FILENAME@', filename, header)
fh.close()
f = file(filename)
lines = f.read()
f.close()
lines = re.sub(r'(?s)/\*\+.*\+\*/','',lines)
lines = header_translated + lines
with tempfile.NamedTemporaryFile(delete=False) as tmp_sources:
tmp_sources.write(lines)
shutil.move(tmp_sources.name, filename)

View file

@ -1,19 +0,0 @@
/*+
VIDE -- Void IDEntification pipeline -- @FILENAME@
Copyright (C) 2010-2013 Guilhem Lavaux
Copyright (C) 2011-2013 Paul M. Sutter
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+*/