Skip to content

Commit 585458c

Browse files
add explicit copyright info
1 parent 62d6e32 commit 585458c

File tree

4 files changed

+51
-7
lines changed

4 files changed

+51
-7
lines changed

DESCRIPTION

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
Package: zstdlite
22
Type: Package
33
Title: Fast Compression and Serialization with 'Zstandard' Algorithm
4-
Version: 0.2.5
4+
Version: 0.2.6
55
Authors@R: c(
6-
person("Mike", "Cheng", role = c("aut", "cre", 'cph'),
7-
email = "mikefc@coolbutuseless.com"),
8-
person(given = "Yann",
9-
family = "Collet",
10-
role = "cph",
11-
comment = "Author of the embedded zstandard library")
6+
person("Mike", "Cheng", role = c("aut", "cre", 'cph'), email = "mikefc@coolbutuseless.com"),
7+
person("Yann", "Collet", role = c("ctb", "cph"), comment = "Author of the embedded zstandard library"),
8+
person("Meta Platforms, Inc. and affiliates.", role = "cph", comment = "Facebook is the copyright holder of the bundled zstd library")
129
)
1310
Maintainer: Mike Cheng <mikefc@coolbutuseless.com>
1411
Description: Fast, compressed serialization of R objects using the 'Zstandard' algorithm.
@@ -18,11 +15,15 @@ Description: Fast, compressed serialization of R objects using the 'Zstandard' a
1815
by other systems and programs supporting 'Zstandard' compression.
1916
Dictionaries are supported for more effective compression of small data,
2017
and functions are provided for training these dictionaries.
18+
This implementation is a wrapper around the 'Zstandard' 'C' library which
19+
is available from <https://github.com/facebook/zstd>.
2120
URL: https://github.com/coolbutuseless/zstdlite
2221
BugReports: https://github.com/coolbutuseless/zstdlite/issues
2322
License: MIT + file LICENSE
2423
Encoding: UTF-8
2524
RoxygenNote: 7.3.1
25+
Copyright: This package includes code from the 'zstd' library owned by Meta Platforms, Inc. and affiliates.
26+
and created by Yann Collet. See file 'inst/COPYRIGHTS' for details.
2627
Suggests:
2728
knitr,
2829
rmarkdown,

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11

2+
# zstdlite 0.2.6 2024-03-10
3+
4+
* Fixes for CRAN
5+
* Added explicit notice of copyright by Facebook
6+
27
# zstdlite 0.2.5 2024-03-09
38

9+
* Release to CRAN
10+
411
# zstdlite 0.2.4.9010 2024-03-09
512

613
* Add `zstd_version()`

inst/COPYRIGHTS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Zstandard C library
2+
-------------------
3+
4+
The Zstandard library is Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
5+
6+
See 'inst/LICENSE-zstd' for LICENSE for 'Zstandard'

inst/LICENSE-zstd

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
BSD License
2+
3+
For Zstandard software
4+
5+
Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
6+
7+
Redistribution and use in source and binary forms, with or without modification,
8+
are permitted provided that the following conditions are met:
9+
10+
* Redistributions of source code must retain the above copyright notice, this
11+
list of conditions and the following disclaimer.
12+
13+
* Redistributions in binary form must reproduce the above copyright notice,
14+
this list of conditions and the following disclaimer in the documentation
15+
and/or other materials provided with the distribution.
16+
17+
* Neither the name Facebook, nor Meta, nor the names of its contributors may
18+
be used to endorse or promote products derived from this software without
19+
specific prior written permission.
20+
21+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
25+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
28+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)