replace conda with mamba, to handle chinies path.
This commit is contained in:
parent
427398704b
commit
6a0b220c1c
@ -4,32 +4,42 @@
|
||||
|
||||
import { logger } from "../logger";
|
||||
import { installConda } from "./conda_install";
|
||||
import { getMicromambaUrl } from "./conda_url";
|
||||
import { installPackage } from "./package_install";
|
||||
import { installPython } from "./python_install";
|
||||
import { installPython, installPythonMicromamba } from "./python_install";
|
||||
|
||||
// step 1. install conda
|
||||
// step 2. create env with python 3.11.4
|
||||
// step 3. install devchat in the env
|
||||
|
||||
export async function appInstall(pkgName: string, pkgVersion: string, pythonVersion: string) : Promise<string> {
|
||||
// install conda
|
||||
logger.channel()?.info('Install conda ...')
|
||||
const condaCommand = await installConda();
|
||||
if (!condaCommand) {
|
||||
logger.channel()?.error('Install conda failed');
|
||||
logger.channel()?.show();
|
||||
return '';
|
||||
}
|
||||
// // install conda
|
||||
// logger.channel()?.info('Install conda ...')
|
||||
// const condaCommand = await installConda();
|
||||
// if (!condaCommand) {
|
||||
// logger.channel()?.error('Install conda failed');
|
||||
// logger.channel()?.show();
|
||||
// return '';
|
||||
// }
|
||||
logger.channel()?.info('Find micromamba ...');
|
||||
const mambaCommand = getMicromambaUrl();
|
||||
logger.channel()?.info('micromamba url: ' + mambaCommand);
|
||||
|
||||
// create env with specify python
|
||||
logger.channel()?.info('Create env ...');
|
||||
let pythonCommand = '';
|
||||
// try 3 times
|
||||
for (let i = 0; i < 3; i++) {
|
||||
pythonCommand = await installPython(condaCommand, pkgName, pythonVersion);
|
||||
try {
|
||||
pythonCommand = await installPythonMicromamba(mambaCommand, pkgName, pythonVersion);
|
||||
// pythonCommand = await installPython(condaCommand, pkgName, pythonVersion);
|
||||
if (pythonCommand) {
|
||||
break;
|
||||
}
|
||||
} catch(error) {
|
||||
logger.channel()?.info(`Exception: ${error}`);
|
||||
}
|
||||
|
||||
logger.channel()?.info(`Create env failed, try again: ${i + 1}`);
|
||||
}
|
||||
if (!pythonCommand) {
|
||||
|
@ -96,7 +96,7 @@ async function installCondaByInstallFile(installFileUrl: string) : Promise<strin
|
||||
let command = '';
|
||||
if (os === 'win32') {
|
||||
const winPathToConda = pathToConda.replace(/\//g, '\\');
|
||||
command = `start /wait "${installFileUrl}" /InstallationType=JustMe /AddToPath=0 /RegisterPython=0 /S "/D=${winPathToConda}"`;
|
||||
command = `start /wait "" "${installFileUrl}" /InstallationType=JustMe /AddToPath=0 /RegisterPython=0 /S /D=${winPathToConda}`;
|
||||
} else if (os === 'linux') {
|
||||
command = `bash "${installFileUrl}" -b -p "${pathToConda}"`;
|
||||
} else if (os === 'darwin') {
|
||||
|
@ -4,6 +4,9 @@
|
||||
|
||||
import os from 'os';
|
||||
import { logger } from '../logger';
|
||||
import { UiUtilVscode } from '../uiUtil_vscode';
|
||||
import { UiUtilWrapper } from '../uiUtil';
|
||||
import path from 'path';
|
||||
|
||||
function getDownloadFileName(): string {
|
||||
const platform = os.platform();
|
||||
@ -49,6 +52,38 @@ import { logger } from '../logger';
|
||||
return "";
|
||||
}
|
||||
|
||||
export function getMicromambaUrl(): string {
|
||||
const platform = os.platform();
|
||||
const arch = os.arch();
|
||||
logger.channel()?.info(`Platform: ${platform}, Arch: ${arch}`);
|
||||
|
||||
let micromambaUrl = '';
|
||||
if (platform === "win32") {
|
||||
micromambaUrl = "micromamba-win-64";
|
||||
} else if (platform === "darwin") {
|
||||
if (arch === "arm64") {
|
||||
micromambaUrl = "micromamba-osx-arm64";
|
||||
} else if (arch === "x86" || arch === "x64") {
|
||||
micromambaUrl = "micromamba-osx-64";
|
||||
} else {
|
||||
micromambaUrl = "micromamba-osx-64";
|
||||
}
|
||||
} else if (platform === "linux") {
|
||||
if (arch === "x64") {
|
||||
micromambaUrl = "micromamba-linux-64";
|
||||
} else if (arch === "ppc64le") {
|
||||
micromambaUrl = "micromamba-linux-ppc64le";
|
||||
} else if (arch === "aarch64") {
|
||||
micromambaUrl = "micromamba-linux-aarch64";
|
||||
} else {
|
||||
micromambaUrl = "micromamba-linux-64";
|
||||
}
|
||||
}
|
||||
|
||||
const micromambaPath = path.join(UiUtilWrapper.extensionPath(), 'tools', micromambaUrl, "bin", "micromamba");
|
||||
return micromambaPath;
|
||||
}
|
||||
|
||||
export function getCondaDownloadUrl(): string {
|
||||
return 'https://repo.anaconda.com/miniconda/' + getDownloadFileName();
|
||||
}
|
@ -81,3 +81,84 @@ export async function installPython(condaCommandPath: string, envName: string, p
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function canCreateSubdirectory(dirPath: string): boolean {
|
||||
try {
|
||||
const tempSubdirPath = path.join(dirPath, 'tempSubdirTest');
|
||||
fs.mkdirSync(tempSubdirPath);
|
||||
fs.rmdirSync(tempSubdirPath);
|
||||
|
||||
return true;
|
||||
} catch (err) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
export async function installPythonMicromamba(mambaCommandPath: string, envName: string, pythonVersion: string): Promise<string> {
|
||||
// Set the installation directory for conda
|
||||
let userHome = process.platform === 'win32' ? fs.realpathSync(process.env.USERPROFILE || '') : process.env.HOME;
|
||||
if (os.platform() === 'win32' && /[^\x00-\xFF]/.test(userHome)) {
|
||||
if (fs.existsSync('C:/Program Files') && canCreateSubdirectory('C:/Program Files')) {
|
||||
userHome = 'C:/Program Files';
|
||||
} else if (fs.existsSync('D:/Program Files') && canCreateSubdirectory('D:/Program Files')) {
|
||||
userHome = 'D:/Program Files';
|
||||
} else if (fs.existsSync('E:/Program Files') && canCreateSubdirectory('E:/Program Files')) {
|
||||
userHome = 'E:/Program Files';
|
||||
}
|
||||
}
|
||||
const pathToMamba = `${userHome}/.devchat/mamba`;
|
||||
|
||||
const envPath = path.resolve(pathToMamba, 'envs', envName);
|
||||
let pythonPath;
|
||||
let pythonPath2;
|
||||
if (os.platform() === 'win32') {
|
||||
pythonPath = path.join(envPath, 'Scripts', 'python.exe');
|
||||
pythonPath2 = path.join(envPath, 'python.exe');
|
||||
} else {
|
||||
pythonPath = path.join(envPath, 'bin', 'python');
|
||||
}
|
||||
|
||||
if (fs.existsSync(pythonPath)) {
|
||||
return pythonPath;
|
||||
} else if (pythonPath2 && fs.existsSync(pythonPath2)) {
|
||||
return pythonPath2;
|
||||
}
|
||||
|
||||
return new Promise<string>((resolve, reject) => {
|
||||
const cmd = mambaCommandPath;
|
||||
const args = ['create', '-n', envName, '-c', 'conda-forge', '-r', pathToMamba, `python=${pythonVersion}`, '--yes'];
|
||||
// output command and args in line
|
||||
// args to "create -n xx -c conda-forge ..."
|
||||
logger.channel()?.info(`cmd: ${cmd} ${args.join(' ')}`);
|
||||
const child = spawn(cmd, args);
|
||||
|
||||
child.stdout.on('data', (data) => {
|
||||
logger.channel()?.info(`${data}`);
|
||||
});
|
||||
|
||||
child.stderr.on('data', (data) => {
|
||||
console.error(`stderr: ${data}`);
|
||||
});
|
||||
|
||||
child.on('error', (error) => {
|
||||
logger.channel()?.error(`Error installing python ${pythonVersion} in env ${envName}`);
|
||||
logger.channel()?.show();
|
||||
reject('');
|
||||
});
|
||||
|
||||
child.on('close', (code) => {
|
||||
if (code !== 0) {
|
||||
reject(new Error(`Command exited with code ${code}`));
|
||||
} else {
|
||||
if (fs.existsSync(pythonPath)) {
|
||||
resolve(pythonPath);
|
||||
} else if (pythonPath2 && fs.existsSync(pythonPath2)) {
|
||||
resolve(pythonPath2);
|
||||
} else {
|
||||
reject(new Error(`No Python found`));
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
BIN
tools/micromamba-linux-64/bin/micromamba
Executable file
BIN
tools/micromamba-linux-64/bin/micromamba
Executable file
Binary file not shown.
224
tools/micromamba-linux-64/info/about.json
Normal file
224
tools/micromamba-linux-64/info/about.json
Normal file
@ -0,0 +1,224 @@
|
||||
{
|
||||
"channels": [
|
||||
"https://conda.anaconda.org/conda-forge"
|
||||
],
|
||||
"conda_build_version": "3.25.0",
|
||||
"conda_version": "23.3.1",
|
||||
"dev_url": "https://github.com/mamba-org/mamba",
|
||||
"env_vars": {
|
||||
"CIO_TEST": "<not set>"
|
||||
},
|
||||
"extra": {
|
||||
"copy_test_source_files": true,
|
||||
"final": true,
|
||||
"recipe-maintainers": [
|
||||
"AntoinePrv",
|
||||
"pavelzw",
|
||||
"wolfv",
|
||||
"SylvainCorlay",
|
||||
"JohanMabille",
|
||||
"mariusvniekerk",
|
||||
"adriendelsalle"
|
||||
]
|
||||
},
|
||||
"home": "https://github.com/mamba-org/mamba",
|
||||
"identifiers": [],
|
||||
"keywords": [],
|
||||
"license": "BSD-3-Clause AND MIT AND OpenSSL",
|
||||
"license_family": "BSD",
|
||||
"license_file": [
|
||||
"mamba/LICENSE",
|
||||
"CLI11_LICENSE.txt",
|
||||
"CURL_LICENSE.txt",
|
||||
"C_ARES_LICENSE.txt",
|
||||
"FMT_LICENSE.txt",
|
||||
"KRB5_LICENSE.txt",
|
||||
"LIBARCHIVE_LICENSE.txt",
|
||||
"LIBEV_LICENSE.txt",
|
||||
"LIBLZ4_LICENSE.txt",
|
||||
"LIBNGHTTP2_LICENSE.txt",
|
||||
"LIBOPENSSL_3_LICENSE.txt",
|
||||
"LIBOPENSSL_LICENSE.txt",
|
||||
"LIBSOLV_LICENSE.txt",
|
||||
"NLOHMANN_JSON_LICENSE.txt",
|
||||
"REPROC_LICENSE.txt",
|
||||
"SPDLOG_LICENSE.txt",
|
||||
"TL_EXPECTED_LICENSE.txt",
|
||||
"ZSTD_LICENSE.txt"
|
||||
],
|
||||
"root_pkgs": [
|
||||
"tk 8.6.12 h27826a3_0",
|
||||
"markdown-it-py 3.0.0 pyhd8ed1ab_0",
|
||||
"pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0",
|
||||
"pkginfo 1.9.6 pyhd8ed1ab_0",
|
||||
"c-ares 1.19.1 hd590300_0",
|
||||
"packaging 23.1 pyhd8ed1ab_0",
|
||||
"libev 4.33 h516909a_1",
|
||||
"platformdirs 3.10.0 pyhd8ed1ab_0",
|
||||
"libgomp 13.1.0 he5830b7_0",
|
||||
"libpng 1.6.39 h753d276_0",
|
||||
"gettext 0.21.1 h27087fc_0",
|
||||
"libxcb 1.15 h0b41bf4_0",
|
||||
"pycosat 0.6.4 py310h5764c6d_1",
|
||||
"git 2.41.0 pl5321h86e50cf_0",
|
||||
"pyyaml 6.0 py310h5764c6d_5",
|
||||
"libexpat 2.5.0 hcb278e6_1",
|
||||
"wcwidth 0.2.6 pyhd8ed1ab_0",
|
||||
"jupyter_core 5.3.1 py310hff52083_0",
|
||||
"libdeflate 1.18 h0b41bf4_0",
|
||||
"anaconda-client 1.12.0 pyhd8ed1ab_1",
|
||||
"python_abi 3.10 3_cp310",
|
||||
"tqdm 4.66.1 pyhd8ed1ab_0",
|
||||
"jsonschema 4.19.0 pyhd8ed1ab_1",
|
||||
"libtiff 4.5.1 h8b53f26_0",
|
||||
"brotli-python 1.0.9 py310hd8f1fbe_9",
|
||||
"joblib 1.3.2 pyhd8ed1ab_0",
|
||||
"mamba 1.4.2 py310h51d5547_0",
|
||||
"lcms2 2.15 haa2dc70_1",
|
||||
"psutil 5.9.5 py310h1fa729e_0",
|
||||
"zstd 1.5.2 hfc55251_7",
|
||||
"requests-toolbelt 1.0.0 pyhd8ed1ab_0",
|
||||
"freetype 2.12.1 hca18f0e_1",
|
||||
"readline 8.2 h8228510_1",
|
||||
"wheel 0.41.1 pyhd8ed1ab_0",
|
||||
"colorama 0.4.6 pyhd8ed1ab_0",
|
||||
"libnghttp2 1.52.0 h61bc06f_0",
|
||||
"lz4-c 1.9.4 hcb278e6_0",
|
||||
"jsonpointer 2.0 py_0",
|
||||
"urllib3 1.26.15 pyhd8ed1ab_0",
|
||||
"python-fastjsonschema 2.18.0 pyhd8ed1ab_0",
|
||||
"lzo 2.10 h516909a_1000",
|
||||
"python-dateutil 2.8.2 pyhd8ed1ab_0",
|
||||
"cffi 1.15.1 py310h255011f_3",
|
||||
"conda-index 0.2.3 pyhd8ed1ab_0",
|
||||
"attrs 23.1.0 pyh71513ae_1",
|
||||
"pysocks 1.7.1 pyha2e5f31_6",
|
||||
"_libgcc_mutex 0.1 conda_forge",
|
||||
"conda-build 3.25.0 py310hff52083_0",
|
||||
"conda-package-handling 2.2.0 pyh38be061_0",
|
||||
"pycparser 2.21 pyhd8ed1ab_0",
|
||||
"conda 23.3.1 py310hff52083_0",
|
||||
"openssl 3.1.2 hd590300_0",
|
||||
"certifi 2023.7.22 pyhd8ed1ab_0",
|
||||
"fmt 9.1.0 h924138e_0",
|
||||
"idna 3.4 pyhd8ed1ab_0",
|
||||
"lerc 4.0.0 h27087fc_0",
|
||||
"more-itertools 10.1.0 pyhd8ed1ab_0",
|
||||
"libwebp-base 1.3.1 hd590300_0",
|
||||
"importlib_resources 6.0.1 pyhd8ed1ab_0",
|
||||
"chardet 5.2.0 py310hff52083_0",
|
||||
"liblief 0.12.3 h27087fc_0",
|
||||
"ruamel.yaml.clib 0.2.7 py310h1fa729e_1",
|
||||
"json5 0.9.14 pyhd8ed1ab_0",
|
||||
"mdurl 0.1.0 pyhd8ed1ab_0",
|
||||
"jsonschema-specifications 2023.7.1 pyhd8ed1ab_0",
|
||||
"tomli 2.0.1 pyhd8ed1ab_0",
|
||||
"tzdata 2023c h71feb2d_0",
|
||||
"pytz 2023.3 pyhd8ed1ab_0",
|
||||
"glob2 0.7 py_0",
|
||||
"libedit 3.1.20191231 he28a2e2_2",
|
||||
"backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0",
|
||||
"reproc-cpp 14.2.4 hcb278e6_0",
|
||||
"dataclasses 0.8 pyhc8e2a94_3",
|
||||
"referencing 0.30.2 pyhd8ed1ab_0",
|
||||
"pip 23.2.1 pyhd8ed1ab_0",
|
||||
"nbformat 5.9.2 pyhd8ed1ab_0",
|
||||
"ruamel_yaml 0.15.80 py310h5764c6d_1008",
|
||||
"exceptiongroup 1.1.3 pyhd8ed1ab_0",
|
||||
"pillow 10.0.0 py310h582fbeb_0",
|
||||
"libstdcxx-ng 13.1.0 hfd8a6a1_0",
|
||||
"ripgrep 13.0.0 h2f28480_2",
|
||||
"py-lief 0.12.3 py310hd8f1fbe_0",
|
||||
"krb5 1.21.2 h659d440_0",
|
||||
"pygments 2.16.1 pyhd8ed1ab_0",
|
||||
"perl 5.32.1 4_hd590300_perl5",
|
||||
"jinja2 3.1.2 pyhd8ed1ab_1",
|
||||
"patch 2.7.6 h7f98852_1002",
|
||||
"requests 2.31.0 pyhd8ed1ab_0",
|
||||
"yaml 0.2.5 h7f98852_2",
|
||||
"ncurses 6.4 hcb278e6_0",
|
||||
"boltons 23.0.0 pyhd8ed1ab_0",
|
||||
"pthread-stubs 0.4 h36c2ea0_1001",
|
||||
"rpds-py 0.9.2 py310hcb5633a_0",
|
||||
"bzip2 1.0.8 h7f98852_4",
|
||||
"backports 1.0 pyhd8ed1ab_3",
|
||||
"libiconv 1.17 h166bdaf_0",
|
||||
"xz 5.2.6 h166bdaf_0",
|
||||
"pcre2 10.40 hc3806b6_0",
|
||||
"rich 13.5.1 pyhd8ed1ab_0",
|
||||
"charset-normalizer 3.2.0 pyhd8ed1ab_0",
|
||||
"ruamel.yaml 0.17.32 py310h2372a71_0",
|
||||
"six 1.16.0 pyh6c4a22f_0",
|
||||
"libsqlite 3.42.0 h2797004_0",
|
||||
"toolz 0.12.0 pyhd8ed1ab_0",
|
||||
"tini 0.19.0 h166bdaf_1",
|
||||
"jsonpatch 1.32 pyhd8ed1ab_0",
|
||||
"su-exec 0.2 h166bdaf_1003",
|
||||
"beautifulsoup4 4.12.2 pyha770c72_0",
|
||||
"typing_extensions 4.7.1 pyha770c72_0",
|
||||
"libssh2 1.11.0 h0841786_0",
|
||||
"filelock 3.12.2 pyhd8ed1ab_0",
|
||||
"zipp 3.16.2 pyhd8ed1ab_0",
|
||||
"prompt_toolkit 3.0.39 hd8ed1ab_0",
|
||||
"python 3.10.12 hd12c33a_0_cpython",
|
||||
"sniffio 1.3.0 pyhd8ed1ab_0",
|
||||
"libsolv 0.7.24 hfc55251_1",
|
||||
"watchgod 0.8.2 pyhd8ed1ab_0",
|
||||
"anaconda-project 0.11.1 pyhd8ed1ab_0",
|
||||
"python-libarchive-c 5.0 py310hff52083_1",
|
||||
"libgcc-ng 13.1.0 he5830b7_0",
|
||||
"libffi 3.4.2 h7f98852_5",
|
||||
"libjpeg-turbo 2.1.5.1 h0b41bf4_0",
|
||||
"libnsl 2.0.0 h7f98852_0",
|
||||
"libcurl 8.2.1 hca28451_0",
|
||||
"icu 72.1 hcb278e6_0",
|
||||
"pluggy 1.2.0 pyhd8ed1ab_0",
|
||||
"conda-libmamba-solver 23.3.0 pyhd8ed1ab_0",
|
||||
"tornado 6.3.3 py310h2372a71_0",
|
||||
"zstandard 0.19.0 py310h1275a96_2",
|
||||
"pyopenssl 23.2.0 pyhd8ed1ab_1",
|
||||
"libmambapy 1.4.2 py310h1428755_0",
|
||||
"anyio 3.7.1 pyhd8ed1ab_0",
|
||||
"conda-pack 0.7.1 pyhd8ed1ab_0",
|
||||
"boa 0.15.1 pyhd8ed1ab_0",
|
||||
"soupsieve 2.3.2.post1 pyhd8ed1ab_0",
|
||||
"defusedxml 0.7.1 pyhd8ed1ab_0",
|
||||
"libzlib 1.2.13 hd590300_5",
|
||||
"setuptools 68.1.2 pyhd8ed1ab_0",
|
||||
"conda-package-streaming 0.9.0 pyhd8ed1ab_0",
|
||||
"yaml-cpp 0.7.0 h27087fc_2",
|
||||
"libuuid 2.38.1 h0b41bf4_0",
|
||||
"traitlets 5.9.0 pyhd8ed1ab_0",
|
||||
"_openmp_mutex 4.5 2_gnu",
|
||||
"xorg-libxau 1.0.11 hd590300_0",
|
||||
"libxml2 2.11.5 h0d562d8_0",
|
||||
"brotlipy 0.7.0 py310h5764c6d_1005",
|
||||
"openjpeg 2.5.0 hfec8fc6_2",
|
||||
"clyent 1.2.2 py_1",
|
||||
"typing-extensions 4.7.1 hd8ed1ab_0",
|
||||
"ca-certificates 2023.7.22 hbcca054_0",
|
||||
"curl 8.2.1 hca28451_0",
|
||||
"reproc 14.2.4 h0b41bf4_0",
|
||||
"patchelf 0.17.2 h58526e2_0",
|
||||
"libarchive 3.6.2 h039dbb9_1",
|
||||
"click 8.1.7 unix_pyh707e725_0",
|
||||
"prompt-toolkit 3.0.39 pyha770c72_0",
|
||||
"keyutils 1.6.1 h166bdaf_0",
|
||||
"libmamba 1.4.2 hcea66bb_0",
|
||||
"ld_impl_linux-64 2.40 h41732ed_0",
|
||||
"markupsafe 2.1.3 py310h2372a71_0",
|
||||
"xorg-libxdmcp 1.1.3 h7f98852_0",
|
||||
"pybind11-abi 4 hd8ed1ab_3",
|
||||
"cryptography 41.0.3 py310h75e40e8_0",
|
||||
"conda-env 2.6.0 1",
|
||||
"conda-oci-mirror 0.1.0 pyhd8ed1ab_0",
|
||||
"oniguruma 6.9.8 h166bdaf_0",
|
||||
"jq 1.6 h36c2ea0_1000",
|
||||
"conda-forge-ci-setup 3.32.5 py310h7a2d8a0_100",
|
||||
"conda-forge-metadata 0.5.2 pyhd8ed1ab_0",
|
||||
"oras-py 0.1.14 pyhd8ed1ab_0",
|
||||
"shyaml 0.6.2 pyhd3deb0d_0"
|
||||
],
|
||||
"summary": "Micromamba is a tiny version of mamba, the fast conda package installer.",
|
||||
"tags": []
|
||||
}
|
1
tools/micromamba-linux-64/info/files
Normal file
1
tools/micromamba-linux-64/info/files
Normal file
@ -0,0 +1 @@
|
||||
bin/micromamba
|
0
tools/micromamba-linux-64/info/git
Normal file
0
tools/micromamba-linux-64/info/git
Normal file
1
tools/micromamba-linux-64/info/has_prefix
Normal file
1
tools/micromamba-linux-64/info/has_prefix
Normal file
@ -0,0 +1 @@
|
||||
/home/conda/feedstock_root/build_artifacts/micromamba_1692951636954/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_ binary bin/micromamba
|
14
tools/micromamba-linux-64/info/hash_input.json
Normal file
14
tools/micromamba-linux-64/info/hash_input.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"fmt": "10",
|
||||
"c_compiler_version": "12",
|
||||
"openssl": "3",
|
||||
"spdlog": "1.12",
|
||||
"cxx_compiler": "gxx",
|
||||
"CI": "azure",
|
||||
"libcurl": "8",
|
||||
"zlib": "1.2",
|
||||
"cxx_compiler_version": "12",
|
||||
"channel_targets": "conda-forge main",
|
||||
"target_platform": "linux-64",
|
||||
"c_compiler": "gcc"
|
||||
}
|
15
tools/micromamba-linux-64/info/index.json
Normal file
15
tools/micromamba-linux-64/info/index.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"arch": "x86_64",
|
||||
"build": "1",
|
||||
"build_number": 1,
|
||||
"depends": [
|
||||
"libzlib >=1.2.13,<1.3.0a0"
|
||||
],
|
||||
"license": "BSD-3-Clause AND MIT AND OpenSSL",
|
||||
"license_family": "BSD",
|
||||
"name": "micromamba",
|
||||
"platform": "linux",
|
||||
"subdir": "linux-64",
|
||||
"timestamp": 1692952522405,
|
||||
"version": "1.5.0"
|
||||
}
|
25
tools/micromamba-linux-64/info/licenses/CLI11_LICENSE.txt
Normal file
25
tools/micromamba-linux-64/info/licenses/CLI11_LICENSE.txt
Normal file
@ -0,0 +1,25 @@
|
||||
CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry
|
||||
Schreiner under NSF AWARD 1414736. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms of CLI11, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
11
tools/micromamba-linux-64/info/licenses/CURL_LICENSE.txt
Normal file
11
tools/micromamba-linux-64/info/licenses/CURL_LICENSE.txt
Normal file
@ -0,0 +1,11 @@
|
||||
COPYRIGHT AND PERMISSION NOTICE
|
||||
|
||||
Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file.
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.
|
15
tools/micromamba-linux-64/info/licenses/C_ARES_LICENSE.txt
Normal file
15
tools/micromamba-linux-64/info/licenses/C_ARES_LICENSE.txt
Normal file
@ -0,0 +1,15 @@
|
||||
# c-ares license
|
||||
|
||||
Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS
|
||||
file.
|
||||
|
||||
Copyright 1998 by the Massachusetts Institute of Technology.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and its
|
||||
documentation for any purpose and without fee is hereby granted, provided that
|
||||
the above copyright notice appear in all copies and that both that copyright
|
||||
notice and this permission notice appear in supporting documentation, and that
|
||||
the name of M.I.T. not be used in advertising or publicity pertaining to
|
||||
distribution of the software without specific, written prior permission.
|
||||
M.I.T. makes no representations about the suitability of this software for any
|
||||
purpose. It is provided "as is" without express or implied warranty.
|
27
tools/micromamba-linux-64/info/licenses/FMT_LICENSE.txt
Normal file
27
tools/micromamba-linux-64/info/licenses/FMT_LICENSE.txt
Normal file
@ -0,0 +1,27 @@
|
||||
Copyright (c) 2012 - present, Victor Zverovich
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
--- Optional exception to the license ---
|
||||
|
||||
As an exception, if, as a result of your compiling your source code, portions
|
||||
of this Software are embedded into a machine-executable object form of such
|
||||
source code, you may redistribute such embedded portions in such object form
|
||||
without including the above copyright and permission notices.
|
1286
tools/micromamba-linux-64/info/licenses/KRB5_LICENSE.txt
Normal file
1286
tools/micromamba-linux-64/info/licenses/KRB5_LICENSE.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,66 @@
|
||||
The libarchive distribution as a whole is Copyright by Tim Kientzle
|
||||
and is subject to the copyright notice reproduced at the bottom of
|
||||
this file.
|
||||
|
||||
Each individual file in this distribution should have a clear
|
||||
copyright/licensing statement at the beginning of the file. If any do
|
||||
not, please let me know and I will rectify it. The following is
|
||||
intended to summarize the copyright status of the individual files;
|
||||
the actual statements in the files are controlling.
|
||||
|
||||
* Except as listed below, all C sources (including .c and .h files)
|
||||
and documentation files are subject to the copyright notice reproduced
|
||||
at the bottom of this file.
|
||||
|
||||
* The following source files are also subject in whole or in part to
|
||||
a 3-clause UC Regents copyright; please read the individual source
|
||||
files for details:
|
||||
libarchive/archive_entry.c
|
||||
libarchive/archive_read_support_filter_compress.c
|
||||
libarchive/archive_write_add_filter_compress.c
|
||||
libarchive/mtree.5
|
||||
|
||||
* The following source files are in the public domain:
|
||||
libarchive/archive_getdate.c
|
||||
|
||||
* The following source files are triple-licensed with the ability to choose
|
||||
from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses:
|
||||
libarchive/archive_blake2.h
|
||||
libarchive/archive_blake2_impl.h
|
||||
libarchive/archive_blake2s_ref.c
|
||||
libarchive/archive_blake2sp_ref.c
|
||||
|
||||
* The build files---including Makefiles, configure scripts,
|
||||
and auxiliary scripts used as part of the compile process---have
|
||||
widely varying licensing terms. Please check individual files before
|
||||
distributing them to see if those restrictions apply to you.
|
||||
|
||||
I intend for all new source code to use the license below and hope over
|
||||
time to replace code with other licenses with new implementations that
|
||||
do use the license below. The varying licensing of the build scripts
|
||||
seems to be an unavoidable mess.
|
||||
|
||||
|
||||
Copyright (c) 2003-2018 <author(s)>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer
|
||||
in this position and unchanged.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
37
tools/micromamba-linux-64/info/licenses/LIBEV_LICENSE.txt
Normal file
37
tools/micromamba-linux-64/info/licenses/LIBEV_LICENSE.txt
Normal file
@ -0,0 +1,37 @@
|
||||
All files in libev are
|
||||
Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
Alternatively, the contents of this package may be used under the terms
|
||||
of the GNU General Public License ("GPL") version 2 or any later version,
|
||||
in which case the provisions of the GPL are applicable instead of the
|
||||
above. If you wish to allow the use of your version of this package only
|
||||
under the terms of the GPL and not to allow others to use your version of
|
||||
this file under the BSD license, indicate your decision by deleting the
|
||||
provisions above and replace them with the notice and other provisions
|
||||
required by the GPL in this and the other files of this package. If you do
|
||||
not delete the provisions above, a recipient may use your version of this
|
||||
file under either the BSD or the GPL.
|
24
tools/micromamba-linux-64/info/licenses/LIBLZ4_LICENSE.txt
Normal file
24
tools/micromamba-linux-64/info/licenses/LIBLZ4_LICENSE.txt
Normal file
@ -0,0 +1,24 @@
|
||||
LZ4 Library
|
||||
Copyright (c) 2011-2016, Yann Collet
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice, this
|
||||
list of conditions and the following disclaimer in the documentation and/or
|
||||
other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,23 @@
|
||||
The MIT License
|
||||
|
||||
Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa
|
||||
Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
177
tools/micromamba-linux-64/info/licenses/LIBOPENSSL_3_LICENSE.txt
Normal file
177
tools/micromamba-linux-64/info/licenses/LIBOPENSSL_3_LICENSE.txt
Normal file
@ -0,0 +1,177 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
https://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
125
tools/micromamba-linux-64/info/licenses/LIBOPENSSL_LICENSE.txt
Normal file
125
tools/micromamba-linux-64/info/licenses/LIBOPENSSL_LICENSE.txt
Normal file
@ -0,0 +1,125 @@
|
||||
|
||||
LICENSE ISSUES
|
||||
==============
|
||||
|
||||
The OpenSSL toolkit stays under a double license, i.e. both the conditions of
|
||||
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
||||
See below for the actual license texts.
|
||||
|
||||
OpenSSL License
|
||||
---------------
|
||||
|
||||
/* ====================================================================
|
||||
* Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
*
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
* endorse or promote products derived from this software without
|
||||
* prior written permission. For written permission, please contact
|
||||
* openssl-core@openssl.org.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
* permission of the OpenSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
*/
|
||||
|
||||
Original SSLeay License
|
||||
-----------------------
|
||||
|
||||
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
||||
* All rights reserved.
|
||||
*
|
||||
* This package is an SSL implementation written
|
||||
* by Eric Young (eay@cryptsoft.com).
|
||||
* The implementation was written so as to conform with Netscapes SSL.
|
||||
*
|
||||
* This library is free for commercial and non-commercial use as long as
|
||||
* the following conditions are aheared to. The following conditions
|
||||
* apply to all code found in this distribution, be it the RC4, RSA,
|
||||
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||
* included with this distribution is covered by the same copyright terms
|
||||
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
* Copyright remains Eric Young's, and as such any Copyright notices in
|
||||
* the code are not to be removed.
|
||||
* If this package is used in a product, Eric Young should be given attribution
|
||||
* as the author of the parts of the library used.
|
||||
* This can be in the form of a textual message at program startup or
|
||||
* in documentation (online or textual) provided with the package.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* "This product includes cryptographic software written by
|
||||
* Eric Young (eay@cryptsoft.com)"
|
||||
* The word 'cryptographic' can be left out if the rouines from the library
|
||||
* being used are not cryptographic related :-).
|
||||
* 4. If you include any Windows specific code (or a derivative thereof) from
|
||||
* the apps directory (application code) you must include an acknowledgement:
|
||||
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* The licence and distribution terms for any publically available version or
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
* copied and put under another distribution licence
|
||||
* [including the GNU Public Licence.]
|
||||
*/
|
||||
|
28
tools/micromamba-linux-64/info/licenses/LIBSOLV_LICENSE.txt
Normal file
28
tools/micromamba-linux-64/info/licenses/LIBSOLV_LICENSE.txt
Normal file
@ -0,0 +1,28 @@
|
||||
Copyright (c) 2019, SUSE LLC
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of Novell nor the names of its contributors may
|
||||
be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
||||
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2013-2020 Niels Lohmann
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
21
tools/micromamba-linux-64/info/licenses/REPROC_LICENSE.txt
Normal file
21
tools/micromamba-linux-64/info/licenses/REPROC_LICENSE.txt
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Daan De Meyer
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
25
tools/micromamba-linux-64/info/licenses/SPDLOG_LICENSE.txt
Normal file
25
tools/micromamba-linux-64/info/licenses/SPDLOG_LICENSE.txt
Normal file
@ -0,0 +1,25 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Gabi Melman.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
-- NOTE: Third party dependency used by this software --
|
||||
This software depends on the fmt lib (MIT License),
|
||||
and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst
|
121
tools/micromamba-linux-64/info/licenses/TL_EXPECTED_LICENSE.txt
Normal file
121
tools/micromamba-linux-64/info/licenses/TL_EXPECTED_LICENSE.txt
Normal file
@ -0,0 +1,121 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
CC0 1.0 Universal
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
HEREUNDER.
|
||||
|
||||
Statement of Purpose
|
||||
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
||||
authorship and/or a database (each, a "Work").
|
||||
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without fear
|
||||
of later claims of infringement build upon, modify, incorporate in other
|
||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
||||
and for any purposes, including without limitation commercial purposes.
|
||||
These owners may contribute to the Commons to promote the ideal of a free
|
||||
culture and the further production of creative, cultural and scientific
|
||||
works, or to gain reputation or greater distribution for their Work in
|
||||
part through the use and efforts of others.
|
||||
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
||||
Work and the meaning and intended legal effect of CC0 on those rights.
|
||||
|
||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
||||
protected by copyright and related or neighboring rights ("Copyright and
|
||||
Related Rights"). Copyright and Related Rights include, but are not
|
||||
limited to, the following:
|
||||
|
||||
i. the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work;
|
||||
ii. moral rights retained by the original author(s) and/or performer(s);
|
||||
iii. publicity and privacy rights pertaining to a person's image or
|
||||
likeness depicted in a Work;
|
||||
iv. rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;
|
||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
||||
in a Work;
|
||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
||||
European Parliament and of the Council of 11 March 1996 on the legal
|
||||
protection of databases, and under any national implementation
|
||||
thereof, including any amended or successor version of such
|
||||
directive); and
|
||||
vii. other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof.
|
||||
|
||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
||||
of action, whether now known or unknown (including existing as well as
|
||||
future claims and causes of action), in the Work (i) in all territories
|
||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
||||
treaty (including future time extensions), (iii) in any current or future
|
||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
||||
including without limitation commercial, advertising or promotional
|
||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
||||
member of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal or
|
||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
||||
as contemplated by Affirmer's express Statement of Purpose.
|
||||
|
||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
||||
be judged legally invalid or ineffective under applicable law, then the
|
||||
Waiver shall be preserved to the maximum extent permitted taking into
|
||||
account Affirmer's express Statement of Purpose. In addition, to the
|
||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
||||
maximum duration provided by applicable law or treaty (including future
|
||||
time extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"License"). The License shall be deemed effective as of the date CC0 was
|
||||
applied by Affirmer to the Work. Should any part of the License for any
|
||||
reason be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
||||
of the License, and in such case Affirmer hereby affirms that he or she
|
||||
will not (i) exercise any of his or her remaining Copyright and Related
|
||||
Rights in the Work or (ii) assert any associated claims and causes of
|
||||
action with respect to the Work, in either case contrary to Affirmer's
|
||||
express Statement of Purpose.
|
||||
|
||||
4. Limitations and Disclaimers.
|
||||
|
||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
||||
surrendered, licensed or otherwise affected by this document.
|
||||
b. Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy, or
|
||||
the present or absence of errors, whether or not discoverable, all to
|
||||
the greatest extent permissible under applicable law.
|
||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
||||
that may apply to the Work or any use thereof, including without
|
||||
limitation any person's Copyright and Related Rights in the Work.
|
||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
||||
consents, permissions or other rights required for any use of the
|
||||
Work.
|
||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
||||
party to this document and has no duty or obligation with respect to
|
||||
this CC0 or use of the Work.
|
30
tools/micromamba-linux-64/info/licenses/ZSTD_LICENSE.txt
Normal file
30
tools/micromamba-linux-64/info/licenses/ZSTD_LICENSE.txt
Normal file
@ -0,0 +1,30 @@
|
||||
BSD License
|
||||
|
||||
For Zstandard software
|
||||
|
||||
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* Neither the name Facebook nor the names of its contributors may be used to
|
||||
endorse or promote products derived from this software without specific
|
||||
prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
11
tools/micromamba-linux-64/info/licenses/mamba/LICENSE
Normal file
11
tools/micromamba-linux-64/info/licenses/mamba/LICENSE
Normal file
@ -0,0 +1,11 @@
|
||||
Copyright 2019 QuantStack and the Mamba contributors.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
13
tools/micromamba-linux-64/info/paths.json
Normal file
13
tools/micromamba-linux-64/info/paths.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"paths": [
|
||||
{
|
||||
"_path": "bin/micromamba",
|
||||
"file_mode": "binary",
|
||||
"path_type": "hardlink",
|
||||
"prefix_placeholder": "/home/conda/feedstock_root/build_artifacts/micromamba_1692951636954/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_",
|
||||
"sha256": "2548753f04f1353ac46686245942223d81e51212a2aa0cfccdab2b251b019f27",
|
||||
"size_in_bytes": 13553856
|
||||
}
|
||||
],
|
||||
"paths_version": 1
|
||||
}
|
25
tools/micromamba-linux-64/info/recipe/CLI11_LICENSE.txt
Normal file
25
tools/micromamba-linux-64/info/recipe/CLI11_LICENSE.txt
Normal file
@ -0,0 +1,25 @@
|
||||
CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry
|
||||
Schreiner under NSF AWARD 1414736. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms of CLI11, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,19 @@
|
||||
Copyright (c) 2018, Steffen Schümann <s.schuemann@pobox.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
11
tools/micromamba-linux-64/info/recipe/CURL_LICENSE.txt
Normal file
11
tools/micromamba-linux-64/info/recipe/CURL_LICENSE.txt
Normal file
@ -0,0 +1,11 @@
|
||||
COPYRIGHT AND PERMISSION NOTICE
|
||||
|
||||
Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file.
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.
|
15
tools/micromamba-linux-64/info/recipe/C_ARES_LICENSE.txt
Normal file
15
tools/micromamba-linux-64/info/recipe/C_ARES_LICENSE.txt
Normal file
@ -0,0 +1,15 @@
|
||||
# c-ares license
|
||||
|
||||
Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS
|
||||
file.
|
||||
|
||||
Copyright 1998 by the Massachusetts Institute of Technology.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and its
|
||||
documentation for any purpose and without fee is hereby granted, provided that
|
||||
the above copyright notice appear in all copies and that both that copyright
|
||||
notice and this permission notice appear in supporting documentation, and that
|
||||
the name of M.I.T. not be used in advertising or publicity pertaining to
|
||||
distribution of the software without specific, written prior permission.
|
||||
M.I.T. makes no representations about the suitability of this software for any
|
||||
purpose. It is provided "as is" without express or implied warranty.
|
27
tools/micromamba-linux-64/info/recipe/FMT_LICENSE.txt
Normal file
27
tools/micromamba-linux-64/info/recipe/FMT_LICENSE.txt
Normal file
@ -0,0 +1,27 @@
|
||||
Copyright (c) 2012 - present, Victor Zverovich
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
--- Optional exception to the license ---
|
||||
|
||||
As an exception, if, as a result of your compiling your source code, portions
|
||||
of this Software are embedded into a machine-executable object form of such
|
||||
source code, you may redistribute such embedded portions in such object form
|
||||
without including the above copyright and permission notices.
|
1286
tools/micromamba-linux-64/info/recipe/KRB5_LICENSE.txt
Normal file
1286
tools/micromamba-linux-64/info/recipe/KRB5_LICENSE.txt
Normal file
File diff suppressed because it is too large
Load Diff
66
tools/micromamba-linux-64/info/recipe/LIBARCHIVE_LICENSE.txt
Normal file
66
tools/micromamba-linux-64/info/recipe/LIBARCHIVE_LICENSE.txt
Normal file
@ -0,0 +1,66 @@
|
||||
The libarchive distribution as a whole is Copyright by Tim Kientzle
|
||||
and is subject to the copyright notice reproduced at the bottom of
|
||||
this file.
|
||||
|
||||
Each individual file in this distribution should have a clear
|
||||
copyright/licensing statement at the beginning of the file. If any do
|
||||
not, please let me know and I will rectify it. The following is
|
||||
intended to summarize the copyright status of the individual files;
|
||||
the actual statements in the files are controlling.
|
||||
|
||||
* Except as listed below, all C sources (including .c and .h files)
|
||||
and documentation files are subject to the copyright notice reproduced
|
||||
at the bottom of this file.
|
||||
|
||||
* The following source files are also subject in whole or in part to
|
||||
a 3-clause UC Regents copyright; please read the individual source
|
||||
files for details:
|
||||
libarchive/archive_entry.c
|
||||
libarchive/archive_read_support_filter_compress.c
|
||||
libarchive/archive_write_add_filter_compress.c
|
||||
libarchive/mtree.5
|
||||
|
||||
* The following source files are in the public domain:
|
||||
libarchive/archive_getdate.c
|
||||
|
||||
* The following source files are triple-licensed with the ability to choose
|
||||
from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses:
|
||||
libarchive/archive_blake2.h
|
||||
libarchive/archive_blake2_impl.h
|
||||
libarchive/archive_blake2s_ref.c
|
||||
libarchive/archive_blake2sp_ref.c
|
||||
|
||||
* The build files---including Makefiles, configure scripts,
|
||||
and auxiliary scripts used as part of the compile process---have
|
||||
widely varying licensing terms. Please check individual files before
|
||||
distributing them to see if those restrictions apply to you.
|
||||
|
||||
I intend for all new source code to use the license below and hope over
|
||||
time to replace code with other licenses with new implementations that
|
||||
do use the license below. The varying licensing of the build scripts
|
||||
seems to be an unavoidable mess.
|
||||
|
||||
|
||||
Copyright (c) 2003-2018 <author(s)>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer
|
||||
in this position and unchanged.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
37
tools/micromamba-linux-64/info/recipe/LIBEV_LICENSE.txt
Normal file
37
tools/micromamba-linux-64/info/recipe/LIBEV_LICENSE.txt
Normal file
@ -0,0 +1,37 @@
|
||||
All files in libev are
|
||||
Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
Alternatively, the contents of this package may be used under the terms
|
||||
of the GNU General Public License ("GPL") version 2 or any later version,
|
||||
in which case the provisions of the GPL are applicable instead of the
|
||||
above. If you wish to allow the use of your version of this package only
|
||||
under the terms of the GPL and not to allow others to use your version of
|
||||
this file under the BSD license, indicate your decision by deleting the
|
||||
provisions above and replace them with the notice and other provisions
|
||||
required by the GPL in this and the other files of this package. If you do
|
||||
not delete the provisions above, a recipient may use your version of this
|
||||
file under either the BSD or the GPL.
|
24
tools/micromamba-linux-64/info/recipe/LIBLZ4_LICENSE.txt
Normal file
24
tools/micromamba-linux-64/info/recipe/LIBLZ4_LICENSE.txt
Normal file
@ -0,0 +1,24 @@
|
||||
LZ4 Library
|
||||
Copyright (c) 2011-2016, Yann Collet
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice, this
|
||||
list of conditions and the following disclaimer in the documentation and/or
|
||||
other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23
tools/micromamba-linux-64/info/recipe/LIBNGHTTP2_LICENSE.txt
Normal file
23
tools/micromamba-linux-64/info/recipe/LIBNGHTTP2_LICENSE.txt
Normal file
@ -0,0 +1,23 @@
|
||||
The MIT License
|
||||
|
||||
Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa
|
||||
Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
177
tools/micromamba-linux-64/info/recipe/LIBOPENSSL_3_LICENSE.txt
Normal file
177
tools/micromamba-linux-64/info/recipe/LIBOPENSSL_3_LICENSE.txt
Normal file
@ -0,0 +1,177 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
https://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
125
tools/micromamba-linux-64/info/recipe/LIBOPENSSL_LICENSE.txt
Normal file
125
tools/micromamba-linux-64/info/recipe/LIBOPENSSL_LICENSE.txt
Normal file
@ -0,0 +1,125 @@
|
||||
|
||||
LICENSE ISSUES
|
||||
==============
|
||||
|
||||
The OpenSSL toolkit stays under a double license, i.e. both the conditions of
|
||||
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
||||
See below for the actual license texts.
|
||||
|
||||
OpenSSL License
|
||||
---------------
|
||||
|
||||
/* ====================================================================
|
||||
* Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
*
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
* endorse or promote products derived from this software without
|
||||
* prior written permission. For written permission, please contact
|
||||
* openssl-core@openssl.org.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
* permission of the OpenSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
*/
|
||||
|
||||
Original SSLeay License
|
||||
-----------------------
|
||||
|
||||
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
||||
* All rights reserved.
|
||||
*
|
||||
* This package is an SSL implementation written
|
||||
* by Eric Young (eay@cryptsoft.com).
|
||||
* The implementation was written so as to conform with Netscapes SSL.
|
||||
*
|
||||
* This library is free for commercial and non-commercial use as long as
|
||||
* the following conditions are aheared to. The following conditions
|
||||
* apply to all code found in this distribution, be it the RC4, RSA,
|
||||
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||
* included with this distribution is covered by the same copyright terms
|
||||
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
* Copyright remains Eric Young's, and as such any Copyright notices in
|
||||
* the code are not to be removed.
|
||||
* If this package is used in a product, Eric Young should be given attribution
|
||||
* as the author of the parts of the library used.
|
||||
* This can be in the form of a textual message at program startup or
|
||||
* in documentation (online or textual) provided with the package.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* "This product includes cryptographic software written by
|
||||
* Eric Young (eay@cryptsoft.com)"
|
||||
* The word 'cryptographic' can be left out if the rouines from the library
|
||||
* being used are not cryptographic related :-).
|
||||
* 4. If you include any Windows specific code (or a derivative thereof) from
|
||||
* the apps directory (application code) you must include an acknowledgement:
|
||||
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* The licence and distribution terms for any publically available version or
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
* copied and put under another distribution licence
|
||||
* [including the GNU Public Licence.]
|
||||
*/
|
||||
|
28
tools/micromamba-linux-64/info/recipe/LIBSOLV_LICENSE.txt
Normal file
28
tools/micromamba-linux-64/info/recipe/LIBSOLV_LICENSE.txt
Normal file
@ -0,0 +1,28 @@
|
||||
Copyright (c) 2019, SUSE LLC
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of Novell nor the names of its contributors may
|
||||
be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
||||
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2013-2020 Niels Lohmann
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
21
tools/micromamba-linux-64/info/recipe/REPROC_LICENSE.txt
Normal file
21
tools/micromamba-linux-64/info/recipe/REPROC_LICENSE.txt
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Daan De Meyer
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
25
tools/micromamba-linux-64/info/recipe/SPDLOG_LICENSE.txt
Normal file
25
tools/micromamba-linux-64/info/recipe/SPDLOG_LICENSE.txt
Normal file
@ -0,0 +1,25 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Gabi Melman.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
-- NOTE: Third party dependency used by this software --
|
||||
This software depends on the fmt lib (MIT License),
|
||||
and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst
|
@ -0,0 +1,31 @@
|
||||
Copyright (c) 2013, Ihor Kalnytskyi.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms of the software as well
|
||||
as documentation, with or without modification, are permitted provided
|
||||
that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
* The names of the contributors may not be used to endorse or
|
||||
promote products derived from this software without specific
|
||||
prior written permission.
|
||||
|
||||
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
|
||||
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGE.
|
121
tools/micromamba-linux-64/info/recipe/TL_EXPECTED_LICENSE.txt
Normal file
121
tools/micromamba-linux-64/info/recipe/TL_EXPECTED_LICENSE.txt
Normal file
@ -0,0 +1,121 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
CC0 1.0 Universal
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
HEREUNDER.
|
||||
|
||||
Statement of Purpose
|
||||
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
||||
authorship and/or a database (each, a "Work").
|
||||
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without fear
|
||||
of later claims of infringement build upon, modify, incorporate in other
|
||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
||||
and for any purposes, including without limitation commercial purposes.
|
||||
These owners may contribute to the Commons to promote the ideal of a free
|
||||
culture and the further production of creative, cultural and scientific
|
||||
works, or to gain reputation or greater distribution for their Work in
|
||||
part through the use and efforts of others.
|
||||
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
||||
Work and the meaning and intended legal effect of CC0 on those rights.
|
||||
|
||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
||||
protected by copyright and related or neighboring rights ("Copyright and
|
||||
Related Rights"). Copyright and Related Rights include, but are not
|
||||
limited to, the following:
|
||||
|
||||
i. the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work;
|
||||
ii. moral rights retained by the original author(s) and/or performer(s);
|
||||
iii. publicity and privacy rights pertaining to a person's image or
|
||||
likeness depicted in a Work;
|
||||
iv. rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;
|
||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
||||
in a Work;
|
||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
||||
European Parliament and of the Council of 11 March 1996 on the legal
|
||||
protection of databases, and under any national implementation
|
||||
thereof, including any amended or successor version of such
|
||||
directive); and
|
||||
vii. other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof.
|
||||
|
||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
||||
of action, whether now known or unknown (including existing as well as
|
||||
future claims and causes of action), in the Work (i) in all territories
|
||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
||||
treaty (including future time extensions), (iii) in any current or future
|
||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
||||
including without limitation commercial, advertising or promotional
|
||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
||||
member of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal or
|
||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
||||
as contemplated by Affirmer's express Statement of Purpose.
|
||||
|
||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
||||
be judged legally invalid or ineffective under applicable law, then the
|
||||
Waiver shall be preserved to the maximum extent permitted taking into
|
||||
account Affirmer's express Statement of Purpose. In addition, to the
|
||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
||||
maximum duration provided by applicable law or treaty (including future
|
||||
time extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"License"). The License shall be deemed effective as of the date CC0 was
|
||||
applied by Affirmer to the Work. Should any part of the License for any
|
||||
reason be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
||||
of the License, and in such case Affirmer hereby affirms that he or she
|
||||
will not (i) exercise any of his or her remaining Copyright and Related
|
||||
Rights in the Work or (ii) assert any associated claims and causes of
|
||||
action with respect to the Work, in either case contrary to Affirmer's
|
||||
express Statement of Purpose.
|
||||
|
||||
4. Limitations and Disclaimers.
|
||||
|
||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
||||
surrendered, licensed or otherwise affected by this document.
|
||||
b. Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy, or
|
||||
the present or absence of errors, whether or not discoverable, all to
|
||||
the greatest extent permissible under applicable law.
|
||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
||||
that may apply to the Work or any use thereof, including without
|
||||
limitation any person's Copyright and Related Rights in the Work.
|
||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
||||
consents, permissions or other rights required for any use of the
|
||||
Work.
|
||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
||||
party to this document and has no duty or obligation with respect to
|
||||
this CC0 or use of the Work.
|
30
tools/micromamba-linux-64/info/recipe/ZSTD_LICENSE.txt
Normal file
30
tools/micromamba-linux-64/info/recipe/ZSTD_LICENSE.txt
Normal file
@ -0,0 +1,30 @@
|
||||
BSD License
|
||||
|
||||
For Zstandard software
|
||||
|
||||
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* Neither the name Facebook nor the names of its contributors may be used to
|
||||
endorse or promote products derived from this software without specific
|
||||
prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
41
tools/micromamba-linux-64/info/recipe/bld.bat
Normal file
41
tools/micromamba-linux-64/info/recipe/bld.bat
Normal file
@ -0,0 +1,41 @@
|
||||
SET VCPKG_ROOT=%CD%\vcpkg
|
||||
|
||||
SET VCPKG_BUILD_TYPE=release
|
||||
vcpkg install --overlay-ports=%RECIPE_DIR%\libsolv libsolv[conda] --triplet x64-windows-static
|
||||
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
vcpkg install "libarchive[bzip2,lz4,lzma,lzo,openssl,zstd]" --triplet x64-windows-static
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
vcpkg install curl --triplet x64-windows-static
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
vcpkg install yaml-cpp --triplet x64-windows-static
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
vcpkg install reproc --triplet x64-windows-static
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
|
||||
SET "CXXFLAGS=%CXXFLAGS% /showIncludes"
|
||||
SET CMAKE_PREFIX_PATH=%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH%
|
||||
|
||||
cmake -S mamba ^
|
||||
-B build ^
|
||||
-D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
|
||||
-D CMAKE_PREFIX_PATH="%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH%" ^
|
||||
-D CMAKE_BUILD_TYPE="Release" ^
|
||||
-D BUILD_LIBMAMBA=ON ^
|
||||
-D BUILD_STATIC=ON ^
|
||||
-D BUILD_MICROMAMBA=ON ^
|
||||
-G "Ninja"
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
|
||||
cmake --build build --parallel %CPU_COUNT%
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
|
||||
cmake --install build
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
|
||||
DEL /Q /F /S "%LIBRARY_PREFIX%\lib\libmamba*"
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
RMDIR /S /Q "%LIBRARY_PREFIX%\include\mamba"
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
||||
RMDIR /S /Q "%LIBRARY_PREFIX%\lib\cmake\libmamba"
|
||||
if %errorlevel% NEQ 0 exit /b %errorlevel%
|
35
tools/micromamba-linux-64/info/recipe/build.sh
Normal file
35
tools/micromamba-linux-64/info/recipe/build.sh
Normal file
@ -0,0 +1,35 @@
|
||||
set -euxo pipefail
|
||||
|
||||
# Conda's binary relocation can result in string changing which can result in errors like
|
||||
# > warning: command substitution: ignored null byte in input
|
||||
# https://github.com/mamba-org/mamba/issues/1517
|
||||
export CXXFLAGS="${CXXFLAGS} -fno-merge-constants"
|
||||
export CFLAGS="${CFLAGS} -fno-merge-constants"
|
||||
export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY=1"
|
||||
|
||||
cmake -S mamba/ \
|
||||
-B build/ \
|
||||
-G Ninja \
|
||||
${CMAKE_ARGS} \
|
||||
-D CMAKE_INSTALL_PREFIX=${PREFIX} \
|
||||
-D CMAKE_BUILD_TYPE="Release" \
|
||||
-D BUILD_LIBMAMBA=ON \
|
||||
-D BUILD_STATIC=ON \
|
||||
-D BUILD_MICROMAMBA=ON
|
||||
cmake --build build/ --parallel ${CPU_COUNT}
|
||||
cmake --install build/
|
||||
|
||||
# remove everything related to `libmamba`
|
||||
rm -rf "${PREFIX}/lib/libmamba"*
|
||||
rm -rf "${PREFIX}/include/mamba"
|
||||
rm -rf "${PREFIX}/lib/cmake/libmamba"
|
||||
|
||||
"${STRIP:-strip}" "${PREFIX}/bin/micromamba"
|
||||
|
||||
if [[ "$target_platform" == "osx-"* ]]; then
|
||||
OTOOL_OUTPUT=$("${OTOOL:-otool}" -L "${PREFIX}/bin/micromamba")
|
||||
if [[ "$OTOOL_OUTPUT" == *libc++.1.dylib* ]]; then
|
||||
echo "micromamba is linked to libc++.1.dlyb"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
@ -0,0 +1,41 @@
|
||||
CI: azure
|
||||
c_compiler: gcc
|
||||
c_compiler_version: '12'
|
||||
cdt_name: cos6
|
||||
channel_sources: conda-forge
|
||||
channel_targets: conda-forge main
|
||||
cpu_optimization_target: nocona
|
||||
cran_mirror: https://cran.r-project.org
|
||||
cxx_compiler: gxx
|
||||
cxx_compiler_version: '12'
|
||||
docker_image: quay.io/condaforge/linux-anvil-cos7-x86_64
|
||||
extend_keys:
|
||||
- ignore_build_only_deps
|
||||
- pin_run_as_build
|
||||
- ignore_version
|
||||
- extend_keys
|
||||
fmt: '10'
|
||||
fortran_compiler: gfortran
|
||||
ignore_build_only_deps:
|
||||
- numpy
|
||||
- python
|
||||
libcurl: '8'
|
||||
lua: '5'
|
||||
numpy: '1.22'
|
||||
openssl: '3'
|
||||
perl: 5.26.2
|
||||
pin_run_as_build:
|
||||
python:
|
||||
min_pin: x.x
|
||||
max_pin: x.x
|
||||
r-base:
|
||||
min_pin: x.x
|
||||
max_pin: x.x
|
||||
python: '3.10'
|
||||
r_base: '3.5'
|
||||
spdlog: '1.12'
|
||||
target_platform: linux-64
|
||||
zip_keys:
|
||||
- - c_compiler_version
|
||||
- cxx_compiler_version
|
||||
zlib: '1.2'
|
9
tools/micromamba-linux-64/info/recipe/libsolv/CONTROL
Normal file
9
tools/micromamba-linux-64/info/recipe/libsolv/CONTROL
Normal file
@ -0,0 +1,9 @@
|
||||
Source: libsolv
|
||||
Version: 0.7.23
|
||||
Description: Library for solving packages and reading repositories
|
||||
Homepage: https://github.com/openSUSE/libsolv
|
||||
Default-Features: conda
|
||||
Supports: !uwp
|
||||
|
||||
Feature: conda
|
||||
Description: Conda support
|
@ -0,0 +1,438 @@
|
||||
diff --git a/src/conda.c b/src/conda.c
|
||||
index 21ad6bfb..408a236a 100644
|
||||
--- a/src/conda.c
|
||||
+++ b/src/conda.c
|
||||
@@ -134,7 +134,7 @@ solv_vercmp_conda(const char *s1, const char *q1, const char *s2, const char *q2
|
||||
return -1;
|
||||
if (s1p - s1 > s2p - s2)
|
||||
return 1;
|
||||
- r = s1p - s1 ? strncmp(s1, s2, s1p - s1) : 0;
|
||||
+ r = (s1p - s1) ? strncmp(s1, s2, s1p - s1) : 0;
|
||||
if (r)
|
||||
return r;
|
||||
}
|
||||
diff --git a/src/policy.c b/src/policy.c
|
||||
index c02d2373..d6354cd2 100644
|
||||
--- a/src/policy.c
|
||||
+++ b/src/policy.c
|
||||
@@ -833,6 +833,79 @@ move_installed_to_front(Pool *pool, Queue *plist)
|
||||
}
|
||||
}
|
||||
|
||||
+/*
|
||||
+ * prune_to_best_version
|
||||
+ *
|
||||
+ * sort list of packages (given through plist) by name and evr
|
||||
+ * return result through plist
|
||||
+ */
|
||||
+void
|
||||
+prune_to_best_version(Pool *pool, Queue *plist)
|
||||
+{
|
||||
+#ifdef ENABLE_CONDA
|
||||
+ if (pool->disttype == DISTTYPE_CONDA)
|
||||
+ return prune_to_best_version_conda(pool, plist);
|
||||
+#endif
|
||||
+
|
||||
+ int i, j, r;
|
||||
+ Solvable *s, *best;
|
||||
+
|
||||
+ if (plist->count < 2) /* no need to prune for a single entry */
|
||||
+ return;
|
||||
+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count);
|
||||
+
|
||||
+ /* sort by name first, prefer installed */
|
||||
+ solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool);
|
||||
+
|
||||
+ /* now find best 'per name' */
|
||||
+ best = 0;
|
||||
+ for (i = j = 0; i < plist->count; i++)
|
||||
+ {
|
||||
+ s = pool->solvables + plist->elements[i];
|
||||
+
|
||||
+ POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n",
|
||||
+ pool_solvable2str(pool, s), plist->elements[i],
|
||||
+ (pool->installed && s->repo == pool->installed) ? "I" : "");
|
||||
+
|
||||
+ if (!best) /* if no best yet, the current is best */
|
||||
+ {
|
||||
+ best = s;
|
||||
+ continue;
|
||||
+ }
|
||||
+
|
||||
+ /* name switch: finish group, re-init */
|
||||
+ if (best->name != s->name) /* new name */
|
||||
+ {
|
||||
+ plist->elements[j++] = best - pool->solvables; /* move old best to front */
|
||||
+ best = s; /* take current as new best */
|
||||
+ continue;
|
||||
+ }
|
||||
+
|
||||
+ r = 0;
|
||||
+ if (r == 0)
|
||||
+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0;
|
||||
+#ifdef ENABLE_LINKED_PKGS
|
||||
+ if (r == 0 && has_package_link(pool, s))
|
||||
+ r = pool_link_evrcmp(pool, best, s);
|
||||
+#endif
|
||||
+ if (r < 0)
|
||||
+ best = s;
|
||||
+ }
|
||||
+
|
||||
+ plist->elements[j++] = best - pool->solvables; /* finish last group */
|
||||
+ plist->count = j;
|
||||
+
|
||||
+ /* we reduced the list to one package per name, now look at
|
||||
+ * package obsoletes */
|
||||
+ if (plist->count > 1)
|
||||
+ {
|
||||
+ if (plist->count == 2)
|
||||
+ prune_obsoleted_2(pool, plist);
|
||||
+ else
|
||||
+ prune_obsoleted(pool, plist);
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
#ifdef ENABLE_CONDA
|
||||
static int
|
||||
pool_featurecountcmp(Pool *pool, Solvable *s1, Solvable *s2)
|
||||
@@ -863,23 +936,221 @@ pool_buildflavorcmp(Pool *pool, Solvable *s1, Solvable *s2)
|
||||
return 0;
|
||||
return pool_evrcmp_str(pool, f1 ? f1 : "" , f2 ? f2 : "", EVRCMP_COMPARE);
|
||||
}
|
||||
-#endif
|
||||
+
|
||||
+void intersect_selection(Pool* pool, Id dep, Queue* prev)
|
||||
+{
|
||||
+ Queue tmp;
|
||||
+ int i = 0, j = 0, isectidx = 0;
|
||||
+
|
||||
+ queue_init(&tmp);
|
||||
+
|
||||
+ Id* pp, p;
|
||||
+ pp = pool_whatprovides_ptr(pool, dep);
|
||||
+ while ((p = *pp++) != 0)
|
||||
+ queue_push(&tmp, p);
|
||||
+
|
||||
+ // set intersection, assuming sorted arrays
|
||||
+ while (i < prev->count && j < tmp.count)
|
||||
+ if (prev->elements[i] < tmp.elements[j])
|
||||
+ i++;
|
||||
+ else if (tmp.elements[j] < prev->elements[i])
|
||||
+ j++;
|
||||
+ else
|
||||
+ {
|
||||
+ if (isectidx != i)
|
||||
+ prev->elements[isectidx] = prev->elements[i];
|
||||
+ i++, j++, isectidx++;
|
||||
+ }
|
||||
+
|
||||
+ prev->count = isectidx;
|
||||
+ queue_free(&tmp);
|
||||
+}
|
||||
+
|
||||
+int check_deps_unequal(Pool* pool, Queue* q1, Queue* q2, Id name)
|
||||
+{
|
||||
+ Id dep;
|
||||
+ int i, j;
|
||||
+ int found = 0;
|
||||
+ for (i = 0; i < q1->count; ++i)
|
||||
+ {
|
||||
+ dep = q1->elements[i];
|
||||
+ if (ISRELDEP(dep) && GETRELDEP(pool, dep)->name == name)
|
||||
+ {
|
||||
+ for (j = 0; j < q2->count; ++j)
|
||||
+ {
|
||||
+ if (q2->elements[j] == dep)
|
||||
+ {
|
||||
+ found = 1;
|
||||
+ break;
|
||||
+ }
|
||||
+ }
|
||||
+ if (!found)
|
||||
+ return 1;
|
||||
+
|
||||
+ found = 0;
|
||||
+ }
|
||||
+ }
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+Id best_matching(Pool* pool, Queue* q, Id name, int* all_have_trackfeatures)
|
||||
+{
|
||||
+ int first = 1;
|
||||
+ Id dep, p, *pp;
|
||||
+
|
||||
+ Queue selection;
|
||||
+ queue_init(&selection);
|
||||
+
|
||||
+ for (int i = 0; i < q->count; ++i)
|
||||
+ {
|
||||
+ dep = q->elements[i];
|
||||
+ if (!ISRELDEP(dep) || GETRELDEP(pool, dep)->name != name) continue;
|
||||
+
|
||||
+ if (first)
|
||||
+ {
|
||||
+ pp = pool_whatprovides_ptr(pool, dep);
|
||||
+ while ((p = *pp++) != 0)
|
||||
+ queue_push(&selection, p);
|
||||
+ first = 0;
|
||||
+ }
|
||||
+ else
|
||||
+ intersect_selection(pool, dep, &selection);
|
||||
+ }
|
||||
+
|
||||
+ if (selection.count == 0)
|
||||
+ return 0;
|
||||
+
|
||||
+ Solvable *stmp, *best = pool_id2solvable(pool, selection.elements[0]);
|
||||
+ int cmp;
|
||||
+
|
||||
+ *all_have_trackfeatures = 1;
|
||||
+ for (int i = 0; i < selection.count; ++i)
|
||||
+ if (solvable_lookup_count(pool_id2solvable(pool, selection.elements[i]),
|
||||
+ SOLVABLE_TRACK_FEATURES) == 0)
|
||||
+ {
|
||||
+ *all_have_trackfeatures = 0;
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ for (int i = 0; i < selection.count; ++i)
|
||||
+ {
|
||||
+ stmp = pool_id2solvable(pool, selection.elements[i]);
|
||||
+ cmp = pool_evrcmp(pool, best->evr, stmp->evr, 0);
|
||||
+ if (cmp < 0) best = stmp;
|
||||
+ }
|
||||
+
|
||||
+ return best->evr;
|
||||
+}
|
||||
+
|
||||
+int conda_compare_dependencies(Pool *pool, Solvable *s1, Solvable *s2)
|
||||
+{
|
||||
+ int i, j, has_seen;
|
||||
+ Queue q1, q2, seen;
|
||||
+
|
||||
+ queue_init(&q1);
|
||||
+ queue_init(&q2);
|
||||
+ queue_init(&seen);
|
||||
+
|
||||
+ solvable_lookup_deparray(s1, SOLVABLE_REQUIRES, &q1, -1);
|
||||
+ solvable_lookup_deparray(s2, SOLVABLE_REQUIRES, &q2, -1);
|
||||
+
|
||||
+ int comparison_result = 0;
|
||||
+
|
||||
+ for (i = 0; i < q1.count; ++i)
|
||||
+ {
|
||||
+ Id x1 = q1.elements[i];
|
||||
+ has_seen = 0;
|
||||
+
|
||||
+ if (!ISRELDEP(x1))
|
||||
+ continue;
|
||||
+
|
||||
+ Reldep* rd1 = GETRELDEP(pool, x1);
|
||||
+ for (j = 0; j < seen.count && has_seen == 0; ++j)
|
||||
+ if (seen.elements[j] == rd1->name)
|
||||
+ has_seen = 1;
|
||||
+
|
||||
+ if (has_seen)
|
||||
+ continue;
|
||||
+
|
||||
+ // first make sure that deps are different between a & b
|
||||
+ int deps_unequal = check_deps_unequal(pool, &q1, &q2, rd1->name);
|
||||
+ if (!deps_unequal)
|
||||
+ {
|
||||
+ queue_push(&seen, rd1->name);
|
||||
+ continue;
|
||||
+ }
|
||||
+
|
||||
+ int aht_1, aht_2; // all have track features check
|
||||
+ Id b1 = best_matching(pool, &q1, rd1->name, &aht_1);
|
||||
+ Id b2 = best_matching(pool, &q2, rd1->name, &aht_2);
|
||||
+
|
||||
+ // one of both or both is not solvable...
|
||||
+ // ignoring this case for now
|
||||
+ if (b1 == 0 || b2 == 0)
|
||||
+ continue;
|
||||
+
|
||||
+ // if one has deps with track features, and the other does not,
|
||||
+ // downweight the one with track features
|
||||
+ if (aht_1 != aht_2)
|
||||
+ comparison_result += (aht_1 - aht_2) * 100;
|
||||
+
|
||||
+ comparison_result += pool_evrcmp(pool, b2, b1, 0);
|
||||
+ }
|
||||
+
|
||||
+ queue_free(&q1);
|
||||
+ queue_free(&q2);
|
||||
+ queue_free(&seen);
|
||||
+
|
||||
+ return comparison_result;
|
||||
+}
|
||||
+
|
||||
+static int
|
||||
+sort_by_best_dependencies(const void *ap, const void *bp, void *dp)
|
||||
+{
|
||||
+ Pool* pool = (Pool*) dp;
|
||||
+
|
||||
+ Id a = *(Id *)ap;
|
||||
+ Id b = *(Id *)bp;
|
||||
+ Solvable *sa, *sb;
|
||||
+
|
||||
+ sa = pool->solvables + a;
|
||||
+ sb = pool->solvables + b;
|
||||
+
|
||||
+ int res = conda_compare_dependencies(pool, sa, sb);
|
||||
+ if (res == 0)
|
||||
+ {
|
||||
+ // no differences, select later build
|
||||
+ Repodata* ra = repo_last_repodata(sa->repo);
|
||||
+ Repodata* rb = repo_last_repodata(sb->repo);
|
||||
+
|
||||
+ unsigned long long bta = repodata_lookup_num(ra, a, SOLVABLE_BUILDTIME, 0ull);
|
||||
+ unsigned long long btb = repodata_lookup_num(rb, b, SOLVABLE_BUILDTIME, 0ull);
|
||||
+
|
||||
+ res = (btb > bta) ? 1 : -1;
|
||||
+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Fallback to timestamp comparison: %llu vs %llu: [%d]\n", bta, btb, res);
|
||||
+ }
|
||||
+
|
||||
+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Selecting variant [%c] of (a) %s vs (b) %s (score: %d)\n",
|
||||
+ (res < 0 ? 'a' : 'b'), pool_solvable2str(pool, sa), pool_solvable2str(pool, sb), res);
|
||||
+
|
||||
+ return res;
|
||||
+}
|
||||
|
||||
/*
|
||||
- * prune_to_best_version
|
||||
+ * prune_to_best_version_conda
|
||||
*
|
||||
* sort list of packages (given through plist) by name and evr
|
||||
* return result through plist
|
||||
*/
|
||||
void
|
||||
-prune_to_best_version(Pool *pool, Queue *plist)
|
||||
+prune_to_best_version_conda(Pool *pool, Queue *plist)
|
||||
{
|
||||
int i, j, r;
|
||||
Solvable *s, *best;
|
||||
|
||||
- if (plist->count < 2) /* no need to prune for a single entry */
|
||||
+ if (plist->count < 2) /* no need to prune for a single entry */
|
||||
return;
|
||||
- POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count);
|
||||
+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version_conda %d\n", plist->count);
|
||||
|
||||
/* sort by name first, prefer installed */
|
||||
solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool);
|
||||
@@ -891,10 +1162,10 @@ prune_to_best_version(Pool *pool, Queue *plist)
|
||||
s = pool->solvables + plist->elements[i];
|
||||
|
||||
POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n",
|
||||
- pool_solvable2str(pool, s), plist->elements[i],
|
||||
- (pool->installed && s->repo == pool->installed) ? "I" : "");
|
||||
+ pool_solvable2str(pool, s), plist->elements[i],
|
||||
+ (pool->installed && s->repo == pool->installed) ? "I" : "");
|
||||
|
||||
- if (!best) /* if no best yet, the current is best */
|
||||
+ if (!best) /* if no best yet, the current is best */
|
||||
{
|
||||
best = s;
|
||||
continue;
|
||||
@@ -904,49 +1175,54 @@ prune_to_best_version(Pool *pool, Queue *plist)
|
||||
if (best->name != s->name) /* new name */
|
||||
{
|
||||
plist->elements[j++] = best - pool->solvables; /* move old best to front */
|
||||
- best = s; /* take current as new best */
|
||||
+ best = s; /* take current as new best */
|
||||
continue;
|
||||
}
|
||||
|
||||
r = 0;
|
||||
-#ifdef ENABLE_CONDA
|
||||
- if (pool->disttype == DISTTYPE_CONDA)
|
||||
- r = pool_featurecountcmp(pool, best, s);
|
||||
-#endif
|
||||
+ r = pool_featurecountcmp(pool, best, s);
|
||||
if (r == 0)
|
||||
r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0;
|
||||
-#ifdef ENABLE_LINKED_PKGS
|
||||
- if (r == 0 && has_package_link(pool, s))
|
||||
- r = pool_link_evrcmp(pool, best, s);
|
||||
-#endif
|
||||
-#ifdef ENABLE_CONDA
|
||||
- if (pool->disttype == DISTTYPE_CONDA)
|
||||
- {
|
||||
- if (r == 0)
|
||||
- r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0);
|
||||
- if (r == 0)
|
||||
- r = pool_buildversioncmp(pool, best, s);
|
||||
- if (r == 0)
|
||||
- r = pool_buildflavorcmp(pool, best, s);
|
||||
- }
|
||||
-#endif
|
||||
+ if (r == 0)
|
||||
+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0);
|
||||
+ if (r == 0)
|
||||
+ r = pool_buildversioncmp(pool, best, s);
|
||||
+ // this can be removed as this comparison doesn't effect anything
|
||||
+ if (r == 0)
|
||||
+ r = pool_buildflavorcmp(pool, best, s);
|
||||
if (r < 0)
|
||||
- best = s;
|
||||
+ best = s;
|
||||
}
|
||||
- plist->elements[j++] = best - pool->solvables; /* finish last group */
|
||||
- plist->count = j;
|
||||
|
||||
- /* we reduced the list to one package per name, now look at
|
||||
- * package obsoletes */
|
||||
- if (plist->count > 1)
|
||||
+ Queue q;
|
||||
+ queue_init(&q);
|
||||
+ for (i = 0; i < plist->count; i++)
|
||||
{
|
||||
- if (plist->count == 2)
|
||||
- prune_obsoleted_2(pool, plist);
|
||||
- else
|
||||
- prune_obsoleted(pool, plist);
|
||||
+ s = pool->solvables + plist->elements[i];
|
||||
+ r = pool_featurecountcmp(pool, best, s);
|
||||
+ if (r == 0)
|
||||
+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0;
|
||||
+ if (r == 0)
|
||||
+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0);
|
||||
+ if (r == 0)
|
||||
+ r = pool_buildversioncmp(pool, best, s);
|
||||
+ if (r == 0)
|
||||
+ queue_push(&q, s - pool->solvables);
|
||||
}
|
||||
-}
|
||||
|
||||
+ if (q.count > 1)
|
||||
+ {
|
||||
+ // order by first-level deps
|
||||
+ solv_sort(q.elements, q.count, sizeof(Id), sort_by_best_dependencies, pool);
|
||||
+ }
|
||||
+
|
||||
+ for (i = 0; i < q.count; ++i)
|
||||
+ plist->elements[i] = q.elements[i];
|
||||
+ plist->count = q.count;
|
||||
+
|
||||
+ queue_free(&q);
|
||||
+}
|
||||
+#endif // ENABLE_CONDA
|
||||
|
||||
static int
|
||||
sort_by_name_evr_sortcmp(const void *ap, const void *bp, void *dp)
|
||||
diff --git a/src/policy.h b/src/policy.h
|
||||
index 3ae1005a..a79483a4 100644
|
||||
--- a/src/policy.h
|
||||
+++ b/src/policy.h
|
||||
@@ -45,6 +45,9 @@ extern void pool_best_solvables(Pool *pool, Queue *plist, int flags);
|
||||
extern void prune_to_best_version(Pool *pool, Queue *plist);
|
||||
extern void policy_prefer_favored(Solver *solv, Queue *plist);
|
||||
|
||||
+#ifdef ENABLE_CONDA
|
||||
+extern void prune_to_best_version_conda(Pool *pool, Queue *plist);
|
||||
+#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
55
tools/micromamba-linux-64/info/recipe/libsolv/portfile.cmake
Normal file
55
tools/micromamba-linux-64/info/recipe/libsolv/portfile.cmake
Normal file
@ -0,0 +1,55 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO openSUSE/libsolv
|
||||
REF 0.7.24
|
||||
SHA512 a0975d3f80ae8c364d5b32df4c26bc7eb5abb3be81259595848f1f5f74b00e708af3153074041d49383547718e68cee2e82cf4bdeab6221dfdcc605812689d37
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
win_export_and_static_build.patch
|
||||
conda_variant_priorization.patch
|
||||
)
|
||||
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_DYNAMIC_LIBS)
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC_LIBS)
|
||||
|
||||
if (NOT BUILD_DYNAMIC_LIBS)
|
||||
set(DISABLE_SHARED ON)
|
||||
else()
|
||||
set(DISABLE_SHARED OFF)
|
||||
endif()
|
||||
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
conda ENABLE_CONDA
|
||||
)
|
||||
|
||||
if(WIN32)
|
||||
list(APPEND FEATURE_OPTIONS "-DWITHOUT_COOKIEOPEN=ON")
|
||||
endif()
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
OPTIONS
|
||||
${FEATURE_OPTIONS}
|
||||
-DDISABLE_SHARED=${DISABLE_SHARED}
|
||||
-DENABLE_STATIC=${BUILD_STATIC_LIBS}
|
||||
-DMULTI_SEMANTICS=ON
|
||||
-DBUILD_EXAMPLE_PROGRAMS=OFF
|
||||
..
|
||||
)
|
||||
|
||||
|
||||
vcpkg_install_cmake()
|
||||
# vcpkg_fixup_cmake_targets()
|
||||
# vcpkg_copy_pdbs()
|
||||
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
||||
endif()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE.BSD DESTINATION ${CURRENT_PACKAGES_DIR}/share/libsolv RENAME copyright)
|
||||
|
||||
vcpkg_test_cmake(PACKAGE_NAME libsolv)
|
@ -0,0 +1,13 @@
|
||||
diff --git a/src/repo_write.c b/src/repo_write.c
|
||||
index a73eebff..9e0622e3 100644
|
||||
--- a/src/repo_write.c
|
||||
+++ b/src/repo_write.c
|
||||
@@ -188,7 +188,7 @@ write_compressed_blob(Repodata *data, void *blob, int len)
|
||||
write_u8(data, clen);
|
||||
write_blob(data, cpage, clen);
|
||||
}
|
||||
- blob += chunk;
|
||||
+ blob = (char*) blob + chunk;
|
||||
len -= chunk;
|
||||
}
|
||||
}
|
157
tools/micromamba-linux-64/info/recipe/meta.yaml
Normal file
157
tools/micromamba-linux-64/info/recipe/meta.yaml
Normal file
@ -0,0 +1,157 @@
|
||||
# This file created by conda-build 3.25.0
|
||||
# meta.yaml template originally from:
|
||||
# /home/conda/recipe_root, last modified Fri Aug 25 08:19:14 2023
|
||||
# ------------------------------------------------
|
||||
|
||||
package:
|
||||
name: micromamba
|
||||
version: 1.5.0
|
||||
source:
|
||||
- folder: mamba
|
||||
sha256: 0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17
|
||||
url: https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-1.5.0.tar.gz
|
||||
build:
|
||||
ignore_run_exports_from:
|
||||
- fmt
|
||||
- gcc_linux-64 12.*
|
||||
- gxx_linux-64 12.*
|
||||
- libarchive-minimal-static
|
||||
- libcurl
|
||||
- openssl
|
||||
- reproc-cpp
|
||||
- spdlog
|
||||
number: '1'
|
||||
string: '1'
|
||||
requirements:
|
||||
build:
|
||||
- _libgcc_mutex 0.1 conda_forge
|
||||
- _openmp_mutex 4.5 2_gnu
|
||||
- binutils_impl_linux-64 2.40 hf600244_0
|
||||
- binutils_linux-64 2.40 hbdbef99_1
|
||||
- bzip2 1.0.8 h7f98852_4
|
||||
- c-ares 1.19.1 hd590300_0
|
||||
- ca-certificates 2023.7.22 hbcca054_0
|
||||
- cmake 3.26.4 hcfe8598_0
|
||||
- expat 2.5.0 hcb278e6_1
|
||||
- gcc_impl_linux-64 12.3.0 he2b93b0_0
|
||||
- gcc_linux-64 12.3.0 h76fc315_1
|
||||
- gxx_impl_linux-64 12.3.0 he2b93b0_0
|
||||
- gxx_linux-64 12.3.0 h8a814eb_1
|
||||
- kernel-headers_linux-64 2.6.32 he073ed8_16
|
||||
- keyutils 1.6.1 h166bdaf_0
|
||||
- krb5 1.21.2 h659d440_0
|
||||
- ld_impl_linux-64 2.40 h41732ed_0
|
||||
- libcurl 8.2.1 hca28451_0
|
||||
- libedit 3.1.20191231 he28a2e2_2
|
||||
- libev 4.33 h516909a_1
|
||||
- libexpat 2.5.0 hcb278e6_1
|
||||
- libgcc-devel_linux-64 12.3.0 h8bca6fd_0
|
||||
- libgcc-ng 13.1.0 he5830b7_0
|
||||
- libgomp 13.1.0 he5830b7_0
|
||||
- libnghttp2 1.52.0 h61bc06f_0
|
||||
- libsanitizer 12.3.0 h0f45ef3_0
|
||||
- libssh2 1.11.0 h0841786_0
|
||||
- libstdcxx-devel_linux-64 12.3.0 h8bca6fd_0
|
||||
- libstdcxx-ng 13.1.0 hfd8a6a1_0
|
||||
- libuv 1.44.2 hd590300_1
|
||||
- libzlib 1.2.13 hd590300_5
|
||||
- ncurses 6.4 hcb278e6_0
|
||||
- ninja 1.11.1 h924138e_0
|
||||
- openssl 3.1.2 hd590300_0
|
||||
- rhash 1.4.3 hd590300_1
|
||||
- sysroot_linux-64 2.12 he073ed8_16
|
||||
- xz 5.2.6 h166bdaf_0
|
||||
- zlib 1.2.13 hd590300_5
|
||||
- zstd 1.5.2 hfc55251_7
|
||||
host:
|
||||
- _libgcc_mutex 0.1 conda_forge
|
||||
- _openmp_mutex 4.5 2_gnu
|
||||
- bzip2 1.0.8 h7f98852_4
|
||||
- c-ares 1.19.1 hd590300_0
|
||||
- c-ares-static 1.19.1 hd590300_0
|
||||
- ca-certificates 2023.7.22 hbcca054_0
|
||||
- cli11 2.3.2 hcb278e6_0
|
||||
- cpp-expected 1.1.0 hf52228f_0
|
||||
- fmt 10.1.0 h00ab1b0_0
|
||||
- keyutils 1.6.1 h166bdaf_0
|
||||
- krb5 1.20.1 h81ceb04_0
|
||||
- krb5-static 1.20.1 h81ceb04_0
|
||||
- libarchive-minimal-static 3.6.2 h2b6973b_1
|
||||
- libcurl 7.88.1 hdc1c0ab_1
|
||||
- libcurl-static 7.88.1 hdc1c0ab_1
|
||||
- libedit 3.1.20191231 he28a2e2_2
|
||||
- libev 4.33 h516909a_1
|
||||
- libev-static 4.33 h516909a_1
|
||||
- libgcc-ng 13.1.0 he5830b7_0
|
||||
- libgomp 13.1.0 he5830b7_0
|
||||
- libnghttp2 1.52.0 h61bc06f_0
|
||||
- libnghttp2-static 1.52.0 h9cb18e5_0
|
||||
- libopenssl-static 3.1.2 hd590300_0
|
||||
- libsolv 0.7.24 hfc55251_3
|
||||
- libsolv-static 0.7.24 hfc55251_3
|
||||
- libssh2 1.11.0 h0841786_0
|
||||
- libssh2-static 1.11.0 h0841786_0
|
||||
- libstdcxx-ng 13.1.0 hfd8a6a1_0
|
||||
- libzlib 1.2.13 hd590300_5
|
||||
- lz4-c-static 1.9.4 ha770c72_0
|
||||
- ncurses 6.4 hcb278e6_0
|
||||
- nlohmann_json 3.11.2 h27087fc_0
|
||||
- openssl 3.1.2 hd590300_0
|
||||
- reproc 14.2.4 h0b41bf4_0
|
||||
- reproc-cpp 14.2.4 hcb278e6_0
|
||||
- reproc-cpp-static 14.2.4 hcb278e6_0
|
||||
- reproc-static 14.2.4 h0b41bf4_0
|
||||
- spdlog 1.12.0 hd2e6256_1
|
||||
- xz 5.2.6 h166bdaf_0
|
||||
- xz-static 5.2.6 h166bdaf_0
|
||||
- yaml-cpp 0.7.0 h27087fc_2
|
||||
- yaml-cpp-static 0.7.0 h27087fc_2
|
||||
- zlib 1.2.13 hd590300_5
|
||||
- zstd 1.5.2 hfc55251_7
|
||||
- zstd-static 1.5.2 h59595ed_7
|
||||
run:
|
||||
- libzlib >=1.2.13,<1.3.0a0
|
||||
test:
|
||||
commands:
|
||||
- test -f "${PREFIX}/bin/micromamba"
|
||||
- micromamba --help
|
||||
- export MAMBA_ROOT_PREFIX="$(mktemp -d)"
|
||||
- micromamba create -n test --override-channels -c conda-forge --yes python=3.9
|
||||
- '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version'
|
||||
- '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"'
|
||||
about:
|
||||
dev_url: https://github.com/mamba-org/mamba
|
||||
home: https://github.com/mamba-org/mamba
|
||||
license: BSD-3-Clause AND MIT AND OpenSSL
|
||||
license_family: BSD
|
||||
license_file:
|
||||
- CLI11_LICENSE.txt
|
||||
- CURL_LICENSE.txt
|
||||
- C_ARES_LICENSE.txt
|
||||
- FMT_LICENSE.txt
|
||||
- KRB5_LICENSE.txt
|
||||
- LIBARCHIVE_LICENSE.txt
|
||||
- LIBEV_LICENSE.txt
|
||||
- LIBLZ4_LICENSE.txt
|
||||
- LIBNGHTTP2_LICENSE.txt
|
||||
- LIBOPENSSL_3_LICENSE.txt
|
||||
- LIBOPENSSL_LICENSE.txt
|
||||
- LIBSOLV_LICENSE.txt
|
||||
- NLOHMANN_JSON_LICENSE.txt
|
||||
- REPROC_LICENSE.txt
|
||||
- SPDLOG_LICENSE.txt
|
||||
- TL_EXPECTED_LICENSE.txt
|
||||
- ZSTD_LICENSE.txt
|
||||
- mamba/LICENSE
|
||||
summary: Micromamba is a tiny version of mamba, the fast conda package installer.
|
||||
extra:
|
||||
copy_test_source_files: true
|
||||
final: true
|
||||
recipe-maintainers:
|
||||
- AntoinePrv
|
||||
- JohanMabille
|
||||
- SylvainCorlay
|
||||
- adriendelsalle
|
||||
- mariusvniekerk
|
||||
- pavelzw
|
||||
- wolfv
|
132
tools/micromamba-linux-64/info/recipe/meta.yaml.template
Normal file
132
tools/micromamba-linux-64/info/recipe/meta.yaml.template
Normal file
@ -0,0 +1,132 @@
|
||||
{% set version = "1.5.0" %}
|
||||
{% set sha256 = "0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17" %}
|
||||
{% set build_num = 1 %}
|
||||
|
||||
# A strategy for testing the feedstock locally in mamba CI
|
||||
{% if os.environ.get("CI", "") == "local" %}
|
||||
{% set mamba_source_type = "path" %}
|
||||
{% set mamba_source_val = "{}/source".format(os.environ.get("FEEDSTOCK_ROOT", "..")) %}
|
||||
{% set mamba_hash_type = "" %}
|
||||
{% set mamba_hash_val = "" %}
|
||||
{% else %}
|
||||
{% set mamba_source_type = "url" %}
|
||||
{% set mamba_source_val = "https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-{}.tar.gz".format(version) %}
|
||||
{% set mamba_hash_type = "sha256" %}
|
||||
{% set mamba_hash_val = sha256 %}
|
||||
{% endif %}
|
||||
|
||||
# Used for writing generic tests
|
||||
{% set bin_ext = "" %} # [unix]
|
||||
{% set bin_ext = ".exe" %} # [win]
|
||||
|
||||
package:
|
||||
name: micromamba
|
||||
version: {{ version }}
|
||||
|
||||
source:
|
||||
- "{{ mamba_source_type }}": "{{ mamba_source_val }}"
|
||||
"{{ mamba_hash_type }}": "{{ mamba_hash_val }}"
|
||||
folder: mamba
|
||||
# VCPKG comes with its own (short-lived) metadata which can be already outdated in the latest release
|
||||
- url: https://github.com/microsoft/vcpkg/archive/8be970aaeaf19fd2663aaf5888478483f9742e55.tar.gz # [win]
|
||||
sha256: 1d1d3b4b3d1871211d3d7799babfb7443971ed9a51b9eb7018bb94dfdb387076 # [win]
|
||||
folder: vcpkg # [win]
|
||||
|
||||
build:
|
||||
number: {{ build_num }}
|
||||
string: {{ build_num }}
|
||||
ignore_run_exports_from:
|
||||
- libcurl # [unix]
|
||||
- libarchive-minimal-static # [unix]
|
||||
- reproc-cpp # [unix]
|
||||
- openssl # [unix]
|
||||
- spdlog
|
||||
- fmt
|
||||
- {{ compiler('c') }} # [linux]
|
||||
- {{ compiler('cxx') }} # [linux]
|
||||
- python # [win]
|
||||
|
||||
requirements:
|
||||
build:
|
||||
- {{ compiler('c') }}
|
||||
- {{ compiler('cxx') }}
|
||||
- cmake # [unix]
|
||||
- ninja
|
||||
- vcpkg-tool # [win]
|
||||
- python # [win]
|
||||
- curl >=7.87,<8 # [win]
|
||||
- zlib # [win]
|
||||
host:
|
||||
- cli11 >=2.2,<3
|
||||
- cpp-expected
|
||||
- nlohmann_json
|
||||
- spdlog
|
||||
- fmt
|
||||
- yaml-cpp-static # [unix]
|
||||
- libcurl >=7.88.1,<8 # [unix]
|
||||
- libcurl-static >=7.88.1,<8 # [unix]
|
||||
- xz-static # [unix]
|
||||
- libssh2-static # [unix]
|
||||
- libarchive-minimal-static # [unix]
|
||||
- krb5-static # [unix]
|
||||
- libsolv-static # [unix]
|
||||
- openssl {{ openssl }} # [unix]
|
||||
- libopenssl-static {{ openssl }} # [unix]
|
||||
- zstd-static # [unix]
|
||||
- zlib # [unix]
|
||||
- libnghttp2-static # [unix]
|
||||
- lz4-c-static # [unix]
|
||||
- reproc-static # [unix]
|
||||
- reproc-cpp # [unix]
|
||||
- reproc-cpp-static # [unix]
|
||||
- winreg # [win]
|
||||
|
||||
test:
|
||||
commands:
|
||||
- test -f "${PREFIX}/bin/micromamba" # [unix]
|
||||
- if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) # [win]
|
||||
- micromamba{{ bin_ext }} --help
|
||||
- export MAMBA_ROOT_PREFIX="$(mktemp -d)" # [unix]
|
||||
- mkdir %TEMP%\mamba # [win]
|
||||
- set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" # [win]
|
||||
- micromamba{{ bin_ext }} create -n test --override-channels -c conda-forge --yes python=3.9
|
||||
- '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' # [unix]
|
||||
- '%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version' # [win]
|
||||
- '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' # [unix]
|
||||
- '%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os"' # [win]
|
||||
|
||||
about:
|
||||
home: https://github.com/mamba-org/mamba
|
||||
license_file:
|
||||
- mamba/LICENSE
|
||||
- CLI11_LICENSE.txt
|
||||
- CURL_LICENSE.txt
|
||||
- C_ARES_LICENSE.txt
|
||||
- FMT_LICENSE.txt
|
||||
- KRB5_LICENSE.txt
|
||||
- LIBARCHIVE_LICENSE.txt
|
||||
- LIBEV_LICENSE.txt
|
||||
- LIBLZ4_LICENSE.txt
|
||||
- LIBNGHTTP2_LICENSE.txt
|
||||
- LIBOPENSSL_3_LICENSE.txt
|
||||
- LIBOPENSSL_LICENSE.txt
|
||||
- LIBSOLV_LICENSE.txt
|
||||
- NLOHMANN_JSON_LICENSE.txt
|
||||
- REPROC_LICENSE.txt
|
||||
- SPDLOG_LICENSE.txt
|
||||
- TL_EXPECTED_LICENSE.txt
|
||||
- ZSTD_LICENSE.txt
|
||||
license: BSD-3-Clause AND MIT AND OpenSSL
|
||||
license_family: BSD
|
||||
summary: Micromamba is a tiny version of mamba, the fast conda package installer.
|
||||
dev_url: https://github.com/mamba-org/mamba
|
||||
|
||||
extra:
|
||||
recipe-maintainers:
|
||||
- AntoinePrv
|
||||
- pavelzw
|
||||
- wolfv
|
||||
- SylvainCorlay
|
||||
- JohanMabille
|
||||
- mariusvniekerk
|
||||
- adriendelsalle
|
@ -0,0 +1,27 @@
|
||||
BSD-3-Clause license
|
||||
Copyright (c) 2015-2022, conda-forge contributors
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGE.
|
13
tools/micromamba-linux-64/info/test/run_test.sh
Normal file
13
tools/micromamba-linux-64/info/test/run_test.sh
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
|
||||
set -ex
|
||||
|
||||
|
||||
|
||||
test -f "${PREFIX}/bin/micromamba"
|
||||
micromamba --help
|
||||
export MAMBA_ROOT_PREFIX="$(mktemp -d)"
|
||||
micromamba create -n test --override-channels -c conda-forge --yes python=3.9
|
||||
"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version
|
||||
"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"
|
||||
exit 0
|
BIN
tools/micromamba-linux-aarch64/.DS_Store
vendored
Normal file
BIN
tools/micromamba-linux-aarch64/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
tools/micromamba-linux-aarch64/bin/micromamba
Executable file
BIN
tools/micromamba-linux-aarch64/bin/micromamba
Executable file
Binary file not shown.
224
tools/micromamba-linux-aarch64/info/about.json
Normal file
224
tools/micromamba-linux-aarch64/info/about.json
Normal file
@ -0,0 +1,224 @@
|
||||
{
|
||||
"channels": [
|
||||
"https://conda.anaconda.org/conda-forge"
|
||||
],
|
||||
"conda_build_version": "3.25.0",
|
||||
"conda_version": "23.3.1",
|
||||
"dev_url": "https://github.com/mamba-org/mamba",
|
||||
"env_vars": {
|
||||
"CIO_TEST": "<not set>"
|
||||
},
|
||||
"extra": {
|
||||
"copy_test_source_files": true,
|
||||
"final": true,
|
||||
"recipe-maintainers": [
|
||||
"AntoinePrv",
|
||||
"pavelzw",
|
||||
"wolfv",
|
||||
"SylvainCorlay",
|
||||
"JohanMabille",
|
||||
"mariusvniekerk",
|
||||
"adriendelsalle"
|
||||
]
|
||||
},
|
||||
"home": "https://github.com/mamba-org/mamba",
|
||||
"identifiers": [],
|
||||
"keywords": [],
|
||||
"license": "BSD-3-Clause AND MIT AND OpenSSL",
|
||||
"license_family": "BSD",
|
||||
"license_file": [
|
||||
"mamba/LICENSE",
|
||||
"CLI11_LICENSE.txt",
|
||||
"CURL_LICENSE.txt",
|
||||
"C_ARES_LICENSE.txt",
|
||||
"FMT_LICENSE.txt",
|
||||
"KRB5_LICENSE.txt",
|
||||
"LIBARCHIVE_LICENSE.txt",
|
||||
"LIBEV_LICENSE.txt",
|
||||
"LIBLZ4_LICENSE.txt",
|
||||
"LIBNGHTTP2_LICENSE.txt",
|
||||
"LIBOPENSSL_3_LICENSE.txt",
|
||||
"LIBOPENSSL_LICENSE.txt",
|
||||
"LIBSOLV_LICENSE.txt",
|
||||
"NLOHMANN_JSON_LICENSE.txt",
|
||||
"REPROC_LICENSE.txt",
|
||||
"SPDLOG_LICENSE.txt",
|
||||
"TL_EXPECTED_LICENSE.txt",
|
||||
"ZSTD_LICENSE.txt"
|
||||
],
|
||||
"root_pkgs": [
|
||||
"tk 8.6.12 h27826a3_0",
|
||||
"markdown-it-py 3.0.0 pyhd8ed1ab_0",
|
||||
"pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0",
|
||||
"pkginfo 1.9.6 pyhd8ed1ab_0",
|
||||
"c-ares 1.19.1 hd590300_0",
|
||||
"packaging 23.1 pyhd8ed1ab_0",
|
||||
"libev 4.33 h516909a_1",
|
||||
"platformdirs 3.10.0 pyhd8ed1ab_0",
|
||||
"libgomp 13.1.0 he5830b7_0",
|
||||
"libpng 1.6.39 h753d276_0",
|
||||
"gettext 0.21.1 h27087fc_0",
|
||||
"libxcb 1.15 h0b41bf4_0",
|
||||
"pycosat 0.6.4 py310h5764c6d_1",
|
||||
"git 2.41.0 pl5321h86e50cf_0",
|
||||
"pyyaml 6.0 py310h5764c6d_5",
|
||||
"libexpat 2.5.0 hcb278e6_1",
|
||||
"wcwidth 0.2.6 pyhd8ed1ab_0",
|
||||
"jupyter_core 5.3.1 py310hff52083_0",
|
||||
"libdeflate 1.18 h0b41bf4_0",
|
||||
"anaconda-client 1.12.0 pyhd8ed1ab_1",
|
||||
"python_abi 3.10 3_cp310",
|
||||
"tqdm 4.66.1 pyhd8ed1ab_0",
|
||||
"jsonschema 4.19.0 pyhd8ed1ab_1",
|
||||
"libtiff 4.5.1 h8b53f26_0",
|
||||
"brotli-python 1.0.9 py310hd8f1fbe_9",
|
||||
"joblib 1.3.2 pyhd8ed1ab_0",
|
||||
"mamba 1.4.2 py310h51d5547_0",
|
||||
"lcms2 2.15 haa2dc70_1",
|
||||
"psutil 5.9.5 py310h1fa729e_0",
|
||||
"zstd 1.5.2 hfc55251_7",
|
||||
"requests-toolbelt 1.0.0 pyhd8ed1ab_0",
|
||||
"freetype 2.12.1 hca18f0e_1",
|
||||
"readline 8.2 h8228510_1",
|
||||
"wheel 0.41.1 pyhd8ed1ab_0",
|
||||
"colorama 0.4.6 pyhd8ed1ab_0",
|
||||
"libnghttp2 1.52.0 h61bc06f_0",
|
||||
"lz4-c 1.9.4 hcb278e6_0",
|
||||
"jsonpointer 2.0 py_0",
|
||||
"urllib3 1.26.15 pyhd8ed1ab_0",
|
||||
"python-fastjsonschema 2.18.0 pyhd8ed1ab_0",
|
||||
"lzo 2.10 h516909a_1000",
|
||||
"python-dateutil 2.8.2 pyhd8ed1ab_0",
|
||||
"cffi 1.15.1 py310h255011f_3",
|
||||
"conda-index 0.2.3 pyhd8ed1ab_0",
|
||||
"attrs 23.1.0 pyh71513ae_1",
|
||||
"pysocks 1.7.1 pyha2e5f31_6",
|
||||
"_libgcc_mutex 0.1 conda_forge",
|
||||
"conda-build 3.25.0 py310hff52083_0",
|
||||
"conda-package-handling 2.2.0 pyh38be061_0",
|
||||
"pycparser 2.21 pyhd8ed1ab_0",
|
||||
"conda 23.3.1 py310hff52083_0",
|
||||
"openssl 3.1.2 hd590300_0",
|
||||
"certifi 2023.7.22 pyhd8ed1ab_0",
|
||||
"fmt 9.1.0 h924138e_0",
|
||||
"idna 3.4 pyhd8ed1ab_0",
|
||||
"lerc 4.0.0 h27087fc_0",
|
||||
"more-itertools 10.1.0 pyhd8ed1ab_0",
|
||||
"libwebp-base 1.3.1 hd590300_0",
|
||||
"importlib_resources 6.0.1 pyhd8ed1ab_0",
|
||||
"chardet 5.2.0 py310hff52083_0",
|
||||
"liblief 0.12.3 h27087fc_0",
|
||||
"ruamel.yaml.clib 0.2.7 py310h1fa729e_1",
|
||||
"json5 0.9.14 pyhd8ed1ab_0",
|
||||
"mdurl 0.1.0 pyhd8ed1ab_0",
|
||||
"jsonschema-specifications 2023.7.1 pyhd8ed1ab_0",
|
||||
"tomli 2.0.1 pyhd8ed1ab_0",
|
||||
"tzdata 2023c h71feb2d_0",
|
||||
"pytz 2023.3 pyhd8ed1ab_0",
|
||||
"glob2 0.7 py_0",
|
||||
"libedit 3.1.20191231 he28a2e2_2",
|
||||
"backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0",
|
||||
"reproc-cpp 14.2.4 hcb278e6_0",
|
||||
"dataclasses 0.8 pyhc8e2a94_3",
|
||||
"referencing 0.30.2 pyhd8ed1ab_0",
|
||||
"pip 23.2.1 pyhd8ed1ab_0",
|
||||
"nbformat 5.9.2 pyhd8ed1ab_0",
|
||||
"ruamel_yaml 0.15.80 py310h5764c6d_1008",
|
||||
"exceptiongroup 1.1.3 pyhd8ed1ab_0",
|
||||
"pillow 10.0.0 py310h582fbeb_0",
|
||||
"libstdcxx-ng 13.1.0 hfd8a6a1_0",
|
||||
"ripgrep 13.0.0 h2f28480_2",
|
||||
"py-lief 0.12.3 py310hd8f1fbe_0",
|
||||
"krb5 1.21.2 h659d440_0",
|
||||
"pygments 2.16.1 pyhd8ed1ab_0",
|
||||
"perl 5.32.1 4_hd590300_perl5",
|
||||
"jinja2 3.1.2 pyhd8ed1ab_1",
|
||||
"patch 2.7.6 h7f98852_1002",
|
||||
"requests 2.31.0 pyhd8ed1ab_0",
|
||||
"yaml 0.2.5 h7f98852_2",
|
||||
"ncurses 6.4 hcb278e6_0",
|
||||
"boltons 23.0.0 pyhd8ed1ab_0",
|
||||
"pthread-stubs 0.4 h36c2ea0_1001",
|
||||
"rpds-py 0.9.2 py310hcb5633a_0",
|
||||
"bzip2 1.0.8 h7f98852_4",
|
||||
"backports 1.0 pyhd8ed1ab_3",
|
||||
"libiconv 1.17 h166bdaf_0",
|
||||
"xz 5.2.6 h166bdaf_0",
|
||||
"pcre2 10.40 hc3806b6_0",
|
||||
"rich 13.5.1 pyhd8ed1ab_0",
|
||||
"charset-normalizer 3.2.0 pyhd8ed1ab_0",
|
||||
"ruamel.yaml 0.17.32 py310h2372a71_0",
|
||||
"six 1.16.0 pyh6c4a22f_0",
|
||||
"libsqlite 3.42.0 h2797004_0",
|
||||
"toolz 0.12.0 pyhd8ed1ab_0",
|
||||
"tini 0.19.0 h166bdaf_1",
|
||||
"jsonpatch 1.32 pyhd8ed1ab_0",
|
||||
"su-exec 0.2 h166bdaf_1003",
|
||||
"beautifulsoup4 4.12.2 pyha770c72_0",
|
||||
"typing_extensions 4.7.1 pyha770c72_0",
|
||||
"libssh2 1.11.0 h0841786_0",
|
||||
"filelock 3.12.2 pyhd8ed1ab_0",
|
||||
"zipp 3.16.2 pyhd8ed1ab_0",
|
||||
"prompt_toolkit 3.0.39 hd8ed1ab_0",
|
||||
"python 3.10.12 hd12c33a_0_cpython",
|
||||
"sniffio 1.3.0 pyhd8ed1ab_0",
|
||||
"libsolv 0.7.24 hfc55251_1",
|
||||
"watchgod 0.8.2 pyhd8ed1ab_0",
|
||||
"anaconda-project 0.11.1 pyhd8ed1ab_0",
|
||||
"python-libarchive-c 5.0 py310hff52083_1",
|
||||
"libgcc-ng 13.1.0 he5830b7_0",
|
||||
"libffi 3.4.2 h7f98852_5",
|
||||
"libjpeg-turbo 2.1.5.1 h0b41bf4_0",
|
||||
"libnsl 2.0.0 h7f98852_0",
|
||||
"libcurl 8.2.1 hca28451_0",
|
||||
"icu 72.1 hcb278e6_0",
|
||||
"pluggy 1.2.0 pyhd8ed1ab_0",
|
||||
"conda-libmamba-solver 23.3.0 pyhd8ed1ab_0",
|
||||
"tornado 6.3.3 py310h2372a71_0",
|
||||
"zstandard 0.19.0 py310h1275a96_2",
|
||||
"pyopenssl 23.2.0 pyhd8ed1ab_1",
|
||||
"libmambapy 1.4.2 py310h1428755_0",
|
||||
"anyio 3.7.1 pyhd8ed1ab_0",
|
||||
"conda-pack 0.7.1 pyhd8ed1ab_0",
|
||||
"boa 0.15.1 pyhd8ed1ab_0",
|
||||
"soupsieve 2.3.2.post1 pyhd8ed1ab_0",
|
||||
"defusedxml 0.7.1 pyhd8ed1ab_0",
|
||||
"libzlib 1.2.13 hd590300_5",
|
||||
"setuptools 68.1.2 pyhd8ed1ab_0",
|
||||
"conda-package-streaming 0.9.0 pyhd8ed1ab_0",
|
||||
"yaml-cpp 0.7.0 h27087fc_2",
|
||||
"libuuid 2.38.1 h0b41bf4_0",
|
||||
"traitlets 5.9.0 pyhd8ed1ab_0",
|
||||
"_openmp_mutex 4.5 2_gnu",
|
||||
"xorg-libxau 1.0.11 hd590300_0",
|
||||
"libxml2 2.11.5 h0d562d8_0",
|
||||
"brotlipy 0.7.0 py310h5764c6d_1005",
|
||||
"openjpeg 2.5.0 hfec8fc6_2",
|
||||
"clyent 1.2.2 py_1",
|
||||
"typing-extensions 4.7.1 hd8ed1ab_0",
|
||||
"ca-certificates 2023.7.22 hbcca054_0",
|
||||
"curl 8.2.1 hca28451_0",
|
||||
"reproc 14.2.4 h0b41bf4_0",
|
||||
"patchelf 0.17.2 h58526e2_0",
|
||||
"libarchive 3.6.2 h039dbb9_1",
|
||||
"click 8.1.7 unix_pyh707e725_0",
|
||||
"prompt-toolkit 3.0.39 pyha770c72_0",
|
||||
"keyutils 1.6.1 h166bdaf_0",
|
||||
"libmamba 1.4.2 hcea66bb_0",
|
||||
"ld_impl_linux-64 2.40 h41732ed_0",
|
||||
"markupsafe 2.1.3 py310h2372a71_0",
|
||||
"xorg-libxdmcp 1.1.3 h7f98852_0",
|
||||
"pybind11-abi 4 hd8ed1ab_3",
|
||||
"cryptography 41.0.3 py310h75e40e8_0",
|
||||
"conda-env 2.6.0 1",
|
||||
"conda-oci-mirror 0.1.0 pyhd8ed1ab_0",
|
||||
"oniguruma 6.9.8 h166bdaf_0",
|
||||
"jq 1.6 h36c2ea0_1000",
|
||||
"conda-forge-ci-setup 3.32.5 py310h7a2d8a0_100",
|
||||
"conda-forge-metadata 0.5.2 pyhd8ed1ab_0",
|
||||
"oras-py 0.1.14 pyhd8ed1ab_0",
|
||||
"shyaml 0.6.2 pyhd3deb0d_0"
|
||||
],
|
||||
"summary": "Micromamba is a tiny version of mamba, the fast conda package installer.",
|
||||
"tags": []
|
||||
}
|
1
tools/micromamba-linux-aarch64/info/files
Normal file
1
tools/micromamba-linux-aarch64/info/files
Normal file
@ -0,0 +1 @@
|
||||
bin/micromamba
|
0
tools/micromamba-linux-aarch64/info/git
Normal file
0
tools/micromamba-linux-aarch64/info/git
Normal file
1
tools/micromamba-linux-aarch64/info/has_prefix
Normal file
1
tools/micromamba-linux-aarch64/info/has_prefix
Normal file
@ -0,0 +1 @@
|
||||
/home/conda/feedstock_root/build_artifacts/micromamba_1692951652904/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_ binary bin/micromamba
|
14
tools/micromamba-linux-aarch64/info/hash_input.json
Normal file
14
tools/micromamba-linux-aarch64/info/hash_input.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"libcurl": "8",
|
||||
"CI": "azure",
|
||||
"target_platform": "linux-aarch64",
|
||||
"c_compiler_version": "12",
|
||||
"c_compiler": "gcc",
|
||||
"spdlog": "1.12",
|
||||
"channel_targets": "conda-forge main",
|
||||
"cxx_compiler_version": "12",
|
||||
"zlib": "1.2",
|
||||
"cxx_compiler": "gxx",
|
||||
"openssl": "3",
|
||||
"fmt": "10"
|
||||
}
|
15
tools/micromamba-linux-aarch64/info/index.json
Normal file
15
tools/micromamba-linux-aarch64/info/index.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"arch": "aarch64",
|
||||
"build": "1",
|
||||
"build_number": 1,
|
||||
"depends": [
|
||||
"libzlib >=1.2.13,<1.3.0a0"
|
||||
],
|
||||
"license": "BSD-3-Clause AND MIT AND OpenSSL",
|
||||
"license_family": "BSD",
|
||||
"name": "micromamba",
|
||||
"platform": "linux",
|
||||
"subdir": "linux-aarch64",
|
||||
"timestamp": 1692952489866,
|
||||
"version": "1.5.0"
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry
|
||||
Schreiner under NSF AWARD 1414736. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms of CLI11, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,11 @@
|
||||
COPYRIGHT AND PERMISSION NOTICE
|
||||
|
||||
Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file.
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.
|
@ -0,0 +1,15 @@
|
||||
# c-ares license
|
||||
|
||||
Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS
|
||||
file.
|
||||
|
||||
Copyright 1998 by the Massachusetts Institute of Technology.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and its
|
||||
documentation for any purpose and without fee is hereby granted, provided that
|
||||
the above copyright notice appear in all copies and that both that copyright
|
||||
notice and this permission notice appear in supporting documentation, and that
|
||||
the name of M.I.T. not be used in advertising or publicity pertaining to
|
||||
distribution of the software without specific, written prior permission.
|
||||
M.I.T. makes no representations about the suitability of this software for any
|
||||
purpose. It is provided "as is" without express or implied warranty.
|
27
tools/micromamba-linux-aarch64/info/licenses/FMT_LICENSE.txt
Normal file
27
tools/micromamba-linux-aarch64/info/licenses/FMT_LICENSE.txt
Normal file
@ -0,0 +1,27 @@
|
||||
Copyright (c) 2012 - present, Victor Zverovich
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
--- Optional exception to the license ---
|
||||
|
||||
As an exception, if, as a result of your compiling your source code, portions
|
||||
of this Software are embedded into a machine-executable object form of such
|
||||
source code, you may redistribute such embedded portions in such object form
|
||||
without including the above copyright and permission notices.
|
1286
tools/micromamba-linux-aarch64/info/licenses/KRB5_LICENSE.txt
Normal file
1286
tools/micromamba-linux-aarch64/info/licenses/KRB5_LICENSE.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,66 @@
|
||||
The libarchive distribution as a whole is Copyright by Tim Kientzle
|
||||
and is subject to the copyright notice reproduced at the bottom of
|
||||
this file.
|
||||
|
||||
Each individual file in this distribution should have a clear
|
||||
copyright/licensing statement at the beginning of the file. If any do
|
||||
not, please let me know and I will rectify it. The following is
|
||||
intended to summarize the copyright status of the individual files;
|
||||
the actual statements in the files are controlling.
|
||||
|
||||
* Except as listed below, all C sources (including .c and .h files)
|
||||
and documentation files are subject to the copyright notice reproduced
|
||||
at the bottom of this file.
|
||||
|
||||
* The following source files are also subject in whole or in part to
|
||||
a 3-clause UC Regents copyright; please read the individual source
|
||||
files for details:
|
||||
libarchive/archive_entry.c
|
||||
libarchive/archive_read_support_filter_compress.c
|
||||
libarchive/archive_write_add_filter_compress.c
|
||||
libarchive/mtree.5
|
||||
|
||||
* The following source files are in the public domain:
|
||||
libarchive/archive_getdate.c
|
||||
|
||||
* The following source files are triple-licensed with the ability to choose
|
||||
from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses:
|
||||
libarchive/archive_blake2.h
|
||||
libarchive/archive_blake2_impl.h
|
||||
libarchive/archive_blake2s_ref.c
|
||||
libarchive/archive_blake2sp_ref.c
|
||||
|
||||
* The build files---including Makefiles, configure scripts,
|
||||
and auxiliary scripts used as part of the compile process---have
|
||||
widely varying licensing terms. Please check individual files before
|
||||
distributing them to see if those restrictions apply to you.
|
||||
|
||||
I intend for all new source code to use the license below and hope over
|
||||
time to replace code with other licenses with new implementations that
|
||||
do use the license below. The varying licensing of the build scripts
|
||||
seems to be an unavoidable mess.
|
||||
|
||||
|
||||
Copyright (c) 2003-2018 <author(s)>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer
|
||||
in this position and unchanged.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,37 @@
|
||||
All files in libev are
|
||||
Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
Alternatively, the contents of this package may be used under the terms
|
||||
of the GNU General Public License ("GPL") version 2 or any later version,
|
||||
in which case the provisions of the GPL are applicable instead of the
|
||||
above. If you wish to allow the use of your version of this package only
|
||||
under the terms of the GPL and not to allow others to use your version of
|
||||
this file under the BSD license, indicate your decision by deleting the
|
||||
provisions above and replace them with the notice and other provisions
|
||||
required by the GPL in this and the other files of this package. If you do
|
||||
not delete the provisions above, a recipient may use your version of this
|
||||
file under either the BSD or the GPL.
|
@ -0,0 +1,24 @@
|
||||
LZ4 Library
|
||||
Copyright (c) 2011-2016, Yann Collet
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice, this
|
||||
list of conditions and the following disclaimer in the documentation and/or
|
||||
other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,23 @@
|
||||
The MIT License
|
||||
|
||||
Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa
|
||||
Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -0,0 +1,177 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
https://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
@ -0,0 +1,125 @@
|
||||
|
||||
LICENSE ISSUES
|
||||
==============
|
||||
|
||||
The OpenSSL toolkit stays under a double license, i.e. both the conditions of
|
||||
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
||||
See below for the actual license texts.
|
||||
|
||||
OpenSSL License
|
||||
---------------
|
||||
|
||||
/* ====================================================================
|
||||
* Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
*
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
* endorse or promote products derived from this software without
|
||||
* prior written permission. For written permission, please contact
|
||||
* openssl-core@openssl.org.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
* permission of the OpenSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
*/
|
||||
|
||||
Original SSLeay License
|
||||
-----------------------
|
||||
|
||||
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
||||
* All rights reserved.
|
||||
*
|
||||
* This package is an SSL implementation written
|
||||
* by Eric Young (eay@cryptsoft.com).
|
||||
* The implementation was written so as to conform with Netscapes SSL.
|
||||
*
|
||||
* This library is free for commercial and non-commercial use as long as
|
||||
* the following conditions are aheared to. The following conditions
|
||||
* apply to all code found in this distribution, be it the RC4, RSA,
|
||||
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||
* included with this distribution is covered by the same copyright terms
|
||||
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
* Copyright remains Eric Young's, and as such any Copyright notices in
|
||||
* the code are not to be removed.
|
||||
* If this package is used in a product, Eric Young should be given attribution
|
||||
* as the author of the parts of the library used.
|
||||
* This can be in the form of a textual message at program startup or
|
||||
* in documentation (online or textual) provided with the package.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* "This product includes cryptographic software written by
|
||||
* Eric Young (eay@cryptsoft.com)"
|
||||
* The word 'cryptographic' can be left out if the rouines from the library
|
||||
* being used are not cryptographic related :-).
|
||||
* 4. If you include any Windows specific code (or a derivative thereof) from
|
||||
* the apps directory (application code) you must include an acknowledgement:
|
||||
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* The licence and distribution terms for any publically available version or
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
* copied and put under another distribution licence
|
||||
* [including the GNU Public Licence.]
|
||||
*/
|
||||
|
@ -0,0 +1,28 @@
|
||||
Copyright (c) 2019, SUSE LLC
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of Novell nor the names of its contributors may
|
||||
be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
||||
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2013-2020 Niels Lohmann
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Daan De Meyer
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -0,0 +1,25 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Gabi Melman.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
-- NOTE: Third party dependency used by this software --
|
||||
This software depends on the fmt lib (MIT License),
|
||||
and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst
|
@ -0,0 +1,121 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
CC0 1.0 Universal
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
HEREUNDER.
|
||||
|
||||
Statement of Purpose
|
||||
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
||||
authorship and/or a database (each, a "Work").
|
||||
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without fear
|
||||
of later claims of infringement build upon, modify, incorporate in other
|
||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
||||
and for any purposes, including without limitation commercial purposes.
|
||||
These owners may contribute to the Commons to promote the ideal of a free
|
||||
culture and the further production of creative, cultural and scientific
|
||||
works, or to gain reputation or greater distribution for their Work in
|
||||
part through the use and efforts of others.
|
||||
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
||||
Work and the meaning and intended legal effect of CC0 on those rights.
|
||||
|
||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
||||
protected by copyright and related or neighboring rights ("Copyright and
|
||||
Related Rights"). Copyright and Related Rights include, but are not
|
||||
limited to, the following:
|
||||
|
||||
i. the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work;
|
||||
ii. moral rights retained by the original author(s) and/or performer(s);
|
||||
iii. publicity and privacy rights pertaining to a person's image or
|
||||
likeness depicted in a Work;
|
||||
iv. rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;
|
||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
||||
in a Work;
|
||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
||||
European Parliament and of the Council of 11 March 1996 on the legal
|
||||
protection of databases, and under any national implementation
|
||||
thereof, including any amended or successor version of such
|
||||
directive); and
|
||||
vii. other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof.
|
||||
|
||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
||||
of action, whether now known or unknown (including existing as well as
|
||||
future claims and causes of action), in the Work (i) in all territories
|
||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
||||
treaty (including future time extensions), (iii) in any current or future
|
||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
||||
including without limitation commercial, advertising or promotional
|
||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
||||
member of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal or
|
||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
||||
as contemplated by Affirmer's express Statement of Purpose.
|
||||
|
||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
||||
be judged legally invalid or ineffective under applicable law, then the
|
||||
Waiver shall be preserved to the maximum extent permitted taking into
|
||||
account Affirmer's express Statement of Purpose. In addition, to the
|
||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
||||
maximum duration provided by applicable law or treaty (including future
|
||||
time extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"License"). The License shall be deemed effective as of the date CC0 was
|
||||
applied by Affirmer to the Work. Should any part of the License for any
|
||||
reason be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
||||
of the License, and in such case Affirmer hereby affirms that he or she
|
||||
will not (i) exercise any of his or her remaining Copyright and Related
|
||||
Rights in the Work or (ii) assert any associated claims and causes of
|
||||
action with respect to the Work, in either case contrary to Affirmer's
|
||||
express Statement of Purpose.
|
||||
|
||||
4. Limitations and Disclaimers.
|
||||
|
||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
||||
surrendered, licensed or otherwise affected by this document.
|
||||
b. Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy, or
|
||||
the present or absence of errors, whether or not discoverable, all to
|
||||
the greatest extent permissible under applicable law.
|
||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
||||
that may apply to the Work or any use thereof, including without
|
||||
limitation any person's Copyright and Related Rights in the Work.
|
||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
||||
consents, permissions or other rights required for any use of the
|
||||
Work.
|
||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
||||
party to this document and has no duty or obligation with respect to
|
||||
this CC0 or use of the Work.
|
@ -0,0 +1,30 @@
|
||||
BSD License
|
||||
|
||||
For Zstandard software
|
||||
|
||||
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* Neither the name Facebook nor the names of its contributors may be used to
|
||||
endorse or promote products derived from this software without specific
|
||||
prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
11
tools/micromamba-linux-aarch64/info/licenses/mamba/LICENSE
Normal file
11
tools/micromamba-linux-aarch64/info/licenses/mamba/LICENSE
Normal file
@ -0,0 +1,11 @@
|
||||
Copyright 2019 QuantStack and the Mamba contributors.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
13
tools/micromamba-linux-aarch64/info/paths.json
Normal file
13
tools/micromamba-linux-aarch64/info/paths.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"paths": [
|
||||
{
|
||||
"_path": "bin/micromamba",
|
||||
"file_mode": "binary",
|
||||
"path_type": "hardlink",
|
||||
"prefix_placeholder": "/home/conda/feedstock_root/build_artifacts/micromamba_1692951652904/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_",
|
||||
"sha256": "7035ef19cb0ab8695c9d83bc981468a5eb9a0ff6a0965313a2c58c8555474655",
|
||||
"size_in_bytes": 16164568
|
||||
}
|
||||
],
|
||||
"paths_version": 1
|
||||
}
|
25
tools/micromamba-linux-aarch64/info/recipe/CLI11_LICENSE.txt
Normal file
25
tools/micromamba-linux-aarch64/info/recipe/CLI11_LICENSE.txt
Normal file
@ -0,0 +1,25 @@
|
||||
CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry
|
||||
Schreiner under NSF AWARD 1414736. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms of CLI11, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,19 @@
|
||||
Copyright (c) 2018, Steffen Schümann <s.schuemann@pobox.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
11
tools/micromamba-linux-aarch64/info/recipe/CURL_LICENSE.txt
Normal file
11
tools/micromamba-linux-aarch64/info/recipe/CURL_LICENSE.txt
Normal file
@ -0,0 +1,11 @@
|
||||
COPYRIGHT AND PERMISSION NOTICE
|
||||
|
||||
Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file.
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.
|
@ -0,0 +1,15 @@
|
||||
# c-ares license
|
||||
|
||||
Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS
|
||||
file.
|
||||
|
||||
Copyright 1998 by the Massachusetts Institute of Technology.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and its
|
||||
documentation for any purpose and without fee is hereby granted, provided that
|
||||
the above copyright notice appear in all copies and that both that copyright
|
||||
notice and this permission notice appear in supporting documentation, and that
|
||||
the name of M.I.T. not be used in advertising or publicity pertaining to
|
||||
distribution of the software without specific, written prior permission.
|
||||
M.I.T. makes no representations about the suitability of this software for any
|
||||
purpose. It is provided "as is" without express or implied warranty.
|
27
tools/micromamba-linux-aarch64/info/recipe/FMT_LICENSE.txt
Normal file
27
tools/micromamba-linux-aarch64/info/recipe/FMT_LICENSE.txt
Normal file
@ -0,0 +1,27 @@
|
||||
Copyright (c) 2012 - present, Victor Zverovich
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
--- Optional exception to the license ---
|
||||
|
||||
As an exception, if, as a result of your compiling your source code, portions
|
||||
of this Software are embedded into a machine-executable object form of such
|
||||
source code, you may redistribute such embedded portions in such object form
|
||||
without including the above copyright and permission notices.
|
1286
tools/micromamba-linux-aarch64/info/recipe/KRB5_LICENSE.txt
Normal file
1286
tools/micromamba-linux-aarch64/info/recipe/KRB5_LICENSE.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,66 @@
|
||||
The libarchive distribution as a whole is Copyright by Tim Kientzle
|
||||
and is subject to the copyright notice reproduced at the bottom of
|
||||
this file.
|
||||
|
||||
Each individual file in this distribution should have a clear
|
||||
copyright/licensing statement at the beginning of the file. If any do
|
||||
not, please let me know and I will rectify it. The following is
|
||||
intended to summarize the copyright status of the individual files;
|
||||
the actual statements in the files are controlling.
|
||||
|
||||
* Except as listed below, all C sources (including .c and .h files)
|
||||
and documentation files are subject to the copyright notice reproduced
|
||||
at the bottom of this file.
|
||||
|
||||
* The following source files are also subject in whole or in part to
|
||||
a 3-clause UC Regents copyright; please read the individual source
|
||||
files for details:
|
||||
libarchive/archive_entry.c
|
||||
libarchive/archive_read_support_filter_compress.c
|
||||
libarchive/archive_write_add_filter_compress.c
|
||||
libarchive/mtree.5
|
||||
|
||||
* The following source files are in the public domain:
|
||||
libarchive/archive_getdate.c
|
||||
|
||||
* The following source files are triple-licensed with the ability to choose
|
||||
from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses:
|
||||
libarchive/archive_blake2.h
|
||||
libarchive/archive_blake2_impl.h
|
||||
libarchive/archive_blake2s_ref.c
|
||||
libarchive/archive_blake2sp_ref.c
|
||||
|
||||
* The build files---including Makefiles, configure scripts,
|
||||
and auxiliary scripts used as part of the compile process---have
|
||||
widely varying licensing terms. Please check individual files before
|
||||
distributing them to see if those restrictions apply to you.
|
||||
|
||||
I intend for all new source code to use the license below and hope over
|
||||
time to replace code with other licenses with new implementations that
|
||||
do use the license below. The varying licensing of the build scripts
|
||||
seems to be an unavoidable mess.
|
||||
|
||||
|
||||
Copyright (c) 2003-2018 <author(s)>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer
|
||||
in this position and unchanged.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
37
tools/micromamba-linux-aarch64/info/recipe/LIBEV_LICENSE.txt
Normal file
37
tools/micromamba-linux-aarch64/info/recipe/LIBEV_LICENSE.txt
Normal file
@ -0,0 +1,37 @@
|
||||
All files in libev are
|
||||
Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
Alternatively, the contents of this package may be used under the terms
|
||||
of the GNU General Public License ("GPL") version 2 or any later version,
|
||||
in which case the provisions of the GPL are applicable instead of the
|
||||
above. If you wish to allow the use of your version of this package only
|
||||
under the terms of the GPL and not to allow others to use your version of
|
||||
this file under the BSD license, indicate your decision by deleting the
|
||||
provisions above and replace them with the notice and other provisions
|
||||
required by the GPL in this and the other files of this package. If you do
|
||||
not delete the provisions above, a recipient may use your version of this
|
||||
file under either the BSD or the GPL.
|
@ -0,0 +1,24 @@
|
||||
LZ4 Library
|
||||
Copyright (c) 2011-2016, Yann Collet
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice, this
|
||||
list of conditions and the following disclaimer in the documentation and/or
|
||||
other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,23 @@
|
||||
The MIT License
|
||||
|
||||
Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa
|
||||
Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -0,0 +1,177 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
https://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
@ -0,0 +1,125 @@
|
||||
|
||||
LICENSE ISSUES
|
||||
==============
|
||||
|
||||
The OpenSSL toolkit stays under a double license, i.e. both the conditions of
|
||||
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
||||
See below for the actual license texts.
|
||||
|
||||
OpenSSL License
|
||||
---------------
|
||||
|
||||
/* ====================================================================
|
||||
* Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
*
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
* endorse or promote products derived from this software without
|
||||
* prior written permission. For written permission, please contact
|
||||
* openssl-core@openssl.org.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
* permission of the OpenSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
*/
|
||||
|
||||
Original SSLeay License
|
||||
-----------------------
|
||||
|
||||
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
||||
* All rights reserved.
|
||||
*
|
||||
* This package is an SSL implementation written
|
||||
* by Eric Young (eay@cryptsoft.com).
|
||||
* The implementation was written so as to conform with Netscapes SSL.
|
||||
*
|
||||
* This library is free for commercial and non-commercial use as long as
|
||||
* the following conditions are aheared to. The following conditions
|
||||
* apply to all code found in this distribution, be it the RC4, RSA,
|
||||
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||
* included with this distribution is covered by the same copyright terms
|
||||
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
* Copyright remains Eric Young's, and as such any Copyright notices in
|
||||
* the code are not to be removed.
|
||||
* If this package is used in a product, Eric Young should be given attribution
|
||||
* as the author of the parts of the library used.
|
||||
* This can be in the form of a textual message at program startup or
|
||||
* in documentation (online or textual) provided with the package.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* "This product includes cryptographic software written by
|
||||
* Eric Young (eay@cryptsoft.com)"
|
||||
* The word 'cryptographic' can be left out if the rouines from the library
|
||||
* being used are not cryptographic related :-).
|
||||
* 4. If you include any Windows specific code (or a derivative thereof) from
|
||||
* the apps directory (application code) you must include an acknowledgement:
|
||||
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* The licence and distribution terms for any publically available version or
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
* copied and put under another distribution licence
|
||||
* [including the GNU Public Licence.]
|
||||
*/
|
||||
|
@ -0,0 +1,28 @@
|
||||
Copyright (c) 2019, SUSE LLC
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of Novell nor the names of its contributors may
|
||||
be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
||||
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user