Skip to content

Commit b946165

Browse files
authored
Fedora license audit (#9704)
# Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. --> - Closes #9703 9703 # Rationale for this change I am going to ship `arrow` crates in Fedora as a dependency for another tool, and we did a license audit as part of the review process # What changes are included in this PR? - Updates NOTICE.txt to reflect third party code actually shipped in the repo - Updates Cargo.toml in arrow-array because it actually ships MIT code as well # Are these changes tested? N/A, metadata change only # Are there any user-facing changes? No --------- Signed-off-by: Michel Lind <salimma@fedoraproject.org>
1 parent 7a089ad commit b946165

File tree

3 files changed

+36
-79
lines changed

3 files changed

+36
-79
lines changed

NOTICE.txt

Lines changed: 6 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -4,81 +4,10 @@ Copyright 2016-2026 The Apache Software Foundation
44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).
66

7-
This product includes software from the SFrame project (BSD, 3-clause).
8-
* Copyright (C) 2015 Dato, Inc.
9-
* Copyright (c) 2009 Carnegie Mellon University.
7+
This product includes software from the chronoutil crate (MIT)
8+
* Copyright (c) 2020-2022 Oliver Margetts
9+
* https://github.com/olliemath/chronoutil
1010

11-
This product includes software from the Feather project (Apache 2.0)
12-
https://github.com/wesm/feather
13-
14-
This product includes software from the DyND project (BSD 2-clause)
15-
https://github.com/libdynd
16-
17-
This product includes software from the LLVM project
18-
* distributed under the University of Illinois Open Source
19-
20-
This product includes software from the google-lint project
21-
* Copyright (c) 2009 Google Inc. All rights reserved.
22-
23-
This product includes software from the mman-win32 project
24-
* Copyright https://code.google.com/p/mman-win32/
25-
* Licensed under the MIT License;
26-
27-
This product includes software from the LevelDB project
28-
* Copyright (c) 2011 The LevelDB Authors. All rights reserved.
29-
* Use of this source code is governed by a BSD-style license that can be
30-
* Moved from Kudu http://github.com/cloudera/kudu
31-
32-
This product includes software from the CMake project
33-
* Copyright 2001-2009 Kitware, Inc.
34-
* Copyright 2012-2014 Continuum Analytics, Inc.
35-
* All rights reserved.
36-
37-
This product includes software from https://github.com/matthew-brett/multibuild (BSD 2-clause)
38-
* Copyright (c) 2013-2016, Matt Terry and Matthew Brett; all rights reserved.
39-
40-
This product includes software from the Ibis project (Apache 2.0)
41-
* Copyright (c) 2015 Cloudera, Inc.
42-
* https://github.com/cloudera/ibis
43-
44-
This product includes software from Dremio (Apache 2.0)
45-
* Copyright (C) 2017-2018 Dremio Corporation
46-
* https://github.com/dremio/dremio-oss
47-
48-
This product includes software from Google Guava (Apache 2.0)
49-
* Copyright (C) 2007 The Guava Authors
50-
* https://github.com/google/guava
51-
52-
This product include software from CMake (BSD 3-Clause)
53-
* CMake - Cross Platform Makefile Generator
54-
* Copyright 2000-2019 Kitware, Inc. and Contributors
55-
56-
The web site includes files generated by Jekyll.
57-
58-
--------------------------------------------------------------------------------
59-
60-
This product includes code from Apache Kudu, which includes the following in
61-
its NOTICE file:
62-
63-
Apache Kudu
64-
Copyright 2016 The Apache Software Foundation
65-
66-
This product includes software developed at
67-
The Apache Software Foundation (http://www.apache.org/).
68-
69-
Portions of this software were developed at
70-
Cloudera, Inc (http://www.cloudera.com/).
71-
72-
--------------------------------------------------------------------------------
73-
74-
This product includes code from Apache ORC, which includes the following in
75-
its NOTICE file:
76-
77-
Apache ORC
78-
Copyright 2013-2019 The Apache Software Foundation
79-
80-
This product includes software developed by The Apache Software
81-
Foundation (http://www.apache.org/).
82-
83-
This product includes software developed by Hewlett-Packard:
84-
(c) Copyright [2014-2015] Hewlett-Packard Development Company, L.P
11+
This product includes software from the compact-thrift project (Apache 2.0)
12+
* Copyright Jörn Horstmann
13+
* https://github.com/jhorstmann/compact-thrift

arrow-array/Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,16 @@ description = "Array abstractions for Apache Arrow"
2222
homepage = { workspace = true }
2323
repository = { workspace = true }
2424
authors = { workspace = true }
25-
license = { workspace = true }
25+
license = "Apache-2.0 AND MIT"
2626
keywords = { workspace = true }
27-
include = { workspace = true }
27+
include = [
28+
"benches/*.rs",
29+
"src/**/*.rs",
30+
"Cargo.toml",
31+
"LICENSE.txt",
32+
"LICENSE-MIT",
33+
"NOTICE.txt",
34+
]
2835
edition = { workspace = true }
2936
rust-version = { workspace = true }
3037

arrow-array/LICENSE-MIT

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020-2022 Oliver Margetts
4+
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.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
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.

0 commit comments

Comments
 (0)