Sébastien Loriot
|
ff26773f7b
|
remove include directive for checking GPL compliance in LGPL headers
|
2017-11-12 10:21:35 +01:00 |
Sébastien Loriot
|
0698f79aff
|
add SPDX identifier for files under the LGPL-3+ license
|
2017-11-12 10:17:50 +01:00 |
Sébastien Loriot
|
50510c05ea
|
add include directive for license of all GPL header files
done using:
ack-grep "^GPL" */package_info/*/license.txt -l | awk -F "/" '{print $1}' > /tmp/gpl_packages
for i in `cat /tmp/gpl_packages | \
grep -v Operations_on_polyhedra | \
grep -v Algebraic_kernel_for_circles | \
grep -v Algebraic_kernel_for_spheres | \
grep -v Polyhedron_IO`;
do
echo $i
python Scripts/developer_scripts/add_license_in_pkg_header.py $i
done
python Scripts/developer_scripts/add_license_in_pkg_header.py Operations_on_polyhedra Polygon_mesh_processing
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_circles Circular_kernel_2
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_spheres Circular_kernel_3
python Scripts/developer_scripts/add_license_in_pkg_header.py Polyhedron_IO Polyhedron
|
2017-01-19 15:20:25 +01:00 |
Sébastien Loriot
|
00a57be25a
|
remove the STL reading part outside of the builder
|
2015-01-23 15:01:16 +01:00 |
Sébastien Loriot
|
fcd2e56742
|
cleanup
|
2015-01-23 14:09:40 +01:00 |
Sébastien Loriot
|
1ee29eb3e1
|
int[] -> array
|
2015-01-23 12:17:31 +01:00 |
Sébastien Loriot
|
5c956f1ccd
|
replace tuple by array
|
2015-01-23 11:47:23 +01:00 |
Sébastien Loriot
|
b551c0fa55
|
move Polyhedron builder from STL files from demo plugin to header
|
2015-01-23 10:40:15 +01:00 |