Sébastien Loriot
98e471849b
moving files from internal to PKG/internal
2021-08-26 11:33:39 +02:00
Sébastien Loriot
0779373835
extra run of the script to remove tabs and trailing whitespaces
...
right after the merge of 4.14 release branch
+ manual fix on one line in:
* Arrangement_on_surface_2/include/CGAL/IO/Arr_text_formatter.h
* .travis/generate_travis.sh
2020-03-26 14:16:06 +01:00
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
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é
cd2a562ffa
Fixed improper guards against the inclusion of deprecated headers
2017-05-16 10:17:41 +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
Laurent Rineau
8f59fd9592
Turn QPL into LGPLv3+
2012-01-13 16:33:35 +00:00
Eric Berberich
749b8fed3f
fix years in header from svn
2011-06-03 09:51:23 +00:00
Efi Fogel
67154c944c
depricated headers
2010-06-25 09:30:55 +00:00
Sébastien Loriot
52317dd49f
add python script (replace_CGAL_NAMESPACE.py) to replace CGAL_BEGIN_NAMESPACE and CGAL_END_NAMESPACE
...
by namespace CGAL { and } //namespace CGAL. in all .h and .cpp files
in a directory.
Apply it to all packages in the trunk
Remove macro definition from the config.h file.
2010-06-09 07:37:13 +00:00
Laurent Rineau
8b83f2ef79
Merged revisions 54700-54703,54726,54827,54834,54861-54864 via svnmerge from
...
svn+ssh://lrineau@scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.6-branch
........
r54700 | lrineau | 2010-03-11 15:13:25 +0100 (Thu, 11 Mar 2010) | 18 lines
Backport from trunk:
| ------------------------------------------------------------------------
| r54614 | lrineau | 2010-03-09 16:25:12 +0100 (Tue, 09 Mar 2010) | 4 lines
| Changed paths:
| M /trunk/Mesh_2/include/CGAL/IO/File_poly.h
| M /trunk/Mesh_2/include/CGAL/Mesh_2/Clusters.h
| M /trunk/Mesh_2/include/CGAL/Mesh_2/Refine_edges.h
| M /trunk/Mesh_2/test/Mesh_2/test_conforming.cpp
| M /trunk/Mesh_2/test/Mesh_2/test_meshing.cpp
| M /trunk/Triangulation_2/include/CGAL/Constrained_Delaunay_triangulation_2.h
| M /trunk/Triangulation_2/include/CGAL/Constrained_triangulation_plus_2.h
|
| - Fix the Mesh_2 test suite: previously it was no longer testing anything!
| - Fix the handling of the cdt with the triangulation plus_2.
| - Add tests with CDT_plus_2.
|
| ------------------------------------------------------------------------
........
r54701 | lrineau | 2010-03-11 15:19:21 +0100 (Thu, 11 Mar 2010) | 26 lines
Backport from trunk:
| ------------------------------------------------------------------------
| r54660 | lrineau | 2010-03-10 17:46:10 +0100 (Wed, 10 Mar 2010) | 2 lines
| Changed paths:
| M /trunk/Mesh_2/include/CGAL/Mesh_2/Refine_edges.h
|
| Fix a bug of Mesh_2 that exists for years (since r23141, 2004-10-19)!
|
| ------------------------------------------------------------------------
| r54661 | lrineau | 2010-03-10 17:51:09 +0100 (Wed, 10 Mar 2010) | 2 lines
| Changed paths:
| M /trunk/Mesh_2/test/Mesh_2/test_conforming.cpp
|
| Add tests cdt.is_valid().
|
| ------------------------------------------------------------------------
| r54665 | lrineau | 2010-03-10 19:09:33 +0100 (Wed, 10 Mar 2010) | 4 lines
| Changed paths:
| M /trunk/Mesh_2/test/Mesh_2/test_meshing.cpp
|
| Add tests of is_valid() in test_meshing.cpp (previously Mesh_2 was creating
| invalid triangulations! See revision 54660.)
| .
|
| ------------------------------------------------------------------------
........
r54702 | lrineau | 2010-03-11 15:34:35 +0100 (Thu, 11 Mar 2010) | 2 lines
Add a paragraph about Mesh_2 and CDT_plus_2.
........
r54703 | lrineau | 2010-03-11 15:41:31 +0100 (Thu, 11 Mar 2010) | 2 lines
Add a note about the other bug fix in Mesh_2.
........
r54726 | reichel | 2010-03-12 19:30:43 +0100 (Fri, 12 Mar 2010) | 2 lines
Add RS library to prerequisites section.
........
r54827 | lrineau | 2010-03-19 15:27:55 +0100 (Fri, 19 Mar 2010) | 2 lines
Two targets where not in "make demos".
........
r54834 | reichel | 2010-03-20 15:36:01 +0100 (Sat, 20 Mar 2010) | 2 lines
update date and version number
........
r54861 | lrineau | 2010-03-22 22:44:31 +0100 (Mon, 22 Mar 2010) | 2 lines
One must include <boost/version.hpp> before testing BOOST_VERSION!
........
r54862 | lrineau | 2010-03-22 22:46:40 +0100 (Mon, 22 Mar 2010) | 3 lines
<QtCore/qglobal.h> is one right path, unless <Qt/qglobal.h> (pb reported on
MacOS X).
........
r54863 | reichel | 2010-03-22 23:54:19 +0100 (Mon, 22 Mar 2010) | 2 lines
update Debian stuff for 3.6-1
........
r54864 | reichel | 2010-03-22 23:55:25 +0100 (Mon, 22 Mar 2010) | 2 lines
fix typo
........
2010-03-23 09:46:25 +00:00
Efi Fogel
023a004fc6
fixed inclusion of boost propert_map.hpp
2009-10-05 08:42:51 +00:00
Efi Fogel
268785219d
properly boost included property_map.hpp
2009-09-23 13:08:00 +00:00
Eric Berberich
137d235470
restored revision 49423
2009-05-24 10:51:50 +00:00
Eric Berberich
c682266048
deleted - ON PURPOSE - to restore old version before wrong commits to "trunk" that was NOT a branch
2009-05-24 10:50:55 +00:00
Eric Berberich
46c38c325a
restore deleted packages - sorry
2009-05-24 10:39:39 +00:00
Eric Berberich
b8a89e2080
deleted
2009-05-24 10:20:00 +00:00
Andreas Fabri
ecc6fdcd54
fix resize bug
2008-11-04 10:08:25 +00:00
Ophir Setter
66aab3aac1
changes in observer
2007-10-07 14:51:59 +00:00
Efi Fogel
31974cb2ec
moved
2007-08-15 11:07:41 +00:00