Skip to content

Commit d8aedf4

Browse files
committed
Correct licenses
1 parent aaa1693 commit d8aedf4

10 files changed

+91
-50
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
MIT License
33
===========
44

5-
Copyright (c) 2020 The Firebird Project (www.firebirdsql.org)
5+
Copyright (c) 2019 The Firebird Project (www.firebirdsql.org)
66

77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

tests/test_buffer.py

+24-13
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,37 @@
1-
#!/usr/bin/python
2-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2019-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
34
#
45
# PROGRAM/MODULE: firebird-base
56
# FILE: test/test_buffer.py
67
# DESCRIPTION: Unit tests for firebird.base.buffer
78
# CREATED: 14.5.2020
89
#
9-
# Software distributed under the License is distributed AS IS,
10-
# WITHOUT WARRANTY OF ANY KIND, either express or implied.
11-
# See the License for the specific language governing rights
12-
# and limitations under the License.
10+
# The contents of this file are subject to the MIT License
11+
#
12+
# Permission is hereby granted, free of charge, to any person obtaining a copy
13+
# of this software and associated documentation files (the "Software"), to deal
14+
# in the Software without restriction, including without limitation the rights
15+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16+
# copies of the Software, and to permit persons to whom the Software is
17+
# furnished to do so, subject to the following conditions:
1318
#
14-
# The Original Code was created by Pavel Cisar
19+
# The above copyright notice and this permission notice shall be included in all
20+
# copies or substantial portions of the Software.
1521
#
16-
# Copyright (c) Pavel Cisar <[email protected]>
17-
# and all contributors signed below.
22+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28+
# SOFTWARE.
1829
#
19-
# All Rights Reserved.
20-
# Contributor(s): Pavel Císař (original code)
21-
# ______________________________________.
30+
# Copyright (c) 2019 Firebird Project (www.firebirdsql.org)
31+
# All Rights Reserved.
2232
#
23-
# See LICENSE.TXT for details.
33+
# Contributor(s): Pavel Císař (original code)
34+
# ______________________________________.
2435

2536
from __future__ import annotations
2637
import unittest

tests/test_collections.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#!/usr/bin/python
2-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2019-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
34
#
45
# PROGRAM/MODULE: firebird-base
56
# FILE: test/test_collections.py

tests/test_config.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#!/usr/bin/python
2-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2019-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
34
#
45
# PROGRAM/MODULE: firebird-base
56
# FILE: test/test_config.py

tests/test_hooks.py

+24-13
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,37 @@
1-
#!/usr/bin/python
2-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2019-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
34
#
45
# PROGRAM/MODULE: firebird-base
56
# FILE: test/test_hooks.py
67
# DESCRIPTION: Unit tests for firebird.base.hooks
78
# CREATED: 14.5.2020
89
#
9-
# Software distributed under the License is distributed AS IS,
10-
# WITHOUT WARRANTY OF ANY KIND, either express or implied.
11-
# See the License for the specific language governing rights
12-
# and limitations under the License.
10+
# The contents of this file are subject to the MIT License
11+
#
12+
# Permission is hereby granted, free of charge, to any person obtaining a copy
13+
# of this software and associated documentation files (the "Software"), to deal
14+
# in the Software without restriction, including without limitation the rights
15+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16+
# copies of the Software, and to permit persons to whom the Software is
17+
# furnished to do so, subject to the following conditions:
1318
#
14-
# The Original Code was created by Pavel Cisar
19+
# The above copyright notice and this permission notice shall be included in all
20+
# copies or substantial portions of the Software.
1521
#
16-
# Copyright (c) Pavel Cisar <[email protected]>
17-
# and all contributors signed below.
22+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28+
# SOFTWARE.
1829
#
19-
# All Rights Reserved.
20-
# Contributor(s): Pavel Císař (original code)
21-
# ______________________________________.
30+
# Copyright (c) 2020 Firebird Project (www.firebirdsql.org)
31+
# All Rights Reserved.
2232
#
23-
# See LICENSE.TXT for details.
33+
# Contributor(s): Pavel Císař (original code)
34+
# ______________________________________.
2435

2536
"Firebird Base - Unit tests for firebird.base.hooks."
2637

tests/test_logging.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#!/usr/bin/python
2-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
34
#
45
# PROGRAM/MODULE: firebird-base
56
# FILE: test/test_logging.py

tests/test_protobuf.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-base
46
# FILE: test/test_protobuf.py

tests/test_signal.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-base
46
# FILE: tests/test_signal.py

tests/test_trace.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#!/usr/bin/python
2-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
34
#
45
# PROGRAM/MODULE: firebird-base
56
# FILE: test/test_trace.py

tests/test_types.py

+24-13
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,37 @@
1-
#!/usr/bin/python
2-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
34
#
45
# PROGRAM/MODULE: firebird-base
56
# FILE: test/test_types.py
67
# DESCRIPTION: Unit tests for firebird.base.types
78
# CREATED: 14.5.2020
89
#
9-
# Software distributed under the License is distributed AS IS,
10-
# WITHOUT WARRANTY OF ANY KIND, either express or implied.
11-
# See the License for the specific language governing rights
12-
# and limitations under the License.
10+
# The contents of this file are subject to the MIT License
11+
#
12+
# Permission is hereby granted, free of charge, to any person obtaining a copy
13+
# of this software and associated documentation files (the "Software"), to deal
14+
# in the Software without restriction, including without limitation the rights
15+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16+
# copies of the Software, and to permit persons to whom the Software is
17+
# furnished to do so, subject to the following conditions:
1318
#
14-
# The Original Code was created by Pavel Cisar
19+
# The above copyright notice and this permission notice shall be included in all
20+
# copies or substantial portions of the Software.
1521
#
16-
# Copyright (c) Pavel Cisar <[email protected]>
17-
# and all contributors signed below.
22+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28+
# SOFTWARE.
1829
#
19-
# All Rights Reserved.
20-
# Contributor(s): Pavel Císař (original code)
21-
# ______________________________________.
30+
# Copyright (c) 2020 Firebird Project (www.firebirdsql.org)
31+
# All Rights Reserved.
2232
#
23-
# See LICENSE.TXT for details.
33+
# Contributor(s): Pavel Císař (original code)
34+
# ______________________________________.
2435

2536
from __future__ import annotations
2637
from typing import List

0 commit comments

Comments
 (0)