Skip to content

Commit d44ce00

Browse files
committed
Updated remaining usages of LICENSE.txt
1 parent 01834de commit d44ce00

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

CMake/PackageRedhat.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (UNIX)
2222

2323
set(CPACK_RPM_PACKAGE_VENDOR "Google, Inc.")
2424
set(CPACK_RPM_PACKAGE_LICENSE "Apache 2.0")
25-
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/LICENSE.txt)
25+
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/LICENSE)
2626
set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_SOURCE_DIR}/CMake/DESCRIPTION.txt)
2727

2828
# This may reduce rpm compatiblity with very old systems.

conanfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class FlatbuffersConan(ConanFile):
2020
options = {"shared": [True, False], "fPIC": [True, False]}
2121
default_options = {"shared": False, "fPIC": True}
2222
generators = "cmake"
23-
exports = "LICENSE.txt"
23+
exports = "LICENSE"
2424
exports_sources = ["CMake/*", "include/*", "src/*", "grpc/*", "CMakeLists.txt", "conan/CMakeLists.txt"]
2525

2626
def source(self):
@@ -56,7 +56,7 @@ def package(self):
5656
"""
5757
cmake = self.configure_cmake()
5858
cmake.install()
59-
self.copy(pattern="LICENSE.txt", dst="licenses")
59+
self.copy(pattern="LICENSE", dst="licenses")
6060
self.copy(pattern="FindFlatBuffers.cmake", dst=os.path.join("lib", "cmake", "flatbuffers"), src="CMake")
6161
self.copy(pattern="flathash*", dst="bin", src="bin")
6262
self.copy(pattern="flatc*", dst="bin", src="bin")

docs/source/FlatBuffers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ It was originally created at Google for game development and other
99
performance-critical applications.
1010

1111
It is available as Open Source on [GitHub](http://github.com/google/flatbuffers)
12-
under the Apache license, v2 (see LICENSE.txt).
12+
under the Apache license, v2 (see LICENSE).
1313

1414
## Why use FlatBuffers?
1515

net/FlatBuffers/Google.FlatBuffers.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageProjectUrl>https://github.com/google/flatbuffers</PackageProjectUrl>
99
<RepositoryUrl>https://github.com/google/flatbuffers</RepositoryUrl>
1010
<PublishRepositoryUrl>true</PublishRepositoryUrl>
11-
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
11+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1212
<PackageIcon>flatbuffers.png</PackageIcon>
1313
<PackageTags>Google;FlatBuffers;Serialization;Buffer;Binary;zero copy</PackageTags>
1414
<Copyright>Copyright 2022 Google LLC</Copyright>
@@ -39,7 +39,7 @@
3939
</ItemGroup>
4040

4141
<ItemGroup>
42-
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="" />
42+
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
4343
<None Include="flatbuffers.png" Pack="true" PackagePath="" />
4444
</ItemGroup>
4545

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"flatbuffers"
3030
],
3131
"author": "The FlatBuffers project",
32-
"license": "SEE LICENSE IN LICENSE.txt",
32+
"license": "SEE LICENSE IN LICENSE",
3333
"bugs": {
3434
"url": "https://github.com/google/flatbuffers/issues"
3535
},

python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ universal=1
33

44
[metadata]
55
license_files =
6-
../license.txt
6+
../license

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
name='flatbuffers',
1919
version='23.3.3',
2020
license='Apache 2.0',
21-
license_files='../LICENSE.txt',
21+
license_files='../LICENSE',
2222
author='Derek Bailey',
2323
author_email='derekbailey@google.com',
2424
url='https://google.github.io/flatbuffers/',

0 commit comments

Comments
 (0)