all
Browse files- .gitignore +6 -0
- 01-cran-download.R +40 -0
- 02-cran-licenses.R +164 -0
- 03-cran-process.R +65 -0
- cran.Rproj +17 -0
- data/r/data-0.parquet +3 -0
- data/rmd/data-0.parquet +3 -0
- licenses.csv +285 -0
- optout.txt +0 -0
- packages.parquet +3 -0
- repos.json +0 -0
.gitignore
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.Rproj.user
|
2 |
+
.Rhistory
|
3 |
+
.Rdata
|
4 |
+
.httr-oauth
|
5 |
+
.DS_Store
|
6 |
+
CRAN/*
|
01-cran-download.R
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# build the repository list
|
2 |
+
|
3 |
+
path <- "repos.json"
|
4 |
+
|
5 |
+
if (!fs::file_exists(path)) {
|
6 |
+
repos <- gh::gh(
|
7 |
+
"GET https://api.github.com/orgs/CRAN/repos",
|
8 |
+
.limit = Inf,
|
9 |
+
.progress = TRUE
|
10 |
+
)
|
11 |
+
jsonlite::write_json(repos, path)
|
12 |
+
} else {
|
13 |
+
repos <- jsonlite::read_json(path)
|
14 |
+
}
|
15 |
+
|
16 |
+
|
17 |
+
fs::dir_create("CRAN")
|
18 |
+
|
19 |
+
download_repo <- purrr::insistently(function(repo) {
|
20 |
+
repo_name <- as.character(repo$name)
|
21 |
+
|
22 |
+
dest <- glue::glue("CRAN/{repo_name}.zip")
|
23 |
+
if (fs::file_exists(dest)) {
|
24 |
+
return()
|
25 |
+
}
|
26 |
+
|
27 |
+
gh::gh(
|
28 |
+
"GET /repos/cran/{repo_name}/zipball",
|
29 |
+
repo_name = repo_name,
|
30 |
+
.destfile = dest
|
31 |
+
)
|
32 |
+
})
|
33 |
+
|
34 |
+
library(future)
|
35 |
+
plan(multisession, workers = 6)
|
36 |
+
furrr::future_map(
|
37 |
+
repos,
|
38 |
+
download_repo,
|
39 |
+
.progress = TRUE
|
40 |
+
)
|
02-cran-licenses.R
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
library(tidyverse)
|
2 |
+
|
3 |
+
repos <- jsonlite::read_json("repos.json")
|
4 |
+
|
5 |
+
extract_licenses <- function(repo) {
|
6 |
+
repo_name <- as.character(repo$name)
|
7 |
+
path <- glue::glue("CRAN/{repo_name}.zip")
|
8 |
+
|
9 |
+
files <- try(zip::zip_list(path), silent = TRUE)
|
10 |
+
|
11 |
+
if (inherits(files, "try-error")) {
|
12 |
+
return(NULL)
|
13 |
+
}
|
14 |
+
|
15 |
+
files <- files[endsWith(files$filename, "DESCRIPTION"), ]
|
16 |
+
|
17 |
+
if (nrow(files) > 1) {
|
18 |
+
files <- head(files, 1)
|
19 |
+
}
|
20 |
+
|
21 |
+
if (nrow(files) == 0) {
|
22 |
+
return(NULL)
|
23 |
+
}
|
24 |
+
|
25 |
+
temp <- tempfile()
|
26 |
+
on.exit(unlink(temp), add = TRUE)
|
27 |
+
|
28 |
+
zip::unzip(path, files = files$filename, junkpaths = TRUE, exdir = temp)
|
29 |
+
|
30 |
+
desc <- try(desc::desc(file = fs::path(temp, "DESCRIPTION")), silent = TRUE)
|
31 |
+
|
32 |
+
if (inherits(desc, "try-error")) {
|
33 |
+
return(NULL)
|
34 |
+
}
|
35 |
+
|
36 |
+
tibble(
|
37 |
+
package = repo_name,
|
38 |
+
license = desc$get("License")
|
39 |
+
)
|
40 |
+
}
|
41 |
+
|
42 |
+
library(future)
|
43 |
+
plan(multisession, workers = 8)
|
44 |
+
|
45 |
+
# this lists all packages and the License as it's written in the DESCRIPTION
|
46 |
+
licenses <- furrr::future_map(
|
47 |
+
repos,
|
48 |
+
\(repo) extract_licenses(repo),
|
49 |
+
.progress = TRUE
|
50 |
+
)
|
51 |
+
|
52 |
+
licenses <- bind_rows(licenses)
|
53 |
+
|
54 |
+
# Manually classified all possible licenses into 23 license codes.
|
55 |
+
# A tibble: 24 × 1
|
56 |
+
# license_code
|
57 |
+
# <chr>
|
58 |
+
# 1 ACM
|
59 |
+
# 2 AGPL
|
60 |
+
# 3 Apache
|
61 |
+
# 4 Artistic
|
62 |
+
# 5 BSD
|
63 |
+
# 6 BSD-Clause
|
64 |
+
# 7 BSL
|
65 |
+
# 8 CC-BY
|
66 |
+
# 9 CC-BY-NC
|
67 |
+
# 10 CC-BY-NC-ND
|
68 |
+
# 11 CC-BY-NC-SA
|
69 |
+
# 12 CC-BY-SA
|
70 |
+
# 13 CC0
|
71 |
+
# 14 CPL
|
72 |
+
# 15 CeCILL
|
73 |
+
# 16 EPL
|
74 |
+
# 17 EUPL
|
75 |
+
# 18 FreeBSD
|
76 |
+
# 19 GPL
|
77 |
+
# 20 LGPL
|
78 |
+
# 21 MIT
|
79 |
+
# 22 MPL
|
80 |
+
# 23 Unlimited
|
81 |
+
# 24 NA
|
82 |
+
|
83 |
+
# the manual classification ('classif' field) has to be parsed.
|
84 |
+
licenses_table <- readr::read_csv("licenses.csv")
|
85 |
+
# some licenses ended up duplicated (I think they have been trimed in excel or something)
|
86 |
+
licenses_table <- licenses_table %>% distinct()
|
87 |
+
|
88 |
+
parse_license <- function(license) {
|
89 |
+
licenses <- license |>
|
90 |
+
stringr::str_split(pattern = stringr::fixed("|"))
|
91 |
+
licenses <- stringr::str_trim(licenses[[1]])
|
92 |
+
|
93 |
+
license <- stringr::str_extract(licenses, "(.*?)(?=\\()|.*")
|
94 |
+
license <- stringr::str_trim(license)
|
95 |
+
|
96 |
+
version <- stringr::str_extract(licenses, "\\((.*?)\\)")
|
97 |
+
tibble(
|
98 |
+
license_code = license,
|
99 |
+
version = version
|
100 |
+
)
|
101 |
+
}
|
102 |
+
|
103 |
+
# this list is based in the licenses.json file from the stack dataset
|
104 |
+
# see: https://huggingface.co/datasets/bigcode/the-stack-dedup/blob/main/licenses.json
|
105 |
+
|
106 |
+
allowed_license_codes <- c("MIT", "Apache", "BSD", "CC-BY", "Artistic", "CC0",
|
107 |
+
"FreeBSD")
|
108 |
+
|
109 |
+
|
110 |
+
# we now make the indirection from allowed codes to allowed License as specified
|
111 |
+
# in the DESCRIPTION.
|
112 |
+
license_codes <- licenses_table %>%
|
113 |
+
mutate(
|
114 |
+
parsed = map(classif, parse_license)
|
115 |
+
) %>%
|
116 |
+
unnest(parsed)
|
117 |
+
|
118 |
+
permissive_licenses <- license_codes%>%
|
119 |
+
mutate(permissive = license_code %in% allowed_license_codes) %>%
|
120 |
+
group_by(license) %>%
|
121 |
+
summarise(permissive = any(permissive)) %>%
|
122 |
+
filter(permissive)
|
123 |
+
|
124 |
+
# We then filter the allowed packages.
|
125 |
+
allowed_packages <- licenses %>%
|
126 |
+
filter(license %in% permissive_licenses$license)
|
127 |
+
|
128 |
+
arrow::write_parquet(allowed_packages, "packages.parquet")
|
129 |
+
|
130 |
+
# the distribution of packages per license code
|
131 |
+
licenses %>%
|
132 |
+
left_join(license_codes, by = "license", relationship = "many-to-many") %>%
|
133 |
+
count(license_code) %>%
|
134 |
+
mutate(n / nrow(licenses)) %>%
|
135 |
+
arrange(desc(n)) %>%
|
136 |
+
print(n = 100)
|
137 |
+
|
138 |
+
# # A tibble: 24 × 3
|
139 |
+
# license_code n `n/nrow(licenses)`
|
140 |
+
# <chr> <int> <dbl>
|
141 |
+
# 1 GPL 18440 0.726
|
142 |
+
# 2 MIT 4533 0.179
|
143 |
+
# 3 LGPL 556 0.0219
|
144 |
+
# 4 Apache 428 0.0169
|
145 |
+
# 5 BSD-Clause 343 0.0135
|
146 |
+
# 6 CC0 261 0.0103
|
147 |
+
# 7 AGPL 232 0.00914
|
148 |
+
# 8 Artistic 158 0.00622
|
149 |
+
# 9 NA 96 0.00378
|
150 |
+
# 10 Unlimited 76 0.00299
|
151 |
+
# 11 CC-BY 56 0.00221
|
152 |
+
# 12 MPL 52 0.00205
|
153 |
+
# 13 EUPL 35 0.00138
|
154 |
+
# 14 CC-BY-SA 34 0.00134
|
155 |
+
# 15 CeCILL 34 0.00134
|
156 |
+
# 16 BSD 33 0.00130
|
157 |
+
# 17 CC-BY-NC-SA 27 0.00106
|
158 |
+
# 18 FreeBSD 18 0.000709
|
159 |
+
# 19 BSL 10 0.000394
|
160 |
+
# 20 CC-BY-NC 6 0.000236
|
161 |
+
# 21 EPL 6 0.000236
|
162 |
+
# 22 ACM 5 0.000197
|
163 |
+
# 23 CPL 3 0.000118
|
164 |
+
# 24 CC-BY-NC-ND 1 0.0000394
|
03-cran-process.R
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
library(tidyverse)
|
2 |
+
|
3 |
+
extract_files <- function(repo, ext) {
|
4 |
+
repo_name <- as.character(repo$name)
|
5 |
+
path <- glue::glue("CRAN/{repo_name}.zip")
|
6 |
+
|
7 |
+
files <- try(zip::zip_list(path), silent = TRUE)
|
8 |
+
if (inherits(files, "try-error")) return(files)
|
9 |
+
|
10 |
+
files$package <- repo_name
|
11 |
+
files$content <- NA_character_
|
12 |
+
|
13 |
+
files <- files[tolower(fs::path_ext(files$filename)) == ext,]
|
14 |
+
files <- files[files$uncompressed_size > 0, ]
|
15 |
+
|
16 |
+
if (nrow(files) == 0) return(files)
|
17 |
+
|
18 |
+
temp <- tempfile()
|
19 |
+
on.exit(unlink(temp), add = TRUE)
|
20 |
+
|
21 |
+
zip::unzip(path, files = files$filename, exdir = temp)
|
22 |
+
|
23 |
+
content <- map_chr(
|
24 |
+
files$filename,
|
25 |
+
\(fname) read_file(fs::path(temp, fname))
|
26 |
+
)
|
27 |
+
|
28 |
+
files$content <- content
|
29 |
+
files
|
30 |
+
}
|
31 |
+
|
32 |
+
# this contains the packages that we include in the dataset as they
|
33 |
+
# have permissive licenses.
|
34 |
+
packages <- arrow::read_parquet("packages.parquet")
|
35 |
+
opt_out <- readr::read_lines("optout.txt")
|
36 |
+
|
37 |
+
repos <- jsonlite::read_json("repos.json") %>%
|
38 |
+
keep(\(repo) as.character(repo$name) %in% packages$package) %>%
|
39 |
+
discard(\(repo) as.character(repo$name) %in% opt_out)
|
40 |
+
|
41 |
+
library(future)
|
42 |
+
plan(multisession, workers = 8)
|
43 |
+
|
44 |
+
make_data <- function(repos, ext) {
|
45 |
+
files <- furrr::future_map(
|
46 |
+
repos,
|
47 |
+
\(repo) extract_files(repo, ext),
|
48 |
+
.progress = TRUE
|
49 |
+
)
|
50 |
+
files <- files |>
|
51 |
+
purrr::discard(\(x) inherits(x, "try-error")) |>
|
52 |
+
dplyr::bind_rows()
|
53 |
+
|
54 |
+
arrow::write_dataset(
|
55 |
+
files,
|
56 |
+
path = fs::path("data", ext),
|
57 |
+
format = "parquet",
|
58 |
+
basename_template = "data-{i}.parquet"
|
59 |
+
)
|
60 |
+
}
|
61 |
+
|
62 |
+
# R Files
|
63 |
+
make_data(repos, "r")
|
64 |
+
make_data(repos, "rmd")
|
65 |
+
|
cran.Rproj
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Version: 1.0
|
2 |
+
|
3 |
+
RestoreWorkspace: No
|
4 |
+
SaveWorkspace: No
|
5 |
+
AlwaysSaveHistory: Default
|
6 |
+
|
7 |
+
EnableCodeIndexing: Yes
|
8 |
+
UseSpacesForTab: Yes
|
9 |
+
NumSpacesForTab: 2
|
10 |
+
Encoding: UTF-8
|
11 |
+
|
12 |
+
RnwWeave: Sweave
|
13 |
+
LaTeX: pdfLaTeX
|
14 |
+
|
15 |
+
AutoAppendNewline: Yes
|
16 |
+
StripTrailingWhitespace: Yes
|
17 |
+
LineEndingConversion: Posix
|
data/r/data-0.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8faf8a5edf616c1d46ac3050adbe7e22f3ab5caca276e300587a197fd605c7dd
|
3 |
+
size 182770375
|
data/rmd/data-0.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:319ffb578488b34e649376240551c9e07a694a1df1694ddf228f150d684e1c42
|
3 |
+
size 36074387
|
licenses.csv
ADDED
@@ -0,0 +1,285 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
license,classif
|
2 |
+
GPL (>= 2),GPL (>=2)
|
3 |
+
GPL-3,GPL (==3)
|
4 |
+
MIT + file LICENSE,MIT
|
5 |
+
GPL-2,GPL (==2)
|
6 |
+
GPL (>= 3),GPL (>=3)
|
7 |
+
GPL,GPL
|
8 |
+
GPL-2 | GPL-3,"GPL (>=2, <=3)"
|
9 |
+
CC0,CC0
|
10 |
+
LGPL-3,LGPL (==3)
|
11 |
+
GPL-3 | file LICENSE,GPL (==3)
|
12 |
+
BSD_3_clause + file LICENSE,BSD-Clause (==3)
|
13 |
+
AGPL-3,AGPL (==3)
|
14 |
+
Artistic-2.0,Artistic (==2)
|
15 |
+
GPL (>= 2.0),GPL (>=2)
|
16 |
+
Apache License 2.0,Apache (==2)
|
17 |
+
BSD_2_clause + file LICENSE,BSD-Clause (==2)
|
18 |
+
LGPL,LGPL
|
19 |
+
Apache License (>= 2),Apache (>=2)
|
20 |
+
LGPL (>= 3),LGPL (>=3)
|
21 |
+
Unlimited,Unlimited
|
22 |
+
Apache License (== 2.0),Apache (==2)
|
23 |
+
GPL-2 | file LICENSE,GPL (==2)
|
24 |
+
GPL (>= 2) | file LICENSE,GPL (>=2)
|
25 |
+
LGPL (>= 2.1),LGPL (>=2.1)
|
26 |
+
Apache License (>= 2.0),Apache (==2)
|
27 |
+
GPL (>= 3.0),GPL (>=3)
|
28 |
+
CC BY 4.0,CC-BY (==4)
|
29 |
+
Apache License 2.0 | file LICENSE,Apache (==2)
|
30 |
+
AGPL (>= 3),AGPL (>=3)
|
31 |
+
GPL version 2 or newer,GPL (>=2)
|
32 |
+
GPL (>= 3) | file LICENSE,GPL (>=3)
|
33 |
+
GNU General Public License,GPL
|
34 |
+
BSD,BSD
|
35 |
+
LGPL (>= 2),LGPL (>=2)
|
36 |
+
LGPL-2.1,LGPL (==2.1)
|
37 |
+
CC BY-SA 4.0,CC-BY-SA (==4)
|
38 |
+
EUPL,EUPL
|
39 |
+
file LICENSE,
|
40 |
+
MIT + file LICENCE,MIT
|
41 |
+
LGPL-2,LGPL (>=2)
|
42 |
+
CC BY-NC-SA 4.0,CC-BY-NC-SA (==4)
|
43 |
+
GPL-3 + file LICENSE,GPL (==3)
|
44 |
+
GPL (> 2),GPL (>2)
|
45 |
+
AGPL-3 | file LICENSE,AGPL (==3)
|
46 |
+
CeCILL-2,CeCILL (==2)
|
47 |
+
AGPL,AGPL
|
48 |
+
BSD 2-clause License + file LICENSE,BSD-Clause (==2)
|
49 |
+
Apache License,Apache
|
50 |
+
CeCILL,CeCILL
|
51 |
+
FreeBSD,FreeBSD
|
52 |
+
Apache License (== 2.0) | file LICENSE,Apache (==2.0)
|
53 |
+
GPL (version 2 or later),GPL (>=2)
|
54 |
+
Mozilla Public License 2.0,MPL (==2)
|
55 |
+
GPL version 2 or later,GPL (>=2)
|
56 |
+
MIT,MIT
|
57 |
+
MPL-2.0,MPL (==2)
|
58 |
+
LGPL (>= 2.0),LGPL (>=2)
|
59 |
+
GPL (>= 2) | file LICENCE,GPL (>=2)
|
60 |
+
BSD_3_clause + file LICENCE,BSD-Clause (==3)
|
61 |
+
Artistic License 2.0,Artistic (==2)
|
62 |
+
BSL-1.0,BSL (==1)
|
63 |
+
GNU General Public License version 2,GPL (==2)
|
64 |
+
LGPL-3 | file LICENSE,LGPL (==3)
|
65 |
+
MIT License + file LICENSE,MIT
|
66 |
+
MPL-2.0 | file LICENSE,MPL (==2)
|
67 |
+
CC BY-NC 4.0,CC-BY-NC (==4)
|
68 |
+
GNU General Public License (>= 3),GPL (>=3)
|
69 |
+
GPL (>=2),GPL (>=2)
|
70 |
+
GPL (>= 3) | file LICENCE,GPL (>=3)
|
71 |
+
LGPL (>= 3) | file LICENSE,LGPL (>=3)
|
72 |
+
LGPL-3 | Apache License 2.0,LGPL (==3)
|
73 |
+
MIT + file LICENSE | Apache License 2.0,MIT | Apache (==2.0)
|
74 |
+
MPL (== 2.0),MPL (==2)
|
75 |
+
X11,
|
76 |
+
ACM | file LICENSE,ACM
|
77 |
+
AGPL-3 + file LICENSE,AGPL (==3)
|
78 |
+
Apache License (== 2),Apache (==2)
|
79 |
+
Apache License | file LICENSE,Apache
|
80 |
+
BSD 3-clause License + file LICENSE,BSD-Clause (==3)
|
81 |
+
BSD_3_clause + file LICENSE | GPL (>= 2),BSD-Clause (==3) | GPL (>=2)
|
82 |
+
CC BY-NC-SA 3.0,CC-BY-NC-SA (==3)
|
83 |
+
GNU General Public License Version 2,GPL (==2)
|
84 |
+
GPL (>= 2.1),GPL (>=2.1)
|
85 |
+
GPL 2,GPL (==2)
|
86 |
+
GPL Version 2 or later,GPL (>=2)
|
87 |
+
GPL Version 2 or later.,GPL (>=2)
|
88 |
+
GPL version 2,GPL (==2)
|
89 |
+
GPL-2 | file LICENCE,GPL (==2)
|
90 |
+
"LGPL (>= 2.0, < 3)","LGPL (>= 2.0, < 3)"
|
91 |
+
"LGPL (>= 2.0, < 3) | Mozilla Public License","LGPL (>= 2.0, < 3) | MPL"
|
92 |
+
MIT+file LICENSE,MIT
|
93 |
+
AGPL + file LICENSE,AGPL
|
94 |
+
BSD_2_clause + file LICENCE,BSD-Clause (==2)
|
95 |
+
Creative Commons Attribution 4.0 International License,
|
96 |
+
EPL,EPL
|
97 |
+
EUPL (>= 1.2),EUPL (>=1.2)
|
98 |
+
GNU General Public License version 3,GPL (==3)
|
99 |
+
GPL (> 3),GPL (>3)
|
100 |
+
GPL (>= 2) | BSD_2_clause + file LICENSE,GPL (>=2) | BSD-Clause (==2)
|
101 |
+
GPL (>= 2) | BSD_3_clause + file LICENSE,GPL (>=2) | BSD-Clause (==3)
|
102 |
+
GPL (>= 2.0) | file LICENSE,GPL (>=2)
|
103 |
+
GPL (>= 3.3.2),GPL (>=3.3.2)
|
104 |
+
GPL (>= 3.5.0),GPL (>=3.5.0)
|
105 |
+
GPL (version 2 or higher; see LICENSE),GPL (>=2)
|
106 |
+
GPL Version 2 or newer,GPL (>=2)
|
107 |
+
GPL version 2 or newer,GPL (>=2)
|
108 |
+
GPL-2 | GPL-3 | MIT + file LICENSE,"GPL (>=2, <=3) | MIT"
|
109 |
+
GPL-2 | GPL-3 | file LICENSE,"GPL (>=2, <=3)"
|
110 |
+
LGPL-2 | LGPL-3 | GPL-2 | GPL-3,
|
111 |
+
LGPL-2.1 | file LICENSE,
|
112 |
+
free for non-commercial purposes,
|
113 |
+
BSL,BSL
|
114 |
+
CC BY-NC-ND 3.0 US,
|
115 |
+
CC0 | file LICENSE,CC0
|
116 |
+
CeCILL-2 | file LICENSE,CeCILL (==2)
|
117 |
+
Common Public License Version 1.0,
|
118 |
+
Free re-distribution for non-commercial purposes.,
|
119 |
+
Free. See the LICENCE file for details.,
|
120 |
+
FreeBSD | file LICENSE,FreeBSD
|
121 |
+
Freeware,
|
122 |
+
GNU Affero General Public License,AGPL
|
123 |
+
GNU General Public License (>= 2),GPL (>=2)
|
124 |
+
GNU Lesser General Public License,GPL
|
125 |
+
GPL (== 2),GPL (==2)
|
126 |
+
GPL (>= 2),GPL (>=2)
|
127 |
+
GPL (>= 2) | LGPL (>= 2),GPL (>=2) | LGPL (>=2)
|
128 |
+
GPL (>= 2.0.0),GPL (>=2)
|
129 |
+
GPL (>= 2.10),GPL (>=2.10)
|
130 |
+
GPL (>= 2.15.1),GPL (>=2.15.1)
|
131 |
+
GPL version 2.0,GPL (==2)
|
132 |
+
GPL | file LICENSE,GPL
|
133 |
+
GPL2.0,GPL (==2)
|
134 |
+
LGPL (>= 3.0),LGPL (>=3)
|
135 |
+
LGPL-2 | BSD_3_clause + file LICENSE,LGPL (==2) | BSD-Clause (==3)
|
136 |
+
MPL,MPL
|
137 |
+
MPL (>= 2),MPL (>=2)
|
138 |
+
MPL (>= 2.0),MPL (>=2)
|
139 |
+
Unclear (Fortran) -- code in Statlib's ./S/adapt,
|
140 |
+
Unlimited,Unlimited
|
141 |
+
Unlimited | file LICENSE,Unlimited
|
142 |
+
"??, available on statlib.",
|
143 |
+
ACM,ACM
|
144 |
+
AGPL (>= 3) + file LICENSE,AGPL (>=3)
|
145 |
+
AGPL (>= 3) | file LICENSE,AGPL (>=3)
|
146 |
+
All non-comercial use.,
|
147 |
+
Apache License (>= 2.0) | file LICENSE,Apache (>=2)
|
148 |
+
Apache License Version 2.0,Apache (==2)
|
149 |
+
Artistic License,Artistic
|
150 |
+
BSD 3-clause License,BSD-Clause (==3)
|
151 |
+
BSD-style (see file LICENSE),
|
152 |
+
BSD_2_clause + file LICENSE | GPL (>= 2),BSD-Clause (==2) | GPL (>=2)
|
153 |
+
BSD_3_clause + file LICENSE | GPL-2,BSD-Clause (==3) | GPL (==2)
|
154 |
+
CC BY-NC-ND 4.0,CC-BY-NC-ND (==4)
|
155 |
+
CC BY-SA 2.0 + file LICENSE,CC-BY-SA (==2)
|
156 |
+
CC BY-SA 4.0 + file LICENSE,CC-BY-SA (==4)
|
157 |
+
CC BY-SA 4.0 | GPL (>= 2),CC-BY-SA (==4) | GPL (>=2)
|
158 |
+
CC BY-SA 4.0 | GPL-3 | file LICENSE,CC-BY-SA (==4) | GPL (==3)
|
159 |
+
CPL,CPL
|
160 |
+
CPL (>= 2),CPL (>=2)
|
161 |
+
CPL-1.0,CPL (==1)
|
162 |
+
CeCILL (>= 2),CeCILL (>=2)
|
163 |
+
CeCILL-2 | GPL-2,CeCILL (==2) | GPL (==2)
|
164 |
+
"Copyright 2001 Mayo Foundation for Medical Education
|
165 |
+
and Research.
|
166 |
+
|
167 |
+
|
168 |
+
This program is free software; you can redistribute it and/or
|
169 |
+
modify it under the terms of the GNU General Public License
|
170 |
+
as published by the Free Software Foundation; either version 2
|
171 |
+
of the License, or (at your option) any later version.
|
172 |
+
|
173 |
+
|
174 |
+
This program is distributed in the hope that it will be useful,
|
175 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
176 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
177 |
+
GNU General Public License for more details.
|
178 |
+
|
179 |
+
|
180 |
+
You should have received a copy of the GNU General Public License
|
181 |
+
along with this program; if not, write to the Free Software
|
182 |
+
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
183 |
+
02111-1307, USA.",
|
184 |
+
EPL (>= 1.0),EPL (>=1)
|
185 |
+
EPL | CC BY 4.0 | file LICENSE,EPL | CC-BY (==4)
|
186 |
+
EPL | file LICENSE,EPL
|
187 |
+
EUPL (== 1.1),EUPL (==1.1)
|
188 |
+
EUPL | file LICENSE,EUPL
|
189 |
+
EUPL-1.1,EUPL (==1.1)
|
190 |
+
Free for non-commercial purposes. See the original README.,
|
191 |
+
Free for non-commercial use.,
|
192 |
+
Free for nonprofit use.,
|
193 |
+
FreeBSD | GPL-2 | file LICENSE,FreeBSD | GPL (==2)
|
194 |
+
GNU GPL,GPL
|
195 |
+
GNU GPL (version 2 or later),GPL (>=2)
|
196 |
+
GNU GPL Version 2 or newer.,GPL (>=2)
|
197 |
+
GNU GPL.,GPL
|
198 |
+
GPL,GPL
|
199 |
+
GPL (>= 2),GPL (>=2)
|
200 |
+
GPL (<= 2),GPL (<=2)
|
201 |
+
GPL (<= 2.0),GPL (<=2)
|
202 |
+
GPL (>= 1.0),GPL (>=1)
|
203 |
+
GPL (>= 2) | FreeBSD,GPL (>=2) | FreeBSD
|
204 |
+
GPL (>= 2) | LGPL (>= 2) | file LICENSE,GPL (>=2) | LGPL (>=2)
|
205 |
+
GPL (>= 2) | LGPL (>= 3),GPL (>=2) | LGPL (>=3)
|
206 |
+
GPL (>= 2) | LGPL-3,GPL (>=2) | LGPL (==3)
|
207 |
+
GPL (>= 2) | MIT + file LICENSE,GPL (>=2) | MIT
|
208 |
+
GPL (>= 2.0) | file LICENCE,GPL (>=2)
|
209 |
+
GPL (>= 2.14),GPL (>=2.14)
|
210 |
+
GPL (>= 2.15),GPL (>=2.15)
|
211 |
+
GPL (>= 2.2),GPL (>=2.2)
|
212 |
+
GPL (>= 3) + file LICENSE,GPL (>=3)
|
213 |
+
GPL (>= 3) | CC BY 4.0,GPL (>=3) | CC-BY (==4)
|
214 |
+
GPL (>= 3.0.0),GPL (>=3)
|
215 |
+
GPL (>= 3.2),GPL (>=3.2)
|
216 |
+
GPL (Version 2 or later),GPL (>=2)
|
217 |
+
GPL (interface-code) and mSQL-Licence,
|
218 |
+
GPL (version 2 or higher),GPL (>=2)
|
219 |
+
GPL (version 2 or later),GPL (>=2)
|
220 |
+
GPL (version 2).,GPL (==2)
|
221 |
+
GPL 2 or above,GPL (>=2)
|
222 |
+
GPL 2.0,GPL (==2)
|
223 |
+
GPL AFFERO 3.0 (with citation),AGPL (==3)
|
224 |
+
GPL Version 2,GPL (==2)
|
225 |
+
"GPL version 2 (June, 1991)",GPL (==2)
|
226 |
+
"GPL version 2 or later. This is still a crude software and need
|
227 |
+
much improvement. You are welcome to use it or change the code or what-
|
228 |
+
soever. Of course if there is anything wrong with the code, or you somehow
|
229 |
+
encounter damage to your reputation/wallet because of its use, you
|
230 |
+
are not allowed to sue me.",
|
231 |
+
GPL version 2 or newer. Copyright statement for ptolemy: http://ptolemy.eecs.berkeley.edu/copyright.htm,
|
232 |
+
GPL version 2 or newer. http://www.gnu.org/copyleft/gpl.html,
|
233 |
+
GPL version 2.,GPL (==2)
|
234 |
+
GPL | LGPL,GPL | LGPL
|
235 |
+
GPL-2,GPL (==2)
|
236 |
+
GPL-2 | Artistic-2.0,GPL (==2) | Artistic (==2)
|
237 |
+
GPL-2 | GPL (>= 2) | GPL-3,GPL (>=2)
|
238 |
+
GPL-2 | GPL-3 | BSD_3_clause + file LICENSE,"GPL (>=2, <=3) | BSD-Clause (==3)"
|
239 |
+
GPL-2 | LGPL-2.1 | MPL-1.1,GPL (==2) | LGPL (==2.1) | MPL (==1.1)
|
240 |
+
GPL-2 | MIT + file LICENCE,GPL (==2) | MIT
|
241 |
+
GPL-2 | MIT + file LICENSE,GPL (==2) | MIT
|
242 |
+
GPL-3 | BSD_2_clause + file LICENSE,GPL (==3) | BSD-Clause (==2)
|
243 |
+
GPL-3 | GPL-2,"GPL (>=2, <=3)"
|
244 |
+
GPL-3 | LGPL-2.1,GPL (==3) | LGPL (==2.1)
|
245 |
+
GPL-3 | file LICENCE,GPL (==3)
|
246 |
+
GPL.,GPL
|
247 |
+
GPL2,GPL (==2)
|
248 |
+
LGPL,LGPL
|
249 |
+
LGPL (> 2.0),LGPL (>2)
|
250 |
+
LGPL (>= 2) | file LICENSE,LGPL (>2)
|
251 |
+
"LGPL (>= 2.0, < 3) | file LICENSE","LGPL (>=2, <3)"
|
252 |
+
LGPL (see <http://www.opensource.org/licenses/lgpl-license.php>).,
|
253 |
+
LGPL-2 | Apache License 2.0,LGPL (==2) | Apache (==2)
|
254 |
+
LGPL-2.1 | MIT + file LICENSE,LGPL (==2.1) | MIT
|
255 |
+
LGPL-3 + file LICENSE,LGPL (==3)
|
256 |
+
Lucent Public License,
|
257 |
+
MIT + file LICENSE | BSL-1.0,MIT | BSL (==1)
|
258 |
+
MIT + file LICENSE | Unlimited,MIT | Unlimited
|
259 |
+
MIT +file LICENSE,MIT
|
260 |
+
MIT License,MIT
|
261 |
+
MIT | GPL-2,MIT | GPL (==2)
|
262 |
+
MIT | file LICENSE,MIT
|
263 |
+
MPL (>= 2) | GPL (>= 2) | file LICENSE,MPL (==2) | GPL (>=2)
|
264 |
+
MPL (>= 2) | file LICENSE,MPL (>=2)
|
265 |
+
MPL-1.1,MPL (==1.1)
|
266 |
+
Mozilla Public License 1.1,MPL (==1.1)
|
267 |
+
Mozilla Public License 1.1,MPL (==1.1)
|
268 |
+
Mozilla Public License 1.1 (http://www.mozilla.org/MPL/),MPL (==1.1)
|
269 |
+
Mozilla Public License Version 2.0,MPL (==2)
|
270 |
+
"R code under GPL version 2, source code in C is property of S. K. Shevade and S. S. Keerthi and only free for non-commercial use",
|
271 |
+
See file LICENSE,
|
272 |
+
See http://www.stat.washington.edu/mclust/license.txt,
|
273 |
+
"The Artistic License, Version 2.0",Artistic (==2)
|
274 |
+
"These functions are not copyrighted. The author requests,
|
275 |
+
however, that you acknowledge the source and communicate any
|
276 |
+
improvements to him. No guarantees WHATSOEVER from the author or the
|
277 |
+
porter.",
|
278 |
+
"This software may be re-distributed freely and used for
|
279 |
+
any non-commercial purpose.",
|
280 |
+
Unlimited distribution for noncommercial use,
|
281 |
+
Unlimited use and distribution.,
|
282 |
+
file LICENCE,
|
283 |
+
file LICENCE | GPL (>= 2),
|
284 |
+
free distribution and use without modification,
|
285 |
+
unclear -- found in Statlib S archive,
|
optout.txt
ADDED
File without changes
|
packages.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc23d1e4195f6d5b48135712ea70b033811a535e04c7ffc089d4a65c21608686
|
3 |
+
size 281345
|
repos.json
ADDED
Binary file (131 MB). View file
|
|