Sébastien Loriot
|
254d60f642
|
First pass on removing license notice in header for GPL files
|
2019-10-19 15:23:19 +02:00 |
Sébastien Loriot
|
7356421d80
|
introduce Commercial license SPDX tag
|
2019-10-19 12:15:19 +02:00 |
Sébastien Loriot
|
9bd9c68b83
|
update LGPL[23]+ and GPL[23]+ SPDX tags
ack -l --no-svg "SPDX-License-Identifier: GPL-3.0\+" | xargs sed -i "s/SPDX-License-Identifier: GPL-3.0+/SPDX-License-Identifier: GPL-3.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: LGPL-3.0\+" | xargs sed -i "s/SPDX-License-Identifier: LGPL-3.0+/SPDX-License-Identifier: LGPL-3.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: GPL-2.0\+" | xargs sed -i "s/SPDX-License-Identifier: GPL-2.0+/SPDX-License-Identifier: GPL-2.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: LGPL-2.0\+" | xargs sed -i "s/SPDX-License-Identifier: LGPL-2.0+/SPDX-License-Identifier: LGPL-2.0-or-later/"
|
2019-10-18 21:57:54 +02:00 |
Mael Rouxel-Labbé
|
cbde108708
|
Renamed template parameter names
It is safer not to use 'K' as template parameter because the CGAL kernels
will also define 'K' typedefs and this confuses some compilers (MSCV).
|
2017-12-13 11:23:12 +01:00 |
Sébastien Loriot
|
8cdfad0d08
|
add missing URL and Id tags
|
2017-11-15 22:58:57 +01:00 |
Sébastien Loriot
|
ee57fc2d6c
|
add SPDX identifier for files under the GPL-3+ license
|
2017-11-12 10:17:51 +01:00 |
Mael Rouxel-Labbé
|
b82814a24b
|
Changed K::Has_[static/filtered]... to use Has_[static/filtered]_...<K> instead
|
2017-08-29 12:35:46 +02:00 |
Mael Rouxel-Labbé
|
6411ed2de9
|
Fixed typo
|
2017-08-29 11:22:19 +02:00 |
Mael Rouxel-Labbé
|
0106de5fd0
|
Misc minor changes
|
2017-08-23 10:57:48 +02:00 |
Mael Rouxel-Labbé
|
b5fd4dfa01
|
Removed useless include
|
2017-08-22 17:34:05 +02:00 |
Mael Rouxel-Labbé
|
391c737108
|
Fixed 2D periodic traits
This is aligned on P3T3 new traits on actually use filtered and statically
filtered traits (automatically selected).
|
2017-08-22 13:35:45 +02: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 |
Andreas Fabri
|
27abe38a56
|
Call init_double in Periodic_T2 static filters
|
2016-03-03 08:33:44 +01:00 |
Sébastien Loriot
|
c130fa3b8c
|
update copyright holder of P2T2 package
|
2013-07-26 08:32:46 +02:00 |
Nico Kruithof
|
c39c55b4f1
|
Changed the copyright and the license
|
2013-06-26 21:55:51 +02:00 |
Nico Kruithof
|
81fc05c90f
|
Changed the copyright to remain mine until Monique sorts out legal issues with the INRIA legal department
|
2013-06-06 09:19:13 +02:00 |
Nico Kruithof
|
bd096e4b2a
|
Fixing a double defined function
|
2013-04-08 20:45:50 +02:00 |
Nico Kruithof
|
d69d0e303b
|
Formatting, ran astyle:
for i in `find . -name "*.h" -or -name "*.cpp"`; do echo $i; astyle -A7 -bps2 $i; done
|
2013-03-31 22:10:07 +02:00 |
Nico Kruithof
|
e2e66640fd
|
Fixed predicate
|
2012-12-20 17:01:18 +01:00 |
Monique Teillaud
|
27daa83427
|
fix temporary name to final name
|
2012-09-27 11:26:01 +00:00 |