Skip to content

Commit d69b4ca

Browse files
authored
Fix jfalcou#1367 - Move to Boost LICENSE
1 parent a9f2547 commit d69b4ca

File tree

3,111 files changed

+6600
-6930
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,111 files changed

+6600
-6930
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##==================================================================================================
22
## EVE - Expressive Vector Engine
3-
## Copyright : EVE Contributors & Maintainers
4-
## SPDX-License-Identifier: MIT
3+
## Copyright : EVE Project Contributors
4+
## SPDX-License-Identifier: BSL-1.0
55
##==================================================================================================
66
version: 2.1
77

.clang-format

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##==================================================================================================
22
## EVE - Expressive Vector Engine
3-
## Copyright : EVE Contributors & Maintainers
4-
## SPDX-License-Identifier: MIT
3+
## Copyright : EVE Project Contributors
4+
## SPDX-License-Identifier: BSL-1.0
55
##==================================================================================================
66
AccessModifierOffset: 0
77
AlignAfterOpenBracket: Align

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##==================================================================================================
22
## EVE - Expressive Vector Engine
3-
## Copyright : EVE Contributors & Maintainers
4-
## SPDX-License-Identifier: MIT
3+
## Copyright : EVE Project Contributors
4+
## SPDX-License-Identifier: BSL-1.0
55
##==================================================================================================
66
cmake_minimum_required(VERSION 3.18)
77
enable_testing()

CONTRIBUTORS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,14 @@
44
FALCOU Joel
55
LAPRESTE Jean-Thierry
66
YAROSHEVSKIY Denis
7+
8+
## Other Contributors
9+
@Simran-B
10+
BAHOOSH Mohammad
11+
DI RUSCIO Justen
12+
GRASLAND Hadrien
13+
GUINET Adrien
14+
JURCZAK Paul
15+
NOVIKOC Pavel
16+
PENUCHOT Jules
17+
SUMAR Lazar

LICENSE.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
1-
MIT License
1+
Boost Software License - Version 1.0 - August 17th, 2003
22

3-
Copyright : EVE Contributors & Maintainers
3+
Permission is hereby granted, free of charge, to any person or organization
4+
obtaining a copy of the software and accompanying documentation covered by
5+
this license (the "Software") to use, reproduce, display, distribute,
6+
execute, and transmit the Software, and to prepare derivative works of the
7+
Software, and to permit third-parties to whom the Software is furnished to
8+
do so, all subject to the following:
49

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
10+
The copyright notices in the Software and this entire statement, including
11+
the above license grant, this restriction and the following disclaimer,
12+
must be included in all copies of the Software, in whole or in part, and
13+
all derivative works of the Software, unless such copies or derivative
14+
works are solely in the form of machine-executable object code generated by
15+
a source language processor.
1416

1517
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1618
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
19+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
20+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
21+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
22+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23+
DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ A new, more up-to-date EVE specific journal paper is in the work atm.
108108
## License
109109

110110
```
111-
MIT License
111+
Boost Software License
112112
113-
Copyright : EVE Contributors & Maintainers
113+
Copyright : EVE Project Contributors
114114
115115
Permission is hereby granted, free of charge, to any person obtaining a copy
116116
of this software and associated documentation files (the "Software"), to deal

benchmarks/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##==================================================================================================
22
## EVE - Expressive Vector Engine
3-
## Copyright : EVE Contributors & Maintainers
4-
## SPDX-License-Identifier: MIT
3+
## Copyright : EVE Project Contributors
4+
## SPDX-License-Identifier: BSL-1.0
55
##==================================================================================================
66
include(benchmark)
77

benchmarks/experiment.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//==================================================================================================
22
/*
33
EVE - Expressive Vector Engine
4-
Copyright : EVE Contributors & Maintainers
5-
SPDX-License-Identifier: MIT
4+
Copyright : EVE Project Contributors
5+
SPDX-License-Identifier: BSL-1.0
66
*/
77
//==================================================================================================
88
#ifndef BENCHMARK_BENCH_HPP

benchmarks/generators.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//==================================================================================================
22
/*
33
EVE - Expressive Vector Engine
4-
Copyright : EVE Contributors & Maintainers
5-
SPDX-License-Identifier: MIT
4+
Copyright : EVE Project Contributors
5+
SPDX-License-Identifier: BSL-1.0
66
*/
77
//==================================================================================================
88
#ifndef BENCHMARKS_GENERATORS_HPP

benchmarks/module/algorithm/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##==================================================================================================
22
## EVE - Expressive Vector Engine
3-
## Copyright : EVE Contributors & Maintainers
4-
## SPDX-License-Identifier: MIT
3+
## Copyright : EVE Project Contributors
4+
## SPDX-License-Identifier: BSL-1.0
55
##==================================================================================================
66

77
##==================================================================================================

0 commit comments

Comments
 (0)