From 95c25155bc096c1e2fa5939e3581c5bc2d570077 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 30 Jun 2023 10:51:32 +0200 Subject: [PATCH 01/19] test: added test to check if correct tables are added to toml file (#156) --- src/project/mod.rs | 6 +++--- tests/add_tests.rs | 19 ++++++++++++++++++- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/project/mod.rs b/src/project/mod.rs index 36e27fa756..bc725c4fff 100644 --- a/src/project/mod.rs +++ b/src/project/mod.rs @@ -1,5 +1,5 @@ pub mod environment; -mod manifest; +pub mod manifest; mod serde; use crate::consts; @@ -23,9 +23,9 @@ use toml_edit::{Array, Document, Item, Table, TomlError, Value}; #[derive(Debug)] pub struct Project { root: PathBuf, - pub(crate) source: String, + pub source: String, doc: Document, - pub(crate) manifest: ProjectManifest, + pub manifest: ProjectManifest, } impl Project { diff --git a/tests/add_tests.rs b/tests/add_tests.rs index c83708149a..b561cfb265 100644 --- a/tests/add_tests.rs +++ b/tests/add_tests.rs @@ -79,7 +79,24 @@ async fn add_functionality_union() { .unwrap(); pixi.add("libidk").set_type(SpecType::Build).await.unwrap(); - // Lock file should contain all packages + // Toml should contain the correct sections + // We test if the toml file that is saved is correct + // by checking if we get the correct values back in the manifest + // We know this works because we test the manifest in another test + // Where we check if the sections are put in the correct variables + let project = pixi.project().unwrap(); + + // Should contain all added dependencies + let (name, _) = project.manifest.dependencies.first().unwrap(); + assert_eq!(name, "rattler"); + let host_deps = project.manifest.host_dependencies.unwrap(); + let (name, _) = host_deps.first().unwrap(); + assert_eq!(name, "libcomputer"); + let build_deps = project.manifest.build_dependencies.unwrap(); + let (name, _) = build_deps.first().unwrap(); + assert_eq!(name, "libidk"); + + // Lock file should contain all packages as well let lock = pixi.lock_file().await.unwrap(); assert!(lock.contains_matchspec("rattler==1")); assert!(lock.contains_matchspec("libcomputer==1.2")); From 4cb60590580836b875d13a48eaed56dc0a4e376c Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 30 Jun 2023 13:40:02 +0200 Subject: [PATCH 02/19] feat: now runs commands sequentially --- Cargo.toml | 1 + src/cli/run.rs | 89 +++++++++++++++++++++++++----------------- tests/common/mod.rs | 45 +++++++++++++++------ tests/install_tests.rs | 7 ++-- 4 files changed, 92 insertions(+), 50 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 78ece6e401..c6540d6cda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,3 +61,4 @@ url = "2.4.0" [dev-dependencies] rattler_digest = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main" } serde_json = "1.0.96" +tokio = { version = "1.27.0", features = ["rt"] } diff --git a/src/cli/run.rs b/src/cli/run.rs index 628a635f88..73e8a226a0 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -38,9 +38,11 @@ pub struct RunScriptCommand { _script: tempfile::NamedTempFile, } -pub async fn create_command(args: Args) -> anyhow::Result { - let command: Vec<_> = args.command.iter().map(|c| c.to_string()).collect(); - let project = Project::load_or_else_discover(args.manifest_path.as_deref())?; +pub async fn order_commands( + commands: Vec, + project: &Project, +) -> anyhow::Result> { + let command: Vec<_> = commands.iter().map(|c| c.to_string()).collect(); let (command_name, command) = command .first() @@ -53,37 +55,12 @@ pub async fn create_command(args: Args) -> anyhow::Result { ( None, Command::Process(ProcessCmd { - cmd: CmdArgs::Multiple(args.command), + cmd: CmdArgs::Multiple(commands), depends_on: vec![], }), ) }); - // Determine the current shell - let shell: ShellEnum = ShellEnum::default(); - - // Construct an activator so we can run commands from the environment - let prefix = get_up_to_date_prefix(&project).await?; - let activator = Activator::from_path(prefix.root(), shell.clone(), Platform::current())?; - - let activator_result = activator.activation(ActivationVariables { - // Get the current PATH variable - path: std::env::var_os("PATH").map(|path_var| std::env::split_paths(&path_var).collect()), - - // Start from an empty prefix - conda_prefix: None, - - // Prepending environment paths so they get found first. - path_modification_behaviour: PathModificationBehaviour::Prepend, - })?; - - // Generate a temporary file with the script to execute. This includes the activation of the - // environment. - let mut script = format!("{}\n", activator_result.script.trim()); - - // Add meta data env variables to help user interact with there configuration. - add_metadata_as_env_vars(&mut script, &shell, &project)?; - // Perform post order traversal of the commands and their `depends_on` to make sure they are // executed in the right order. let mut s1 = VecDeque::new(); @@ -120,10 +97,39 @@ pub async fn create_command(args: Args) -> anyhow::Result { s2.push_back(command) } - while let Some(command) = s2.pop_back() { - // Write the invocation of the command into the script. - command.write_invoke_script(&mut script, &shell, &project, &activator_result)?; - } + Ok(s2) +} + +pub async fn create_command( + command: Command, + project: &Project, +) -> anyhow::Result { + // Determine the current shell + let shell: ShellEnum = ShellEnum::default(); + + // Construct an activator so we can run commands from the environment + let prefix = get_up_to_date_prefix(project).await?; + let activator = Activator::from_path(prefix.root(), shell.clone(), Platform::current())?; + + let activator_result = activator.activation(ActivationVariables { + // Get the current PATH variable + path: std::env::var_os("PATH").map(|path_var| std::env::split_paths(&path_var).collect()), + + // Start from an empty prefix + conda_prefix: None, + + // Prepending environment paths so they get found first. + path_modification_behaviour: PathModificationBehaviour::Prepend, + })?; + + // Generate a temporary file with the script to execute. This includes the activation of the + // environment. + let mut script = format!("{}\n", activator_result.script.trim()); + + // Add meta data env variables to help user interact with there configuration. + add_metadata_as_env_vars(&mut script, &shell, project)?; + + command.write_invoke_script(&mut script, &shell, project, &activator_result)?; tracing::debug!("Activation script:\n{}", script); @@ -144,9 +150,20 @@ pub async fn create_command(args: Args) -> anyhow::Result { /// CLI entry point for `pixi run` pub async fn execute(args: Args) -> anyhow::Result<()> { - let mut script_command = create_command(args).await?; - let status = script_command.command.spawn()?.wait()?.code().unwrap_or(1); - std::process::exit(status); + let project = Project::load_or_else_discover(args.manifest_path.as_deref())?; + // Get the correctly ordered commands + let mut ordered_commands = order_commands(args.command, &project).await?; + + // Execute the commands in the correct order + while let Some(command) = ordered_commands.pop_back() { + let mut script_command = create_command(command, &project).await?; + let status = script_command.command.spawn()?.wait()?.code().unwrap_or(1); + if status != 0 { + std::process::exit(status); + } + } + + Ok(()) } /// Given a command and arguments to invoke it, format it so that it is as generalized as possible. diff --git a/tests/common/mod.rs b/tests/common/mod.rs index f532244c27..b35812e049 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -4,7 +4,7 @@ pub mod package_database; use pixi::cli::add::SpecType; use pixi::cli::install::Args; -use pixi::cli::run::create_command; +use pixi::cli::run::{create_command, order_commands}; use pixi::cli::{add, init, run}; use pixi::{consts, Project}; use rattler_conda_types::conda_lock::CondaLock; @@ -12,9 +12,11 @@ use rattler_conda_types::{MatchSpec, Version}; use std::future::{Future, IntoFuture}; use std::path::{Path, PathBuf}; use std::pin::Pin; -use std::process::Stdio; +use std::process::{Output, Stdio}; use std::str::FromStr; use tempfile::TempDir; +use tokio::sync::mpsc::UnboundedReceiver; +use tokio::task::spawn_blocking; use url::Url; /// To control the pixi process @@ -24,7 +26,7 @@ pub struct PixiControl { } pub struct RunResult { - output: std::process::Output, + output: Output, } impl RunResult { @@ -121,15 +123,36 @@ impl PixiControl { } /// Run a command - pub async fn run(&self, mut args: run::Args) -> anyhow::Result { + pub async fn run(&self, mut args: run::Args) -> anyhow::Result> { args.manifest_path = args.manifest_path.or_else(|| Some(self.manifest_path())); - let mut script_command = create_command(args).await?; - let output = script_command - .command - .stdout(Stdio::piped()) - .spawn()? - .wait_with_output()?; - Ok(RunResult { output }) + let mut commands = order_commands(args.command, &self.project().unwrap()).await?; + + let project = self.project().unwrap(); + let (tx, rx) = tokio::sync::mpsc::unbounded_channel(); + + tokio::spawn(async move { + while let Some(command) = commands.pop_back() { + let mut command = create_command(command, &project) + .await + .expect("could not create command"); + let tx = tx.clone(); + spawn_blocking(move || { + let output = command + .command + .stdout(Stdio::piped()) + .spawn() + .expect("could not spawn task") + .wait_with_output() + .expect("could not run command"); + tx.send(RunResult { output }) + .expect("could not send output"); + }) + .await + .unwrap(); + } + }); + + Ok(rx) } /// Create an installed environment. I.e a resolved and installed prefix diff --git a/tests/install_tests.rs b/tests/install_tests.rs index c0977b958e..b01703b3b2 100644 --- a/tests/install_tests.rs +++ b/tests/install_tests.rs @@ -20,15 +20,16 @@ async fn install_run_python() { assert!(lock.contains_matchspec("python==3.11.0")); // Check if python is installed and can be run - let result = pixi + let mut result = pixi .run(run::Args { command: string_from_iter(["python", "--version"]), ..Default::default() }) .await .unwrap(); - assert!(result.success()); - assert_eq!(result.stdout().trim(), "Python 3.11.0"); + let run_result = result.recv().await.unwrap(); + assert!(run_result.success()); + assert_eq!(run_result.stdout().trim(), "Python 3.11.0"); } /// This is a test to check that creating incremental lock files works. From 010bd0675463ffb5a8aa3d557dfd2527ddc24874 Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Fri, 30 Jun 2023 14:56:04 +0200 Subject: [PATCH 03/19] prepare repo for release v0.0.6 (#159) * prepare repo for release v0.0.6 * add date to the changelog * add date to the changelog * Update CHANGELOG.md Co-authored-by: Bas Zalmstra --------- Co-authored-by: Bas Zalmstra --- CHANGELOG.md | 19 ++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- docs/getting_started.md | 1 + pixi.toml | 2 +- 5 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad85f0754c..84c514b890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.0.6] - 2023-06-30 + +### Highlights +Improving the reliability is important to us, so we added an integration testing framework, we can now test as close as possible to the CLI level using `cargo`. + +### Details + +#### Added +- An integration test harness, to test as close as possible to the user experience but in rust. ([#138](https://github.com/prefix-dev/pixi/pull/138), [#140](https://github.com/prefix-dev/pixi/pull/140), [#156](https://github.com/prefix-dev/pixi/pull/156)) +- Add different levels of dependencies in preparation for `pixi build`, allowing `host-` and `build-` `dependencies` ([#149](https://github.com/prefix-dev/pixi/pull/149)) + +#### Fixed +- Use correct folder name on pixi init ([#144](https://github.com/prefix-dev/pixi/pull/144)) +- Fix windows cli installer ([#152](https://github.com/prefix-dev/pixi/pull/152)) +- Fix global install path variable ([#147](https://github.com/prefix-dev/pixi/pull/147)) +- Fix macOS binary notarization ([#153](https://github.com/prefix-dev/pixi/pull/153)) + ## [0.0.5] - 2023-06-26 Fixing Windows installer build in CI. ([#145](https://github.com/prefix-dev/pixi/pull/145)) @@ -24,7 +41,7 @@ helped a lot. #### Added -- Platform specific dependencies and helpfull error reporting on `pixi.toml` issues([#111](https://github.com/prefix-dev/pixi/pull/111)) +- Platform specific dependencies and helpful error reporting on `pixi.toml` issues([#111](https://github.com/prefix-dev/pixi/pull/111)) - Windows installer, which is very useful for users that want to start using pixi on windows. ([#114](https://github.com/prefix-dev/pixi/pull/114)) - `shell` command to use the pixi environment without `pixi run`. ([#116](https://github.com/prefix-dev/pixi/pull/116)) - Verbosity options using `-v, -vv, -vvv` ([#118](https://github.com/prefix-dev/pixi/pull/118)) diff --git a/Cargo.lock b/Cargo.lock index 9beb17c2c0..b03f363ac9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2978,7 +2978,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pixi" -version = "0.0.5" +version = "0.0.6" dependencies = [ "anyhow", "ariadne", diff --git a/Cargo.toml b/Cargo.toml index 78ece6e401..325cc60903 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pixi" -version = "0.0.5" +version = "0.0.6" description = "A package management and workflow tool" edition = "2021" authors = ["pixi contributors "] diff --git a/docs/getting_started.md b/docs/getting_started.md index ee3374ae54..c7186b4746 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -27,6 +27,7 @@ To visualize this, running the following set of commands: pixi init my_project cd my_project pixi add python +pixi install ``` ...results in a unique project structure: ```shell diff --git a/pixi.toml b/pixi.toml index 826a53e7f2..9f5db8752b 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "pixi" -version = "0.0.5" +version = "0.0.6" description = "Package management made easy!" authors = ["Wolf Vollprecht ", "Bas Zalmstra ", "Tim de Jager ", "Ruben Arts "] channels = ["conda-forge"] From 37e5eb5e4532d00d12d0705c594965ee4b1e1cbb Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 3 Jul 2023 11:06:28 +0200 Subject: [PATCH 04/19] fix: path behavior for run (#169) --- src/cli/run.rs | 2 +- src/cli/shell.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/run.rs b/src/cli/run.rs index 73e8a226a0..c794599993 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -113,7 +113,7 @@ pub async fn create_command( let activator_result = activator.activation(ActivationVariables { // Get the current PATH variable - path: std::env::var_os("PATH").map(|path_var| std::env::split_paths(&path_var).collect()), + path: Default::default(), // Start from an empty prefix conda_prefix: None, diff --git a/src/cli/shell.rs b/src/cli/shell.rs index b06ebb90a6..74b5db7d8f 100644 --- a/src/cli/shell.rs +++ b/src/cli/shell.rs @@ -27,7 +27,7 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { let activator_result = activator.activation(ActivationVariables { // Get the current PATH variable - path: std::env::var_os("PATH").map(|path_var| std::env::split_paths(&path_var).collect()), + path: Default::default(), // Start from an empty prefix conda_prefix: None, From aaf7f229e45d7a60dfd5d97c4339b86ac7476b10 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 3 Jul 2023 14:11:06 +0200 Subject: [PATCH 05/19] feat: cache the activation result and reuse for faster activation speeds (#170) --- Cargo.lock | 42 ++-- src/cli/run.rs | 223 +++++++++--------- src/project/environment.rs | 63 ++--- ...ect__manifest__test__dependency_types.snap | 7 + ...ject__manifest__test__target_specific.snap | 5 + ...pixi__project__tests__dependency_sets.snap | 7 + ...roject__tests__dependency_target_sets.snap | 13 + tests/common/mod.rs | 37 +-- 8 files changed, 219 insertions(+), 178 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b03f363ac9..80d9b30670 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3231,8 +3231,8 @@ dependencies = [ [[package]] name = "rattler" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "anyhow", "apple-codesign", @@ -3272,8 +3272,8 @@ dependencies = [ [[package]] name = "rattler_conda_types" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "chrono", "fxhash", @@ -3300,8 +3300,8 @@ dependencies = [ [[package]] name = "rattler_digest" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "blake2", "digest 0.10.7", @@ -3315,8 +3315,8 @@ dependencies = [ [[package]] name = "rattler_macros" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "quote", "syn 2.0.22", @@ -3324,8 +3324,8 @@ dependencies = [ [[package]] name = "rattler_networking" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "anyhow", "dirs 5.0.1", @@ -3341,8 +3341,8 @@ dependencies = [ [[package]] name = "rattler_package_streaming" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "bzip2", "chrono", @@ -3364,8 +3364,8 @@ dependencies = [ [[package]] name = "rattler_repodata_gateway" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "anyhow", "async-compression", @@ -3402,23 +3402,25 @@ dependencies = [ [[package]] name = "rattler_shell" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "enum_dispatch", "indexmap 1.9.3", "itertools", "rattler_conda_types", "serde_json", + "shlex", "sysinfo", + "tempfile", "thiserror", "tracing", ] [[package]] name = "rattler_solve" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "anyhow", "cc", @@ -3438,8 +3440,8 @@ dependencies = [ [[package]] name = "rattler_virtual_packages" -version = "0.4.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#efa728491051cc0f1fb62429b6bc56b98287ac09" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" dependencies = [ "cfg-if", "libloading", diff --git a/src/cli/run.rs b/src/cli/run.rs index c794599993..6224a47c14 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -1,22 +1,25 @@ -use std::collections::{HashSet, VecDeque}; +use anyhow::Context; +use std::collections::{HashMap, HashSet, VecDeque}; use std::path::Path; +use std::path::PathBuf; use std::string::String; -use std::{fmt::Write, path::PathBuf}; use clap::Parser; use is_executable::IsExecutable; +use itertools::Itertools; use rattler_conda_types::Platform; +use crate::prefix::Prefix; +use crate::progress::await_in_progress; +use crate::project::environment::get_metadata_env; use crate::{ command::{CmdArgs, Command, ProcessCmd}, environment::get_up_to_date_prefix, - project::environment::add_metadata_as_env_vars, Project, }; use rattler_shell::{ - activation::ActivationResult, activation::{ActivationVariables, Activator, PathModificationBehaviour}, - shell::{Shell, ShellEnum}, + shell::ShellEnum, }; /// Runs command in project. @@ -31,14 +34,7 @@ pub struct Args { pub manifest_path: Option, } -pub struct RunScriptCommand { - /// The command to execute - pub command: std::process::Command, - /// Tempfile to keep a handle on, otherwise it is dropped and deleted - _script: tempfile::NamedTempFile, -} - -pub async fn order_commands( +pub fn order_commands( commands: Vec, project: &Project, ) -> anyhow::Result> { @@ -103,67 +99,114 @@ pub async fn order_commands( pub async fn create_command( command: Command, project: &Project, -) -> anyhow::Result { - // Determine the current shell - let shell: ShellEnum = ShellEnum::default(); + command_env: &HashMap, +) -> anyhow::Result> { + // Command arguments + let args = match command { + Command::Process(ProcessCmd { + cmd: CmdArgs::Single(cmd), + .. + }) + | Command::Plain(cmd) => { + shlex::split(&cmd).ok_or_else(|| anyhow::anyhow!("invalid quoted command arguments"))? + } + Command::Process(ProcessCmd { + cmd: CmdArgs::Multiple(cmd), + .. + }) => cmd, + _ => { + // Nothing to do + return Ok(None); + } + }; + + // Format the arguments + let (cmd, formatted_args) = format_execute_command( + project, + &command_env + .get("PATH") + .or_else(|| command_env.get("Path")) + .into_iter() + .flat_map(std::env::split_paths) + .collect_vec(), + &args, + )?; + + // Construct a command to execute + let mut cmd = std::process::Command::new(cmd); + cmd.args(formatted_args); + cmd.envs(command_env); + + Ok(Some(cmd)) +} - // Construct an activator so we can run commands from the environment - let prefix = get_up_to_date_prefix(project).await?; - let activator = Activator::from_path(prefix.root(), shell.clone(), Platform::current())?; +/// CLI entry point for `pixi run` +pub async fn execute(args: Args) -> anyhow::Result<()> { + let project = Project::load_or_else_discover(args.manifest_path.as_deref())?; - let activator_result = activator.activation(ActivationVariables { - // Get the current PATH variable - path: Default::default(), + // Get the correctly ordered commands + let mut ordered_commands = order_commands(args.command, &project)?; - // Start from an empty prefix - conda_prefix: None, + // Get the environment to run the commands in. + let command_env = get_command_env(&project).await?; - // Prepending environment paths so they get found first. - path_modification_behaviour: PathModificationBehaviour::Prepend, - })?; + // Execute the commands in the correct order + while let Some(command) = ordered_commands.pop_back() { + if let Some(mut command) = create_command(command, &project, &command_env).await? { + let status = command.spawn()?.wait()?.code().unwrap_or(1); + if status != 0 { + std::process::exit(status); + } + } + } - // Generate a temporary file with the script to execute. This includes the activation of the - // environment. - let mut script = format!("{}\n", activator_result.script.trim()); + Ok(()) +} - // Add meta data env variables to help user interact with there configuration. - add_metadata_as_env_vars(&mut script, &shell, project)?; +/// Determine the environment variables to use when executing a command. +pub async fn get_command_env(project: &Project) -> anyhow::Result> { + // Get the prefix which we can then activate. + let prefix = get_up_to_date_prefix(project).await?; - command.write_invoke_script(&mut script, &shell, project, &activator_result)?; + // Get environment variables from the activation + let activation_env = await_in_progress("activating environment", run_activation(prefix)) + .await + .context("failed to activate environment")?; - tracing::debug!("Activation script:\n{}", script); + // Get environment variables from the manifest + let manifest_env = get_metadata_env(project); - // Write the contents of the script to a temporary file that we can execute with the shell. - let mut temp_file = tempfile::Builder::new() - .suffix(&format!(".{}", shell.extension())) - .tempfile()?; - std::io::Write::write_all(&mut temp_file, script.as_bytes())?; + // Construct command environment by concatenating the environments + Ok(activation_env + .into_iter() + .chain(manifest_env.into_iter()) + .collect()) +} - // Execute the script with the shell - let command = shell.create_run_script_command(temp_file.path()); +/// Runs and caches the activation script. +async fn run_activation(prefix: Prefix) -> anyhow::Result> { + let activator_result = tokio::task::spawn_blocking(move || { + // Run and cache the activation script + let shell: ShellEnum = ShellEnum::default(); - Ok(RunScriptCommand { - command, - _script: temp_file, - }) -} + // Construct an activator for the script + let activator = Activator::from_path(prefix.root(), shell, Platform::current())?; -/// CLI entry point for `pixi run` -pub async fn execute(args: Args) -> anyhow::Result<()> { - let project = Project::load_or_else_discover(args.manifest_path.as_deref())?; - // Get the correctly ordered commands - let mut ordered_commands = order_commands(args.command, &project).await?; + // Run the activation + activator.run_activation(ActivationVariables { + // Get the current PATH variable + path: Default::default(), - // Execute the commands in the correct order - while let Some(command) = ordered_commands.pop_back() { - let mut script_command = create_command(command, &project).await?; - let status = script_command.command.spawn()?.wait()?.code().unwrap_or(1); - if status != 0 { - std::process::exit(status); - } - } + // Start from an empty prefix + conda_prefix: None, - Ok(()) + // Prepending environment paths so they get found first. + path_modification_behaviour: PathModificationBehaviour::Prepend, + }) + }) + .await??; + + Ok(activator_result) } /// Given a command and arguments to invoke it, format it so that it is as generalized as possible. @@ -174,7 +217,7 @@ fn format_execute_command( project: &Project, path: &[PathBuf], args: &[String], -) -> anyhow::Result> { +) -> anyhow::Result<(PathBuf, Vec)> { // Determine the command location let command = args .first() @@ -183,11 +226,13 @@ fn format_execute_command( .ok_or_else(|| anyhow::anyhow!("could not find executable '{command}'"))?; // Format all the commands and quote them properly. - Ok([command_path.to_string_lossy().as_ref()] - .into_iter() - .chain(args.iter().skip(1).map(|x| x.as_ref())) - .map(|arg| shlex::quote(arg).into_owned()) - .collect()) + Ok(( + command_path, + args.iter() + .skip(1) + .map(|arg| shlex::quote(arg).into_owned()) + .collect(), + )) } // Locate the specified command name in the project or environment @@ -258,49 +303,3 @@ fn executable_extensions() -> &'static [String] { fn executable_extensions() -> &'static [String] { &[] } - -impl Command { - /// Write the invocation of this command to the specified script. - pub fn write_invoke_script( - &self, - contents: &mut String, - shell: &ShellEnum, - project: &Project, - activation_result: &ActivationResult, - ) -> anyhow::Result<()> { - let args = match self { - Command::Plain(cmd) => { - let args = shlex::split(cmd) - .ok_or_else(|| anyhow::anyhow!("invalid quoted command arguments"))?; - Some(format_execute_command( - project, - &activation_result.path, - &args, - )?) - } - Command::Process(cmd) => { - let args = match &cmd.cmd { - CmdArgs::Single(str) => shlex::split(str) - .ok_or_else(|| anyhow::anyhow!("invalid quoted command arguments"))?, - CmdArgs::Multiple(args) => args.to_vec(), - }; - Some(format_execute_command( - project, - &activation_result.path, - &args, - )?) - } - _ => None, - }; - - // If we have a command to execute, add it to the script. - if let Some(args) = args { - shell - .run_command(contents, args.iter().map(|arg| arg.as_ref())) - .expect("failed to write script"); - writeln!(contents).expect("failed to write script"); - } - - Ok(()) - } -} diff --git a/src/project/environment.rs b/src/project/environment.rs index 29db874c00..c96488a7f2 100644 --- a/src/project/environment.rs +++ b/src/project/environment.rs @@ -1,42 +1,47 @@ use crate::Project; +use itertools::Itertools; use rattler_shell::shell::{Shell, ShellEnum}; +use std::collections::HashMap; use std::fmt::Write; +// Setting a base prefix for the pixi package +const ENV_PREFIX: &str = "PIXI_PACKAGE_"; + // Add pixi meta data into the environment as environment variables. pub fn add_metadata_as_env_vars( script: &mut impl Write, shell: &ShellEnum, project: &Project, ) -> anyhow::Result<()> { - // Setting a base prefix for the pixi package - const PREFIX: &str = "PIXI_PACKAGE_"; - - shell.set_env_var( - script, - &format!("{PREFIX}ROOT"), - &(project.root().to_string_lossy()), - )?; - shell.set_env_var( - script, - &format!("{PREFIX}MANIFEST"), - &(project.manifest_path().to_string_lossy()), - )?; - shell.set_env_var( - script, - &format!("{PREFIX}PLATFORMS"), - &(project - .platforms() - .iter() - .map(|plat| plat.as_str()) - .collect::>() - .join(",")), - )?; - shell.set_env_var(script, &format!("{PREFIX}NAME"), project.name())?; - shell.set_env_var( - script, - &format!("{PREFIX}VERSION"), - &project.version().to_string(), - )?; + for (key, value) in get_metadata_env(project) { + shell.set_env_var(script, &key, &value)?; + } Ok(()) } + +/// Returns environment variables and their values that should be injected when running a command. +pub fn get_metadata_env(project: &Project) -> HashMap { + HashMap::from_iter([ + ( + format!("{ENV_PREFIX}ROOT"), + project.root().to_string_lossy().into_owned(), + ), + ( + format!("{ENV_PREFIX}MANIFEST"), + project.manifest_path().to_string_lossy().into_owned(), + ), + ( + format!("{ENV_PREFIX}PLATFORMS"), + project + .platforms() + .iter() + .map(|plat| plat.as_str()) + .join(","), + ), + ( + format!("{ENV_PREFIX}VERSION"), + project.version().to_string(), + ), + ]) +} diff --git a/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap b/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap index 104a3a2545..bc333aad15 100644 --- a/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap +++ b/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap @@ -1,5 +1,6 @@ --- source: src/project/manifest.rs +assertion_line: 337 expression: "toml_edit::de::from_str::(&contents).expect(\"parsing should succeed!\")" --- ProjectManifest { @@ -50,6 +51,8 @@ ProjectManifest { channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, }, host_dependencies: Some( @@ -64,6 +67,8 @@ ProjectManifest { channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, }, ), @@ -79,6 +84,8 @@ ProjectManifest { channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, }, ), diff --git a/src/project/snapshots/pixi__project__manifest__test__target_specific.snap b/src/project/snapshots/pixi__project__manifest__test__target_specific.snap index f741632175..837d564576 100644 --- a/src/project/snapshots/pixi__project__manifest__test__target_specific.snap +++ b/src/project/snapshots/pixi__project__manifest__test__target_specific.snap @@ -1,5 +1,6 @@ --- source: src/project/manifest.rs +assertion_line: 316 expression: "toml_edit::de::from_str::(&contents).expect(\"parsing should succeed!\")" --- ProjectManifest { @@ -60,6 +61,8 @@ ProjectManifest { channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, }, host_dependencies: None, @@ -91,6 +94,8 @@ ProjectManifest { channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, }, host_dependencies: None, diff --git a/src/project/snapshots/pixi__project__tests__dependency_sets.snap b/src/project/snapshots/pixi__project__tests__dependency_sets.snap index ffe4bad446..204a67abc0 100644 --- a/src/project/snapshots/pixi__project__tests__dependency_sets.snap +++ b/src/project/snapshots/pixi__project__tests__dependency_sets.snap @@ -1,5 +1,6 @@ --- source: src/project/mod.rs +assertion_line: 589 expression: "project.all_dependencies(Platform::Linux64).unwrap()" --- { @@ -22,6 +23,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, "libc": NamelessMatchSpec { version: Some( @@ -42,6 +45,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, "bar": NamelessMatchSpec { version: Some( @@ -62,5 +67,7 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, } diff --git a/src/project/snapshots/pixi__project__tests__dependency_target_sets.snap b/src/project/snapshots/pixi__project__tests__dependency_target_sets.snap index c00ad99d31..c8b32b69ae 100644 --- a/src/project/snapshots/pixi__project__tests__dependency_target_sets.snap +++ b/src/project/snapshots/pixi__project__tests__dependency_target_sets.snap @@ -1,5 +1,6 @@ --- source: src/project/mod.rs +assertion_line: 625 expression: "project.all_dependencies(Platform::Linux64).unwrap()" --- { @@ -22,6 +23,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, "wolflib": NamelessMatchSpec { version: Some( @@ -42,6 +45,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, "libc": NamelessMatchSpec { version: Some( @@ -62,6 +67,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, "banksy": NamelessMatchSpec { version: Some( @@ -82,6 +89,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, "bar": NamelessMatchSpec { version: Some( @@ -102,6 +111,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, "baz": NamelessMatchSpec { version: Some( @@ -122,5 +133,7 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" channel: None, subdir: None, namespace: None, + md5: None, + sha256: None, }, } diff --git a/tests/common/mod.rs b/tests/common/mod.rs index b35812e049..e1b8dea78d 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -4,7 +4,7 @@ pub mod package_database; use pixi::cli::add::SpecType; use pixi::cli::install::Args; -use pixi::cli::run::{create_command, order_commands}; +use pixi::cli::run::{create_command, get_command_env, order_commands}; use pixi::cli::{add, init, run}; use pixi::{consts, Project}; use rattler_conda_types::conda_lock::CondaLock; @@ -125,30 +125,33 @@ impl PixiControl { /// Run a command pub async fn run(&self, mut args: run::Args) -> anyhow::Result> { args.manifest_path = args.manifest_path.or_else(|| Some(self.manifest_path())); - let mut commands = order_commands(args.command, &self.project().unwrap()).await?; + let mut commands = order_commands(args.command, &self.project().unwrap())?; let project = self.project().unwrap(); + let command_env = get_command_env(&project).await.unwrap(); + let (tx, rx) = tokio::sync::mpsc::unbounded_channel(); tokio::spawn(async move { while let Some(command) = commands.pop_back() { - let mut command = create_command(command, &project) + let command = create_command(command, &project, &command_env) .await .expect("could not create command"); - let tx = tx.clone(); - spawn_blocking(move || { - let output = command - .command - .stdout(Stdio::piped()) - .spawn() - .expect("could not spawn task") - .wait_with_output() - .expect("could not run command"); - tx.send(RunResult { output }) - .expect("could not send output"); - }) - .await - .unwrap(); + if let Some(mut command) = command { + let tx = tx.clone(); + spawn_blocking(move || { + let output = command + .stdout(Stdio::piped()) + .spawn() + .expect("could not spawn task") + .wait_with_output() + .expect("could not run command"); + tx.send(RunResult { output }) + .expect("could not send output"); + }) + .await + .unwrap(); + } } }); From 26febabde6dd184322e36d20186c4753f31dcc24 Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Mon, 3 Jul 2023 14:11:35 +0200 Subject: [PATCH 06/19] doc: add some documentation on how to use the pixi cli. (#160) --- docs/README.md | 2 +- docs/cli.md | 120 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 121 insertions(+), 1 deletion(-) create mode 100644 docs/cli.md diff --git a/docs/README.md b/docs/README.md index 8c6e0c82d7..e53010c6d5 100644 --- a/docs/README.md +++ b/docs/README.md @@ -199,7 +199,7 @@ pixi global install cowpy ``` For more examples -check [the documentation](./examples.md#global-package-installation-in-isolation) +check [the documentation](./cli.md) # Contributing 😍 diff --git a/docs/cli.md b/docs/cli.md new file mode 100644 index 0000000000..3cf5d99a19 --- /dev/null +++ b/docs/cli.md @@ -0,0 +1,120 @@ +# The CLI commands of pixi +With `pixi` you can install packages in global space or local to the environment in a project. + +## Pixi Project Commands + +| Command | Use case | +|-----------|-------------------------------------------------------------| +| `init` | Creates a new project by initializing a `pixi.toml` file. | +| `add` | Adds a dependency to the project file. | +| `install` | Installs all dependencies of the project in its environment | +| `run` | Runs the given command in a project's environment | +| `shell` | Starts a shell in the project's environment | + +### Initialize a new project +This command is used to create a new project. +It initializes a pixi.toml file and also prepares a `.gitignore` to prevent the environment from being added to `git`. +```bash +pixi init myproject +pixi init ~/myproject +pixi init # Initializes directly in the current directory. +pixi init --channel conda-forge --channel bioconda myproject +``` + +### Add dependencies to the project +Adds dependencies to the `pixi.toml` before it does that it check if it is possible to solve the environment. +It will only add if the package with its version constraint is able to work with rest of the dependencies in the project. +```bash +pixi add numpy +pixi add numpy=1.24 +pixi add numpy pandas pytorch==1.8 +pixi add "numpy>=1.22,<1.24" +pixi add --manifest-path ~/myproject numpy +pixi add --host python==3.9.0 +pixi add --build cmake +``` + +### Install the dependencies +Installs all dependencies specified in the lockfile `pixi.lock`. +Which gets generated on `pixi add` or when you manually change the `pixi.toml` file and run `pixi install`. +```bash +pixi install +pixi install --manifest-path ~/myproject +``` + +### Run commands in the environment +The `run` commands first checks if the environment is ready to use. When you didn't run `pixi install` the run command will do that for you. The custom commands defined in the `pixi.toml` are also available through the run command. + +The run command will search for the given executable and run that in the pixi environment. + +You cannot run `pixi run source setup.bash` as `source` is a shell commando and not an executable. + +You cannot run `pixi run echo hello_world && echo hello` as the shell will split it up in `pixi run echo hello_world` and `echo hello`. + +```bash +pixi run python +pixi run cowpy "Hey pixi user" +pixi run --manifest-path ~/myproject python +# If you have specified a custom command in the pixi.toml you can run it with run aswell +pixi run build +``` + +### Start a shell in the environment +This command starts a new shell in the project's environment. +To exit the pixi shell, simply run exit +```bash +pixi shell +exit +pixi shell --manifest-path ~/myproject +exit +``` + + +## Pixi Global Commands + +| Command | Use case | +|------------------|-------------------------------------------------------------------------------------------------------------------------------------| +| `auth` | Authenticate on user level the access to remote hosts like `prefix.dev` or `anaconda.org` for the use of private channels. | +| `completion` | Generates the shell completion scripts to enable tab completion. | +| `global install` | Installs a package into its own environment and adds the binary to `PATH` so it can be accessed without activating the environment. | + +### Authenticate pixi to access package repository hosts +This command is used to authenticate the user's access to remote hosts such as `prefix.dev` or `anaconda.org` for private channels. +```bash +pixi auth login repo.prefix.dev --token pfx_JQEV-m_2bdz-D8NSyRSaNdHANx0qHjq7f2iD +pixi auth login anaconda.org --conda-token ABCDEFGHIJKLMNOP +pixi auth login https://myquetz.server --user john --password xxxxxx + +pixi auth logout repo.prefix.dev +pixi auth logout anaconda.org +``` + +### Add the completion scripts for your shell +This command generates the shell completion scripts to enable tab completion. The completion command outputs the scripts to the command line, and with an eval in the config file of your shell, it retrieves the latest version each time you source your shell. +```bash +# On unix (macOS or Linux), pick your shell (use `echo $SHELL` to find the shell you are using.): +echo 'eval "$(pixi completion --shell bash)"' >> ~/.bashrc +echo 'eval "$(pixi completion --shell zsh)"' >> ~/.zshrc +echo 'pixi completion --shell fish | source' >> ~/.config/fish/config.fish +echo 'eval (pixi completion --shell elvish | slurp)' >> ~/.elvish/rc.elv + +# On Windows: +Add-Content -Path $PROFILE -Value 'Invoke-Expression (&pixi completion --shell powershell)' +``` + +### Install a tool or package globally +This command installs a package into its own environment and adds the binary to `PATH`, allowing you to access it anywhere on your system without activating the environment. +```bash +pixi global install ruff +pixi global install starship +pixi global install --channel conda-forge --channel bioconda trackplot +# Or in a more concise form +pixi global install -c conda-forge -c bioconda trackplot + +# Support full conda matchspec +pixi global install python=3.9.* +pixi global install "python [version="3.11.0", build_number=1]" +pixi global install "python [version="3.11.0", build=he550d4f_1_cpython]" +pixi global install python=3.11.0=h10a6764_1_cpython +``` +After using global install you can use the package you installed anywhere on your system. From 2186c7c2339bc0c322e203f008c47a0519cbb0fd Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 3 Jul 2023 16:50:21 +0200 Subject: [PATCH 07/19] feat: use deno task shell to execute commands --- Cargo.lock | 52 +++++++++++ Cargo.toml | 1 + src/cli/run.rs | 206 ++++++++++++++------------------------------ tests/common/mod.rs | 6 +- 4 files changed, 119 insertions(+), 146 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80d9b30670..b8566d9ffc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1373,6 +1373,22 @@ dependencies = [ "syn 2.0.22", ] +[[package]] +name = "deno_task_shell" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fc7ee9db8e2094ace8b1c318b6c83533bc923524f9a5425846fb0e2cd4731a7" +dependencies = [ + "anyhow", + "futures 0.3.28", + "glob", + "monch", + "os_pipe", + "path-dedot", + "tokio", + "tokio-util", +] + [[package]] name = "der" version = "0.6.1" @@ -2569,6 +2585,12 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "monch" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb73e1dc7d232e1ab47ef27f45fa1d173a0979b370e763a9d0584556011150e0" + [[package]] name = "native-tls" version = "0.2.11" @@ -2829,6 +2851,16 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "os_pipe" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" +dependencies = [ + "libc", + "windows-sys 0.48.0", +] + [[package]] name = "ouroboros" version = "0.15.6" @@ -2908,6 +2940,15 @@ dependencies = [ "subtle", ] +[[package]] +name = "path-dedot" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d55e486337acb9973cdea3ec5638c1b3bcb22e573b2b7b41969e0c744d5a15e" +dependencies = [ + "once_cell", +] + [[package]] name = "pbkdf2" version = "0.11.0" @@ -2986,6 +3027,7 @@ dependencies = [ "clap-verbosity-flag", "clap_complete", "console", + "deno_task_shell", "dirs 5.0.1", "dunce", "futures 0.3.28", @@ -4024,6 +4066,15 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" +[[package]] +name = "signal-hook-registry" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +dependencies = [ + "libc", +] + [[package]] name = "signature" version = "1.6.4" @@ -4386,6 +4437,7 @@ dependencies = [ "mio", "num_cpus", "pin-project-lite", + "signal-hook-registry", "socket2", "tokio-macros", "windows-sys 0.48.0", diff --git a/Cargo.toml b/Cargo.toml index 2b3643c9e4..2399d0808a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,6 +22,7 @@ clap = { version = "4.2.4", default-features = false, features = ["derive", "usa clap-verbosity-flag = "2.0.1" clap_complete = "4.2.1" console = { version = "0.15.5", features = ["windows-console-colors"] } +deno_task_shell = "0.12.0" dirs = "5.0.1" dunce = "1.0.4" futures = "0.3.28" diff --git a/src/cli/run.rs b/src/cli/run.rs index 6224a47c14..397c469be5 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -1,11 +1,9 @@ use anyhow::Context; use std::collections::{HashMap, HashSet, VecDeque}; -use std::path::Path; use std::path::PathBuf; use std::string::String; use clap::Parser; -use is_executable::IsExecutable; use itertools::Itertools; use rattler_conda_types::Platform; @@ -37,15 +35,20 @@ pub struct Args { pub fn order_commands( commands: Vec, project: &Project, -) -> anyhow::Result> { +) -> anyhow::Result)>> { let command: Vec<_> = commands.iter().map(|c| c.to_string()).collect(); - let (command_name, command) = command + // Find the command in the project. + let (command_name, command, additional_args) = command .first() .and_then(|cmd_name| { - project - .command_opt(cmd_name) - .map(|cmd| (Some(cmd_name.clone()), cmd.clone())) + project.command_opt(cmd_name).map(|cmd| { + ( + Some(cmd_name.clone()), + cmd.clone(), + command[1..].iter().cloned().collect_vec(), + ) + }) }) .unwrap_or_else(|| { ( @@ -54,6 +57,7 @@ pub fn order_commands( cmd: CmdArgs::Multiple(commands), depends_on: vec![], }), + Vec::new(), ) }); @@ -64,12 +68,12 @@ pub fn order_commands( let mut added = HashSet::new(); // Add the command specified on the command line first - s1.push_back(command); + s1.push_back((command, additional_args)); if let Some(command_name) = command_name { added.insert(command_name); } - while let Some(command) = s1.pop_back() { + while let Some((command, additional_args)) = s1.pop_back() { // Get the dependencies of the command let depends_on = match &command { Command::Process(process) => process.depends_on.as_slice(), @@ -85,59 +89,69 @@ pub fn order_commands( .ok_or_else(|| anyhow::anyhow!("failed to find dependency {}", dependency))? .clone(); - s1.push_back(cmd); + s1.push_back((cmd, Vec::new())); added.insert(dependency.clone()); } } - s2.push_back(command) + s2.push_back((command, additional_args)) } Ok(s2) } -pub async fn create_command( +/// Executes the given command withing the specified project and with the given environment. +pub async fn execute_command( command: Command, project: &Project, command_env: &HashMap, -) -> anyhow::Result> { - // Command arguments - let args = match command { + args: Vec, +) -> anyhow::Result { + // Construct the script from the command + let command = match command { Command::Process(ProcessCmd { cmd: CmdArgs::Single(cmd), .. }) - | Command::Plain(cmd) => { - shlex::split(&cmd).ok_or_else(|| anyhow::anyhow!("invalid quoted command arguments"))? - } + | Command::Plain(cmd) => cmd, Command::Process(ProcessCmd { - cmd: CmdArgs::Multiple(cmd), + cmd: CmdArgs::Multiple(args), .. - }) => cmd, + }) => quote_arguments(args), _ => { // Nothing to do - return Ok(None); + return Ok(0); } }; - // Format the arguments - let (cmd, formatted_args) = format_execute_command( - project, - &command_env - .get("PATH") - .or_else(|| command_env.get("Path")) - .into_iter() - .flat_map(std::env::split_paths) - .collect_vec(), - &args, - )?; - - // Construct a command to execute - let mut cmd = std::process::Command::new(cmd); - cmd.args(formatted_args); - cmd.envs(command_env); - - Ok(Some(cmd)) + // Append the command line arguments + let cli_args = quote_arguments(args); + let full_script = format!("{command} {cli_args}"); + + // Parse the shell command + let script = deno_task_shell::parser::parse(full_script.trim())?; + + // Execute the shell command + Ok(deno_task_shell::execute( + script, + command_env.clone(), + project.root(), + Default::default(), + ) + .await) +} + +fn quote_arguments(args: impl IntoIterator>) -> String { + args.into_iter() + // surround all the additional arguments in double quotes and santize any command + // substitution + .map(|a| { + format!( + "\"{}\"", + a.as_ref().replace('"', "\\\"").replace('$', "\\$") + ) + }) + .join(" ") } /// CLI entry point for `pixi run` @@ -151,19 +165,20 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { let command_env = get_command_env(&project).await?; // Execute the commands in the correct order - while let Some(command) = ordered_commands.pop_back() { - if let Some(mut command) = create_command(command, &project, &command_env).await? { - let status = command.spawn()?.wait()?.code().unwrap_or(1); - if status != 0 { - std::process::exit(status); - } + while let Some((command, args)) = ordered_commands.pop_back() { + let status_code = execute_command(command, &project, &command_env, args).await?; + if status_code != 0 { + std::process::exit(status_code); } } Ok(()) } -/// Determine the environment variables to use when executing a command. +/// Determine the environment variables to use when executing a command. This method runs the +/// activation scripts from the environment and stores the environment variables it added, it adds +/// environment variables set by the project and merges all of that with the system environment +/// variables. pub async fn get_command_env(project: &Project) -> anyhow::Result> { // Get the prefix which we can then activate. let prefix = get_up_to_date_prefix(project).await?; @@ -177,8 +192,8 @@ pub async fn get_command_env(project: &Project) -> anyhow::Result anyhow::Result anyhow::Result<(PathBuf, Vec)> { - // Determine the command location - let command = args - .first() - .ok_or_else(|| anyhow::anyhow!("empty command"))?; - let command_path = find_command(command, project.root(), path.iter().map(|p| p.as_path())) - .ok_or_else(|| anyhow::anyhow!("could not find executable '{command}'"))?; - - // Format all the commands and quote them properly. - Ok(( - command_path, - args.iter() - .skip(1) - .map(|arg| shlex::quote(arg).into_owned()) - .collect(), - )) -} - -// Locate the specified command name in the project or environment -fn find_command<'a>( - executable_name: &str, - project_root: &'a Path, - prefix_paths: impl IntoIterator, -) -> Option { - let executable_path = Path::new(executable_name); - - // Iterate over all search paths - for search_path in [project_root].into_iter().chain(prefix_paths) { - let absolute_executable_path = search_path.join(executable_path); - - // Try to locate an executable at this location - if let Some(executable_path) = find_canonical_executable_path(&absolute_executable_path) { - return Some(executable_path); - } - } - - None -} - -// Given a relative executable path, try to find the canonical path -fn find_canonical_executable_path(path: &Path) -> Option { - // If the path already points to an existing executable there is nothing to do. - match dunce::canonicalize(path) { - Ok(path) if path.is_executable() => return Some(path), - _ => {} - } - - // Get executable extensions and see if by adding the extension we can turn it into a valid - // path. - for ext in executable_extensions() { - let with_ext = path.with_extension(ext); - match dunce::canonicalize(with_ext) { - Ok(path) if path.is_executable() => return Some(path), - _ => {} - } - } - - None -} - -/// Returns all file extensions that are considered for executable files. -#[cfg(windows)] -fn executable_extensions() -> &'static [String] { - use once_cell::sync::Lazy; - static PATHEXT: Lazy> = Lazy::new(|| { - if let Some(pathext) = std::env::var_os("PATHEXT") { - pathext - .to_string_lossy() - .split(';') - // Filter out empty tokens and ';' at the end - .filter(|f| f.len() > 1) - // Cut off the leading '.' character - .map(|ext| ext[1..].to_string()) - .collect::>() - } else { - Vec::new() - } - }); - PATHEXT.as_slice() -} - -/// Returns all file extensions that are considered for executable files. -#[cfg(not(windows))] -fn executable_extensions() -> &'static [String] { - &[] -} diff --git a/tests/common/mod.rs b/tests/common/mod.rs index e1b8dea78d..c055eeb3f3 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -4,7 +4,7 @@ pub mod package_database; use pixi::cli::add::SpecType; use pixi::cli::install::Args; -use pixi::cli::run::{create_command, get_command_env, order_commands}; +use pixi::cli::run::{execute_command, get_command_env, order_commands}; use pixi::cli::{add, init, run}; use pixi::{consts, Project}; use rattler_conda_types::conda_lock::CondaLock; @@ -133,8 +133,8 @@ impl PixiControl { let (tx, rx) = tokio::sync::mpsc::unbounded_channel(); tokio::spawn(async move { - while let Some(command) = commands.pop_back() { - let command = create_command(command, &project, &command_env) + while let Some((command, args)) = commands.pop_back() { + let command = execute_command(command, &project, &command_env, args) .await .expect("could not create command"); if let Some(mut command) = command { From 5ffd6f5244504f6c4bcb1fdbe8e2c8e73dfac6fe Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Tue, 4 Jul 2023 14:52:53 +0200 Subject: [PATCH 08/19] split into create and execute command --- src/cli/run.rs | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/src/cli/run.rs b/src/cli/run.rs index 397c469be5..0edca62f40 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -4,6 +4,7 @@ use std::path::PathBuf; use std::string::String; use clap::Parser; +use deno_task_shell::parser::SequentialList; use itertools::Itertools; use rattler_conda_types::Platform; @@ -100,13 +101,7 @@ pub fn order_commands( Ok(s2) } -/// Executes the given command withing the specified project and with the given environment. -pub async fn execute_command( - command: Command, - project: &Project, - command_env: &HashMap, - args: Vec, -) -> anyhow::Result { +pub async fn create_command(command: Command, args: Vec) -> anyhow::Result { // Construct the script from the command let command = match command { Command::Process(ProcessCmd { @@ -119,8 +114,7 @@ pub async fn execute_command( .. }) => quote_arguments(args), _ => { - // Nothing to do - return Ok(0); + return Err(anyhow::anyhow!("No command given")); } }; @@ -129,7 +123,16 @@ pub async fn execute_command( let full_script = format!("{command} {cli_args}"); // Parse the shell command - let script = deno_task_shell::parser::parse(full_script.trim())?; + deno_task_shell::parser::parse(full_script.trim()) +} +/// Executes the given command withing the specified project and with the given environment. +pub async fn execute_command( + command: Command, + project: &Project, + command_env: &HashMap, + args: Vec, +) -> anyhow::Result { + let script = create_command(command, args).await?; // Execute the shell command Ok(deno_task_shell::execute( @@ -145,12 +148,7 @@ fn quote_arguments(args: impl IntoIterator>) -> String { args.into_iter() // surround all the additional arguments in double quotes and santize any command // substitution - .map(|a| { - format!( - "\"{}\"", - a.as_ref().replace('"', "\\\"").replace('$', "\\$") - ) - }) + .map(|a| format!("\"{}\"", a.as_ref().replace('"', "\\\""))) .join(" ") } From fc616ae18249550193015bf3148d3e02e4a1836c Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Wed, 5 Jul 2023 14:50:55 +0200 Subject: [PATCH 09/19] allow for the use of environment variables in commands --- examples/cpp-sdl/pixi.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/cpp-sdl/pixi.toml b/examples/cpp-sdl/pixi.toml index 35948a32f1..0ee7f5a2ad 100644 --- a/examples/cpp-sdl/pixi.toml +++ b/examples/cpp-sdl/pixi.toml @@ -15,17 +15,17 @@ configure = { cmd = [ "Ninja", # The source is in the root directory "-S", - ".", + "$PIXI_PACKAGE_ROOT", # We wanna build in the .build directory "-B", - ".build", + "$PIXI_PACKAGE_ROOT/.build", ] } # Build the executable but make sure CMake is configured first. -build = { cmd = ["ninja", "-C", ".build"], depends_on = ["configure"] } +build = { cmd = ["ninja", "-C", "$PIXI_PACKAGE_ROOT/.build"], depends_on = ["configure"] } # Start the built executable -start = { cmd = ".build/bin/sdl_example", depends_on = ["build"] } +start = { cmd = "$PIXI_PACKAGE_ROOT/.build/bin/sdl_example", depends_on = ["build"] } [dependencies] cmake = "3.26.4.*" From f4ecd195edb806a424ef95ca4092d1aff87d63bc Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Wed, 5 Jul 2023 14:57:19 +0200 Subject: [PATCH 10/19] Revert "allow for the use of environment variables in commands" This reverts commit fc616ae18249550193015bf3148d3e02e4a1836c. --- examples/cpp-sdl/pixi.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/cpp-sdl/pixi.toml b/examples/cpp-sdl/pixi.toml index 0ee7f5a2ad..35948a32f1 100644 --- a/examples/cpp-sdl/pixi.toml +++ b/examples/cpp-sdl/pixi.toml @@ -15,17 +15,17 @@ configure = { cmd = [ "Ninja", # The source is in the root directory "-S", - "$PIXI_PACKAGE_ROOT", + ".", # We wanna build in the .build directory "-B", - "$PIXI_PACKAGE_ROOT/.build", + ".build", ] } # Build the executable but make sure CMake is configured first. -build = { cmd = ["ninja", "-C", "$PIXI_PACKAGE_ROOT/.build"], depends_on = ["configure"] } +build = { cmd = ["ninja", "-C", ".build"], depends_on = ["configure"] } # Start the built executable -start = { cmd = "$PIXI_PACKAGE_ROOT/.build/bin/sdl_example", depends_on = ["build"] } +start = { cmd = ".build/bin/sdl_example", depends_on = ["build"] } [dependencies] cmake = "3.26.4.*" From 2c2e45ec78c6ebd5d089778e6d42b7cef48dbe79 Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Wed, 5 Jul 2023 15:52:51 +0200 Subject: [PATCH 11/19] Use the execute_with_pipes to use the output of the deno_task_shell in the integration tests --- src/cli/run.rs | 43 +++++++++++++++++++++++++------ tests/common/mod.rs | 57 +++++++++--------------------------------- tests/install_tests.rs | 8 +++--- 3 files changed, 52 insertions(+), 56 deletions(-) diff --git a/src/cli/run.rs b/src/cli/run.rs index 0edca62f40..d1b9604e25 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -5,6 +5,7 @@ use std::string::String; use clap::Parser; use deno_task_shell::parser::SequentialList; +use deno_task_shell::{execute_with_pipes, get_output_writer_and_handle, pipe, ShellState}; use itertools::Itertools; use rattler_conda_types::Platform; @@ -21,6 +22,14 @@ use rattler_shell::{ shell::ShellEnum, }; +// Run output which includes the information gotten from the deno task shell run. +#[derive(Default)] +pub struct RunOutput { + pub exit_code: i32, + pub stdout: String, + pub stderr: String, +} + /// Runs command in project. #[derive(Parser, Debug, Default)] #[clap(trailing_var_arg = true, arg_required_else_help = true)] @@ -101,7 +110,7 @@ pub fn order_commands( Ok(s2) } -pub async fn create_command(command: Command, args: Vec) -> anyhow::Result { +pub async fn create_script(command: Command, args: Vec) -> anyhow::Result { // Construct the script from the command let command = match command { Command::Process(ProcessCmd { @@ -126,14 +135,11 @@ pub async fn create_command(command: Command, args: Vec) -> anyhow::Resu deno_task_shell::parser::parse(full_script.trim()) } /// Executes the given command withing the specified project and with the given environment. -pub async fn execute_command( - command: Command, +pub async fn execute_script( + script: SequentialList, project: &Project, command_env: &HashMap, - args: Vec, ) -> anyhow::Result { - let script = create_command(command, args).await?; - // Execute the shell command Ok(deno_task_shell::execute( script, @@ -144,6 +150,28 @@ pub async fn execute_command( .await) } +pub async fn execute_script_with_output( + script: SequentialList, + project: &Project, + command_env: &HashMap, + input: Option<&[u8]>, +) -> RunOutput { + let (stdin, mut stdin_writer) = pipe(); + if let Some(stdin) = input { + stdin_writer.write_all(stdin).unwrap(); + } + drop(stdin_writer); // prevent a deadlock by dropping the writer + let (stdout, stdout_handle) = get_output_writer_and_handle(); + let (stderr, stderr_handle) = get_output_writer_and_handle(); + let state = ShellState::new(command_env.clone(), project.root(), Default::default()); + let code = execute_with_pipes(script, state, stdin, stdout, stderr).await; + RunOutput { + exit_code: code, + stdout: stdout_handle.await.unwrap(), + stderr: stderr_handle.await.unwrap(), + } +} + fn quote_arguments(args: impl IntoIterator>) -> String { args.into_iter() // surround all the additional arguments in double quotes and santize any command @@ -164,7 +192,8 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { // Execute the commands in the correct order while let Some((command, args)) = ordered_commands.pop_back() { - let status_code = execute_command(command, &project, &command_env, args).await?; + let script = create_script(command, args).await?; + let status_code = execute_script(script, &project, &command_env).await?; if status_code != 0 { std::process::exit(status_code); } diff --git a/tests/common/mod.rs b/tests/common/mod.rs index c055eeb3f3..e25890541b 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -4,7 +4,9 @@ pub mod package_database; use pixi::cli::add::SpecType; use pixi::cli::install::Args; -use pixi::cli::run::{execute_command, get_command_env, order_commands}; +use pixi::cli::run::{ + create_script, execute_script_with_output, get_command_env, order_commands, RunOutput, +}; use pixi::cli::{add, init, run}; use pixi::{consts, Project}; use rattler_conda_types::conda_lock::CondaLock; @@ -12,11 +14,8 @@ use rattler_conda_types::{MatchSpec, Version}; use std::future::{Future, IntoFuture}; use std::path::{Path, PathBuf}; use std::pin::Pin; -use std::process::{Output, Stdio}; use std::str::FromStr; use tempfile::TempDir; -use tokio::sync::mpsc::UnboundedReceiver; -use tokio::task::spawn_blocking; use url::Url; /// To control the pixi process @@ -25,22 +24,6 @@ pub struct PixiControl { tmpdir: TempDir, } -pub struct RunResult { - output: Output, -} - -impl RunResult { - /// Was the output successful - pub fn success(&self) -> bool { - self.output.status.success() - } - - /// Get the output - pub fn stdout(&self) -> &str { - std::str::from_utf8(&self.output.stdout).expect("could not get output") - } -} - /// MatchSpecs from an iterator pub fn string_from_iter(iter: impl IntoIterator>) -> Vec { iter.into_iter().map(|s| s.as_ref().to_string()).collect() @@ -123,39 +106,23 @@ impl PixiControl { } /// Run a command - pub async fn run(&self, mut args: run::Args) -> anyhow::Result> { + pub async fn run(&self, mut args: run::Args) -> anyhow::Result { args.manifest_path = args.manifest_path.or_else(|| Some(self.manifest_path())); let mut commands = order_commands(args.command, &self.project().unwrap())?; let project = self.project().unwrap(); let command_env = get_command_env(&project).await.unwrap(); - let (tx, rx) = tokio::sync::mpsc::unbounded_channel(); - - tokio::spawn(async move { - while let Some((command, args)) = commands.pop_back() { - let command = execute_command(command, &project, &command_env, args) - .await - .expect("could not create command"); - if let Some(mut command) = command { - let tx = tx.clone(); - spawn_blocking(move || { - let output = command - .stdout(Stdio::piped()) - .spawn() - .expect("could not spawn task") - .wait_with_output() - .expect("could not run command"); - tx.send(RunResult { output }) - .expect("could not send output"); - }) - .await - .unwrap(); + while let Some((command, args)) = commands.pop_back() { + let script = create_script(command, args).await; + if let Ok(script) = script { + let output = execute_script_with_output(script, &project, &command_env, None).await; + if commands.is_empty() { + return Ok(output); } } - }); - - Ok(rx) + } + Ok(RunOutput::default()) } /// Create an installed environment. I.e a resolved and installed prefix diff --git a/tests/install_tests.rs b/tests/install_tests.rs index b01703b3b2..be67ede36d 100644 --- a/tests/install_tests.rs +++ b/tests/install_tests.rs @@ -20,16 +20,16 @@ async fn install_run_python() { assert!(lock.contains_matchspec("python==3.11.0")); // Check if python is installed and can be run - let mut result = pixi + let result = pixi .run(run::Args { command: string_from_iter(["python", "--version"]), ..Default::default() }) .await .unwrap(); - let run_result = result.recv().await.unwrap(); - assert!(run_result.success()); - assert_eq!(run_result.stdout().trim(), "Python 3.11.0"); + assert_eq!(result.exit_code, 0); + assert_eq!(result.stdout.trim(), "Python 3.11.0"); + assert!(result.stderr.is_empty()); } /// This is a test to check that creating incremental lock files works. From 0c5b999a226e958d4e0b789f5c4a572d01d2f8f1 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 6 Jul 2023 11:12:52 +0200 Subject: [PATCH 12/19] feat: now uses our use_deno_task_shell fork --- Cargo.lock | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b8566d9ffc..558c1450ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1376,8 +1376,7 @@ dependencies = [ [[package]] name = "deno_task_shell" version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fc7ee9db8e2094ace8b1c318b6c83533bc923524f9a5425846fb0e2cd4731a7" +source = "git+https://github.com/prefix-dev/deno_task_shell#d534256b8874efc4f4bf6a1193994e14e5d67aeb" dependencies = [ "anyhow", "futures 0.3.28", diff --git a/Cargo.toml b/Cargo.toml index 2399d0808a..a323af6add 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ clap = { version = "4.2.4", default-features = false, features = ["derive", "usa clap-verbosity-flag = "2.0.1" clap_complete = "4.2.1" console = { version = "0.15.5", features = ["windows-console-colors"] } -deno_task_shell = "0.12.0" +deno_task_shell = { git = "https://github.com/prefix-dev/deno_task_shell" } dirs = "5.0.1" dunce = "1.0.4" futures = "0.3.28" From 477a4fadc6b74668fe8058d070b46a753272bb41 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 6 Jul 2023 13:32:29 +0200 Subject: [PATCH 13/19] feat: switch to new solver backend implementation (#178) * feat: switch to new solver backend implementation * fix: fmt * fix: missing snapshot * fix: actually all missing snapshots --- Cargo.lock | 38 ++++++++++------- Cargo.toml | 2 +- src/cli/add.rs | 15 ++++--- src/cli/global/install.rs | 8 ++-- src/environment.rs | 10 ++--- ...ect__manifest__test__dependency_types.snap | 14 ++----- ...ject__manifest__test__target_specific.snap | 21 +++------- ...pixi__project__tests__dependency_sets.snap | 21 +++------- ...roject__tests__dependency_target_sets.snap | 42 ++++++------------- ...get_minimal_virtual_packages.linux-64.snap | 15 +++---- ...inimal_virtual_packages.linux-aarch64.snap | 15 +++---- ...inimal_virtual_packages.linux-ppc64le.snap | 15 +++---- ...t_get_minimal_virtual_packages.osx-64.snap | 8 ++-- ...et_minimal_virtual_packages.osx-arm64.snap | 8 ++-- tests/common/package_database.rs | 4 +- 15 files changed, 92 insertions(+), 144 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80d9b30670..99a3256d7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2389,6 +2389,19 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" +[[package]] +name = "libsolv-sys" +version = "0.1.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +dependencies = [ + "anyhow", + "cc", + "cfg-if", + "cmake", + "libc", + "libz-sys", +] + [[package]] name = "libz-sys" version = "1.1.9" @@ -3232,7 +3245,7 @@ dependencies = [ [[package]] name = "rattler" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "anyhow", "apple-codesign", @@ -3273,7 +3286,7 @@ dependencies = [ [[package]] name = "rattler_conda_types" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "chrono", "fxhash", @@ -3301,7 +3314,7 @@ dependencies = [ [[package]] name = "rattler_digest" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "blake2", "digest 0.10.7", @@ -3316,7 +3329,7 @@ dependencies = [ [[package]] name = "rattler_macros" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "quote", "syn 2.0.22", @@ -3325,7 +3338,7 @@ dependencies = [ [[package]] name = "rattler_networking" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "anyhow", "dirs 5.0.1", @@ -3342,7 +3355,7 @@ dependencies = [ [[package]] name = "rattler_package_streaming" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "bzip2", "chrono", @@ -3365,7 +3378,7 @@ dependencies = [ [[package]] name = "rattler_repodata_gateway" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "anyhow", "async-compression", @@ -3403,7 +3416,7 @@ dependencies = [ [[package]] name = "rattler_shell" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "enum_dispatch", "indexmap 1.9.3", @@ -3420,15 +3433,12 @@ dependencies = [ [[package]] name = "rattler_solve" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "anyhow", - "cc", - "cfg-if", - "cmake", "hex", "libc", - "libz-sys", + "libsolv-sys", "rattler_conda_types", "rattler_digest", "serde", @@ -3441,7 +3451,7 @@ dependencies = [ [[package]] name = "rattler_virtual_packages" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#f3eddf019fdace8f3c0d46d36130481ebe06e970" +source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" dependencies = [ "cfg-if", "libloading", diff --git a/Cargo.toml b/Cargo.toml index 2b3643c9e4..8cc1a75b18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ rattler_conda_types = { default-features = false, git = "https://github.com/mamb rattler_networking = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main" } rattler_repodata_gateway = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main", features = ["sparse"] } rattler_shell = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main", features = ["sysinfo"] } -rattler_solve = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main" } +rattler_solve = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main", features = ["libsolv-sys"] } rattler_virtual_packages = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main" } #rattler = { default-features = false, path="../rattler/crates/rattler" } #rattler_conda_types = { default-features = false, path="../rattler/crates/rattler_conda_types" } diff --git a/src/cli/add.rs b/src/cli/add.rs index 840ad3e024..24e468aa3b 100644 --- a/src/cli/add.rs +++ b/src/cli/add.rs @@ -11,7 +11,7 @@ use rattler_conda_types::{ version_spec::VersionOperator, MatchSpec, NamelessMatchSpec, Platform, Version, VersionSpec, }; use rattler_repodata_gateway::sparse::SparseRepoData; -use rattler_solve::{LibsolvRepoData, SolverBackend}; +use rattler_solve::{libsolv_sys, SolverImpl}; use std::collections::HashMap; use std::path::PathBuf; @@ -212,9 +212,7 @@ pub fn determine_best_version( .map(|(name, spec)| MatchSpec::from_nameless(spec.clone(), Some(name.clone()))) .collect(), - available_packages: available_packages - .iter() - .map(|records| LibsolvRepoData::from_records(records)), + available_packages: &available_packages, virtual_packages: get_minimal_virtual_packages(platform) .into_iter() @@ -227,12 +225,17 @@ pub fn determine_best_version( pinned_packages: vec![], }; - let records = rattler_solve::LibsolvBackend.solve(task)?; + let records = libsolv_sys::Solver.solve(task)?; // Determine the versions of the new packages Ok(records .into_iter() .filter(|record| new_specs.contains_key(&record.package_record.name)) - .map(|record| (record.package_record.name, record.package_record.version)) + .map(|record| { + ( + record.package_record.name, + record.package_record.version.into(), + ) + }) .collect()) } diff --git a/src/cli/global/install.rs b/src/cli/global/install.rs index fa046e5a5f..a731230051 100644 --- a/src/cli/global/install.rs +++ b/src/cli/global/install.rs @@ -15,7 +15,7 @@ use rattler_shell::{ shell::Shell, shell::ShellEnum, }; -use rattler_solve::{LibsolvRepoData, SolverBackend}; +use rattler_solve::{libsolv_sys, SolverImpl}; use std::{ path::{Path, PathBuf}, str::FromStr, @@ -219,9 +219,7 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { // Construct a solver task that we can start solving. let task = rattler_solve::SolverTask { specs: vec![package_matchspec], - available_packages: available_packages - .iter() - .map(|records| LibsolvRepoData::from_records(records)), + available_packages: &available_packages, virtual_packages: rattler_virtual_packages::VirtualPackage::current()? .iter() @@ -234,7 +232,7 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { }; // Solve it - let records = rattler_solve::LibsolvBackend.solve(task)?; + let records = libsolv_sys::Solver.solve(task)?; // Create the binary environment prefix where we install or update the package let bin_prefix = BinEnvDir::create(&package_name).await?; diff --git a/src/environment.rs b/src/environment.rs index f9c2b4925c..9819da502c 100644 --- a/src/environment.rs +++ b/src/environment.rs @@ -26,7 +26,7 @@ use rattler_conda_types::{ }; use rattler_networking::AuthenticatedClient; use rattler_repodata_gateway::sparse::SparseRepoData; -use rattler_solve::{LibsolvRepoData, SolverBackend}; +use rattler_solve::{libsolv_sys, SolverImpl}; use std::collections::HashMap; use std::{ collections::{HashSet, VecDeque}, @@ -329,9 +329,7 @@ pub async fn update_lock_file( // Construct a solver task that we can start solving. let task = rattler_solve::SolverTask { specs: match_specs.clone(), - available_packages: available_packages - .iter() - .map(|records| LibsolvRepoData::from_records(records)), + available_packages: &available_packages, // TODO: All these things. locked_packages: existing_lock_file @@ -343,7 +341,7 @@ pub async fn update_lock_file( }; // Solve the task - let records = rattler_solve::LibsolvBackend.solve(task)?; + let records = libsolv_sys::Solver.solve(task)?; // Update lock file let mut locked_packages = LockedPackages::new(platform); @@ -415,7 +413,7 @@ pub fn get_required_packages( subdir: "".to_string(), timestamp: None, track_features: vec![], - version: Version::from_str(&pkg.version)?, + version: Version::from_str(&pkg.version)?.into(), }, }) }) diff --git a/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap b/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap index bc333aad15..4ea9f5b519 100644 --- a/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap +++ b/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap @@ -7,11 +7,8 @@ ProjectManifest { project: ProjectMetadata { name: "foo", version: Version { - norm: Some( - "0.1.0", - ), - version: "[[0], [0], [1], [0]]", - local: "[]", + version: [[0], [0], [1], [0]], + local: [], }, description: None, authors: [], @@ -37,11 +34,8 @@ ProjectManifest { Operator( Equals, Version { - norm: Some( - "1.0.0", - ), - version: "[[0], [1], [0], [0]]", - local: "[]", + version: [[0], [1], [0], [0]], + local: [], }, ), ), diff --git a/src/project/snapshots/pixi__project__manifest__test__target_specific.snap b/src/project/snapshots/pixi__project__manifest__test__target_specific.snap index 837d564576..539694d0cf 100644 --- a/src/project/snapshots/pixi__project__manifest__test__target_specific.snap +++ b/src/project/snapshots/pixi__project__manifest__test__target_specific.snap @@ -7,11 +7,8 @@ ProjectManifest { project: ProjectMetadata { name: "foo", version: Version { - norm: Some( - "0.1.0", - ), - version: "[[0], [0], [1], [0]]", - local: "[]", + version: [[0], [0], [1], [0]], + local: [], }, description: None, authors: [], @@ -47,11 +44,8 @@ ProjectManifest { Operator( Equals, Version { - norm: Some( - "3.4.5", - ), - version: "[[0], [3], [4], [5]]", - local: "[]", + version: [[0], [3], [4], [5]], + local: [], }, ), ), @@ -80,11 +74,8 @@ ProjectManifest { Operator( Equals, Version { - norm: Some( - "1.2.3", - ), - version: "[[0], [1], [2], [3]]", - local: "[]", + version: [[0], [1], [2], [3]], + local: [], }, ), ), diff --git a/src/project/snapshots/pixi__project__tests__dependency_sets.snap b/src/project/snapshots/pixi__project__tests__dependency_sets.snap index 204a67abc0..5ed94a0ee5 100644 --- a/src/project/snapshots/pixi__project__tests__dependency_sets.snap +++ b/src/project/snapshots/pixi__project__tests__dependency_sets.snap @@ -9,11 +9,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "1.0", - ), - version: "[[0], [1], [0]]", - local: "[]", + version: [[0], [1], [0]], + local: [], }, ), ), @@ -31,11 +28,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "2.12", - ), - version: "[[0], [2], [12]]", - local: "[]", + version: [[0], [2], [12]], + local: [], }, ), ), @@ -53,11 +47,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "1.0", - ), - version: "[[0], [1], [0]]", - local: "[]", + version: [[0], [1], [0]], + local: [], }, ), ), diff --git a/src/project/snapshots/pixi__project__tests__dependency_target_sets.snap b/src/project/snapshots/pixi__project__tests__dependency_target_sets.snap index c8b32b69ae..81f401f37f 100644 --- a/src/project/snapshots/pixi__project__tests__dependency_target_sets.snap +++ b/src/project/snapshots/pixi__project__tests__dependency_target_sets.snap @@ -9,11 +9,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "1.0", - ), - version: "[[0], [1], [0]]", - local: "[]", + version: [[0], [1], [0]], + local: [], }, ), ), @@ -31,11 +28,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "1.0", - ), - version: "[[0], [1], [0]]", - local: "[]", + version: [[0], [1], [0]], + local: [], }, ), ), @@ -53,11 +47,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "2.12", - ), - version: "[[0], [2], [12]]", - local: "[]", + version: [[0], [2], [12]], + local: [], }, ), ), @@ -75,11 +66,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "1.0", - ), - version: "[[0], [1], [0]]", - local: "[]", + version: [[0], [1], [0]], + local: [], }, ), ), @@ -97,11 +85,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "1.0", - ), - version: "[[0], [1], [0]]", - local: "[]", + version: [[0], [1], [0]], + local: [], }, ), ), @@ -119,11 +104,8 @@ expression: "project.all_dependencies(Platform::Linux64).unwrap()" Operator( Equals, Version { - norm: Some( - "1.0", - ), - version: "[[0], [1], [0]]", - local: "[]", + version: [[0], [1], [0]], + local: [], }, ), ), diff --git a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-64.snap b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-64.snap index b6fcf3725c..600ddc962c 100644 --- a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-64.snap +++ b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-64.snap @@ -1,5 +1,6 @@ --- source: src/virtual_packages.rs +assertion_line: 186 expression: packages --- [ @@ -7,11 +8,8 @@ expression: packages Linux( Linux { version: Version { - norm: Some( - "5.10", - ), - version: "[[0], [5], [10]]", - local: "[]", + version: [[0], [5], [10]], + local: [], }, }, ), @@ -19,11 +17,8 @@ expression: packages LibC { family: "glibc", version: Version { - norm: Some( - "2.17", - ), - version: "[[0], [2], [17]]", - local: "[]", + version: [[0], [2], [17]], + local: [], }, }, ), diff --git a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-aarch64.snap b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-aarch64.snap index 75f298ce1c..c5019fad8c 100644 --- a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-aarch64.snap +++ b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-aarch64.snap @@ -1,5 +1,6 @@ --- source: src/virtual_packages.rs +assertion_line: 186 expression: packages --- [ @@ -7,11 +8,8 @@ expression: packages Linux( Linux { version: Version { - norm: Some( - "5.10", - ), - version: "[[0], [5], [10]]", - local: "[]", + version: [[0], [5], [10]], + local: [], }, }, ), @@ -19,11 +17,8 @@ expression: packages LibC { family: "glibc", version: Version { - norm: Some( - "2.17", - ), - version: "[[0], [2], [17]]", - local: "[]", + version: [[0], [2], [17]], + local: [], }, }, ), diff --git a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-ppc64le.snap b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-ppc64le.snap index 11d26715fc..9ab230f9a3 100644 --- a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-ppc64le.snap +++ b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.linux-ppc64le.snap @@ -1,5 +1,6 @@ --- source: src/virtual_packages.rs +assertion_line: 186 expression: packages --- [ @@ -7,11 +8,8 @@ expression: packages Linux( Linux { version: Version { - norm: Some( - "5.10", - ), - version: "[[0], [5], [10]]", - local: "[]", + version: [[0], [5], [10]], + local: [], }, }, ), @@ -19,11 +17,8 @@ expression: packages LibC { family: "glibc", version: Version { - norm: Some( - "2.17", - ), - version: "[[0], [2], [17]]", - local: "[]", + version: [[0], [2], [17]], + local: [], }, }, ), diff --git a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.osx-64.snap b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.osx-64.snap index a217091e95..b71bcfb0d2 100644 --- a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.osx-64.snap +++ b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.osx-64.snap @@ -1,5 +1,6 @@ --- source: src/virtual_packages.rs +assertion_line: 186 expression: packages --- [ @@ -12,11 +13,8 @@ expression: packages Osx( Osx { version: Version { - norm: Some( - "10.15", - ), - version: "[[0], [10], [15]]", - local: "[]", + version: [[0], [10], [15]], + local: [], }, }, ), diff --git a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.osx-arm64.snap b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.osx-arm64.snap index 51d6210e13..175d0fdd04 100644 --- a/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.osx-arm64.snap +++ b/src/snapshots/pixi__virtual_packages__tests__test_get_minimal_virtual_packages.osx-arm64.snap @@ -1,5 +1,6 @@ --- source: src/virtual_packages.rs +assertion_line: 186 expression: packages --- [ @@ -12,11 +13,8 @@ expression: packages Osx( Osx { version: Version { - norm: Some( - "11.0", - ), - version: "[[0], [11], [0]]", - local: "[]", + version: [[0], [11], [0]], + local: [], }, }, ), diff --git a/tests/common/package_database.rs b/tests/common/package_database.rs index 259ee18439..541f2d7b1e 100644 --- a/tests/common/package_database.rs +++ b/tests/common/package_database.rs @@ -6,7 +6,7 @@ use itertools::Itertools; use rattler_conda_types::{ - package::ArchiveType, ChannelInfo, PackageRecord, Platform, RepoData, Version, + package::ArchiveType, ChannelInfo, PackageRecord, Platform, RepoData, VersionWithSource, }; use std::{collections::HashSet, path::Path}; @@ -109,7 +109,7 @@ impl AsRef for Package { /// A builder for a [`Package`] pub struct PackageBuilder { name: String, - version: Version, + version: VersionWithSource, build: Option, build_number: Option, depends: Vec, From 871ed739cdb822109a11dcae6992699ea5d31713 Mon Sep 17 00:00:00 2001 From: Hofer-Julian <30049909+Hofer-Julian@users.noreply.github.com> Date: Thu, 6 Jul 2023 15:19:31 +0200 Subject: [PATCH 14/19] Extend readme (#182) * docs: Run init steps separately * docs: Show how to exit the pixi shell again --- docs/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index e53010c6d5..b2dd29fdbd 100644 --- a/docs/README.md +++ b/docs/README.md @@ -166,7 +166,8 @@ Options: Initialize a new project and navigate to the project directory ``` -pixi init myproject && cd myproject +pixi init myproject +cd myproject ``` Add the dependencies you want to use @@ -185,6 +186,7 @@ Activate a shell in the environment ```shell pixi shell cowpy "Thanks for using pixi" +exit ``` For more information check [the documentation](getting_started.md#basics-of-the-configuration-file) From 24a101dda28a923dd8521b82d3ab7ebb8485ef08 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 7 Jul 2023 11:47:49 +0200 Subject: [PATCH 15/19] Feat/add command cli (#177) * feat: added the abilty to add commands through the command line and test these * fix: improved testing and cli output for adding commands * feat: now uses single command whenever you expect it to * feat: now prints warning and doesnt quote if its a single argument * feat: renamed command to task * feat: accepts 1..n args for specific arguments * feat: added to docs * feat: task add remove docs --- docs/cli.md | 25 +++ examples/cpp-sdl/pixi.toml | 2 +- examples/flask-hello-world/pixi.toml | 2 +- examples/opencv/pixi.toml | 2 +- examples/turtlesim/pixi.toml | 2 +- src/cli/init.rs | 4 +- src/cli/mod.rs | 4 + src/cli/run.rs | 74 ++++---- src/cli/task.rs | 166 ++++++++++++++++++ src/command/mod.rs | 41 ----- src/lib.rs | 2 +- src/project/manifest.rs | 6 +- src/project/mod.rs | 118 ++++++++++++- ...ect__manifest__test__dependency_types.snap | 3 +- ...ject__manifest__test__target_specific.snap | 3 +- src/task/mod.rs | 84 +++++++++ tests/common/builders.rs | 152 ++++++++++++++++ tests/common/mod.rs | 138 +++++++-------- tests/install_tests.rs | 4 +- tests/task_tests.rs | 59 +++++++ 20 files changed, 716 insertions(+), 175 deletions(-) create mode 100644 src/cli/task.rs delete mode 100644 src/command/mod.rs create mode 100644 src/task/mod.rs create mode 100644 tests/common/builders.rs create mode 100644 tests/task_tests.rs diff --git a/docs/cli.md b/docs/cli.md index 3cf5d99a19..9bbc30e231 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -10,6 +10,7 @@ With `pixi` you can install packages in global space or local to the environment | `install` | Installs all dependencies of the project in its environment | | `run` | Runs the given command in a project's environment | | `shell` | Starts a shell in the project's environment | +| `tasks` | Manage tasks in your `pixi.toml` file | ### Initialize a new project This command is used to create a new project. @@ -59,6 +60,30 @@ pixi run --manifest-path ~/myproject python pixi run build ``` +### Create a task from a command +If you want to make a shorthand for a specific command you can add a task for it +```bash +pixi task add cow cowpy "Hello User" +``` + +This adds the following to the `pixi.toml`: + +```toml +[tasks] +cow = "cowpy \"Hello User\"" +``` +Which you can then run with the `run` command: + +```bash +pixi run cow +``` + +To remove a task you can use the `task remove` command: + +```bash +pixi task remove cow +``` + ### Start a shell in the environment This command starts a new shell in the project's environment. To exit the pixi shell, simply run exit diff --git a/examples/cpp-sdl/pixi.toml b/examples/cpp-sdl/pixi.toml index 35948a32f1..8c4cb9ab0a 100644 --- a/examples/cpp-sdl/pixi.toml +++ b/examples/cpp-sdl/pixi.toml @@ -6,7 +6,7 @@ authors = ["Bas Zalmstra "] channels = ["conda-forge"] platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"] -[commands] +[tasks] # Configures CMake configure = { cmd = [ "cmake", diff --git a/examples/flask-hello-world/pixi.toml b/examples/flask-hello-world/pixi.toml index 149ea1a3d1..f395d6b3ab 100644 --- a/examples/flask-hello-world/pixi.toml +++ b/examples/flask-hello-world/pixi.toml @@ -6,7 +6,7 @@ authors = ["Wolf Vollprecht "] channels = ["conda-forge"] platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"] -[commands] +[tasks] start = "python -m flask run --port=5050" [dependencies] diff --git a/examples/opencv/pixi.toml b/examples/opencv/pixi.toml index bead7f6b86..21298dbe41 100644 --- a/examples/opencv/pixi.toml +++ b/examples/opencv/pixi.toml @@ -6,7 +6,7 @@ authors = ["Ruben Arts "] channels = ["conda-forge"] platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"] -[commands] +[tasks] start = "python webcam_capture.py" calibrate = "python calibrate.py" diff --git a/examples/turtlesim/pixi.toml b/examples/turtlesim/pixi.toml index bad79b4894..11a83c728a 100644 --- a/examples/turtlesim/pixi.toml +++ b/examples/turtlesim/pixi.toml @@ -6,7 +6,7 @@ authors = ["Ruben Arts "] channels = ["conda-forge", "robostack-staging"] platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"] -[commands] +[tasks] start = "ros2 run turtlesim turtlesim_node" teleop = "ros2 run turtlesim turtle_teleop_key" diff --git a/src/cli/init.rs b/src/cli/init.rs index 0b5f58d3b5..f8460fad26 100644 --- a/src/cli/init.rs +++ b/src/cli/init.rs @@ -31,7 +31,7 @@ authors = ["{{ author[0] }} <{{ author[1] }}>"] channels = ["{{ channels|join("\", \"") }}"] platforms = ["{{ platform }}"] -[commands] +[tasks] [dependencies] "#; @@ -141,7 +141,7 @@ mod tests { ); assert_eq!( get_dir(std::env::current_dir().unwrap()).unwrap(), - PathBuf::from(std::env::current_dir().unwrap().canonicalize().unwrap()) + std::env::current_dir().unwrap().canonicalize().unwrap() ); } diff --git a/src/cli/mod.rs b/src/cli/mod.rs index 16cf8fcf8a..5a0643edb2 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -14,6 +14,7 @@ pub mod init; pub mod install; pub mod run; pub mod shell; +pub mod task; #[derive(Parser, Debug)] #[command(version, about, long_about = None)] @@ -49,7 +50,9 @@ pub enum Command { #[clap(alias = "g")] Global(global::Args), Auth(auth::Args), + #[clap(alias = "i")] Install(install::Args), + Task(task::Args), } fn completion(args: CompletionCommand) -> Result<(), Error> { @@ -104,5 +107,6 @@ pub async fn execute_command(command: Command) -> Result<(), Error> { Command::Auth(cmd) => auth::execute(cmd).await, Command::Install(cmd) => install::execute(cmd).await, Command::Shell(cmd) => shell::execute(cmd).await, + Command::Task(cmd) => task::execute(cmd), } } diff --git a/src/cli/run.rs b/src/cli/run.rs index d1b9604e25..b96ce920f2 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -12,17 +12,14 @@ use rattler_conda_types::Platform; use crate::prefix::Prefix; use crate::progress::await_in_progress; use crate::project::environment::get_metadata_env; -use crate::{ - command::{CmdArgs, Command, ProcessCmd}, - environment::get_up_to_date_prefix, - Project, -}; +use crate::task::{CmdArgs, Execute, Task}; +use crate::{environment::get_up_to_date_prefix, Project}; use rattler_shell::{ activation::{ActivationVariables, Activator, PathModificationBehaviour}, shell::ShellEnum, }; -// Run output which includes the information gotten from the deno task shell run. +/// Runs task in project. #[derive(Default)] pub struct RunOutput { pub exit_code: i32, @@ -30,64 +27,64 @@ pub struct RunOutput { pub stderr: String, } -/// Runs command in project. +/// Runs task in project. #[derive(Parser, Debug, Default)] #[clap(trailing_var_arg = true, arg_required_else_help = true)] pub struct Args { - /// The command you want to run in the projects environment. - pub command: Vec, + /// The task you want to run in the projects environment. + pub task: Vec, /// The path to 'pixi.toml' #[arg(long)] pub manifest_path: Option, } -pub fn order_commands( - commands: Vec, +pub fn order_tasks( + tasks: Vec, project: &Project, -) -> anyhow::Result)>> { - let command: Vec<_> = commands.iter().map(|c| c.to_string()).collect(); +) -> anyhow::Result)>> { + let tasks: Vec<_> = tasks.iter().map(|c| c.to_string()).collect(); // Find the command in the project. - let (command_name, command, additional_args) = command + let (task_name, task, additional_args) = tasks .first() .and_then(|cmd_name| { - project.command_opt(cmd_name).map(|cmd| { + project.task_opt(cmd_name).map(|cmd| { ( Some(cmd_name.clone()), cmd.clone(), - command[1..].iter().cloned().collect_vec(), + tasks[1..].iter().cloned().collect_vec(), ) }) }) .unwrap_or_else(|| { ( None, - Command::Process(ProcessCmd { - cmd: CmdArgs::Multiple(commands), + Task::Execute(Execute { + cmd: CmdArgs::Multiple(tasks), depends_on: vec![], }), Vec::new(), ) }); - // Perform post order traversal of the commands and their `depends_on` to make sure they are + // Perform post order traversal of the tasks and their `depends_on` to make sure they are // executed in the right order. let mut s1 = VecDeque::new(); let mut s2 = VecDeque::new(); let mut added = HashSet::new(); // Add the command specified on the command line first - s1.push_back((command, additional_args)); - if let Some(command_name) = command_name { - added.insert(command_name); + s1.push_back((task, additional_args)); + if let Some(task_name) = task_name { + added.insert(task_name); } - while let Some((command, additional_args)) = s1.pop_back() { + while let Some((task, additional_args)) = s1.pop_back() { // Get the dependencies of the command - let depends_on = match &command { - Command::Process(process) => process.depends_on.as_slice(), - Command::Alias(alias) => &alias.depends_on, + let depends_on = match &task { + Task::Execute(process) => process.depends_on.as_slice(), + Task::Alias(alias) => &alias.depends_on, _ => &[], }; @@ -95,7 +92,7 @@ pub fn order_commands( for dependency in depends_on.iter() { if !added.contains(dependency) { let cmd = project - .command_opt(dependency) + .task_opt(dependency) .ok_or_else(|| anyhow::anyhow!("failed to find dependency {}", dependency))? .clone(); @@ -104,21 +101,21 @@ pub fn order_commands( } } - s2.push_back((command, additional_args)) + s2.push_back((task, additional_args)) } Ok(s2) } -pub async fn create_script(command: Command, args: Vec) -> anyhow::Result { - // Construct the script from the command - let command = match command { - Command::Process(ProcessCmd { +pub async fn create_script(task: Task, args: Vec) -> anyhow::Result { + // Construct the script from the task + let task = match task { + Task::Execute(Execute { cmd: CmdArgs::Single(cmd), .. }) - | Command::Plain(cmd) => cmd, - Command::Process(ProcessCmd { + | Task::Plain(cmd) => cmd, + Task::Execute(Execute { cmd: CmdArgs::Multiple(args), .. }) => quote_arguments(args), @@ -129,11 +126,12 @@ pub async fn create_script(command: Command, args: Vec) -> anyhow::Resul // Append the command line arguments let cli_args = quote_arguments(args); - let full_script = format!("{command} {cli_args}"); + let full_script = format!("{task} {cli_args}"); // Parse the shell command deno_task_shell::parser::parse(full_script.trim()) } + /// Executes the given command withing the specified project and with the given environment. pub async fn execute_script( script: SequentialList, @@ -185,10 +183,10 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { let project = Project::load_or_else_discover(args.manifest_path.as_deref())?; // Get the correctly ordered commands - let mut ordered_commands = order_commands(args.command, &project)?; + let mut ordered_commands = order_tasks(args.task, &project)?; // Get the environment to run the commands in. - let command_env = get_command_env(&project).await?; + let command_env = get_task_env(&project).await?; // Execute the commands in the correct order while let Some((command, args)) = ordered_commands.pop_back() { @@ -206,7 +204,7 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { /// activation scripts from the environment and stores the environment variables it added, it adds /// environment variables set by the project and merges all of that with the system environment /// variables. -pub async fn get_command_env(project: &Project) -> anyhow::Result> { +pub async fn get_task_env(project: &Project) -> anyhow::Result> { // Get the prefix which we can then activate. let prefix = get_up_to_date_prefix(project).await?; diff --git a/src/cli/task.rs b/src/cli/task.rs new file mode 100644 index 0000000000..352c7b5830 --- /dev/null +++ b/src/cli/task.rs @@ -0,0 +1,166 @@ +use crate::task::{Alias, CmdArgs, Execute, Task}; +use crate::Project; +use clap::Parser; +use itertools::Itertools; +use std::path::PathBuf; + +#[derive(Parser, Debug)] +pub enum Operation { + /// Add a command to the project + #[clap(alias = "a")] + Add(AddArgs), + + /// Remove a command from the project + #[clap(alias = "r")] + Remove(RemoveArgs), + + /// Alias another specific command + #[clap(alias = "@")] + Alias(AliasArgs), +} + +#[derive(Parser, Debug)] +#[clap(arg_required_else_help = true)] +pub struct RemoveArgs { + /// Task names to remove + pub names: Vec, +} + +#[derive(Parser, Debug)] +#[clap(arg_required_else_help = true)] +pub struct AddArgs { + /// Task name + pub name: String, + + /// One or more commands to actually execute + #[clap(required = true, num_args = 1..)] + pub commands: Vec, + + /// Depends on these other commands + #[clap(long)] + #[clap(num_args = 1..)] + pub depends_on: Option>, +} + +#[derive(Parser, Debug)] +#[clap(arg_required_else_help = true)] +pub struct AliasArgs { + /// Alias name + pub alias: String, + + /// Depends on these tasks to execute + #[clap(required = true, num_args = 1..)] + pub depends_on: Vec, +} + +impl From for Task { + fn from(value: AddArgs) -> Self { + let depends_on = value.depends_on.unwrap_or_default(); + + if depends_on.is_empty() { + Self::Plain(if value.commands.len() == 1 { + value.commands[0].clone() + } else { + shlex::join(value.commands.iter().map(AsRef::as_ref)) + }) + } else { + Self::Execute(Execute { + cmd: CmdArgs::Single(if value.commands.len() == 1 { + value.commands[0].clone() + } else { + shlex::join(value.commands.iter().map(AsRef::as_ref)) + }), + depends_on, + }) + } + } +} + +impl From for Task { + fn from(value: AliasArgs) -> Self { + Self::Alias(Alias { + depends_on: value.depends_on, + }) + } +} + +/// Command management in project +#[derive(Parser, Debug)] +#[clap(trailing_var_arg = true, arg_required_else_help = true)] +pub struct Args { + /// Add, remove, or update a task + #[clap(subcommand)] + pub operation: Operation, + + /// The path to 'pixi.toml' + #[arg(long)] + pub manifest_path: Option, +} + +pub fn execute(args: Args) -> anyhow::Result<()> { + let mut project = Project::load_or_else_discover(args.manifest_path.as_deref())?; + match args.operation { + Operation::Add(args) => { + let name = args.name.clone(); + let task: Task = args.into(); + project.add_task(&name, task.clone())?; + eprintln!( + "{}Added task {}: {}", + console::style(console::Emoji("✔ ", "+")).green(), + console::style(&name).bold(), + task, + ); + } + Operation::Remove(args) => { + let mut to_remove = Vec::new(); + for name in args.names.iter() { + if project.task_opt(name).is_none() { + eprintln!( + "{}Task {} does not exist", + console::style(console::Emoji("❌ ", "X")).red(), + console::style(&name).bold(), + ); + continue; + } + // Check if task has dependencies + let depends_on = project.task_depends_on(name); + if !depends_on.is_empty() && !args.names.contains(name) { + eprintln!( + "{}: {}", + console::style("Warning, the following task/s depend on this task") + .yellow(), + console::style(depends_on.iter().to_owned().join(", ")).bold() + ); + eprintln!( + "{}", + console::style("Be sure to modify these after the removal\n").yellow() + ); + } + // Safe to remove + to_remove.push(name); + } + + for name in to_remove { + project.remove_task(name)?; + eprintln!( + "{}Removed task {} ", + console::style(console::Emoji("❌ ", "X")).yellow(), + console::style(&name).bold(), + ); + } + } + Operation::Alias(args) => { + let name = args.alias.clone(); + let task: Task = args.into(); + project.add_task(&name, task.clone())?; + eprintln!( + "{} Added alias {}: {}", + console::style("@").blue(), + console::style(&name).bold(), + task, + ); + } + }; + + Ok(()) +} diff --git a/src/command/mod.rs b/src/command/mod.rs deleted file mode 100644 index d75b9aab15..0000000000 --- a/src/command/mod.rs +++ /dev/null @@ -1,41 +0,0 @@ -use serde::Deserialize; -use serde_with::{formats::PreferMany, serde_as, OneOrMany}; - -/// Represents different types of scripts -#[derive(Debug, Clone, Deserialize)] -#[serde(untagged)] -pub enum Command { - Plain(String), - Process(ProcessCmd), - Alias(AliasCmd), -} - -/// A command script executes a single command from the environment -#[serde_as] -#[derive(Debug, Clone, Deserialize)] -pub struct ProcessCmd { - // A list of arguments, the first argument denotes the command to run. When deserializing both - // an array of strings and a single string are supported. - pub cmd: CmdArgs, - - /// A list of commands that should be run before this one - #[serde(default)] - #[serde_as(deserialize_as = "OneOrMany<_, PreferMany>")] - pub depends_on: Vec, -} - -#[derive(Debug, Clone, Deserialize)] -#[serde(untagged)] -pub enum CmdArgs { - Single(String), - Multiple(Vec), -} - -#[derive(Debug, Clone, Deserialize)] -#[serde(deny_unknown_fields)] -#[serde_as] -pub struct AliasCmd { - /// A list of commands that should be run before this one - #[serde_as(deserialize_as = "OneOrMany<_, PreferMany>")] - pub depends_on: Vec, -} diff --git a/src/lib.rs b/src/lib.rs index 60696b1a6d..acceaf6da2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ pub mod cli; -pub mod command; pub mod config; pub mod consts; pub mod environment; @@ -8,6 +7,7 @@ pub mod progress; pub mod project; pub mod repodata; pub mod report_error; +pub mod task; pub mod util; pub mod virtual_packages; diff --git a/src/project/manifest.rs b/src/project/manifest.rs index c59a0b9874..ddd723cb9a 100644 --- a/src/project/manifest.rs +++ b/src/project/manifest.rs @@ -1,6 +1,6 @@ -use crate::command::Command; use crate::consts::PROJECT_MANIFEST; use crate::report_error::ReportError; +use crate::task::Task; use ::serde::Deserialize; use ariadne::{ColorGenerator, Fmt, Label, Report, ReportKind, Source}; use indexmap::IndexMap; @@ -20,9 +20,9 @@ pub struct ProjectManifest { /// Information about the project pub project: ProjectMetadata, - /// Commands defined in the project + /// Tasks defined in the project #[serde(default)] - pub commands: HashMap, + pub tasks: HashMap, /// Additional system requirements #[serde(default, rename = "system-requirements")] diff --git a/src/project/mod.rs b/src/project/mod.rs index bc725c4fff..7a624db388 100644 --- a/src/project/mod.rs +++ b/src/project/mod.rs @@ -6,6 +6,7 @@ use crate::consts; use crate::consts::PROJECT_MANIFEST; use crate::project::manifest::{ProjectManifest, TargetMetadata, TargetSelector}; use crate::report_error::ReportError; +use crate::task::{CmdArgs, Task}; use anyhow::Context; use ariadne::{Label, Report, ReportKind, Source}; use indexmap::IndexMap; @@ -17,6 +18,7 @@ use std::{ env, fs, path::{Path, PathBuf}, }; + use toml_edit::{Array, Document, Item, Table, TomlError, Value}; /// A project represented by a pixi.toml file. @@ -28,6 +30,39 @@ pub struct Project { pub manifest: ProjectManifest, } +/// Returns a task a a toml item +fn task_as_toml(task: Task) -> Item { + match task { + Task::Plain(str) => Item::Value(str.into()), + Task::Execute(process) => { + let mut table = Table::new().into_inline_table(); + match process.cmd { + CmdArgs::Single(cmd_str) => { + table.insert("cmd", cmd_str.into()); + } + CmdArgs::Multiple(cmd_strs) => { + table.insert("cmd", Value::Array(Array::from_iter(cmd_strs.into_iter()))); + } + } + if !process.depends_on.is_empty() { + table.insert( + "depends_on", + Value::Array(Array::from_iter(process.depends_on.into_iter())), + ); + } + Item::Value(Value::InlineTable(table)) + } + Task::Alias(alias) => { + let mut table = Table::new().into_inline_table(); + table.insert( + "depends_on", + Value::Array(Array::from_iter(alias.depends_on.into_iter())), + ); + Item::Value(Value::InlineTable(table)) + } + } +} + impl Project { /// Discovers the project manifest file in the current directory or any of the parent /// directories. @@ -54,6 +89,83 @@ impl Project { }) } + /// Find task dependencies + pub fn task_depends_on(&self, name: impl AsRef) -> Vec<&String> { + let task = self.manifest.tasks.get(name.as_ref()); + if task.is_some() { + self.manifest + .tasks + .iter() + .filter(|(_, c)| c.depends_on().contains(&name.as_ref().to_string())) + .map(|(name, _)| name) + .collect() + } else { + vec![] + } + } + + /// Add a task to the project + pub fn add_task(&mut self, name: impl AsRef, task: Task) -> anyhow::Result<()> { + if self.manifest.tasks.contains_key(name.as_ref()) { + anyhow::bail!("task {} already exists", name.as_ref()); + }; + + let tasks_table = &mut self.doc["tasks"]; + // If it doesnt exist create a proper table + if tasks_table.is_none() { + *tasks_table = Item::Table(Table::new()); + } + + // Cast the item into a table + let tasks_table = tasks_table.as_table_like_mut().ok_or_else(|| { + anyhow::anyhow!("tasks in {} are malformed", consts::PROJECT_MANIFEST) + })?; + + let depends_on = task.depends_on(); + + for depends in depends_on { + if !self.manifest.tasks.contains_key(depends) { + anyhow::bail!( + "task '{}' for the depends on for '{}' does not exist", + depends, + name.as_ref(), + ); + } + } + + // Add the task to the table + tasks_table.insert(name.as_ref(), task_as_toml(task.clone())); + + self.manifest.tasks.insert(name.as_ref().to_string(), task); + + self.save()?; + + Ok(()) + } + + /// Remove a task from the project, and the tasks that depend on it + pub fn remove_task(&mut self, name: impl AsRef) -> anyhow::Result<()> { + self.manifest + .tasks + .get(name.as_ref()) + .ok_or_else(|| anyhow::anyhow!("task {} does not exist", name.as_ref()))?; + + let tasks_table = &mut self.doc["tasks"]; + if tasks_table.is_none() { + anyhow::bail!("internal data-structure inconsistent with toml"); + } + let tasks_table = tasks_table.as_table_like_mut().ok_or_else(|| { + anyhow::anyhow!("tasks in {} are malformed", consts::PROJECT_MANIFEST) + })?; + + // If it does not exist in toml, consider this ok as we want to remove it anyways + tasks_table.remove(name.as_ref()); + + self.save()?; + + Ok(()) + } + pub fn load_or_else_discover(manifest_path: Option<&Path>) -> anyhow::Result { let project = match manifest_path { Some(path) => Project::load(path)?, @@ -385,9 +497,9 @@ impl Project { self.manifest.project.platforms.as_ref().as_slice() } - /// Get the command with the specified name or `None` if no such command exists. - pub fn command_opt(&self, name: &str) -> Option<&crate::command::Command> { - self.manifest.commands.get(name) + /// Get the task with the specified name or `None` if no such task exists. + pub fn task_opt(&self, name: &str) -> Option<&Task> { + self.manifest.tasks.get(name) } /// Get the system requirements defined under the `system-requirements` section of the project manifest. diff --git a/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap b/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap index 4ea9f5b519..6a366ef246 100644 --- a/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap +++ b/src/project/snapshots/pixi__project__manifest__test__dependency_types.snap @@ -1,6 +1,5 @@ --- source: src/project/manifest.rs -assertion_line: 337 expression: "toml_edit::de::from_str::(&contents).expect(\"parsing should succeed!\")" --- ProjectManifest { @@ -18,7 +17,7 @@ ProjectManifest { value: [], }, }, - commands: {}, + tasks: {}, system_requirements: SystemRequirements { windows: None, unix: None, diff --git a/src/project/snapshots/pixi__project__manifest__test__target_specific.snap b/src/project/snapshots/pixi__project__manifest__test__target_specific.snap index 539694d0cf..4771ff41d1 100644 --- a/src/project/snapshots/pixi__project__manifest__test__target_specific.snap +++ b/src/project/snapshots/pixi__project__manifest__test__target_specific.snap @@ -1,6 +1,5 @@ --- source: src/project/manifest.rs -assertion_line: 316 expression: "toml_edit::de::from_str::(&contents).expect(\"parsing should succeed!\")" --- ProjectManifest { @@ -18,7 +17,7 @@ ProjectManifest { value: [], }, }, - commands: {}, + tasks: {}, system_requirements: SystemRequirements { windows: None, unix: None, diff --git a/src/task/mod.rs b/src/task/mod.rs new file mode 100644 index 0000000000..85eb9b30fe --- /dev/null +++ b/src/task/mod.rs @@ -0,0 +1,84 @@ +use itertools::Itertools; +use serde::Deserialize; +use serde_with::{formats::PreferMany, serde_as, OneOrMany}; +use std::fmt::{Display, Formatter}; + +/// Represents different types of scripts +#[derive(Debug, Clone, Deserialize)] +#[serde(untagged)] +pub enum Task { + Plain(String), + Execute(Execute), + Alias(Alias), +} + +impl Task { + pub fn depends_on(&self) -> &[String] { + match self { + Task::Plain(_) => &[], + Task::Execute(cmd) => &cmd.depends_on, + Task::Alias(cmd) => &cmd.depends_on, + } + } +} + +/// A command script executes a single command from the environment +#[serde_as] +#[derive(Debug, Clone, Deserialize)] +pub struct Execute { + /// A list of arguments, the first argument denotes the command to run. When deserializing both + /// an array of strings and a single string are supported. + pub cmd: CmdArgs, + + /// A list of commands that should be run before this one + #[serde(default)] + #[serde_as(deserialize_as = "OneOrMany<_, PreferMany>")] + pub depends_on: Vec, +} + +#[derive(Debug, Clone, Deserialize)] +#[serde(untagged)] +pub enum CmdArgs { + Single(String), + Multiple(Vec), +} + +#[derive(Debug, Clone, Deserialize)] +#[serde(deny_unknown_fields)] +#[serde_as] +pub struct Alias { + /// A list of commands that should be run before this one + #[serde_as(deserialize_as = "OneOrMany<_, PreferMany>")] + pub depends_on: Vec, +} + +impl Display for Task { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + match self { + Task::Plain(cmd) => { + write!(f, "{}", cmd)?; + } + Task::Execute(cmd) => { + match &cmd.cmd { + CmdArgs::Single(cmd) => write!(f, "{}", cmd)?, + CmdArgs::Multiple(mult) => write!(f, "{}", mult.join(" "))?, + }; + if !cmd.depends_on.is_empty() { + write!(f, ", ")?; + } + } + _ => {} + }; + + let depends_on = self.depends_on(); + if !depends_on.is_empty() { + if depends_on.len() == 1 { + write!(f, "depends_on = '{}'", depends_on.iter().join(",")) + } else { + write!(f, "depends_on = [{}]", depends_on.iter().join(",")) + } + } else { + Ok(()) + } + } +} diff --git a/tests/common/builders.rs b/tests/common/builders.rs new file mode 100644 index 0000000000..ac03ad642a --- /dev/null +++ b/tests/common/builders.rs @@ -0,0 +1,152 @@ +//! Contains builders for the CLI commands +//! We are using a builder pattern here to make it easier to write tests. +//! And are kinda abusing the `IntoFuture` trait to make it easier to execute as close +//! as we can get to the command line args +//! +//! # Using IntoFuture +//! +//! When `.await` is called on an object that is not a `Future` the compiler will first check if the +//! type implements `IntoFuture`. If it does it will call the `IntoFuture::into_future()` method and +//! await the resulting `Future`. We can abuse this behavior in builder patterns because the +//! `into_future` method can also be used as a `finish` function. This allows you to reduce the +//! required code. +//! +//! ```rust +//! impl IntoFuture for InitBuilder { +//! type Output = anyhow::Result<()>; +//! type IntoFuture = Pin + Send + 'static>>; +//! +//! fn into_future(self) -> Self::IntoFuture { +//! Box::pin(init::execute(self.args)) +//! } +//! } +//! +//! ``` + +use crate::common::IntoMatchSpec; +use pixi::cli::add::SpecType; +use pixi::cli::{add, init, task}; +use std::future::{Future, IntoFuture}; +use std::path::{Path, PathBuf}; +use std::pin::Pin; +use url::Url; + +/// Strings from an iterator +pub fn string_from_iter(iter: impl IntoIterator>) -> Vec { + iter.into_iter().map(|s| s.as_ref().to_string()).collect() +} + +/// Contains the arguments to pass to `init::execute()`. Call `.await` to call the CLI execute +/// method and await the result at the same time. +pub struct InitBuilder { + pub args: init::Args, +} + +impl InitBuilder { + pub fn with_channel(mut self, channel: impl ToString) -> Self { + self.args.channels.push(channel.to_string()); + self + } + + pub fn with_local_channel(self, channel: impl AsRef) -> Self { + self.with_channel(Url::from_directory_path(channel).unwrap()) + } +} + +impl IntoFuture for InitBuilder { + type Output = anyhow::Result<()>; + type IntoFuture = Pin + Send + 'static>>; + + fn into_future(self) -> Self::IntoFuture { + Box::pin(init::execute(self.args)) + } +} + +/// Contains the arguments to pass to `add::execute()`. Call `.await` to call the CLI execute method +/// and await the result at the same time. +pub struct AddBuilder { + pub args: add::Args, +} + +impl AddBuilder { + pub fn with_spec(mut self, spec: impl IntoMatchSpec) -> Self { + self.args.specs.push(spec.into()); + self + } + + /// Set as a host + pub fn set_type(mut self, t: SpecType) -> Self { + match t { + SpecType::Host => { + self.args.host = true; + self.args.build = false; + } + SpecType::Build => { + self.args.host = false; + self.args.build = true; + } + SpecType::Run => { + self.args.host = false; + self.args.build = false; + } + } + self + } +} + +impl IntoFuture for AddBuilder { + type Output = anyhow::Result<()>; + type IntoFuture = Pin + Send + 'static>>; + + fn into_future(self) -> Self::IntoFuture { + Box::pin(add::execute(self.args)) + } +} + +pub struct TaskAddBuilder { + pub manifest_path: Option, + pub args: task::AddArgs, +} + +impl TaskAddBuilder { + /// Execute these commands + pub fn with_commands(mut self, commands: impl IntoIterator>) -> Self { + self.args.commands = string_from_iter(commands); + self + } + + /// Depends on these commands + pub fn with_depends_on(mut self, depends: impl IntoIterator>) -> Self { + self.args.depends_on = Some(string_from_iter(depends)); + self + } + + /// Execute the CLI command + pub fn execute(self) -> anyhow::Result<()> { + task::execute(task::Args { + operation: task::Operation::Add(self.args), + manifest_path: self.manifest_path, + }) + } +} + +pub struct TaskAliasBuilder { + pub manifest_path: Option, + pub args: task::AliasArgs, +} + +impl TaskAliasBuilder { + /// Depends on these commands + pub fn with_depends_on(mut self, depends: impl IntoIterator>) -> Self { + self.args.depends_on = string_from_iter(depends); + self + } + + /// Execute the CLI command + pub fn execute(self) -> anyhow::Result<()> { + task::execute(task::Args { + operation: task::Operation::Alias(self.args), + manifest_path: self.manifest_path, + }) + } +} diff --git a/tests/common/mod.rs b/tests/common/mod.rs index e25890541b..197421143a 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -1,22 +1,23 @@ #![allow(dead_code)] +pub mod builders; pub mod package_database; -use pixi::cli::add::SpecType; +use crate::common::builders::{AddBuilder, InitBuilder, TaskAddBuilder, TaskAliasBuilder}; use pixi::cli::install::Args; use pixi::cli::run::{ - create_script, execute_script_with_output, get_command_env, order_commands, RunOutput, + create_script, execute_script_with_output, get_task_env, order_tasks, RunOutput, }; -use pixi::cli::{add, init, run}; +use pixi::cli::task::{AddArgs, AliasArgs}; +use pixi::cli::{add, init, run, task}; use pixi::{consts, Project}; use rattler_conda_types::conda_lock::CondaLock; use rattler_conda_types::{MatchSpec, Version}; -use std::future::{Future, IntoFuture}; + use std::path::{Path, PathBuf}; -use std::pin::Pin; +use std::process::Output; use std::str::FromStr; use tempfile::TempDir; -use url::Url; /// To control the pixi process pub struct PixiControl { @@ -24,6 +25,22 @@ pub struct PixiControl { tmpdir: TempDir, } +pub struct RunResult { + output: Output, +} + +impl RunResult { + /// Was the output successful + pub fn success(&self) -> bool { + self.output.status.success() + } + + /// Get the output + pub fn stdout(&self) -> &str { + std::str::from_utf8(&self.output.stdout).expect("could not get output") + } +} + /// MatchSpecs from an iterator pub fn string_from_iter(iter: impl IntoIterator>) -> Vec { iter.into_iter().map(|s| s.as_ref().to_string()).collect() @@ -108,16 +125,16 @@ impl PixiControl { /// Run a command pub async fn run(&self, mut args: run::Args) -> anyhow::Result { args.manifest_path = args.manifest_path.or_else(|| Some(self.manifest_path())); - let mut commands = order_commands(args.command, &self.project().unwrap())?; + let mut tasks = order_tasks(args.task, &self.project().unwrap())?; let project = self.project().unwrap(); - let command_env = get_command_env(&project).await.unwrap(); + let task_env = get_task_env(&project).await.unwrap(); - while let Some((command, args)) = commands.pop_back() { + while let Some((command, args)) = tasks.pop_back() { let script = create_script(command, args).await; if let Ok(script) = script { - let output = execute_script_with_output(script, &project, &command_env, None).await; - if commands.is_empty() { + let output = execute_script_with_output(script, &project, &task_env, None).await; + if tasks.is_empty() { return Ok(output); } } @@ -137,82 +154,49 @@ impl PixiControl { pub async fn lock_file(&self) -> anyhow::Result { pixi::environment::load_lock_for_manifest_path(&self.manifest_path()).await } -} - -/// Contains the arguments to pass to `init::execute()`. Call `.await` to call the CLI execute -/// method and await the result at the same time. -pub struct InitBuilder { - args: init::Args, -} - -impl InitBuilder { - pub fn with_channel(mut self, channel: impl ToString) -> Self { - self.args.channels.push(channel.to_string()); - self - } - - pub fn with_local_channel(self, channel: impl AsRef) -> Self { - self.with_channel(Url::from_directory_path(channel).unwrap()) - } -} -// When `.await` is called on an object that is not a `Future` the compiler will first check if the -// type implements `IntoFuture`. If it does it will call the `IntoFuture::into_future()` method and -// await the resulting `Future`. We can abuse this behavior in builder patterns because the -// `into_future` method can also be used as a `finish` function. This allows you to reduce the -// required code. -impl IntoFuture for InitBuilder { - type Output = anyhow::Result<()>; - type IntoFuture = Pin + Send + 'static>>; - - fn into_future(self) -> Self::IntoFuture { - Box::pin(init::execute(self.args)) + pub fn tasks(&self) -> TasksControl { + TasksControl { pixi: self } } } -/// Contains the arguments to pass to `add::execute()`. Call `.await` to call the CLI execute method -/// and await the result at the same time. -pub struct AddBuilder { - args: add::Args, +pub struct TasksControl<'a> { + /// Reference to the pixi control + pixi: &'a PixiControl, } -impl AddBuilder { - pub fn with_spec(mut self, spec: impl IntoMatchSpec) -> Self { - self.args.specs.push(spec.into()); - self +impl TasksControl<'_> { + /// Add a task + pub fn add(&self, name: impl ToString) -> TaskAddBuilder { + TaskAddBuilder { + manifest_path: Some(self.pixi.manifest_path()), + args: AddArgs { + name: name.to_string(), + commands: vec![], + depends_on: None, + }, + } } - /// Set as a host - pub fn set_type(mut self, t: SpecType) -> Self { - match t { - SpecType::Host => { - self.args.host = true; - self.args.build = false; - } - SpecType::Build => { - self.args.host = false; - self.args.build = true; - } - SpecType::Run => { - self.args.host = false; - self.args.build = false; - } - } - self + /// Remove a task + pub async fn remove(&self, name: impl ToString) -> anyhow::Result<()> { + task::execute(task::Args { + manifest_path: Some(self.pixi.manifest_path()), + operation: task::Operation::Remove(task::RemoveArgs { + names: vec![name.to_string()], + }), + }) } -} -// When `.await` is called on an object that is not a `Future` the compiler will first check if the -// type implements `IntoFuture`. If it does it will call the `IntoFuture::into_future()` method and -// await the resulting `Future`. We can abuse this behavior in builder patterns because the -// `into_future` method can also be used as a `finish` function. This allows you to reduce the -// required code. -impl IntoFuture for AddBuilder { - type Output = anyhow::Result<()>; - type IntoFuture = Pin + Send + 'static>>; - - fn into_future(self) -> Self::IntoFuture { - Box::pin(add::execute(self.args)) + /// Alias one or multiple tasks + pub fn alias(&self, name: impl ToString) -> TaskAliasBuilder { + TaskAliasBuilder { + manifest_path: Some(self.pixi.manifest_path()), + args: AliasArgs { + alias: name.to_string(), + depends_on: vec![], + }, + } } } diff --git a/tests/install_tests.rs b/tests/install_tests.rs index be67ede36d..46ced883d8 100644 --- a/tests/install_tests.rs +++ b/tests/install_tests.rs @@ -1,7 +1,7 @@ mod common; +use crate::common::builders::string_from_iter; use crate::common::package_database::{Package, PackageDatabase}; -use crate::common::string_from_iter; use common::{LockFileExt, PixiControl}; use pixi::cli::run; use tempfile::TempDir; @@ -22,7 +22,7 @@ async fn install_run_python() { // Check if python is installed and can be run let result = pixi .run(run::Args { - command: string_from_iter(["python", "--version"]), + task: string_from_iter(["python", "--version"]), ..Default::default() }) .await diff --git a/tests/task_tests.rs b/tests/task_tests.rs new file mode 100644 index 0000000000..d73058324d --- /dev/null +++ b/tests/task_tests.rs @@ -0,0 +1,59 @@ +use crate::common::PixiControl; +use pixi::task::{CmdArgs, Task}; + +mod common; + +#[tokio::test] +pub async fn add_remove_task() { + let pixi = PixiControl::new().unwrap(); + pixi.init().await.unwrap(); + + // Simple task + pixi.tasks() + .add("test") + .with_commands(["echo hello"]) + .execute() + .unwrap(); + + let project = pixi.project().unwrap(); + let task = project.manifest.tasks.get("test").unwrap(); + assert!(matches!(task, Task::Plain(s) if s == "echo hello")); + + // Remove the task + pixi.tasks().remove("test").await.unwrap(); + assert_eq!(pixi.project().unwrap().manifest.tasks.len(), 0); +} + +#[tokio::test] +pub async fn add_command_types() { + let pixi = PixiControl::new().unwrap(); + pixi.init().await.unwrap(); + + // Add a command with dependencies + pixi.tasks() + .add("test") + .with_commands(["echo hello"]) + .execute() + .unwrap(); + pixi.tasks() + .add("test2") + .with_commands(["echo hello", "echo bonjour"]) + .with_depends_on(["test"]) + .execute() + .unwrap(); + + let project = pixi.project().unwrap(); + let task = project.manifest.tasks.get("test2").unwrap(); + assert!(matches!(task, Task::Execute(cmd) if matches!(cmd.cmd, CmdArgs::Single(_)))); + assert!(matches!(task, Task::Execute(cmd) if !cmd.depends_on.is_empty())); + + // Create an alias + pixi.tasks() + .alias("testing") + .with_depends_on(["test"]) + .execute() + .unwrap(); + let project = pixi.project().unwrap(); + let task = project.manifest.tasks.get("testing").unwrap(); + assert!(matches!(task, Task::Alias(a) if a.depends_on.get(0).unwrap() == "test")); +} From eb9077f3344043ddc1c29dc4a8ee0bfecd9d44e5 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 10 Jul 2023 08:53:00 +0200 Subject: [PATCH 16/19] bump: rattler 0.6.0 (#185) * bump: rattler 0.6.0 * bump: rattler 0.6.0 --- Cargo.lock | 48 +++++++++++++++++++-------------------- Cargo.toml | 2 +- src/cli/add.rs | 5 ++-- src/cli/global/install.rs | 5 ++-- src/environment.rs | 5 ++-- src/repodata.rs | 2 +- 6 files changed, 35 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 767e39a861..56f93777c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2404,19 +2404,6 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" -[[package]] -name = "libsolv-sys" -version = "0.1.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" -dependencies = [ - "anyhow", - "cc", - "cfg-if", - "cmake", - "libc", - "libz-sys", -] - [[package]] name = "libz-sys" version = "1.1.9" @@ -3286,7 +3273,7 @@ dependencies = [ [[package]] name = "rattler" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "anyhow", "apple-codesign", @@ -3327,7 +3314,7 @@ dependencies = [ [[package]] name = "rattler_conda_types" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "chrono", "fxhash", @@ -3355,7 +3342,7 @@ dependencies = [ [[package]] name = "rattler_digest" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "blake2", "digest 0.10.7", @@ -3367,10 +3354,23 @@ dependencies = [ "tokio", ] +[[package]] +name = "rattler_libsolv_c" +version = "0.5.0" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" +dependencies = [ + "anyhow", + "cc", + "cfg-if", + "cmake", + "libc", + "libz-sys", +] + [[package]] name = "rattler_macros" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "quote", "syn 2.0.22", @@ -3379,7 +3379,7 @@ dependencies = [ [[package]] name = "rattler_networking" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "anyhow", "dirs 5.0.1", @@ -3396,7 +3396,7 @@ dependencies = [ [[package]] name = "rattler_package_streaming" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "bzip2", "chrono", @@ -3419,7 +3419,7 @@ dependencies = [ [[package]] name = "rattler_repodata_gateway" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "anyhow", "async-compression", @@ -3457,7 +3457,7 @@ dependencies = [ [[package]] name = "rattler_shell" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "enum_dispatch", "indexmap 1.9.3", @@ -3474,14 +3474,14 @@ dependencies = [ [[package]] name = "rattler_solve" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "anyhow", "hex", "libc", - "libsolv-sys", "rattler_conda_types", "rattler_digest", + "rattler_libsolv_c", "serde", "tempfile", "thiserror", @@ -3492,7 +3492,7 @@ dependencies = [ [[package]] name = "rattler_virtual_packages" version = "0.5.0" -source = "git+https://github.com/mamba-org/rattler?branch=main#dfaf4b0ba99b2d4c37a2bde5333f3c64866adb09" +source = "git+https://github.com/mamba-org/rattler?branch=main#e0d52607aa14b501b49f2b611b8d3a7e4b1e235e" dependencies = [ "cfg-if", "libloading", diff --git a/Cargo.toml b/Cargo.toml index 71f952c273..f4f0f3a23c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ rattler_conda_types = { default-features = false, git = "https://github.com/mamb rattler_networking = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main" } rattler_repodata_gateway = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main", features = ["sparse"] } rattler_shell = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main", features = ["sysinfo"] } -rattler_solve = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main", features = ["libsolv-sys"] } +rattler_solve = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main", features = ["libsolv_c"] } rattler_virtual_packages = { default-features = false, git = "https://github.com/mamba-org/rattler", branch = "main" } #rattler = { default-features = false, path="../rattler/crates/rattler" } #rattler_conda_types = { default-features = false, path="../rattler/crates/rattler_conda_types" } diff --git a/src/cli/add.rs b/src/cli/add.rs index 24e468aa3b..ca67292dc2 100644 --- a/src/cli/add.rs +++ b/src/cli/add.rs @@ -11,7 +11,7 @@ use rattler_conda_types::{ version_spec::VersionOperator, MatchSpec, NamelessMatchSpec, Platform, Version, VersionSpec, }; use rattler_repodata_gateway::sparse::SparseRepoData; -use rattler_solve::{libsolv_sys, SolverImpl}; +use rattler_solve::{libsolv_c, SolverImpl}; use std::collections::HashMap; use std::path::PathBuf; @@ -203,6 +203,7 @@ pub fn determine_best_version( let available_packages = SparseRepoData::load_records_recursive( platform_sparse_repo_data, package_names.iter().cloned(), + None, )?; // Construct a solver task to start solving. @@ -225,7 +226,7 @@ pub fn determine_best_version( pinned_packages: vec![], }; - let records = libsolv_sys::Solver.solve(task)?; + let records = libsolv_c::Solver.solve(task)?; // Determine the versions of the new packages Ok(records diff --git a/src/cli/global/install.rs b/src/cli/global/install.rs index a731230051..31364a314d 100644 --- a/src/cli/global/install.rs +++ b/src/cli/global/install.rs @@ -15,7 +15,7 @@ use rattler_shell::{ shell::Shell, shell::ShellEnum, }; -use rattler_solve::{libsolv_sys, SolverImpl}; +use rattler_solve::{libsolv_c, SolverImpl}; use std::{ path::{Path, PathBuf}, str::FromStr, @@ -213,6 +213,7 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { let available_packages = SparseRepoData::load_records_recursive( platform_sparse_repodata.iter(), vec![package_name.clone()], + None, )?; // Solve for environment @@ -232,7 +233,7 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { }; // Solve it - let records = libsolv_sys::Solver.solve(task)?; + let records = libsolv_c::Solver.solve(task)?; // Create the binary environment prefix where we install or update the package let bin_prefix = BinEnvDir::create(&package_name).await?; diff --git a/src/environment.rs b/src/environment.rs index 9819da502c..ca39d34955 100644 --- a/src/environment.rs +++ b/src/environment.rs @@ -26,7 +26,7 @@ use rattler_conda_types::{ }; use rattler_networking::AuthenticatedClient; use rattler_repodata_gateway::sparse::SparseRepoData; -use rattler_solve::{libsolv_sys, SolverImpl}; +use rattler_solve::{libsolv_c, SolverImpl}; use std::collections::HashMap; use std::{ collections::{HashSet, VecDeque}, @@ -321,6 +321,7 @@ pub async fn update_lock_file( let available_packages = SparseRepoData::load_records_recursive( platform_sparse_repo_data, package_names.iter().copied(), + None, )?; // Get the virtual packages for this platform @@ -341,7 +342,7 @@ pub async fn update_lock_file( }; // Solve the task - let records = libsolv_sys::Solver.solve(task)?; + let records = libsolv_c::Solver.solve(task)?; // Update lock file let mut locked_packages = LockedPackages::new(platform); diff --git a/src/repodata.rs b/src/repodata.rs index 516b9b9fea..dccbe3c033 100644 --- a/src/repodata.rs +++ b/src/repodata.rs @@ -162,7 +162,7 @@ async fn fetch_repo_data_records_with_progress( // task. let repo_data_json_path = result.repo_data_json_path.clone(); match tokio::task::spawn_blocking(move || { - SparseRepoData::new(channel, platform.to_string(), repo_data_json_path) + SparseRepoData::new(channel, platform.to_string(), repo_data_json_path, None) }) .await { From 1c69dd8254aaacea284975cdeed877b92018b6b8 Mon Sep 17 00:00:00 2001 From: Wolf Vollprecht Date: Mon, 10 Jul 2023 08:54:37 +0200 Subject: [PATCH 17/19] Auth docs (#183) * add authentication docs * use *.domain.com for login --- docs/authentication.md | 63 ++++++++++++++++++++++++++++++++++++++++++ docs/cli.md | 1 + src/cli/auth.rs | 11 ++++---- 3 files changed, 69 insertions(+), 6 deletions(-) create mode 100644 docs/authentication.md diff --git a/docs/authentication.md b/docs/authentication.md new file mode 100644 index 0000000000..321968eaa8 --- /dev/null +++ b/docs/authentication.md @@ -0,0 +1,63 @@ +# Authenticate pixi with a server + +You can authenticate pixi with a server like prefix.dev, a private quetz instance or anaconda.org. +Different servers use different authentication methods. In this documentation page we detail how you can authenticate against the different servers and where the authentication information is stored. + +``` +Usage: pixi auth login [OPTIONS] + +Arguments: + The host to authenticate with (e.g. repo.prefix.dev) + +Options: + --token The token to use (for authentication with prefix.dev) + --username The username to use (for basic HTTP authentication) + --password The password to use (for basic HTTP authentication) + --conda-token The token to use on anaconda.org / quetz authentication + -v, --verbose... More output per occurrence + -q, --quiet... Less output per occurrence + -h, --help Print help +``` + +The different options are "token", "conda-token" and "username + password". + +The token variant implements a standard "Bearer Token" authentication as is used on the prefix.dev platform. +A Bearer Token is sent with every request as an additional header of the form `Authentication: Bearer `. + +The conda-token option is used on anaconda.org and can be used with a quetz server. With this option, the token is sent as part of the URL following this scheme: `conda.anaconda.org/t//conda-forge/linux-64/...`. + +The last option, username & password, are used for "Basic HTTP Authentication". This is the equivalent of adding `http://user:password@myserver.com/...`. This authentication method can be configured quite easily with a reverse NGinx or Apache server and is thus commonly used in self-hosted systems. + +## Examples + +Login to prefix.dev: + +```sh +pixi auth login prefix.dev --token pfx_jj8WDzvnuTEHGdAhwRZMC1Ag8gSto8 +``` + +Login to anaconda.org: + +```sh +pixi auth login anaconda.org --conda-token xy-72b914cc-c105-4ec7-a969-ab21d23480ed +``` + +Login to a basic HTTP secured server: + +```sh +pixi auth login myserver.com --username user --password password +``` + +## Where does pixi store the authentication information? + +The storage location for the authentication information is system-dependent. By default, pixi tries to use the keychain to store this sensitive information securely on your computer. + +On Windows, the credentials are stored in the "credentials manager". Searching for `rattler` (the underlying library pixi uses) you should find any credentials stored by pixi (or other rattler-based programs). + +On macOS, the passwords are stored in the keychain. To access the password, you can use the `Keychain Access` program that comes pre-installed on macOS. Searching for `rattler` (the underlying library pixi uses) you should find any credentials stored by pixi (or other rattler-based programs). + +On Linux, one can use `GNOME Keyring` (or just Keyring) to access credentials that are securely stored by `libsecret`. Searching for `rattler` should list all the credentials stored by pixi and other rattler-based programs. + +## Fallback storage + +If you run on a server with none of the aformentioned keychains available, then pixi falls back to store the credentials in an _insecure_ JSON file. This JSON file is located at `~/.rattler/rattler_auth_store.json` and contains the credentials. diff --git a/docs/cli.md b/docs/cli.md index 9bbc30e231..26c770bf9c 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -11,6 +11,7 @@ With `pixi` you can install packages in global space or local to the environment | `run` | Runs the given command in a project's environment | | `shell` | Starts a shell in the project's environment | | `tasks` | Manage tasks in your `pixi.toml` file | +| `auth` | Authenticate pixi with a server to access private channels | ### Initialize a new project This command is used to create a new project. diff --git a/src/cli/auth.rs b/src/cli/auth.rs index bd2c2552c3..ead3966843 100644 --- a/src/cli/auth.rs +++ b/src/cli/auth.rs @@ -56,15 +56,14 @@ fn get_url(url: &str) -> anyhow::Result { url.to_string() }; - let host = if host == "prefix.dev" { - "repo.prefix.dev" - } else if host == "anaconda.org" { - "conda.anaconda.org" + let host = if host.matches('.').count() == 1 { + // use wildcard for top-level domains + format!("*.{}", host) } else { - &host + host }; - Ok(host.to_string()) + Ok(host) } fn login(args: LoginArgs, storage: AuthenticationStorage) -> anyhow::Result<()> { From ca069134a195f4242f7f95c03b02b666d7d5f21b Mon Sep 17 00:00:00 2001 From: Wolf Vollprecht Date: Mon, 10 Jul 2023 12:25:55 +0200 Subject: [PATCH 18/19] update lockfiles and write proper license information --- examples/cpp-sdl/pixi.lock | 2076 +- examples/flask-hello-world/pixi.lock | 1924 +- examples/opencv/pixi.lock | 7263 ++++-- examples/turtlesim/pixi.lock | 32073 +++++++++++++------------ src/environment.rs | 61 +- 5 files changed, 23488 insertions(+), 19909 deletions(-) diff --git a/examples/cpp-sdl/pixi.lock b/examples/cpp-sdl/pixi.lock index adce1f86db..c3a91cd47e 100644 --- a/examples/cpp-sdl/pixi.lock +++ b/examples/cpp-sdl/pixi.lock @@ -1,9 +1,9 @@ metadata: content_hash: - linux-64: '"d938cc8fc376c9698d4e0a36e0ee4ef77825f00bc1e4027f84c86b18deb606c0"' - osx-arm64: '"d938cc8fc376c9698d4e0a36e0ee4ef77825f00bc1e4027f84c86b18deb606c0"' - win-64: '"d938cc8fc376c9698d4e0a36e0ee4ef77825f00bc1e4027f84c86b18deb606c0"' - osx-64: '"d938cc8fc376c9698d4e0a36e0ee4ef77825f00bc1e4027f84c86b18deb606c0"' + linux-64: '"e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d"' + osx-arm64: '"e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d"' + win-64: '"e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d"' + osx-64: '"e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d"' channels: - url: https://conda.anaconda.org/conda-forge/ used_env_vars: [] @@ -42,8 +42,13 @@ package: sha256: 37533b572a676017704c989c392998c344e889010786d6555dccdfc524a8e238 optional: false category: main - source: null build: hcfe8598_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 16343060 + timestamp: 1684460894541 - name: cxx-compiler version: 1.5.2 manager: conda @@ -58,23 +63,12 @@ package: sha256: c6916082ea28b905dd59d4b6b5b07be413a3a5a814193df43c28101e4d29a7fc optional: false category: main - source: null build: hf52228f_0 -- name: ninja - version: 1.11.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.1-h924138e_0.conda - hash: - md5: 73a4953a2d9c115bdc10ff30a52f675f - sha256: b555247ac8859b4ff311e3d708a0640f1bfe9fae7125c485b444072474a84c41 - optional: false - category: main - source: null - build: h924138e_0 + subdir: linux-64 + build_number: 0 + license: BSD + size: 5782 + timestamp: 1670951518183 - name: sdl2 version: 2.26.5 manager: conda @@ -91,8 +85,32 @@ package: sha256: d61329f63735a871b620316b7115358a693bc856709f34cf8f9b241b37261ca4 optional: false category: main - source: null build: h949db6a_0 + subdir: linux-64 + build_number: 0 + license: Zlib + size: 1334948 + timestamp: 1680735969345 +- name: ninja + version: 1.11.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.1-h924138e_0.conda + hash: + md5: 73a4953a2d9c115bdc10ff30a52f675f + sha256: b555247ac8859b4ff311e3d708a0640f1bfe9fae7125c485b444072474a84c41 + optional: false + category: main + build: h924138e_0 + subdir: linux-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 2251263 + timestamp: 1676837602636 - name: xz version: 5.2.6 manager: conda @@ -105,8 +123,12 @@ package: sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 optional: false category: main - source: null build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 418368 + timestamp: 1660346797927 - name: libexpat version: 2.5.0 manager: conda @@ -119,8 +141,15 @@ package: sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 optional: false category: main - source: null build: hcb278e6_1 + subdir: linux-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 77980 + timestamp: 1680190528313 - name: c-compiler version: 1.5.2 manager: conda @@ -135,36 +164,12 @@ package: sha256: fe4c0080648c3448939919ddc49339cd8e250124b69a518e66ef6989794fa58a optional: false category: main - source: null build: h0b41bf4_0 -- name: libgcc-ng - version: 13.1.0 - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: ==0.1 conda_forge - _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda - hash: - md5: cd93f779ff018dd85c7544c015c9db3c - sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 - optional: false - category: main - source: null - build: he5830b7_0 -- name: _libgcc_mutex - version: '0.1' - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 - optional: false - category: main - source: null - build: conda_forge + subdir: linux-64 + build_number: 0 + license: BSD + size: 5812 + timestamp: 1670951514202 - name: binutils version: '2.40' manager: conda @@ -177,8 +182,13 @@ package: sha256: 35f3b042f295fd7387de11cf426ca8ee5257e5c98b88560c6c5ad4ef3c85d38c optional: false category: main - source: null build: hdd6e379_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only + license_family: GPL + size: 30469 + timestamp: 1674833987166 - name: binutils_impl_linux-64 version: '2.40' manager: conda @@ -192,8 +202,13 @@ package: sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d optional: false category: main - source: null build: hf600244_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only + license_family: GPL + size: 5414922 + timestamp: 1674833958334 - name: ld_impl_linux-64 version: '2.40' manager: conda @@ -205,8 +220,15 @@ package: sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd optional: false category: main - source: null build: h41732ed_0 + subdir: linux-64 + build_number: 0 + constrains: + - binutils_impl_linux-64 2.40 + license: GPL-3.0-only + license_family: GPL + size: 704696 + timestamp: 1674833944779 - name: gcc_linux-64 version: 11.4.0 manager: conda @@ -221,8 +243,13 @@ package: sha256: 9849211de993ee9d905312a16fb879b17f92c5a228b903a9e665140f2fe14a79 optional: false category: main - source: null build: hfd045f2_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 30049 + timestamp: 1686453406877 - name: gxx_linux-64 version: 11.4.0 manager: conda @@ -238,8 +265,13 @@ package: sha256: f648ea1003c443ea3732911d196b1273753803e13bea6318c364b8071880882b optional: false category: main - source: null build: hfc1ae95_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 28362 + timestamp: 1686453460196 - name: binutils_linux-64 version: '2.40' manager: conda @@ -253,8 +285,13 @@ package: sha256: 3ea4b9915086f5cfdd52c236734a1e64c88ea57a3cde6138209dc23291cb761e optional: false category: main - source: null build: hbdbef99_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 27916 + timestamp: 1686453020772 - name: gcc_impl_linux-64 version: 11.4.0 manager: conda @@ -273,8 +310,13 @@ package: sha256: e6b566c101a0baa403ec429962c9f8bea925d3f76b148d2a9f8044c331c8d7e8 optional: false category: main - source: null build: h7aa1c59_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 45074415 + timestamp: 1685816389961 - name: gxx_impl_linux-64 version: 11.4.0 manager: conda @@ -289,22 +331,13 @@ package: sha256: d50cea15462631e16b2e577a7889ab5c3c6e743b79b165af4edd32b37541da27 optional: false category: main - source: null build: h7aa1c59_0 -- name: libgomp - version: 13.1.0 - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda - hash: - md5: 56ca14d57ac29a75d23a39eb3ee0ddeb - sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d - optional: false - category: main - source: null - build: he5830b7_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 11255826 + timestamp: 1685816634051 - name: libgcc-devel_linux-64 version: 11.4.0 manager: conda @@ -316,8 +349,13 @@ package: sha256: ef5f23785ac2aa61ee47838334bd80538a60dd23d31207bbcacbfa86a5a50d13 optional: false category: main - source: null build: h922705a_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 2323351 + timestamp: 1685816140786 - name: libsanitizer version: 11.4.0 manager: conda @@ -330,8 +368,13 @@ package: sha256: e6eeee9515ea1d272eb087387646a0c08d1cdabfdf228740f337a9ddb249ec78 optional: false category: main - source: null build: h4dcbe23_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3739902 + timestamp: 1685816294532 - name: libstdcxx-devel_linux-64 version: 11.4.0 manager: conda @@ -343,8 +386,13 @@ package: sha256: 2064befcc62da09e0fb945aa342b74de87165d5267585a361d54277ac3e8c64a optional: false category: main - source: null build: h922705a_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 8062856 + timestamp: 1685816208529 - name: gcc version: 11.4.0 manager: conda @@ -357,8 +405,13 @@ package: sha256: ea78efdae9f9e4f4def3ecf902295c2c35a32761964f0742d35bfd178ba4c85f optional: false category: main - source: null build: h7baecda_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 26720 + timestamp: 1686453108662 - name: gxx version: 11.4.0 manager: conda @@ -372,8 +425,13 @@ package: sha256: 85f2652d5700abdf46ba7d07ac7a2437106294d731d0deea1770e1669b17f8aa optional: false category: main - source: null build: h7baecda_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 26167 + timestamp: 1686453435022 - name: sysroot_linux-64 version: '2.12' manager: conda @@ -386,8 +444,14 @@ package: sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff optional: false category: main - source: null build: he073ed8_15 + subdir: noarch + build_number: 15 + license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0 + license_family: GPL + noarch: generic + size: 32940552 + timestamp: 1635519363468 - name: kernel-headers_linux-64 version: 2.6.32 manager: conda @@ -399,8 +463,74 @@ package: sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4 optional: false category: main - source: null build: he073ed8_15 + subdir: noarch + build_number: 15 + constrains: + - sysroot_linux-64 ==2.12 + license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0 + license_family: GPL + noarch: generic + size: 723873 + timestamp: 1635519356018 +- name: libgcc-ng + version: 13.1.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: ==0.1 conda_forge + _openmp_mutex: '>=4.5' + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda + hash: + md5: cd93f779ff018dd85c7544c015c9db3c + sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 + optional: false + category: main + build: he5830b7_0 + subdir: linux-64 + build_number: 0 + constrains: + - libgomp 13.1.0 he5830b7_0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 776294 + timestamp: 1685816209343 +- name: _libgcc_mutex + version: '0.1' + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + hash: + md5: d7c89558ba9fa0495403155b64376d81 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + optional: false + category: main + build: conda_forge + subdir: linux-64 + build_number: 0 + license: None + size: 2562 + timestamp: 1578324546067 +- name: libgomp + version: 13.1.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: ==0.1 conda_forge + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda + hash: + md5: 56ca14d57ac29a75d23a39eb3ee0ddeb + sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d + optional: false + category: main + build: he5830b7_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 419184 + timestamp: 1685816132543 - name: _openmp_mutex version: '4.5' manager: conda @@ -414,8 +544,15 @@ package: sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 optional: false category: main - source: null build: 2_gnu + subdir: linux-64 + build_number: 16 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 - name: libstdcxx-ng version: 13.1.0 manager: conda @@ -427,8 +564,130 @@ package: sha256: 6f9eb2d7a96687938c0001166a3b308460a8eb02b10e9d0dd9e251f0219ea05c optional: false category: main - source: null build: hfd8a6a1_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3847887 + timestamp: 1685816251278 +- name: xorg-libx11 + version: 1.8.6 + manager: conda + platform: linux-64 + dependencies: + xorg-xproto: '*' + libxcb: '>=1.15,<1.16.0a0' + xorg-kbproto: '*' + xorg-xextproto: '>=7.3.0,<8.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.6-h8ee46fc_0.conda + hash: + md5: 7590b76c3d11d21caa44f3fc38ac584a + sha256: 3360f81f7687179959a6bf1c762938240172e8bb3aef957e0a14fb12a0b7c105 + optional: false + category: main + build: h8ee46fc_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 828510 + timestamp: 1686866595393 +- name: libxcb + version: '1.15' + manager: conda + platform: linux-64 + dependencies: + xorg-libxau: '*' + xorg-libxdmcp: '*' + libgcc-ng: '>=12' + pthread-stubs: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda + hash: + md5: 33277193f5b92bad9fdd230eb700929c + sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 + optional: false + category: main + build: h0b41bf4_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 384238 + timestamp: 1682082368177 +- name: xorg-libxext + version: 1.3.4 + manager: conda + platform: linux-64 + dependencies: + xorg-libx11: '>=1.7.2,<2.0a0' + libgcc-ng: '>=12' + xorg-xextproto: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda + hash: + md5: 82b6df12252e6f32402b96dacc656fec + sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 + optional: false + category: main + build: h0b41bf4_2 + subdir: linux-64 + build_number: 2 + license: MIT + license_family: MIT + size: 50143 + timestamp: 1677036907815 +- name: pulseaudio-client + version: '16.1' + manager: conda + platform: linux-64 + dependencies: + libsystemd0: '>=253' + libsndfile: '>=1.2.0,<1.3.0a0' + libglib: '>=2.76.3,<3.0a0' + libgcc-ng: '>=12' + dbus: '>=1.13.6,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_4.conda + hash: + md5: 8f349ca16d30950aa00870484d9d30c4 + sha256: efd5ca5d5b0e55d25b8b2085449618f9777a07a89958c1d557d44f53eff061fe + optional: false + category: main + build: hb77b528_4 + subdir: linux-64 + build_number: 4 + constrains: + - pulseaudio 16.1 *_4 + license: LGPL-2.1-or-later + license_family: LGPL + size: 750852 + timestamp: 1685466483507 +- name: libsndfile + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + lame: '>=3.100,<3.101.0a0' + libflac: '>=1.4.2,<1.5.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + libopus: '>=1.3.1,<2.0a0' + mpg123: '>=1.31.1,<1.32.0a0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda + hash: + md5: c648d19cd9c8625898d5d370414de7c7 + sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 + optional: false + category: main + build: hb75c966_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 350153 + timestamp: 1672054525440 - name: bzip2 version: 1.0.8 manager: conda @@ -441,8 +700,13 @@ package: sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa optional: false category: main - source: null build: h7f98852_4 + subdir: linux-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 495686 + timestamp: 1606604745109 - name: expat version: 2.5.0 manager: conda @@ -456,8 +720,13 @@ package: sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f optional: false category: main - source: null build: hcb278e6_1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 136778 + timestamp: 1680190541750 - name: libuv version: 1.44.2 manager: conda @@ -470,8 +739,13 @@ package: sha256: dc14922a6d5cf7fde55c0aa8f6661d6871c6a2e94369e7455a8a5927c3065080 optional: false category: main - source: null build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1073002 + timestamp: 1657719428572 - name: ncurses version: '6.4' manager: conda @@ -484,8 +758,12 @@ package: sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a optional: false category: main - source: null build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 880967 + timestamp: 1686076725450 - name: rhash version: 1.4.3 manager: conda @@ -498,8 +776,13 @@ package: sha256: 3f7e1e46d0967f8d08026116aa84fda07bc93d11d44dc3c03a29ad9d3ffc63cc optional: false category: main - source: null build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 204010 + timestamp: 1655256276550 - name: zlib version: 1.2.13 manager: conda @@ -513,8 +796,13 @@ package: sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b optional: false category: main - source: null build: hd590300_5 + subdir: linux-64 + build_number: 5 + license: Zlib + license_family: Other + size: 92825 + timestamp: 1686575231103 - name: libzlib version: 1.2.13 manager: conda @@ -527,8 +815,15 @@ package: sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 optional: false category: main - source: null build: hd590300_5 + subdir: linux-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 61588 + timestamp: 1686575217516 - name: libcurl version: 8.1.2 manager: conda @@ -547,8 +842,13 @@ package: sha256: d572c31ff48d2db6ca5bab476bf325811cfc82577480b3791487c3fe7bff2ffa optional: false category: main - source: null build: h409715c_0 + subdir: linux-64 + build_number: 0 + license: curl + license_family: MIT + size: 372833 + timestamp: 1685447685782 - name: libnghttp2 version: 1.52.0 manager: conda @@ -566,8 +866,13 @@ package: sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a optional: false category: main - source: null build: h61bc06f_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 622366 + timestamp: 1677678076121 - name: zstd version: 1.5.2 manager: conda @@ -576,126 +881,40 @@ package: libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda - hash: - md5: 6b63daed8feeca47be78f323e793d555 - sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 - optional: false - category: main - source: null - build: h3eb15da_6 -- name: xorg-libx11 - version: 1.8.6 - manager: conda - platform: linux-64 - dependencies: - xorg-xproto: '*' - libxcb: '>=1.15,<1.16.0a0' - xorg-kbproto: '*' - xorg-xextproto: '>=7.3.0,<8.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.6-h8ee46fc_0.conda - hash: - md5: 7590b76c3d11d21caa44f3fc38ac584a - sha256: 3360f81f7687179959a6bf1c762938240172e8bb3aef957e0a14fb12a0b7c105 - optional: false - category: main - source: null - build: h8ee46fc_0 -- name: libxcb - version: '1.15' - manager: conda - platform: linux-64 - dependencies: - xorg-libxau: '*' - xorg-libxdmcp: '*' - libgcc-ng: '>=12' - pthread-stubs: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda - hash: - md5: 33277193f5b92bad9fdd230eb700929c - sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 - optional: false - category: main - source: null - build: h0b41bf4_0 -- name: xorg-libxext - version: 1.3.4 - manager: conda - platform: linux-64 - dependencies: - xorg-libx11: '>=1.7.2,<2.0a0' - libgcc-ng: '>=12' - xorg-xextproto: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda - hash: - md5: 82b6df12252e6f32402b96dacc656fec - sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 - optional: false - category: main - source: null - build: h0b41bf4_2 -- name: pulseaudio-client - version: '16.1' - manager: conda - platform: linux-64 - dependencies: - libsystemd0: '>=253' - libsndfile: '>=1.2.0,<1.3.0a0' - libglib: '>=2.76.3,<3.0a0' - libgcc-ng: '>=12' - dbus: '>=1.13.6,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_4.conda - hash: - md5: 8f349ca16d30950aa00870484d9d30c4 - sha256: efd5ca5d5b0e55d25b8b2085449618f9777a07a89958c1d557d44f53eff061fe - optional: false - category: main - source: null - build: hb77b528_4 -- name: libsndfile - version: 1.2.0 - manager: conda - platform: linux-64 - dependencies: - lame: '>=3.100,<3.101.0a0' - libflac: '>=1.4.2,<1.5.0a0' - libvorbis: '>=1.3.7,<1.4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libopus: '>=1.3.1,<2.0a0' - mpg123: '>=1.31.1,<1.32.0a0' - libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-hfc55251_7.conda hash: - md5: c648d19cd9c8625898d5d370414de7c7 - sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 + md5: 32ae18eb2a687912fc9e92a501c0a11b + sha256: a7f7e765dfb7af5265a38080e46f18cb07cfeecf81fe28fad23c4538e7d521c3 optional: false category: main - source: null - build: hb75c966_0 -- name: libglib - version: 2.76.3 + build: hfc55251_7 + subdir: linux-64 + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 431126 + timestamp: 1688721787223 +- name: libopus + version: 1.3.1 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - gettext: '>=0.21.1,<1.0a0' - libstdcxx-ng: '>=12' - pcre2: '>=10.40,<10.41.0a0' - libffi: '>=3.4,<4.0a0' - libgcc-ng: '>=12' - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.3-hebfc3b9_0.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 hash: - md5: a64f11b244b2c112cd3fa1cbe9493999 - sha256: 6a34c6b123f06fcee7e28e981ec0daad09bce35616ad8e9e61ef84be7fad4d92 + md5: 15345e56d527b330e1cacbdf58676e8f + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f optional: false category: main - source: null - build: hebfc3b9_0 + build: h7f98852_1 + subdir: linux-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 260658 + timestamp: 1606823578035 - name: libflac - version: 1.4.2 + version: 1.4.3 manager: conda platform: linux-64 dependencies: @@ -703,14 +922,19 @@ package: libstdcxx-ng: '>=12' libgcc-ng: '>=12' libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda hash: - md5: 7daf72d8e2a8e848e11d63ed6d1026e0 - sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 + md5: ee48bf17cc83a00f59ca1494d5646869 + sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d optional: false category: main - source: null - build: h27087fc_0 + build: h59595ed_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 394383 + timestamp: 1687765514062 - name: gettext version: 0.21.1 manager: conda @@ -723,52 +947,89 @@ package: sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a optional: false category: main - source: null build: h27087fc_0 -- name: libiconv - version: '1.17' + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4320628 + timestamp: 1665673494324 +- name: libogg + version: 1.3.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 hash: - md5: b62b52da46c39ee2bc3c162ac7f1804d - sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 + md5: 6e8cc2173440d77708196c5b93771680 + sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 optional: false category: main - source: null - build: h166bdaf_0 -- name: pcre2 - version: '10.40' + build: h7f98852_1 + subdir: linux-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 210550 + timestamp: 1610382007814 +- name: lame + version: '3.100' manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.12,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 hash: - md5: 69e2c796349cd9b273890bee0febfe1b - sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a + md5: a8832b479f93521a9e7b5b743803be51 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab optional: false category: main - source: null - build: hc3806b6_0 -- name: libogg - version: 1.3.4 + build: h166bdaf_1003 + subdir: linux-64 + build_number: 1003 + license: LGPL-2.0-only + license_family: LGPL + size: 508258 + timestamp: 1664996250081 +- name: mpg123 + version: 1.31.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.3-hcb278e6_0.conda hash: - md5: 6e8cc2173440d77708196c5b93771680 - sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + md5: 141a126675b6d1a4eabb111a4a353898 + sha256: 7e4a64329595c0cbfc770585827b72a63d224606324dff5b399467486dc68344 optional: false category: main - source: null - build: h7f98852_1 + build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-only + license_family: LGPL + size: 485496 + timestamp: 1679317436814 +- name: xorg-libxau + version: 1.0.11 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda + hash: + md5: 2c80dc38fface310c9bd81b17037fee5 + sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 + optional: false + category: main + build: hd590300_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 14468 + timestamp: 1684637984591 - name: openssl version: 3.1.1 manager: conda @@ -782,8 +1043,15 @@ package: sha256: 407d655643389bdb49266842a816815c981ae98f3513a6a2059b908b3abb380a optional: false category: main - source: null build: hd590300_1 + subdir: linux-64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2642411 + timestamp: 1685517327134 - name: krb5 version: 1.20.1 manager: conda @@ -800,8 +1068,13 @@ package: sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 optional: false category: main - source: null build: h81ceb04_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1329877 + timestamp: 1671091750695 - name: keyutils version: 1.6.1 manager: conda @@ -814,8 +1087,12 @@ package: sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb optional: false category: main - source: null build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 117831 + timestamp: 1646151697040 - name: c-ares version: 1.19.1 manager: conda @@ -828,8 +1105,13 @@ package: sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6 optional: false category: main - source: null build: hd590300_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 113362 + timestamp: 1684782732180 - name: libev version: '4.33' manager: conda @@ -842,8 +1124,13 @@ package: sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 optional: false category: main - source: null build: h516909a_1 + subdir: linux-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 106190 + timestamp: 1598867915 - name: ca-certificates version: 2023.5.7 manager: conda @@ -855,111 +1142,98 @@ package: sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345 optional: false category: main - source: null build: hbcca054_0 -- name: libffi - version: 3.4.2 + subdir: linux-64 + build_number: 0 + license: ISC + size: 148360 + timestamp: 1683451720318 +- name: dbus + version: 1.13.6 manager: conda platform: linux-64 dependencies: + libglib: '>=2.70.2,<3.0a0' libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - hash: - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - optional: false - category: main - source: null - build: h7f98852_5 -- name: libopus - version: 1.3.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 - hash: - md5: 15345e56d527b330e1cacbdf58676e8f - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f - optional: false - category: main - source: null - build: h7f98852_1 -- name: lame - version: '3.100' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + expat: '>=2.4.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 hash: - md5: a8832b479f93521a9e7b5b743803be51 - sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + md5: ecfff944ba3960ecb334b9a2663d708d + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 optional: false category: main - source: null - build: h166bdaf_1003 -- name: mpg123 - version: 1.31.3 + build: h5008d03_3 + subdir: linux-64 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 618596 + timestamp: 1640112124844 +- name: libglib + version: 2.76.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + gettext: '>=0.21.1,<1.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.3-hcb278e6_0.conda - hash: - md5: 141a126675b6d1a4eabb111a4a353898 - sha256: 7e4a64329595c0cbfc770585827b72a63d224606324dff5b399467486dc68344 - optional: false - category: main - source: null - build: hcb278e6_0 -- name: xorg-libxau - version: 1.0.11 - manager: conda - platform: linux-64 - dependencies: + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.4-hebfc3b9_0.conda hash: - md5: 2c80dc38fface310c9bd81b17037fee5 - sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 + md5: c6f951789c888f7bbd2dd6858eab69de + sha256: e909b5e648d1ace172aac2ddf9d755f72429b134155a9b07156acb58a77ceee1 optional: false category: main - source: null - build: hd590300_0 -- name: libssh2 - version: 1.11.0 + build: hebfc3b9_0 + subdir: linux-64 + build_number: 0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2689038 + timestamp: 1688694661996 +- name: libiconv + version: '1.17' manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + libgcc-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 hash: - md5: 1f5a58e686b13bcfde88b93f547d23fe - sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d + md5: b62b52da46c39ee2bc3c162ac7f1804d + sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 optional: false category: main - source: null - build: h0841786_0 -- name: dbus - version: 1.13.6 + build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: GPL and LGPL + size: 1450368 + timestamp: 1652700749886 +- name: pcre2 + version: '10.40' manager: conda platform: linux-64 dependencies: - libglib: '>=2.70.2,<3.0a0' - libgcc-ng: '>=9.4.0' - expat: '>=2.4.2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2 hash: - md5: ecfff944ba3960ecb334b9a2663d708d - sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + md5: 69e2c796349cd9b273890bee0febfe1b + sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a optional: false category: main - source: null - build: h5008d03_3 + build: hc3806b6_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2412495 + timestamp: 1665562915343 - name: libsystemd0 version: '253' manager: conda @@ -978,8 +1252,12 @@ package: sha256: 13f5db46b7ded028f5b53fd5373e27a47789b9a655b52a92c4b324099602f29a optional: false category: main - source: null build: h8c4010b_1 + subdir: linux-64 + build_number: 1 + license: LGPL-2.1-or-later + size: 380557 + timestamp: 1677532757148 - name: libcap version: '2.67' manager: conda @@ -993,8 +1271,13 @@ package: sha256: 4dcf2290b9b90ad2654fbfff52e9c1d49885ce71f0bb853520e2b9d54809605b optional: false category: main - source: null build: he9d0100_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 99032 + timestamp: 1675412183349 - name: libgcrypt version: 1.10.1 manager: conda @@ -1008,8 +1291,13 @@ package: sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a optional: false category: main - source: null build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-2.0-or-later + license_family: GPL + size: 719561 + timestamp: 1649520091125 - name: xorg-xextproto version: 7.3.0 manager: conda @@ -1022,8 +1310,34 @@ package: sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743 optional: false category: main - source: null build: h0b41bf4_1003 + subdir: linux-64 + build_number: 1003 + license: MIT + license_family: MIT + size: 30270 + timestamp: 1677036833037 +- name: libssh2 + version: 1.11.0 + manager: conda + platform: linux-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + hash: + md5: 1f5a58e686b13bcfde88b93f547d23fe + sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d + optional: false + category: main + build: h0841786_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 271133 + timestamp: 1685837707056 - name: libgpg-error version: '1.47' manager: conda @@ -1038,23 +1352,52 @@ package: sha256: 0306b3c2d65863048983a50bd8b86f6f26e457ef55d1da745a5796af25093f5a optional: false category: main - source: null build: h71f35ed_0 + subdir: linux-64 + build_number: 0 + license: GPL-2.0-only + license_family: GPL + size: 260794 + timestamp: 1686979818648 - name: lz4-c version: 1.9.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + hash: + md5: 318b08df404f9c9be5712aaa5a6f0bb0 + sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f + optional: false + category: main + build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 143402 + timestamp: 1674727076728 +- name: libffi + version: 3.4.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 hash: - md5: 318b08df404f9c9be5712aaa5a6f0bb0 - sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e optional: false category: main - source: null - build: hcb278e6_0 + build: h7f98852_5 + subdir: linux-64 + build_number: 5 + license: MIT + license_family: MIT + size: 58292 + timestamp: 1636488182923 - name: attr version: 2.5.1 manager: conda @@ -1067,23 +1410,13 @@ package: sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 optional: false category: main - source: null build: h166bdaf_1 -- name: libedit - version: 3.1.20191231 - manager: conda - platform: linux-64 - dependencies: - ncurses: '>=6.2,<7.0.0a0' - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - hash: - md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 - sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf - optional: false - category: main - source: null - build: he28a2e2_2 + subdir: linux-64 + build_number: 1 + license: GPL-2.0-or-later + license_family: GPL + size: 71042 + timestamp: 1660065501192 - name: libvorbis version: 1.3.7 manager: conda @@ -1098,8 +1431,13 @@ package: sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 optional: false category: main - source: null build: h9c3ff4c_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 286280 + timestamp: 1610609811627 - name: xorg-libxdmcp version: 1.1.3 manager: conda @@ -1112,8 +1450,13 @@ package: sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 optional: false category: main - source: null build: h7f98852_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 19126 + timestamp: 1610071769228 - name: pthread-stubs version: '0.4' manager: conda @@ -1126,8 +1469,33 @@ package: sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff optional: false category: main - source: null build: h36c2ea0_1001 + subdir: linux-64 + build_number: 1001 + license: MIT + license_family: MIT + size: 5625 + timestamp: 1606147468727 +- name: libedit + version: 3.1.20191231 + manager: conda + platform: linux-64 + dependencies: + ncurses: '>=6.2,<7.0.0a0' + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + hash: + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + optional: false + category: main + build: he28a2e2_2 + subdir: linux-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 123878 + timestamp: 1597616541093 - name: xorg-kbproto version: 1.0.7 manager: conda @@ -1140,8 +1508,13 @@ package: sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 optional: false category: main - source: null build: h7f98852_1002 + subdir: linux-64 + build_number: 1002 + license: MIT + license_family: MIT + size: 27338 + timestamp: 1610027759842 - name: xorg-xproto version: 7.0.31 manager: conda @@ -1154,8 +1527,13 @@ package: sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d optional: false category: main - source: null build: h7f98852_1007 + subdir: linux-64 + build_number: 1007 + license: MIT + license_family: MIT + size: 74922 + timestamp: 1607291557628 - name: cmake version: 3.26.4 manager: conda @@ -1179,8 +1557,13 @@ package: sha256: cba596b6bba58e347bd8be51fce82583f16c5707f6c98b22a7e7ba1ecdb09783 optional: false category: main - source: null build: hc0af03a_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 13748747 + timestamp: 1684461655168 - name: cxx-compiler version: 1.5.2 manager: conda @@ -1194,36 +1577,49 @@ package: sha256: 84f23671f8b18aeabcfd4b5315383442c3bdff3c9194b85c30ec5690d14e721a optional: false category: main - source: null build: hffc8910_0 -- name: ninja - version: 1.11.1 + subdir: osx-arm64 + build_number: 0 + license: BSD + size: 5689 + timestamp: 1670951872433 +- name: sdl2 + version: 2.26.5 manager: conda platform: osx-arm64 dependencies: libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.1-hffc8910_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2-2.26.5-hb7217d7_0.conda hash: - md5: fdecec4002f41cf6ea1eea5b52947ee0 - sha256: a594e90b0ed8202c280fff4a008f6a355d0db54a62b17067dc4a950370ddffc0 + md5: e2c2df7276617a8afff97b81f3ac847f + sha256: f71c5bcc3f462e2bf8df9f7e9aa4ee58a82f631a230eb33d47618f19153cb8d4 optional: false category: main - source: null - build: hffc8910_0 -- name: sdl2 - version: 2.26.5 + build: hb7217d7_0 + subdir: osx-arm64 + build_number: 0 + license: Zlib + size: 1219085 + timestamp: 1680736651870 +- name: ninja + version: 1.11.1 manager: conda platform: osx-arm64 dependencies: libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2-2.26.5-hb7217d7_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.1-hffc8910_0.conda hash: - md5: e2c2df7276617a8afff97b81f3ac847f - sha256: f71c5bcc3f462e2bf8df9f7e9aa4ee58a82f631a230eb33d47618f19153cb8d4 + md5: fdecec4002f41cf6ea1eea5b52947ee0 + sha256: a594e90b0ed8202c280fff4a008f6a355d0db54a62b17067dc4a950370ddffc0 optional: false category: main - source: null - build: hb7217d7_0 + build: hffc8910_0 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 107047 + timestamp: 1676837935565 - name: xz version: 5.2.6 manager: conda @@ -1235,8 +1631,12 @@ package: sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec optional: false category: main - source: null build: h57fd34a_0 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 235693 + timestamp: 1660346961024 - name: libexpat version: 2.5.0 manager: conda @@ -1248,8 +1648,15 @@ package: sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 optional: false category: main - source: null build: hb7217d7_1 + subdir: osx-arm64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 63442 + timestamp: 1680190916539 - name: c-compiler version: 1.5.2 manager: conda @@ -1265,8 +1672,12 @@ package: sha256: 54fabbef178e857a639a9c7a302cdab072ca5c2b94052ac939a7ebcf9dad32e4 optional: false category: main - source: null build: h5008568_0 + subdir: osx-arm64 + build_number: 0 + license: BSD + size: 5667 + timestamp: 1670951842052 - name: clang_osx-arm64 version: 14.0.6 manager: conda @@ -1283,8 +1694,13 @@ package: sha256: 4b9c93f2a13c8329db93c6acd3cdb6a4bace7848357943e3f2f8097153e71262 optional: false category: main - source: null build: h15773ab_6 + subdir: osx-arm64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + size: 20547 + timestamp: 1679865317135 - name: compiler-rt version: 14.0.6 manager: conda @@ -1299,8 +1715,13 @@ package: sha256: 266578ae49450e6b4a778b454f8e7fd988676dd9146bb186093066ab1589ba06 optional: false category: main - source: null build: h30b49de_0 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 85467 + timestamp: 1667980555472 - name: compiler-rt_osx-arm64 version: 14.0.6 manager: conda @@ -1314,8 +1735,16 @@ package: sha256: f9f63e8779ff31368cc92ee668308c8e7e974f68457f62148c5663aa0136a42d optional: false category: main - source: null build: h48302dc_0 + subdir: noarch + build_number: 0 + constrains: + - compiler-rt 14.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + noarch: generic + size: 15828315 + timestamp: 1667980533329 - name: clangxx_osx-arm64 version: 14.0.6 manager: conda @@ -1331,8 +1760,13 @@ package: sha256: 175291d3e349829dc1f03d598815f70b11e978b9e286828c88b9d08a74eb1927 optional: false category: main - source: null build: he29aa18_6 + subdir: osx-arm64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + size: 19398 + timestamp: 1679865337838 - name: llvm-openmp version: 16.0.6 manager: conda @@ -1344,8 +1778,15 @@ package: sha256: f5cbb852853a7a931716d55e39515876f61fefd0cb4e055f286adc2dc3bc9d2a optional: false category: main - source: null build: h1c12783_0 + subdir: osx-arm64 + build_number: 0 + constrains: + - openmp 16.0.6|16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 268740 + timestamp: 1686865657336 - name: libcxx version: 16.0.6 manager: conda @@ -1357,8 +1798,13 @@ package: sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355 optional: false category: main - source: null build: h4653b0c_0 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1160232 + timestamp: 1686896993785 - name: expat version: 2.5.0 manager: conda @@ -1371,8 +1817,13 @@ package: sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0 optional: false category: main - source: null build: hb7217d7_1 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 117851 + timestamp: 1680190940654 - name: libcurl version: 8.1.2 manager: conda @@ -1390,8 +1841,13 @@ package: sha256: 5d5bbc7a6eb363b2df85c5df32d34295346fc8b4d9e3754bbaf2af3e80422fab optional: false category: main - source: null build: h912dcd9_0 + subdir: osx-arm64 + build_number: 0 + license: curl + license_family: MIT + size: 345816 + timestamp: 1685448186761 - name: libnghttp2 version: 1.52.0 manager: conda @@ -1408,8 +1864,13 @@ package: sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 optional: false category: main - source: null build: hae82a92_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 564295 + timestamp: 1677678452375 - name: libuv version: 1.44.2 manager: conda @@ -1421,8 +1882,13 @@ package: sha256: 287e905d9e28cd868033c98cb5871377c1fdaa9c4985195ea59023aaff1ebdbf optional: false category: main - source: null build: he4db4b2_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 467798 + timestamp: 1657719563117 - name: ncurses version: '6.4' manager: conda @@ -1434,8 +1900,12 @@ package: sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 optional: false category: main - source: null build: h7ea286d_0 + subdir: osx-arm64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 799196 + timestamp: 1686077139703 - name: rhash version: 1.4.3 manager: conda @@ -1447,8 +1917,13 @@ package: sha256: 404182eee6bc4da134cf1ce32ddf055d1a80bf14702bc9978de04f5eb2ecbf86 optional: false category: main - source: null build: he4db4b2_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 199253 + timestamp: 1655257790374 - name: zlib version: 1.2.13 manager: conda @@ -1461,8 +1936,13 @@ package: sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe optional: false category: main - source: null build: h53f4e23_5 + subdir: osx-arm64 + build_number: 5 + license: Zlib + license_family: Other + size: 79577 + timestamp: 1686575471024 - name: libzlib version: 1.2.13 manager: conda @@ -1474,23 +1954,34 @@ package: sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a optional: false category: main - source: null build: h53f4e23_5 + subdir: osx-arm64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 48102 + timestamp: 1686575426584 - name: zstd version: 1.5.2 manager: conda platform: osx-arm64 dependencies: libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-h4f39d0f_7.conda hash: - md5: 8f346953ef63bf5fb482488a659adcf3 - sha256: 018989ba028e76abc332c246002e8f5975ff123c68f6116a30da8009b14ea88d + md5: ac4a17e2fb251cbf3bce3aec64668ef2 + sha256: d51d2225da473689dcb5d633f3b60ab60beff74d29a380142da4b684db98dd56 optional: false category: main - source: null - build: hf913c23_6 + build: h4f39d0f_7 + subdir: osx-arm64 + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 317319 + timestamp: 1688722265582 - name: clangxx version: 14.0.6 manager: conda @@ -1503,8 +1994,13 @@ package: sha256: abf47478baa7c0d183b43150ca600630dd5ce6762890e0bca925e05bd3247c6b optional: false category: main - source: null build: default_h610c423_1 + subdir: osx-arm64 + build_number: 1 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133461 + timestamp: 1684413825082 - name: clang version: 14.0.6 manager: conda @@ -1517,8 +2013,18 @@ package: sha256: da28397f5ab383d9cdcc0d3ed9b3e51a6b2a73edbb1867e13120e2f137eeb69e optional: false category: main - source: null build: hce30654_1 + subdir: osx-arm64 + build_number: 1 + constrains: + - clang-tools 14.0.6.* + - llvm 14.0.6.* + - llvm-tools 14.0.6.* + - llvmdev 14.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133297 + timestamp: 1684413800824 - name: clang-14 version: 14.0.6 manager: conda @@ -1533,8 +2039,18 @@ package: sha256: b674c9ff31b9bbf225b6c62e0b8a2ca45fe70ef78ad5ca22a79f6c8e41f37306 optional: false category: main - source: null build: default_h5dc8d65_1 + subdir: osx-arm64 + build_number: 1 + constrains: + - clangxx 14.0.6 + - llvm-tools 14.0.6 + - clang-tools 14.0.6 + - clangdev 14.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1028007 + timestamp: 1684413668339 - name: libclang-cpp14 version: 14.0.6 manager: conda @@ -1548,8 +2064,13 @@ package: sha256: 9cb083dae695cda715e280c2cadd08b625ecc5842f99fb575901990b0e60bf7c optional: false category: main - source: null build: default_h5dc8d65_1 + subdir: osx-arm64 + build_number: 1 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 10930694 + timestamp: 1684413524265 - name: libllvm14 version: 14.0.6 manager: conda @@ -1563,8 +2084,13 @@ package: sha256: 905f9084737336c4232c25698e0ac16f23f3d9f541647c9874e8392cbcf9e9cd optional: false category: main - source: null build: hd1a9a77_3 + subdir: osx-arm64 + build_number: 3 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 20569776 + timestamp: 1685676531181 - name: llvm-tools version: 14.0.6 manager: conda @@ -1578,78 +2104,18 @@ package: sha256: b04e204fd03b7910bac32e76423dcfd855f3e2367a59a8e218ccbd102bba512c optional: false category: main - source: null build: hd1a9a77_3 -- name: openssl - version: 3.1.1 - manager: conda - platform: osx-arm64 - dependencies: - ca-certificates: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.1-h53f4e23_1.conda - hash: - md5: 7451b96ed28b5fd02f0df32689327755 - sha256: 898aac8f8753385e9cd378d539364647d1deb9396032b7c1fd8f0f08107e020b - optional: false - category: main - source: null - build: h53f4e23_1 -- name: krb5 - version: 1.20.1 - manager: conda - platform: osx-arm64 - dependencies: - libedit: '>=3.1.20191231,<4.0a0' - libcxx: '>=14.0.6' - openssl: '>=3.0.7,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda - hash: - md5: a85db53e45b1173f270fc998dd40ec03 - sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 - optional: false - category: main - source: null - build: h69eda48_0 -- name: libedit - version: 3.1.20191231 - manager: conda - platform: osx-arm64 - dependencies: - ncurses: '>=6.2,<7.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - hash: - md5: 30e4362988a2623e9eb34337b83e01f9 - sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca - optional: false - category: main - source: null - build: hc8eb9b7_2 -- name: c-ares - version: 1.19.1 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda - hash: - md5: e7fc7430440d255e3a9c7e5a52f7b294 - sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 - optional: false - category: main - source: null - build: hb547adb_0 -- name: libev - version: '4.33' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 - hash: - md5: 566dbf70fe79eacdb3c3d3d195a27f55 - sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c - optional: false - category: main - source: null - build: h642e427_1 + subdir: osx-arm64 + build_number: 3 + constrains: + - llvmdev 14.0.6 + - clang 14.0.6.* + - clang-tools 14.0.6.* + - llvm 14.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 9764071 + timestamp: 1685676684342 - name: cctools_osx-arm64 version: 973.0.1 manager: conda @@ -1666,8 +2132,17 @@ package: sha256: 1fbb33b31de5a1a31f7658cdb540f76aaf43f52c81e53f83761486820f653610 optional: false category: main - source: null build: hef52d2f_13 + subdir: osx-arm64 + build_number: 13 + constrains: + - cctools 973.0.1.* + - ld64 609.* + - clang 14.0.* + license: APSL-2.0 + license_family: Other + size: 1125905 + timestamp: 1679508483899 - name: cctools version: 973.0.1 manager: conda @@ -1682,8 +2157,13 @@ package: sha256: a7c66e9d8a353e5996dc63dc1f179a7dda40a4133d056dcbca90855b9157e199 optional: false category: main - source: null build: hcbb26d4_13 + subdir: osx-arm64 + build_number: 13 + license: APSL-2.0 + license_family: Other + size: 21680 + timestamp: 1679508607015 - name: ld64 version: '609' manager: conda @@ -1697,8 +2177,16 @@ package: sha256: f39fdd5b8bfacc811d812370c26b5bd7a95551c130775664ed7eb259c509c9da optional: false category: main - source: null build: h619f069_13 + subdir: osx-arm64 + build_number: 13 + constrains: + - cctools 973.0.1.* + - cctools_osx-arm64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 18839 + timestamp: 1679508545094 - name: ld64_osx-arm64 version: '609' manager: conda @@ -1714,8 +2202,18 @@ package: sha256: baed60a74f3fa1e3158240ca0562fecb9398e7568d4b6126e494771323995b5c optional: false category: main - source: null build: h7167370_13 + subdir: osx-arm64 + build_number: 13 + constrains: + - cctools 973.0.1.* + - clang >=14.0.6,<15.0a0 + - ld 609.* + - cctools_osx-arm64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 1041975 + timestamp: 1679507658652 - name: tapi version: 1100.0.11 manager: conda @@ -1728,8 +2226,110 @@ package: sha256: 1709265fbee693a9e8b4126b0a3e68a6c4718b05821c659279c1af051f2d40f3 optional: false category: main - source: null build: he4954df_0 + subdir: osx-arm64 + build_number: 0 + license: NCSA + license_family: MIT + size: 191416 + timestamp: 1602687595316 +- name: openssl + version: 3.1.1 + manager: conda + platform: osx-arm64 + dependencies: + ca-certificates: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.1-h53f4e23_1.conda + hash: + md5: 7451b96ed28b5fd02f0df32689327755 + sha256: 898aac8f8753385e9cd378d539364647d1deb9396032b7c1fd8f0f08107e020b + optional: false + category: main + build: h53f4e23_1 + subdir: osx-arm64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2223980 + timestamp: 1685517736396 +- name: krb5 + version: 1.20.1 + manager: conda + platform: osx-arm64 + dependencies: + libedit: '>=3.1.20191231,<4.0a0' + libcxx: '>=14.0.6' + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda + hash: + md5: a85db53e45b1173f270fc998dd40ec03 + sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 + optional: false + category: main + build: h69eda48_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 1094005 + timestamp: 1671091920523 +- name: libedit + version: 3.1.20191231 + manager: conda + platform: osx-arm64 + dependencies: + ncurses: '>=6.2,<7.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + hash: + md5: 30e4362988a2623e9eb34337b83e01f9 + sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca + optional: false + category: main + build: hc8eb9b7_2 + subdir: osx-arm64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 96607 + timestamp: 1597616630749 +- name: c-ares + version: 1.19.1 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda + hash: + md5: e7fc7430440d255e3a9c7e5a52f7b294 + sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 + optional: false + category: main + build: hb547adb_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 101998 + timestamp: 1684783026131 +- name: libev + version: '4.33' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 + hash: + md5: 566dbf70fe79eacdb3c3d3d195a27f55 + sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c + optional: false + category: main + build: h642e427_1 + subdir: osx-arm64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 100668 + timestamp: 1598868103393 - name: libssh2 version: 1.11.0 manager: conda @@ -1743,8 +2343,13 @@ package: sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 optional: false category: main - source: null build: h7a5bd25_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 255610 + timestamp: 1685837894256 - name: sigtool version: 0.1.3 manager: conda @@ -1757,8 +2362,13 @@ package: sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff optional: false category: main - source: null build: h44b9a77_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 210264 + timestamp: 1643442231687 - name: ca-certificates version: 2023.5.7 manager: conda @@ -1770,8 +2380,12 @@ package: sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5 optional: false category: main - source: null build: hf0a4a13_0 + subdir: osx-arm64 + build_number: 0 + license: ISC + size: 148524 + timestamp: 1683451885269 - name: bzip2 version: 1.0.8 manager: conda @@ -1783,8 +2397,13 @@ package: sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 optional: false category: main - source: null build: h3422bc3_4 + subdir: osx-arm64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 151850 + timestamp: 1618862645215 - name: cmake version: 3.26.4 manager: conda @@ -1799,8 +2418,13 @@ package: sha256: c114c7fb3de04329620b715c0677d6dc943954be3877ee5a232ef0dc09f202d9 optional: false category: main - source: null build: h1537add_0 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 15107993 + timestamp: 1684462053404 - name: cxx-compiler version: 1.5.2 manager: conda @@ -1813,8 +2437,32 @@ package: sha256: 2f8178bc97fff699ae54dd90b96ffa980ec148136e18fe3351a13741a55cc755 optional: false category: main - source: null build: h91493d7_0 + subdir: win-64 + build_number: 0 + license: BSD + size: 6078 + timestamp: 1670951778972 +- name: sdl2 + version: 2.26.5 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/sdl2-2.26.5-h63175ca_0.conda + hash: + md5: 620fcad9da41516d395411099908bb3b + sha256: 4ebc9b29b04b2087dfff77ecbe6d7fc7e95c7223ed0447966f3a0aa1f007e8af + optional: false + category: main + build: h63175ca_0 + subdir: win-64 + build_number: 0 + license: Zlib + size: 2211251 + timestamp: 1680736427464 - name: ninja version: 1.11.1 manager: conda @@ -1829,38 +2477,53 @@ package: sha256: 0ffb1912768af8354a930f482368ef170bf3d8217db328dfea1c8b09772c8c71 optional: false category: main - source: null build: h91493d7_0 -- name: sdl2 - version: 2.26.5 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 279200 + timestamp: 1676838681615 +- name: vs2015_runtime + version: 14.36.32532 manager: conda platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/sdl2-2.26.5-h63175ca_0.conda + vc14_runtime: '>=14.36.32532' + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda hash: - md5: 620fcad9da41516d395411099908bb3b - sha256: 4ebc9b29b04b2087dfff77ecbe6d7fc7e95c7223ed0447966f3a0aa1f007e8af + md5: 4618046c39f7c81861e53ded842e738a + sha256: 5ecbd731dc7f13762d67be0eadc47eb7f14713005e430d9b5fc680e965ac0f81 optional: false category: main - source: null - build: h63175ca_0 -- name: vs2015_runtime - version: 14.34.31931 + build: h05e6639_17 + subdir: win-64 + build_number: 17 + license: BSD-3-Clause + license_family: BSD + size: 17207 + timestamp: 1688020635322 +- name: vc14_runtime + version: 14.36.32532 manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.34.31931' - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-hed1258a_16.conda + ucrt: '>=10.0.20348.0' + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hfdfe4a8_17.conda hash: - md5: 0374eae69b6dbfb27c3dc27167109eb4 - sha256: 25d852887a501ca8cb6753a4f3dae1549fa49592d51aec1a230b1f0c85fe4297 + md5: 91c1ecaf3996889532fc0456178b1058 + sha256: e76986c555647347a0185e646ef65625dabed60da255f6b30367df8bd6dc6cd8 optional: false category: main - source: null - build: hed1258a_16 + build: hfdfe4a8_17 + subdir: win-64 + build_number: 17 + constrains: + - vs2015_runtime 14.36.32532.* *_17 + license: LicenseRef-ProprietaryMicrosoft + license_family: Proprietary + size: 740599 + timestamp: 1688020615962 - name: ucrt version: 10.0.22621.0 manager: conda @@ -1872,36 +2535,36 @@ package: sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 optional: false category: main - source: null build: h57928b3_0 + subdir: win-64 + build_number: 0 + constrains: + - vs2015_runtime >=14.29.30037 + license: LicenseRef-Proprietary + license_family: PROPRIETARY + size: 1283972 + timestamp: 1666630199266 - name: vs2019_win-64 version: 19.29.30139 manager: conda platform: win-64 dependencies: vswhere: '*' - url: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-he1865b1_16.conda - hash: - md5: 7c6cbe2f27602899828f42b04b66adc2 - sha256: b8f579a806a32cfcbeb4b4a3460c888486319aa346c040ceac1af1da55dff90f - optional: false - category: main - source: null - build: he1865b1_16 -- name: vc14_runtime - version: 14.34.31931 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.34.31931-h5081d32_16.conda + url: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-he1865b1_17.conda hash: - md5: 22125178654c6a8a393f9743d585704b - sha256: 1161f4848e1c0663897a6324fbc4ff13dafd11650b42c9864428da73593dda95 + md5: 6351cac64b43c84c64bb6fe646d6acfe + sha256: 48ae2875083ef9e0b4dc2a3045154a4197e67f948dec44ae02c5348960445b93 optional: false category: main - source: null - build: h5081d32_16 + build: he1865b1_17 + subdir: win-64 + build_number: 17 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 19812 + timestamp: 1688020390940 - name: vswhere version: 3.1.4 manager: conda @@ -1913,22 +2576,34 @@ package: sha256: 553c41fc1a883415a39444313f8d99236685529776fdd04e8d97288b73496002 optional: false category: main - source: null build: h57928b3_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 218421 + timestamp: 1682376911339 - name: vc version: '14.3' manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.32.31332' - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb25d44b_16.conda + vc14_runtime: '>=14.36.32532' + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda hash: - md5: ea326b37e3bd6d2616988e09f3a9396c - sha256: 29bc108d66150ca75cab937f844f4ac4a836beb6ea3ee167d03c611444bb2a82 + md5: 67ff6791f235bb606659bf2a5c169191 + sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6 optional: false category: main - source: null - build: hb25d44b_16 + build: h64f974e_17 + subdir: win-64 + build_number: 17 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 17176 + timestamp: 1688020629925 - name: cmake version: 3.26.4 manager: conda @@ -1952,8 +2627,13 @@ package: sha256: a13eb9e0a7f6b46c1035af0830324ba458315ed973022a21e0473f5d5090bfc9 optional: false category: main - source: null build: hf40c264_0 + subdir: osx-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 14420122 + timestamp: 1684462885897 - name: cxx-compiler version: 1.5.2 manager: conda @@ -1967,36 +2647,49 @@ package: sha256: 91193c9029594d102217457ce8b4fe1cfd4a1e13e652451e94f851e91b45a147 optional: false category: main - source: null build: hb8565cd_0 -- name: ninja - version: 1.11.1 + subdir: osx-64 + build_number: 0 + license: BSD + size: 5674 + timestamp: 1670951614642 +- name: sdl2 + version: 2.26.5 manager: conda platform: osx-64 dependencies: libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.1-hb8565cd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.26.5-hf0c8a7f_0.conda hash: - md5: 49ad513efe39447aa51affd47e3aa68f - sha256: 6f738d9a26fa275317b95b2b96832daab9059ef64af9a338f904a3cb684ae426 + md5: cd1f00dcd5e7922e9d57cfbaf1115bd0 + sha256: 63a616aa3997c58dacbb0f6b721f629bb32c454042b6e0f786b17cd4ff80966f optional: false category: main - source: null - build: hb8565cd_0 -- name: sdl2 - version: 2.26.5 + build: hf0c8a7f_0 + subdir: osx-64 + build_number: 0 + license: Zlib + size: 1180736 + timestamp: 1680736409923 +- name: ninja + version: 1.11.1 manager: conda platform: osx-64 dependencies: libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.26.5-hf0c8a7f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.1-hb8565cd_0.conda hash: - md5: cd1f00dcd5e7922e9d57cfbaf1115bd0 - sha256: 63a616aa3997c58dacbb0f6b721f629bb32c454042b6e0f786b17cd4ff80966f + md5: 49ad513efe39447aa51affd47e3aa68f + sha256: 6f738d9a26fa275317b95b2b96832daab9059ef64af9a338f904a3cb684ae426 optional: false category: main - source: null - build: hf0c8a7f_0 + build: hb8565cd_0 + subdir: osx-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 121284 + timestamp: 1676837793132 - name: xz version: 5.2.6 manager: conda @@ -2008,8 +2701,12 @@ package: sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 optional: false category: main - source: null build: h775f41a_0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 238119 + timestamp: 1660346964847 - name: libexpat version: 2.5.0 manager: conda @@ -2021,8 +2718,15 @@ package: sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96 optional: false category: main - source: null build: hf0c8a7f_1 + subdir: osx-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 69602 + timestamp: 1680191040160 - name: c-compiler version: 1.5.2 manager: conda @@ -2038,8 +2742,12 @@ package: sha256: 0f97b6cc2215f0789ffa2781eb8a6304efaf5c4592c4c619d6e0a63c23f2b877 optional: false category: main - source: null build: hbf74d83_0 + subdir: osx-64 + build_number: 0 + license: BSD + size: 5660 + timestamp: 1670951603925 - name: clang_osx-64 version: 14.0.6 manager: conda @@ -2056,8 +2764,13 @@ package: sha256: 26092a2c8f9d87c1113e3a20cf0700df4df388c58eba04fabe33fafc0e62190d optional: false category: main - source: null build: h3113cd8_6 + subdir: osx-64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + size: 20488 + timestamp: 1679865229912 - name: compiler-rt version: 14.0.6 manager: conda @@ -2072,8 +2785,13 @@ package: sha256: 2dea3b5efea587329320c70a335fa5666c3a814e70e76464734b90a40b70e8a8 optional: false category: main - source: null build: h613da45_0 + subdir: osx-64 + build_number: 0 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 85454 + timestamp: 1667980424247 - name: compiler-rt_osx-64 version: 14.0.6 manager: conda @@ -2087,8 +2805,16 @@ package: sha256: a8351d6a47a8a2cd8267862d36ad5a06f16955c68111140b8b147ee126433712 optional: false category: main - source: null build: hab78ec2_0 + subdir: noarch + build_number: 0 + constrains: + - compiler-rt 14.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + noarch: generic + size: 15896681 + timestamp: 1667980403834 - name: clangxx_osx-64 version: 14.0.6 manager: conda @@ -2104,8 +2830,13 @@ package: sha256: 185f9ccec322cfee2303ba0129ad37c0803492e535978f9e5432e23973004d50 optional: false category: main - source: null build: h6f97653_6 + subdir: osx-64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + size: 19289 + timestamp: 1679865245043 - name: llvm-openmp version: 16.0.6 manager: conda @@ -2117,8 +2848,15 @@ package: sha256: 0fbcf1c9e15dbb22d337063550ebcadbeb96b2a012e633f80255c8c720e4f832 optional: false category: main - source: null build: hff08bdf_0 + subdir: osx-64 + build_number: 0 + constrains: + - openmp 16.0.6|16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 295823 + timestamp: 1686865427800 - name: libcxx version: 16.0.6 manager: conda @@ -2130,8 +2868,13 @@ package: sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 optional: false category: main - source: null build: hd57cbcb_0 + subdir: osx-64 + build_number: 0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1142172 + timestamp: 1686896907750 - name: clangxx version: 14.0.6 manager: conda @@ -2144,8 +2887,13 @@ package: sha256: 6c5ed5942dc9627926741e001a042f2a8dc31e221c0a7e4bcbbe35cd0e6681b8 optional: false category: main - source: null build: default_hdb78580_1 + subdir: osx-64 + build_number: 1 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133262 + timestamp: 1684412419561 - name: clang version: 14.0.6 manager: conda @@ -2158,8 +2906,18 @@ package: sha256: f757328f9924d93b09aa16423160b6ebbe28dac7508cce76d50795db4d1d39c9 optional: false category: main - source: null build: h694c41f_1 + subdir: osx-64 + build_number: 1 + constrains: + - clang-tools 14.0.6.* + - llvm 14.0.6.* + - llvm-tools 14.0.6.* + - llvmdev 14.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133085 + timestamp: 1684412402322 - name: clang-14 version: 14.0.6 manager: conda @@ -2174,8 +2932,18 @@ package: sha256: a8ef6982c0da903e31215425219693a45e39b47189018cf479b03290764793cd optional: false category: main - source: null build: default_hdb78580_1 + subdir: osx-64 + build_number: 1 + constrains: + - clangxx 14.0.6 + - llvm-tools 14.0.6 + - clangdev 14.0.6 + - clang-tools 14.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1029529 + timestamp: 1684412293094 - name: libclang-cpp14 version: 14.0.6 manager: conda @@ -2189,8 +2957,13 @@ package: sha256: 5720d4662bd032a1dc07d0ae1368fa5e454c938545bdd93f78dacd25b9f597d3 optional: false category: main - source: null build: default_hdb78580_1 + subdir: osx-64 + build_number: 1 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 11897758 + timestamp: 1684412176370 - name: libllvm14 version: 14.0.6 manager: conda @@ -2204,8 +2977,13 @@ package: sha256: 2469a23d25e2d6b782aa06621f234009f0e401bbf81b479c535809975605596c optional: false category: main - source: null build: hc8e404f_3 + subdir: osx-64 + build_number: 3 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22443730 + timestamp: 1685682126901 - name: llvm-tools version: 14.0.6 manager: conda @@ -2219,8 +2997,18 @@ package: sha256: f766574fc90d624ee2ed44824726a5f02eb9f90090659c353f125c1488edb271 optional: false category: main - source: null build: hc8e404f_3 + subdir: osx-64 + build_number: 3 + constrains: + - llvmdev 14.0.6 + - clang 14.0.6.* + - clang-tools 14.0.6.* + - llvm 14.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 11163695 + timestamp: 1685682287984 - name: expat version: 2.5.0 manager: conda @@ -2233,8 +3021,13 @@ package: sha256: 15c04a5a690b337b50fb7550cce057d843cf94dd0109d576ec9bc3448a8571d0 optional: false category: main - source: null build: hf0c8a7f_1 + subdir: osx-64 + build_number: 1 + license: MIT + license_family: MIT + size: 120323 + timestamp: 1680191057827 - name: libuv version: 1.44.2 manager: conda @@ -2246,8 +3039,13 @@ package: sha256: c9f8e0884c1557ad886b4389688f8005a655392bd8b90007b0bab463193bfd3a optional: false category: main - source: null build: hac89ed1_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 451617 + timestamp: 1657719849300 - name: ncurses version: '6.4' manager: conda @@ -2259,8 +3057,12 @@ package: sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd optional: false category: main - source: null build: hf0c8a7f_0 + subdir: osx-64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 828118 + timestamp: 1686077056765 - name: rhash version: 1.4.3 manager: conda @@ -2272,8 +3074,13 @@ package: sha256: 39ea9d1e6736d710bf9b56d6ce262c82064946ffada5e4c9459121a51e442381 optional: false category: main - source: null build: hac89ed1_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 198435 + timestamp: 1655256475820 - name: zlib version: 1.2.13 manager: conda @@ -2286,8 +3093,13 @@ package: sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 optional: false category: main - source: null build: h8a1eda9_5 + subdir: osx-64 + build_number: 5 + license: Zlib + license_family: Other + size: 90764 + timestamp: 1686575574678 - name: libzlib version: 1.2.13 manager: conda @@ -2299,8 +3111,15 @@ package: sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 optional: false category: main - source: null build: h8a1eda9_5 + subdir: osx-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 59404 + timestamp: 1686575566695 - name: libcurl version: 8.1.2 manager: conda @@ -2318,8 +3137,13 @@ package: sha256: 2f81bb06377779ea1abe373a2a89289fb440751ad6f68f947ec0f3b1e4399968 optional: false category: main - source: null build: hbee3ae8_0 + subdir: osx-64 + build_number: 0 + license: curl + license_family: MIT + size: 352385 + timestamp: 1685448012016 - name: libnghttp2 version: 1.52.0 manager: conda @@ -2336,23 +3160,32 @@ package: sha256: 093e4f3f62b3b07befa403e84a1f550cffe3b3961e435d42a75284f44be5f68a optional: false category: main - source: null build: he2ab024_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 613074 + timestamp: 1677678399575 - name: zstd version: 1.5.2 manager: conda platform: osx-64 dependencies: libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-h829000d_7.conda hash: - md5: 40a188783d3c425bdccc9ae9104acbb8 - sha256: f845dafb0b488703ce81e25b6f27ed909ee9061b730c172e6b084fcf7156231f + md5: b274ec4dbf15a6e20900e397610567a0 + sha256: 8d6768da7c3170693c0649188e7575474046f8610d8074903cf84e403e3411e8 optional: false category: main - source: null - build: hbc0c0cd_6 + build: h829000d_7 + subdir: osx-64 + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 405881 + timestamp: 1688722093601 - name: openssl version: 3.1.1 manager: conda @@ -2365,8 +3198,15 @@ package: sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 optional: false category: main - source: null build: h8a1eda9_1 + subdir: osx-64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2326872 + timestamp: 1685518213128 - name: krb5 version: 1.20.1 manager: conda @@ -2381,8 +3221,13 @@ package: sha256: 41cfbf4c5cdb4a32eb5319943113d7ef1edb894ea0a5464233e510b59450c824 optional: false category: main - source: null build: h049b76e_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1127291 + timestamp: 1671092045705 - name: c-ares version: 1.19.1 manager: conda @@ -2394,8 +3239,13 @@ package: sha256: 1de09d540facc3833e3f0a280ae987859f310f535726eff66d6f4a66045bd32c optional: false category: main - source: null build: h0dc2134_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 103004 + timestamp: 1684783034995 - name: libev version: '4.33' manager: conda @@ -2407,8 +3257,13 @@ package: sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b optional: false category: main - source: null build: haf1e3a3_1 + subdir: osx-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 101424 + timestamp: 1598868359024 - name: ca-certificates version: 2023.5.7 manager: conda @@ -2420,8 +3275,12 @@ package: sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c optional: false category: main - source: null build: h8857fd0_0 + subdir: osx-64 + build_number: 0 + license: ISC + size: 148522 + timestamp: 1683451939937 - name: cctools_osx-64 version: 973.0.1 manager: conda @@ -2438,8 +3297,17 @@ package: sha256: 468bc6d052fd57928049fa05efc42e2a197026cf817942de833f9f526fdc39c0 optional: false category: main - source: null build: hcc6d90d_13 + subdir: osx-64 + build_number: 13 + constrains: + - cctools 973.0.1.* + - clang 14.0.* + - ld64 609.* + license: APSL-2.0 + license_family: Other + size: 1114891 + timestamp: 1679505481476 - name: cctools version: 973.0.1 manager: conda @@ -2454,8 +3322,13 @@ package: sha256: f36d2b5eccd494f0ade668bd1a63e09b78427d0abb8066c6041e8776d9582114 optional: false category: main - source: null build: h76f1dac_13 + subdir: osx-64 + build_number: 13 + license: APSL-2.0 + license_family: Other + size: 21657 + timestamp: 1679505516215 - name: ld64 version: '609' manager: conda @@ -2469,8 +3342,16 @@ package: sha256: cc7d0de073179de57763c5cf9ee7c2bc9855d362c13245427cccbd517fe794fe optional: false category: main - source: null build: hc6ad406_13 + subdir: osx-64 + build_number: 13 + constrains: + - cctools_osx-64 973.0.1.* + - cctools 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 18850 + timestamp: 1679505500085 - name: ld64_osx-64 version: '609' manager: conda @@ -2486,8 +3367,18 @@ package: sha256: 97c752c2b4518c394adf6db1538d8dff233a4a3072964fb4d834f3993f988e43 optional: false category: main - source: null build: hfd63004_13 + subdir: osx-64 + build_number: 13 + constrains: + - cctools_osx-64 973.0.1.* + - cctools 973.0.1.* + - ld 609.* + - clang >=14.0.6,<15.0a0 + license: APSL-2.0 + license_family: Other + size: 1061393 + timestamp: 1679505296948 - name: libssh2 version: 1.11.0 manager: conda @@ -2501,8 +3392,13 @@ package: sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 optional: false category: main - source: null build: hd019ec5_0 + subdir: osx-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 259556 + timestamp: 1685837820566 - name: sigtool version: 0.1.3 manager: conda @@ -2515,8 +3411,13 @@ package: sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf optional: false category: main - source: null build: h88f4db0_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 213817 + timestamp: 1643442169866 - name: bzip2 version: 1.0.8 manager: conda @@ -2528,8 +3429,13 @@ package: sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 optional: false category: main - source: null build: h0d85af4_4 + subdir: osx-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 158829 + timestamp: 1618862580095 - name: tapi version: 1100.0.11 manager: conda @@ -2542,8 +3448,13 @@ package: sha256: 34b18ce8d1518b67e333ca1d3af733c3976ecbdf3a36b727f9b4dedddcc588fa optional: false category: main - source: null build: h9ce4665_0 + subdir: osx-64 + build_number: 0 + license: NCSA + license_family: MIT + size: 201044 + timestamp: 1602664232074 - name: libedit version: 3.1.20191231 manager: conda @@ -2556,6 +3467,11 @@ package: sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 optional: false category: main - source: null build: h0678c8f_2 + subdir: osx-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 105382 + timestamp: 1597616576726 version: 1 diff --git a/examples/flask-hello-world/pixi.lock b/examples/flask-hello-world/pixi.lock index f00cbf2e97..3332c2ef9a 100644 --- a/examples/flask-hello-world/pixi.lock +++ b/examples/flask-hello-world/pixi.lock @@ -19,163 +19,39 @@ metadata: custom_metadata: null package: - name: python - version: 3.11.3 + version: 3.11.4 manager: conda platform: linux-64 dependencies: - openssl: '>=3.1.0,<4.0a0' + openssl: '>=3.1.1,<4.0a0' readline: '>=8.2,<9.0a0' libzlib: '>=1.2.13,<1.3.0a0' - libsqlite: '>=3.40.0,<4.0a0' libnsl: '>=2.0.0,<2.1.0a0' + libsqlite: '>=3.42.0,<4.0a0' libexpat: '>=2.5.0,<3.0a0' - xz: '>=5.2.6,<6.0a0' - libuuid: '>=2.38.1,<3.0a0' libgcc-ng: '>=12' - ncurses: '>=6.3,<7.0a0' + libuuid: '>=2.38.1,<3.0a0' + xz: '>=5.2.6,<6.0a0' + ncurses: '>=6.4,<7.0a0' ld_impl_linux-64: '>=2.36.1' tzdata: '*' libffi: '>=3.4,<4.0a0' tk: '>=8.6.12,<8.7.0a0' bzip2: '>=1.0.8,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.3-h2755cc3_0_cpython.conda - hash: - md5: 37005ea5f68df6a8a381b70cf4d4a160 - sha256: 5013c65e922895baa6f60fba4ec84ee13b9a53e1fb9aa66804c33f74ea236024 - optional: false - category: main - build: h2755cc3_0_cpython - subdir: noarch - build_number: 0 -- name: flask - version: 2.3.2 - manager: conda - platform: linux-64 - dependencies: - itsdangerous: '>=2.1.2' - blinker: '>=1.6.2' - importlib-metadata: '>=3.6.0' - python: '>=3.8' - click: '>=8.1.3' - werkzeug: '>=2.3.3' - jinja2: '>=3.1.2' - url: https://conda.anaconda.org/conda-forge/noarch/flask-2.3.2-pyhd8ed1ab_0.conda - hash: - md5: 816d75d4c0f2e41b5765d17498c57a2e - sha256: f93246be286f2d0f93e85c4f08f9ce48f3eed875a79225e2ea119e70c0237421 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 -- name: click - version: 8.1.3 - manager: conda - platform: linux-64 - dependencies: - __unix: '*' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2 - hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea - optional: false - category: main - build: unix_pyhd8ed1ab_2 - subdir: noarch - build_number: 0 -- name: itsdangerous - version: 2.1.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 3c3de74912f11d2b590184f03c7cd09b - sha256: 31e3492686b4e92b53db9b48bc0eb03873b1caaf28629fee7d2d47627a2c56d3 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 -- name: jinja2 - version: 3.1.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.7' - markupsafe: '>=2.0' - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 - hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 - optional: false - category: main - build: pyhd8ed1ab_1 - subdir: noarch - build_number: 0 -- name: werkzeug - version: 2.3.4 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.8' - markupsafe: '>=2.1.1' - url: https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.3.4-pyhd8ed1ab_0.conda - hash: - md5: 23ddbe41ab0115bc0bfb75dcbf5de7cf - sha256: 2df1970270839b36e13a4ba7e4b393cfa95aa1d7438909aa8c3db14170ea207c - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 -- name: importlib-metadata - version: 6.6.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.8' - zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.6.0-pyha770c72_0.conda - hash: - md5: f91a5d5175fb7ff2a91952ec7da59cb9 - sha256: 33d49065756a73fbb92277c756fa00a41891408528eb90ae05ff3367a401ae6e - optional: false - category: main - build: pyha770c72_0 - subdir: noarch - build_number: 0 -- name: blinker - version: 1.6.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.2-pyhd8ed1ab_0.conda - hash: - md5: 2fb79ec81bad9492b6d59a06b3b647a4 - sha256: b6f32491536823e47cf6eb4717dd341385600a2b901235028dedc629a77aeb82 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 -- name: tzdata - version: 2023c - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.4-hab00c5b_0_cpython.conda hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: 1c628861a2a126b9fc9363ca1b7d014e + sha256: 04422f10d5bcb251fd254d6a9b0659dcde55e900d48cca159cb1fef637b0050c optional: false category: main - build: h71feb2d_0 - subdir: noarch + build: hab00c5b_0_cpython + subdir: linux-64 build_number: 0 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 30679695 + timestamp: 1686421868353 - name: ncurses version: '6.4' manager: conda @@ -189,24 +65,11 @@ package: optional: false category: main build: hcb278e6_0 - subdir: noarch - build_number: 0 -- name: openssl - version: 3.1.1 - manager: conda - platform: linux-64 - dependencies: - ca-certificates: '*' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.1-hd590300_1.conda - hash: - md5: 2e1d7b458ac8f1e3ca4e18b77add6277 - sha256: 407d655643389bdb49266842a816815c981ae98f3513a6a2059b908b3abb380a - optional: false - category: main - build: hd590300_1 - subdir: noarch + subdir: linux-64 build_number: 0 + license: X11 AND BSD-3-Clause + size: 880967 + timestamp: 1686076725450 - name: readline version: '8.2' manager: conda @@ -221,8 +84,12 @@ package: optional: false category: main build: h8228510_1 - subdir: noarch - build_number: 0 + subdir: linux-64 + build_number: 1 + license: GPL-3.0-only + license_family: GPL + size: 281456 + timestamp: 1679532220005 - name: tk version: 8.6.12 manager: conda @@ -237,68 +104,12 @@ package: optional: false category: main build: h27826a3_0 - subdir: noarch - build_number: 0 -- name: libffi - version: 3.4.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - hash: - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - optional: false - category: main - build: h7f98852_5 - subdir: noarch - build_number: 0 -- name: libgcc-ng - version: 13.1.0 - manager: conda - platform: linux-64 - dependencies: - _libgcc_mutex: ==0.1 conda_forge - _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda - hash: - md5: cd93f779ff018dd85c7544c015c9db3c - sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 - optional: false - category: main - build: he5830b7_0 - subdir: noarch - build_number: 0 -- name: ld_impl_linux-64 - version: '2.40' - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda - hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd - optional: false - category: main - build: h41732ed_0 - subdir: noarch - build_number: 0 -- name: bzip2 - version: 1.0.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 - hash: - md5: a1fd65c7ccbf10880423d82bca54eb54 - sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa - optional: false - category: main - build: h7f98852_4 - subdir: noarch + subdir: linux-64 build_number: 0 + license: TCL + license_family: BSD + size: 3456292 + timestamp: 1645033615058 - name: libuuid version: 2.38.1 manager: conda @@ -312,23 +123,12 @@ package: optional: false category: main build: h0b41bf4_0 - subdir: noarch - build_number: 0 -- name: libzlib - version: 1.2.13 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2 - hash: - md5: f3f9de449d32ca9b9c66a22863c96f41 - sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd - optional: false - category: main - build: h166bdaf_4 - subdir: noarch + subdir: linux-64 build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 33601 + timestamp: 1680112270483 - name: xz version: 5.2.6 manager: conda @@ -342,8 +142,11 @@ package: optional: false category: main build: h166bdaf_0 - subdir: noarch + subdir: linux-64 build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 418368 + timestamp: 1660346797927 - name: libnsl version: 2.0.0 manager: conda @@ -357,8 +160,12 @@ package: optional: false category: main build: h7f98852_0 - subdir: noarch + subdir: linux-64 build_number: 0 + license: GPL-2.0-only + license_family: GPL + size: 31236 + timestamp: 1633040059627 - name: libsqlite version: 3.42.0 manager: conda @@ -373,8 +180,11 @@ package: optional: false category: main build: h2797004_0 - subdir: noarch + subdir: linux-64 build_number: 0 + license: Unlicense + size: 828910 + timestamp: 1684264791037 - name: libexpat version: 2.5.0 manager: conda @@ -388,54 +198,186 @@ package: optional: false category: main build: hcb278e6_1 - subdir: noarch - build_number: 0 -- name: zipp - version: 3.15.0 + subdir: linux-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 77980 + timestamp: 1680190528313 +- name: flask + version: 2.3.2 manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda + blinker: '>=1.6.2' + importlib-metadata: '>=3.6.0' + itsdangerous: '>=2.1.2' + python: '>=3.8' + click: '>=8.1.3' + werkzeug: '>=2.3.3' + jinja2: '>=3.1.2' + url: https://conda.anaconda.org/conda-forge/noarch/flask-2.3.2-pyhd8ed1ab_0.conda hash: - md5: 13018819ca8f5b7cc675a8faf1f5fedf - sha256: 241de30545299be9bcea3addf8a2c22a3b3d4ba6730890e150ab690ac937a3d2 + md5: 816d75d4c0f2e41b5765d17498c57a2e + sha256: f93246be286f2d0f93e85c4f08f9ce48f3eed875a79225e2ea119e70c0237421 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: markupsafe - version: 2.1.3 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 79865 + timestamp: 1682966703279 +- name: itsdangerous + version: 2.1.2 manager: conda platform: linux-64 dependencies: - python: '>=3.11,<3.12.0a0' - libgcc-ng: '>=12' - python_abi: 3.11.* *_cp311 - url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.3-py311h459d7ec_0.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: 9904dc4adb5d547cb21e136f98cb24b0 - sha256: 747b00706156b61d48565710f38cdb382e22f7db03e5b429532a2d5d5917c313 + md5: 3c3de74912f11d2b590184f03c7cd09b + sha256: 31e3492686b4e92b53db9b48bc0eb03873b1caaf28629fee7d2d47627a2c56d3 optional: false category: main - build: py311h459d7ec_0 + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: ca-certificates - version: 2023.5.7 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 16377 + timestamp: 1648147263536 +- name: blinker + version: 1.6.2 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.5.7-hbcca054_0.conda + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.2-pyhd8ed1ab_0.conda hash: - md5: f5c65075fc34438d5b456c7f3f5ab695 - sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345 + md5: 2fb79ec81bad9492b6d59a06b3b647a4 + sha256: b6f32491536823e47cf6eb4717dd341385600a2b901235028dedc629a77aeb82 optional: false category: main - build: hbcca054_0 + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 18215 + timestamp: 1681349906223 +- name: click + version: 8.1.4 + manager: conda + platform: linux-64 + dependencies: + __unix: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.4-unix_pyh707e725_0.conda + hash: + md5: fcae73fbdce7981fd500c626bb1ba6ab + sha256: 63f2b103488ba80b274f25bade66394fdd02344024fce45ab44e45861931c61d + optional: false + category: main + build: unix_pyh707e725_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 84812 + timestamp: 1688733100100 +- name: importlib-metadata + version: 6.8.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.8' + zipp: '>=0.5' + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda + hash: + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf + optional: false + category: main + build: pyha770c72_0 + subdir: noarch + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 25910 + timestamp: 1688754651944 +- name: jinja2 + version: 3.1.2 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.7' + markupsafe: '>=2.0' + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main + build: pyhd8ed1ab_1 + subdir: noarch + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 101443 + timestamp: 1654302514195 +- name: werkzeug + version: 2.3.6 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.8' + markupsafe: '>=2.1.1' + url: https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.3.6-pyhd8ed1ab_0.conda + hash: + md5: 55fbbb3e67185820ee2007395bfe0073 + sha256: 28515f7ddb8a20f1436b9ac3a6ba2aa9be337995e4ee63c72d0f5d0efd6a2062 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 254000 + timestamp: 1686273829710 +- name: libgcc-ng + version: 13.1.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: ==0.1 conda_forge + _openmp_mutex: '>=4.5' + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda + hash: + md5: cd93f779ff018dd85c7544c015c9db3c + sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 + optional: false + category: main + build: he5830b7_0 + subdir: linux-64 + build_number: 0 + constrains: + - libgomp 13.1.0 he5830b7_0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 776294 + timestamp: 1685816209343 - name: _libgcc_mutex version: '0.1' manager: conda @@ -448,8 +390,32 @@ package: optional: false category: main build: conda_forge - subdir: noarch + subdir: linux-64 build_number: 0 + license: None + size: 2562 + timestamp: 1578324546067 +- name: libzlib + version: 1.2.13 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + hash: + md5: f36c115f1ee199da648e0597ec2047ad + sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + optional: false + category: main + build: hd590300_5 + subdir: linux-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 61588 + timestamp: 1686575217516 - name: _openmp_mutex version: '4.5' manager: conda @@ -464,8 +430,174 @@ package: optional: false category: main build: 2_gnu + subdir: linux-64 + build_number: 16 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 +- name: libgomp + version: 13.1.0 + manager: conda + platform: linux-64 + dependencies: + _libgcc_mutex: ==0.1 conda_forge + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda + hash: + md5: 56ca14d57ac29a75d23a39eb3ee0ddeb + sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d + optional: false + category: main + build: he5830b7_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 419184 + timestamp: 1685816132543 +- name: openssl + version: 3.1.1 + manager: conda + platform: linux-64 + dependencies: + ca-certificates: '*' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.1-hd590300_1.conda + hash: + md5: 2e1d7b458ac8f1e3ca4e18b77add6277 + sha256: 407d655643389bdb49266842a816815c981ae98f3513a6a2059b908b3abb380a + optional: false + category: main + build: hd590300_1 + subdir: linux-64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2642411 + timestamp: 1685517327134 +- name: libffi + version: 3.4.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + hash: + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + optional: false + category: main + build: h7f98852_5 + subdir: linux-64 + build_number: 5 + license: MIT + license_family: MIT + size: 58292 + timestamp: 1636488182923 +- name: ld_impl_linux-64 + version: '2.40' + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + hash: + md5: 7aca3059a1729aa76c597603f10b0dd3 + sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + optional: false + category: main + build: h41732ed_0 + subdir: linux-64 + build_number: 0 + constrains: + - binutils_impl_linux-64 2.40 + license: GPL-3.0-only + license_family: GPL + size: 704696 + timestamp: 1674833944779 +- name: bzip2 + version: 1.0.8 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 + hash: + md5: a1fd65c7ccbf10880423d82bca54eb54 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa + optional: false + category: main + build: h7f98852_4 + subdir: linux-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 495686 + timestamp: 1606604745109 +- name: tzdata + version: 2023c + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + hash: + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + optional: false + category: main + build: h71feb2d_0 + subdir: noarch + build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 +- name: zipp + version: 3.16.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.0-pyhd8ed1ab_0.conda + hash: + md5: 8be65b18d05ecd2801964e69c42f4fca + sha256: de563512a84818e5b367414e68985196dfb40964c12147fc731a6645f2e029e5 + optional: false + category: main + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 17482 + timestamp: 1688903060076 +- name: markupsafe + version: 2.1.3 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.11,<3.12.0a0' + libgcc-ng: '>=12' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.3-py311h459d7ec_0.conda + hash: + md5: 9904dc4adb5d547cb21e136f98cb24b0 + sha256: 747b00706156b61d48565710f38cdb382e22f7db03e5b429532a2d5d5917c313 + optional: false + category: main + build: py311h459d7ec_0 + subdir: linux-64 + build_number: 0 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 26975 + timestamp: 1685769213443 - name: python_abi version: '3.11' manager: conda @@ -478,59 +610,182 @@ package: optional: false category: main build: 3_cp311 - subdir: noarch - build_number: 0 -- name: libgomp - version: 13.1.0 + subdir: linux-64 + build_number: 3 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 5682 + timestamp: 1669071702664 +- name: ca-certificates + version: 2023.5.7 manager: conda platform: linux-64 - dependencies: - _libgcc_mutex: ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.5.7-hbcca054_0.conda hash: - md5: 56ca14d57ac29a75d23a39eb3ee0ddeb - sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d + md5: f5c65075fc34438d5b456c7f3f5ab695 + sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345 optional: false category: main - build: he5830b7_0 - subdir: noarch + build: hbcca054_0 + subdir: linux-64 build_number: 0 + license: ISC + size: 148360 + timestamp: 1683451720318 - name: python - version: 3.11.3 + version: 3.11.4 manager: conda platform: osx-arm64 dependencies: tzdata: '*' - openssl: '>=3.1.0,<4.0a0' + openssl: '>=3.1.1,<4.0a0' readline: '>=8.2,<9.0a0' libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.42.0,<4.0a0' libzlib: '>=1.2.13,<1.3.0a0' - libsqlite: '>=3.40.0,<4.0a0' - xz: '>=5.2.6,<6.0a0' libexpat: '>=2.5.0,<3.0a0' - bzip2: '>=1.0.8,<2.0a0' tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + xz: '>=5.2.6,<6.0a0' + ncurses: '>=6.4,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.4-h47c9636_0_cpython.conda + hash: + md5: b790b3cac8db7bdf2aaced9460bdbce4 + sha256: 7865a28f7ec5c453cd8d3e7f539e02028ba5aa2aa33ccaa9915ba2654ae03ab2 + optional: false + category: main + build: h47c9636_0_cpython + subdir: osx-arm64 + build_number: 0 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 14666250 + timestamp: 1686420844311 +- name: ncurses + version: '6.4' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda + hash: + md5: 318337fb9d0c53ba635efb7888242373 + sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 + optional: false + category: main + build: h7ea286d_0 + subdir: osx-arm64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 799196 + timestamp: 1686077139703 +- name: readline + version: '8.2' + manager: conda + platform: osx-arm64 + dependencies: ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.3-h1456518_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda hash: - md5: 9a215527aee438cb9926e66ea6538caa - sha256: 808fff7e53017753eb4fbd6e3faeb192a370cb517309fa3c104a94f505ad6fda + md5: 8cbb776a2f641b943d413b3e19df71f4 + sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 optional: false category: main - build: h1456518_0_cpython - subdir: noarch + build: h92ec313_1 + subdir: osx-arm64 + build_number: 1 + license: GPL-3.0-only + license_family: GPL + size: 250351 + timestamp: 1679532511311 +- name: tk + version: 8.6.12 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 + hash: + md5: 2cb3d18eac154109107f093860bd545f + sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 + optional: false + category: main + build: he1e0b03_0 + subdir: osx-arm64 build_number: 0 + license: TCL + license_family: BSD + size: 3382710 + timestamp: 1645032642101 +- name: xz + version: 5.2.6 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + hash: + md5: 39c6b54e94014701dd157f4f576ed211 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + optional: false + category: main + build: h57fd34a_0 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 235693 + timestamp: 1660346961024 +- name: libsqlite + version: 3.42.0 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda + hash: + md5: 6ae1bbf3ae393a45a75685072fffbe8d + sha256: 120913cf0fb694546fbaf95dff211ac5c1e3e91bc69c73350891a05dc106355f + optional: false + category: main + build: hb31c410_0 + subdir: osx-arm64 + build_number: 0 + license: Unlicense + size: 822883 + timestamp: 1684265273102 +- name: libexpat + version: 2.5.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda + hash: + md5: 5a097ad3d17e42c148c9566280481317 + sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 + optional: false + category: main + build: hb7217d7_1 + subdir: osx-arm64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 63442 + timestamp: 1680190916539 - name: flask version: 2.3.2 manager: conda platform: osx-arm64 dependencies: blinker: '>=1.6.2' - python: '>=3.8' importlib-metadata: '>=3.6.0' - werkzeug: '>=2.3.3' - click: '>=8.1.3' itsdangerous: '>=2.1.2' + python: '>=3.8' + click: '>=8.1.3' + werkzeug: '>=2.3.3' jinja2: '>=3.1.2' url: https://conda.anaconda.org/conda-forge/noarch/flask-2.3.2-pyhd8ed1ab_0.conda hash: @@ -541,114 +796,155 @@ package: build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: click - version: 8.1.3 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 79865 + timestamp: 1682966703279 +- name: itsdangerous + version: 2.1.2 manager: conda platform: osx-arm64 dependencies: - __unix: '*' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + md5: 3c3de74912f11d2b590184f03c7cd09b + sha256: 31e3492686b4e92b53db9b48bc0eb03873b1caaf28629fee7d2d47627a2c56d3 optional: false category: main - build: unix_pyhd8ed1ab_2 + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: importlib-metadata - version: 6.6.0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 16377 + timestamp: 1648147263536 +- name: blinker + version: 1.6.2 manager: conda platform: osx-arm64 dependencies: - python: '>=3.8' - zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.6.0-pyha770c72_0.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.2-pyhd8ed1ab_0.conda hash: - md5: f91a5d5175fb7ff2a91952ec7da59cb9 - sha256: 33d49065756a73fbb92277c756fa00a41891408528eb90ae05ff3367a401ae6e + md5: 2fb79ec81bad9492b6d59a06b3b647a4 + sha256: b6f32491536823e47cf6eb4717dd341385600a2b901235028dedc629a77aeb82 optional: false category: main - build: pyha770c72_0 + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: itsdangerous - version: 2.1.2 + license: MIT + license_family: MIT + noarch: python + size: 18215 + timestamp: 1681349906223 +- name: click + version: 8.1.4 manager: conda platform: osx-arm64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2 + __unix: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.4-unix_pyh707e725_0.conda hash: - md5: 3c3de74912f11d2b590184f03c7cd09b - sha256: 31e3492686b4e92b53db9b48bc0eb03873b1caaf28629fee7d2d47627a2c56d3 + md5: fcae73fbdce7981fd500c626bb1ba6ab + sha256: 63f2b103488ba80b274f25bade66394fdd02344024fce45ab44e45861931c61d optional: false category: main - build: pyhd8ed1ab_0 + build: unix_pyh707e725_0 subdir: noarch build_number: 0 -- name: jinja2 - version: 3.1.2 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 84812 + timestamp: 1688733100100 +- name: importlib-metadata + version: 6.8.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.7' - markupsafe: '>=2.0' - url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + python: '>=3.8' + zipp: '>=0.5' + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda hash: - md5: c8490ed5c70966d232fdd389d0dbed37 - sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf optional: false category: main - build: pyhd8ed1ab_1 + build: pyha770c72_0 subdir: noarch build_number: 0 -- name: werkzeug - version: 2.3.4 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 25910 + timestamp: 1688754651944 +- name: jinja2 + version: 3.1.2 manager: conda platform: osx-arm64 dependencies: - python: '>=3.8' - markupsafe: '>=2.1.1' - url: https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.3.4-pyhd8ed1ab_0.conda + python: '>=3.7' + markupsafe: '>=2.0' + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 hash: - md5: 23ddbe41ab0115bc0bfb75dcbf5de7cf - sha256: 2df1970270839b36e13a4ba7e4b393cfa95aa1d7438909aa8c3db14170ea207c + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 optional: false category: main - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 subdir: noarch - build_number: 0 -- name: blinker - version: 1.6.2 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 101443 + timestamp: 1654302514195 +- name: werkzeug + version: 2.3.6 manager: conda platform: osx-arm64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.2-pyhd8ed1ab_0.conda + python: '>=3.8' + markupsafe: '>=2.1.1' + url: https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.3.6-pyhd8ed1ab_0.conda hash: - md5: 2fb79ec81bad9492b6d59a06b3b647a4 - sha256: b6f32491536823e47cf6eb4717dd341385600a2b901235028dedc629a77aeb82 + md5: 55fbbb3e67185820ee2007395bfe0073 + sha256: 28515f7ddb8a20f1436b9ac3a6ba2aa9be337995e4ee63c72d0f5d0efd6a2062 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: bzip2 - version: 1.0.8 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 254000 + timestamp: 1686273829710 +- name: libzlib + version: 1.2.13 manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda hash: - md5: fc76ace7b94fb1f694988ab1b14dd248 - sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 + md5: 1a47f5236db2e06a320ffa0392f81bd8 + sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a optional: false category: main - build: h3422bc3_4 - subdir: noarch - build_number: 0 + build: h53f4e23_5 + subdir: osx-arm64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 48102 + timestamp: 1686575426584 - name: libffi version: 3.4.2 manager: conda @@ -661,36 +957,12 @@ package: optional: false category: main build: h3422bc3_5 - subdir: noarch - build_number: 0 -- name: libzlib - version: 1.2.13 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2 - hash: - md5: 780852dc54c4c07e64b276a97f89c162 - sha256: a1bf4a1c107838fea4570a7f1750306d65d84fcf2913d4e0d30b4db785e8f223 - optional: false - category: main - build: h03a7124_4 - subdir: noarch - build_number: 0 -- name: ncurses - version: '6.4' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda - hash: - md5: 318337fb9d0c53ba635efb7888242373 - sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 - optional: false - category: main - build: h7ea286d_0 - subdir: noarch - build_number: 0 + subdir: osx-arm64 + build_number: 5 + license: MIT + license_family: MIT + size: 39020 + timestamp: 1636488587153 - name: openssl version: 3.1.1 manager: conda @@ -704,165 +976,250 @@ package: optional: false category: main build: h53f4e23_1 - subdir: noarch - build_number: 0 -- name: readline - version: '8.2' + subdir: osx-arm64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2223980 + timestamp: 1685517736396 +- name: tzdata + version: 2023c manager: conda platform: osx-arm64 - dependencies: - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: - md5: 8cbb776a2f641b943d413b3e19df71f4 - sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main - build: h92ec313_1 + build: h71feb2d_0 subdir: noarch build_number: 0 -- name: tk - version: 8.6.12 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 +- name: zipp + version: 3.16.0 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.0-pyhd8ed1ab_0.conda hash: - md5: 2cb3d18eac154109107f093860bd545f - sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 + md5: 8be65b18d05ecd2801964e69c42f4fca + sha256: de563512a84818e5b367414e68985196dfb40964c12147fc731a6645f2e029e5 optional: false category: main - build: he1e0b03_0 + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: xz - version: 5.2.6 + license: MIT + license_family: MIT + noarch: python + size: 17482 + timestamp: 1688903060076 +- name: markupsafe + version: 2.1.3 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.3-py311heffc1b2_0.conda hash: - md5: 39c6b54e94014701dd157f4f576ed211 - sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + md5: 64767fbeb9e55231662b75405f9e01e4 + sha256: 3d8fc172185c479b9df33259300bd204e40f13d958c030249cd35952709d61bf optional: false category: main - build: h57fd34a_0 - subdir: noarch + build: py311heffc1b2_0 + subdir: osx-arm64 build_number: 0 -- name: libsqlite - version: 3.42.0 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 26729 + timestamp: 1685769407109 +- name: python_abi + version: '3.11' manager: conda platform: osx-arm64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-3_cp311.conda hash: - md5: 6ae1bbf3ae393a45a75685072fffbe8d - sha256: 120913cf0fb694546fbaf95dff211ac5c1e3e91bc69c73350891a05dc106355f + md5: e1586496f8acd1c9293019ab14dbde9d + sha256: cd2bad56c398e77b7f559314c29dd54e9eeb842896ff1de5078ed3192e5e14a6 optional: false category: main - build: hb31c410_0 - subdir: noarch - build_number: 0 -- name: libexpat - version: 2.5.0 + build: 3_cp311 + subdir: osx-arm64 + build_number: 3 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 5768 + timestamp: 1669071844807 +- name: ca-certificates + version: 2023.5.7 manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.5.7-hf0a4a13_0.conda hash: - md5: 5a097ad3d17e42c148c9566280481317 - sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 + md5: a8387be82224743cf849fb907790b91a + sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5 optional: false category: main - build: hb7217d7_1 - subdir: noarch + build: hf0a4a13_0 + subdir: osx-arm64 build_number: 0 -- name: tzdata - version: 2023c + license: ISC + size: 148524 + timestamp: 1683451885269 +- name: bzip2 + version: 1.0.8 manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: fc76ace7b94fb1f694988ab1b14dd248 + sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 optional: false category: main - build: h71feb2d_0 - subdir: noarch + build: h3422bc3_4 + subdir: osx-arm64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 151850 + timestamp: 1618862645215 +- name: python + version: 3.11.4 + manager: conda + platform: win-64 + dependencies: + tzdata: '*' + openssl: '>=3.1.1,<4.0a0' + libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.42.0,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libexpat: '>=2.5.0,<3.0a0' + tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + xz: '>=5.2.6,<6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.4-h2628c8c_0_cpython.conda + hash: + md5: 3187a32fba79e835f099ecea054026f4 + sha256: d43fa70a3549fea27d3993f79ba2584ec6d6fe2aaf6e5890847f974e89a744e0 + optional: false + category: main + build: h2628c8c_0_cpython + subdir: win-64 build_number: 0 -- name: ca-certificates - version: 2023.5.7 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 18116100 + timestamp: 1686420267149 +- name: tk + version: 8.6.12 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.5.7-hf0a4a13_0.conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 hash: - md5: a8387be82224743cf849fb907790b91a - sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5 + md5: c69a5047cc9291ae40afd4a1ad6f0c0f + sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 optional: false category: main - build: hf0a4a13_0 - subdir: noarch + build: h8ffe710_0 + subdir: win-64 build_number: 0 -- name: markupsafe - version: 2.1.3 + license: TCL + license_family: BSD + size: 3681762 + timestamp: 1645033031535 +- name: xz + version: 5.2.6 manager: conda - platform: osx-arm64 + platform: win-64 dependencies: - python: '>=3.11,<3.12.0a0 *_cpython' - python_abi: 3.11.* *_cp311 - url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.3-py311heffc1b2_0.conda + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 hash: - md5: 64767fbeb9e55231662b75405f9e01e4 - sha256: 3d8fc172185c479b9df33259300bd204e40f13d958c030249cd35952709d61bf + md5: 515d77642eaa3639413c6b1bc3f94219 + sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 optional: false category: main - build: py311heffc1b2_0 - subdir: noarch + build: h8d14728_0 + subdir: win-64 build_number: 0 -- name: zipp - version: 3.15.0 + license: LGPL-2.1 and GPL-2.0 + size: 217804 + timestamp: 1660346976440 +- name: libsqlite + version: 3.42.0 manager: conda - platform: osx-arm64 + platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.42.0-hcfcfb64_0.conda hash: - md5: 13018819ca8f5b7cc675a8faf1f5fedf - sha256: 241de30545299be9bcea3addf8a2c22a3b3d4ba6730890e150ab690ac937a3d2 + md5: 9a71d93deb99cc09d8939d5235b5909a + sha256: 70bc1fdb72de847807355c13144666d4f151894f9b141ee559f5d243bdf577e2 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: hcfcfb64_0 + subdir: win-64 build_number: 0 -- name: python_abi - version: '3.11' + license: Unlicense + size: 839797 + timestamp: 1684265312954 +- name: libexpat + version: 2.5.0 manager: conda - platform: osx-arm64 + platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-3_cp311.conda + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda hash: - md5: e1586496f8acd1c9293019ab14dbde9d - sha256: cd2bad56c398e77b7f559314c29dd54e9eeb842896ff1de5078ed3192e5e14a6 + md5: 636cc3cbbd2e28bcfd2f73b2044aac2c + sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf optional: false category: main - build: 3_cp311 - subdir: noarch - build_number: 0 + build: h63175ca_1 + subdir: win-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 138689 + timestamp: 1680190844101 - name: flask version: 2.3.2 manager: conda platform: win-64 dependencies: blinker: '>=1.6.2' - itsdangerous: '>=2.1.2' importlib-metadata: '>=3.6.0' - werkzeug: '>=2.3.3' + itsdangerous: '>=2.1.2' python: '>=3.8' click: '>=8.1.3' + werkzeug: '>=2.3.3' jinja2: '>=3.1.2' url: https://conda.anaconda.org/conda-forge/noarch/flask-2.3.2-pyhd8ed1ab_0.conda hash: @@ -873,79 +1230,94 @@ package: build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: python - version: 3.11.3 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 79865 + timestamp: 1682966703279 +- name: itsdangerous + version: 2.1.2 manager: conda platform: win-64 dependencies: - tzdata: '*' - openssl: '>=3.1.0,<4.0a0' - libffi: '>=3.4,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - tk: '>=8.6.12,<8.7.0a0' - bzip2: '>=1.0.8,<2.0a0' - libsqlite: '>=3.40.0,<4.0a0' - libexpat: '>=2.5.0,<3.0a0' - xz: '>=5.2.6,<6.0a0' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.3-h2628c8c_0_cpython.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: 8f82e0e0ba51bed311f28eb6450393f6 - sha256: 092b7bc17a0065b82f512d56910c521fd665e8020536014f1a9e3f2a47b448bb + md5: 3c3de74912f11d2b590184f03c7cd09b + sha256: 31e3492686b4e92b53db9b48bc0eb03873b1caaf28629fee7d2d47627a2c56d3 optional: false category: main - build: h2628c8c_0_cpython + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: vc - version: '14.3' + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 16377 + timestamp: 1648147263536 +- name: blinker + version: 1.6.2 manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.32.31332' - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb25d44b_16.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.2-pyhd8ed1ab_0.conda hash: - md5: ea326b37e3bd6d2616988e09f3a9396c - sha256: 29bc108d66150ca75cab937f844f4ac4a836beb6ea3ee167d03c611444bb2a82 + md5: 2fb79ec81bad9492b6d59a06b3b647a4 + sha256: b6f32491536823e47cf6eb4717dd341385600a2b901235028dedc629a77aeb82 optional: false category: main - build: hb25d44b_16 + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 18215 + timestamp: 1681349906223 - name: click - version: 8.1.3 + version: 8.1.4 manager: conda platform: win-64 dependencies: - python: '>=3.8' __win: '*' colorama: '*' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-win_pyhd8ed1ab_2.tar.bz2 + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.4-win_pyh7428d3b_0.conda hash: - md5: 6b58680207b526c42dcff68b543803dd - sha256: 84e80a33e9a8e5398d3e97209366b57f635462a5b894f8076ec8c95e56672c44 + md5: efa9a4c3abc022b74ea3485d830432c9 + sha256: 1e7fe89aa3f18f501a672f229e19ddbbd560e5df29fe93b8f5a93ac76c50e8e7 optional: false category: main - build: win_pyhd8ed1ab_2 + build: win_pyh7428d3b_0 subdir: noarch build_number: 0 -- name: itsdangerous - version: 2.1.2 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 85043 + timestamp: 1688733349522 +- name: importlib-metadata + version: 6.8.0 manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2 + python: '>=3.8' + zipp: '>=0.5' + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda hash: - md5: 3c3de74912f11d2b590184f03c7cd09b - sha256: 31e3492686b4e92b53db9b48bc0eb03873b1caaf28629fee7d2d47627a2c56d3 + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf optional: false category: main - build: pyhd8ed1ab_0 + build: pyha770c72_0 subdir: noarch build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 25910 + timestamp: 1688754651944 - name: jinja2 version: 3.1.2 manager: conda @@ -961,75 +1333,100 @@ package: category: main build: pyhd8ed1ab_1 subdir: noarch - build_number: 0 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 101443 + timestamp: 1654302514195 - name: werkzeug - version: 2.3.4 + version: 2.3.6 manager: conda platform: win-64 dependencies: python: '>=3.8' markupsafe: '>=2.1.1' - url: https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.3.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.3.6-pyhd8ed1ab_0.conda hash: - md5: 23ddbe41ab0115bc0bfb75dcbf5de7cf - sha256: 2df1970270839b36e13a4ba7e4b393cfa95aa1d7438909aa8c3db14170ea207c + md5: 55fbbb3e67185820ee2007395bfe0073 + sha256: 28515f7ddb8a20f1436b9ac3a6ba2aa9be337995e4ee63c72d0f5d0efd6a2062 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 -- name: importlib-metadata - version: 6.6.0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 254000 + timestamp: 1686273829710 +- name: vc14_runtime + version: 14.36.32532 manager: conda platform: win-64 dependencies: - python: '>=3.8' - zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.6.0-pyha770c72_0.conda + ucrt: '>=10.0.20348.0' + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hfdfe4a8_17.conda hash: - md5: f91a5d5175fb7ff2a91952ec7da59cb9 - sha256: 33d49065756a73fbb92277c756fa00a41891408528eb90ae05ff3367a401ae6e + md5: 91c1ecaf3996889532fc0456178b1058 + sha256: e76986c555647347a0185e646ef65625dabed60da255f6b30367df8bd6dc6cd8 optional: false category: main - build: pyha770c72_0 - subdir: noarch - build_number: 0 -- name: blinker - version: 1.6.2 + build: hfdfe4a8_17 + subdir: win-64 + build_number: 17 + constrains: + - vs2015_runtime 14.36.32532.* *_17 + license: LicenseRef-ProprietaryMicrosoft + license_family: Proprietary + size: 740599 + timestamp: 1688020615962 +- name: vs2015_runtime + version: 14.36.32532 manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.2-pyhd8ed1ab_0.conda + vc14_runtime: '>=14.36.32532' + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda hash: - md5: 2fb79ec81bad9492b6d59a06b3b647a4 - sha256: b6f32491536823e47cf6eb4717dd341385600a2b901235028dedc629a77aeb82 + md5: 4618046c39f7c81861e53ded842e738a + sha256: 5ecbd731dc7f13762d67be0eadc47eb7f14713005e430d9b5fc680e965ac0f81 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 -- name: tzdata - version: 2023c + build: h05e6639_17 + subdir: win-64 + build_number: 17 + license: BSD-3-Clause + license_family: BSD + size: 17207 + timestamp: 1688020635322 +- name: ucrt + version: 10.0.22621.0 manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: 72608f6cd3e5898229c3ea16deb1ac43 + sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 optional: false category: main - build: h71feb2d_0 - subdir: noarch + build: h57928b3_0 + subdir: win-64 build_number: 0 + constrains: + - vs2015_runtime >=14.29.30037 + license: LicenseRef-Proprietary + license_family: PROPRIETARY + size: 1283972 + timestamp: 1666630199266 - name: bzip2 version: 1.0.8 manager: conda platform: win-64 dependencies: - vs2015_runtime: '>=14.16.27012' vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 hash: md5: 7c03c66026944073040cb19a4f3ec3c9 @@ -1037,15 +1434,19 @@ package: optional: false category: main build: h8ffe710_4 - subdir: noarch - build_number: 0 + subdir: win-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 152247 + timestamp: 1606605223049 - name: libffi version: 3.4.2 manager: conda platform: win-64 dependencies: - vs2015_runtime: '>=14.16.27012' vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 hash: md5: 2c96d1b6915b408893f9472569dee135 @@ -1053,25 +1454,35 @@ package: optional: false category: main build: h8ffe710_5 - subdir: noarch - build_number: 0 + subdir: win-64 + build_number: 5 + license: MIT + license_family: MIT + size: 42063 + timestamp: 1636489106777 - name: libzlib version: 1.2.13 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_4.tar.bz2 + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda hash: - md5: 0cc5c5cc64ee1637f37f8540a175854c - sha256: 184da12b4296088a47086f4e69e65eb5f8537a824ee3131d8076775e1d1ea767 + md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 + sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 optional: false category: main - build: hcfcfb64_4 - subdir: noarch - build_number: 0 + build: hcfcfb64_5 + subdir: win-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 55800 + timestamp: 1686575452215 - name: openssl version: 3.1.1 manager: conda @@ -1079,139 +1490,61 @@ package: dependencies: ucrt: '>=10.0.20348.0' ca-certificates: '*' - vc14_runtime: '>=14.29.30139' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.1-hcfcfb64_1.conda - hash: - md5: 1d913a5de46c6b2f7e4cfbd26b106b8b - sha256: 4424486fb9a2aeaba912a8dd8a5b5cdb6fcd65d7708fd854e3ea27449bb352a3 - optional: false - category: main - build: hcfcfb64_1 - subdir: noarch - build_number: 0 -- name: tk - version: 8.6.12 - manager: conda - platform: win-64 - dependencies: - vs2015_runtime: '>=14.16.27033' - vc: '>=14.1,<15' - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 - hash: - md5: c69a5047cc9291ae40afd4a1ad6f0c0f - sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 - optional: false - category: main - build: h8ffe710_0 - subdir: noarch - build_number: 0 -- name: vs2015_runtime - version: 14.34.31931 - manager: conda - platform: win-64 - dependencies: - vc14_runtime: '>=14.34.31931' - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-hed1258a_16.conda - hash: - md5: 0374eae69b6dbfb27c3dc27167109eb4 - sha256: 25d852887a501ca8cb6753a4f3dae1549fa49592d51aec1a230b1f0c85fe4297 - optional: false - category: main - build: hed1258a_16 - subdir: noarch - build_number: 0 -- name: xz - version: 5.2.6 - manager: conda - platform: win-64 - dependencies: - vs2015_runtime: '>=14.16.27033' - vc: '>=14.1,<15' - url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - hash: - md5: 515d77642eaa3639413c6b1bc3f94219 - sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 - optional: false - category: main - build: h8d14728_0 - subdir: noarch - build_number: 0 -- name: libsqlite - version: 3.42.0 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.42.0-hcfcfb64_0.conda - hash: - md5: 9a71d93deb99cc09d8939d5235b5909a - sha256: 70bc1fdb72de847807355c13144666d4f151894f9b141ee559f5d243bdf577e2 - optional: false - category: main - build: hcfcfb64_0 - subdir: noarch - build_number: 0 -- name: libexpat - version: 2.5.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda - hash: - md5: 636cc3cbbd2e28bcfd2f73b2044aac2c - sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf - optional: false - category: main - build: h63175ca_1 - subdir: noarch - build_number: 0 -- name: ucrt - version: 10.0.22621.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.1-hcfcfb64_1.conda hash: - md5: 72608f6cd3e5898229c3ea16deb1ac43 - sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 + md5: 1d913a5de46c6b2f7e4cfbd26b106b8b + sha256: 4424486fb9a2aeaba912a8dd8a5b5cdb6fcd65d7708fd854e3ea27449bb352a3 optional: false category: main - build: h57928b3_0 - subdir: noarch - build_number: 0 -- name: vc14_runtime - version: 14.34.31931 + build: hcfcfb64_1 + subdir: win-64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 7415451 + timestamp: 1685519134254 +- name: tzdata + version: 2023c manager: conda platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.34.31931-h5081d32_16.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: - md5: 22125178654c6a8a393f9743d585704b - sha256: 1161f4848e1c0663897a6324fbc4ff13dafd11650b42c9864428da73593dda95 + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main - build: h5081d32_16 + build: h71feb2d_0 subdir: noarch build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 - name: zipp - version: 3.15.0 + version: 3.16.0 manager: conda platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.0-pyhd8ed1ab_0.conda hash: - md5: 13018819ca8f5b7cc675a8faf1f5fedf - sha256: 241de30545299be9bcea3addf8a2c22a3b3d4ba6730890e150ab690ac937a3d2 + md5: 8be65b18d05ecd2801964e69c42f4fca + sha256: de563512a84818e5b367414e68985196dfb40964c12147fc731a6645f2e029e5 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 17482 + timestamp: 1688903060076 - name: markupsafe version: 2.1.3 manager: conda @@ -1229,8 +1562,14 @@ package: optional: false category: main build: py311ha68e1ae_0 - subdir: noarch + subdir: win-64 build_number: 0 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 29453 + timestamp: 1685769449108 - name: colorama version: 0.4.6 manager: conda @@ -1246,6 +1585,31 @@ package: build: pyhd8ed1ab_0 subdir: noarch build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 25170 + timestamp: 1666700778190 +- name: python_abi + version: '3.11' + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-3_cp311.conda + hash: + md5: fd1634ba85cfea9376e1fc02d6f592e9 + sha256: e042841d13274354d651a69a4f2589e9b46fd23b416368c9821bf3c6676f19d7 + optional: false + category: main + build: 3_cp311 + subdir: win-64 + build_number: 3 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6124 + timestamp: 1669071848353 - name: ca-certificates version: 2023.5.7 manager: conda @@ -1258,22 +1622,32 @@ package: optional: false category: main build: h56e8100_0 - subdir: noarch + subdir: win-64 build_number: 0 -- name: python_abi - version: '3.11' + license: ISC + size: 148581 + timestamp: 1683451822049 +- name: vc + version: '14.3' manager: conda platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-3_cp311.conda + dependencies: + vc14_runtime: '>=14.36.32532' + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda hash: - md5: fd1634ba85cfea9376e1fc02d6f592e9 - sha256: e042841d13274354d651a69a4f2589e9b46fd23b416368c9821bf3c6676f19d7 + md5: 67ff6791f235bb606659bf2a5c169191 + sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6 optional: false category: main - build: 3_cp311 - subdir: noarch - build_number: 0 + build: h64f974e_17 + subdir: win-64 + build_number: 17 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 17176 + timestamp: 1688020629925 - name: python version: 3.11.4 manager: conda @@ -1480,104 +1854,48 @@ package: noarch: python size: 18215 timestamp: 1681349906223 -- name: libzlib - version: 1.2.13 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda - hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 - optional: false - category: main - build: h8a1eda9_5 - subdir: osx-64 - build_number: 5 - constrains: - - zlib 1.2.13 *_5 - license: Zlib - license_family: Other - size: 59404 - timestamp: 1686575566695 -- name: tzdata - version: 2023c +- name: click + version: 8.1.4 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + dependencies: + __unix: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.4-unix_pyh707e725_0.conda hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: fcae73fbdce7981fd500c626bb1ba6ab + sha256: 63f2b103488ba80b274f25bade66394fdd02344024fce45ab44e45861931c61d optional: false category: main - build: h71feb2d_0 + build: unix_pyh707e725_0 subdir: noarch build_number: 0 - license: LicenseRef-Public-Domain - noarch: generic - size: 117580 - timestamp: 1680041306008 -- name: openssl - version: 3.1.1 - manager: conda - platform: osx-64 - dependencies: - ca-certificates: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.1-h8a1eda9_1.conda - hash: - md5: c7822d6ee74e34af1fd74365cfd18983 - sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 - optional: false - category: main - build: h8a1eda9_1 - subdir: osx-64 - build_number: 1 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 2326872 - timestamp: 1685518213128 -- name: libffi - version: 3.4.2 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 - hash: - md5: ccb34fb14960ad8b125962d3d79b31a9 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f - optional: false - category: main - build: h0d85af4_5 - subdir: osx-64 - build_number: 5 - license: MIT - license_family: MIT - size: 51348 - timestamp: 1636488394370 -- name: click - version: 8.1.3 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 84812 + timestamp: 1688733100100 +- name: importlib-metadata + version: 6.8.0 manager: conda platform: osx-64 dependencies: - __unix: '*' python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2 + zipp: '>=0.5' + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda hash: - md5: 20e4087407c7cb04a40817114b333dbf - sha256: 23676470b591b100393bb0f6c46fe10624dcbefc696a6a9f42932ed8816ef0ea + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf optional: false category: main - build: unix_pyhd8ed1ab_2 + build: pyha770c72_0 subdir: noarch - build_number: 2 - license: BSD-3-Clause - license_family: BSD + build_number: 0 + license: Apache-2.0 + license_family: APACHE noarch: python - size: 76050 - timestamp: 1666798336206 + size: 25910 + timestamp: 1688754651944 - name: jinja2 version: 3.1.2 manager: conda @@ -1620,54 +1938,93 @@ package: noarch: python size: 254000 timestamp: 1686273829710 -- name: importlib-metadata - version: 6.7.0 +- name: libzlib + version: 1.2.13 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + hash: + md5: 4a3ad23f6e16f99c04e166767193d700 + sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + optional: false + category: main + build: h8a1eda9_5 + subdir: osx-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 59404 + timestamp: 1686575566695 +- name: openssl + version: 3.1.1 manager: conda platform: osx-64 dependencies: - python: '>=3.8' - zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.7.0-pyha770c72_0.conda + ca-certificates: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.1-h8a1eda9_1.conda hash: - md5: ba3786c6846e46038fe60c785d46dc81 - sha256: 1ffffc30dc67d8329d47c6d22de726cfd28d7ed236bca54f52fc0bdcd0a53fc7 + md5: c7822d6ee74e34af1fd74365cfd18983 + sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 optional: false category: main - build: pyha770c72_0 - subdir: noarch - build_number: 0 + build: h8a1eda9_1 + subdir: osx-64 + build_number: 1 + constrains: + - pyopenssl >=22.1 license: Apache-2.0 - license_family: APACHE - noarch: python - size: 25884 - timestamp: 1687138526439 -- name: ca-certificates - version: 2023.5.7 + license_family: Apache + size: 2326872 + timestamp: 1685518213128 +- name: libffi + version: 3.4.2 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 hash: - md5: b704e4b79ba0d887c4870b7b09d6a4df - sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c + md5: ccb34fb14960ad8b125962d3d79b31a9 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f optional: false category: main - build: h8857fd0_0 + build: h0d85af4_5 subdir: osx-64 + build_number: 5 + license: MIT + license_family: MIT + size: 51348 + timestamp: 1636488394370 +- name: tzdata + version: 2023c + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + hash: + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + optional: false + category: main + build: h71feb2d_0 + subdir: noarch build_number: 0 - license: ISC - size: 148522 - timestamp: 1683451939937 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 - name: zipp - version: 3.15.0 + version: 3.16.0 manager: conda platform: osx-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.0-pyhd8ed1ab_0.conda hash: - md5: 13018819ca8f5b7cc675a8faf1f5fedf - sha256: 241de30545299be9bcea3addf8a2c22a3b3d4ba6730890e150ab690ac937a3d2 + md5: 8be65b18d05ecd2801964e69c42f4fca + sha256: de563512a84818e5b367414e68985196dfb40964c12147fc731a6645f2e029e5 optional: false category: main build: pyhd8ed1ab_0 @@ -1676,8 +2033,8 @@ package: license: MIT license_family: MIT noarch: python - size: 17197 - timestamp: 1677313561776 + size: 17482 + timestamp: 1688903060076 - name: markupsafe version: 2.1.3 manager: conda @@ -1720,6 +2077,23 @@ package: license_family: BSD size: 5766 timestamp: 1669071853731 +- name: ca-certificates + version: 2023.5.7 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda + hash: + md5: b704e4b79ba0d887c4870b7b09d6a4df + sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c + optional: false + category: main + build: h8857fd0_0 + subdir: osx-64 + build_number: 0 + license: ISC + size: 148522 + timestamp: 1683451939937 - name: bzip2 version: 1.0.8 manager: conda diff --git a/examples/opencv/pixi.lock b/examples/opencv/pixi.lock index ca09427764..571269e831 100644 --- a/examples/opencv/pixi.lock +++ b/examples/opencv/pixi.lock @@ -18,40 +18,27 @@ metadata: inputs_metadata: null custom_metadata: null package: -- name: requests - version: 2.31.0 - manager: conda - platform: linux-64 - dependencies: - certifi: '>=2017.4.17' - python: '>=3.7' - charset-normalizer: '>=2,<4' - urllib3: '>=1.21.1,<3' - idna: '>=2.5,<4' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda - hash: - md5: a30144e4156cdbb236f99ebb49828f8b - sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad - optional: false - category: main - source: null - build: pyhd8ed1ab_0 - name: opencv version: 4.7.0 manager: conda platform: linux-64 dependencies: - py-opencv: ==4.7.0 py310hfdc917e_4 + py-opencv: ==4.7.0 py310hfdc917e_6 python_abi: 3.10.* *_cp310 - libopencv: ==4.7.0 py310h245f934_4 - url: https://conda.anaconda.org/conda-forge/linux-64/opencv-4.7.0-py310hff52083_4.conda + libopencv: ==4.7.0 py310h3e876cf_6 + url: https://conda.anaconda.org/conda-forge/linux-64/opencv-4.7.0-py310hff52083_6.conda hash: - md5: fbbdde68a622d37f5c7a56c0ab68c603 - sha256: 1fe19c6441691132c5b973fb906f3930604e74ed4bbd5e5e1fd0b4c403a401d3 + md5: c3292799dad9a5e5ae65dbb1d4449fc1 + sha256: 0c7c5d617a568f5f7e47591768b403de3fe089a7e40ffed1a30f4bcb26f32467 optional: false category: main - source: null - build: py310hff52083_4 + build: py310hff52083_6 + subdir: linux-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 25431 + timestamp: 1688237059884 - name: libopencv version: 4.7.0 manager: conda @@ -67,25 +54,31 @@ package: jasper: '>=4.0.0,<5.0a0' harfbuzz: '>=7.3.0,<8.0a0' liblapacke: '>=3.9.0,<4.0a0' - libglib: '>=2.76.2,<3.0a0' - hdf5: '>=1.14.0,<1.14.1.0a0' + libglib: '>=2.76.3,<3.0a0' + hdf5: '>=1.14.1,<1.14.2.0a0' freetype: '>=2.12.1,<3.0a0' - libwebp-base: '>=1.3.0,<2.0a0' + libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=2.1.5.1,<3.0a0' liblapack: '>=3.9.0,<4.0a0' libstdcxx-ng: '>=12' ffmpeg: '>=6.0.0,<7.0a0' __glibc: '>=2.17,<3.0.a0' - libtiff: '>=4.5.0,<4.6.0a0' + libtiff: '>=4.5.1,<4.6.0a0' + libwebp-base: '>=1.3.1,<2.0a0' numpy: '>=1.21.6,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopencv-4.7.0-py310h245f934_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopencv-4.7.0-py310h3e876cf_6.conda hash: - md5: 2a0a6e82936caa5fcdd5f8c7e234195c - sha256: d7d856a645ab5577af463576e9a4dd5ab993f99cf2daeb978ec856e965d5d56f + md5: e79c1003cbf9f410d4dee3b03f07dd79 + sha256: 766644526697fd5960dcb5d06fe0f0829fa19d9523f2382cad7fa2978d8dfe4c optional: false category: main - source: null - build: py310h245f934_4 + build: py310h3e876cf_6 + subdir: linux-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 30833826 + timestamp: 1688236984277 - name: py-opencv version: 4.7.0 manager: conda @@ -94,15 +87,20 @@ package: numpy: '>=1.21.6,<2.0a0' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* *_cp310 - libopencv: ==4.7.0 py310h245f934_4 - url: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.7.0-py310hfdc917e_4.conda + libopencv: ==4.7.0 py310h3e876cf_6 + url: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.7.0-py310hfdc917e_6.conda hash: - md5: 548cd36a4f6da0bc75b0d4b1a1a88599 - sha256: b7dd26e1b68d08253aa3d296ee908fffb7b91b6630178986fbacb4138dc4fee4 + md5: 33013a3409aef10486656dbcbfd8ebf5 + sha256: dd4215e5c0fe06c0e671a6fee7e8cbbafac5334c0635b00ccd01911b8a55c3db optional: false category: main - source: null - build: py310hfdc917e_4 + build: py310hfdc917e_6 + subdir: linux-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 1151981 + timestamp: 1688237048663 - name: libpng version: 1.6.39 manager: conda @@ -116,8 +114,38 @@ package: sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 optional: false category: main - source: null build: h753d276_0 + subdir: linux-64 + build_number: 0 + license: zlib-acknowledgement + size: 282599 + timestamp: 1669075729952 +- name: libtiff + version: 4.5.1 + manager: conda + platform: linux-64 + dependencies: + libdeflate: '>=1.18,<1.19.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + xz: '>=5.2.6,<6.0a0' + libstdcxx-ng: '>=12' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.1-h8b53f26_0.conda + hash: + md5: 8ad377fb60abab446a9f02c62b3c2190 + sha256: 920943ad46869938bd070ccd4c0117594e07538bc6b27b75462594c67b6f215d + optional: false + category: main + build: h8b53f26_0 + subdir: linux-64 + build_number: 0 + license: HPND + size: 418155 + timestamp: 1686756728978 - name: harfbuzz version: 7.3.0 manager: conda @@ -136,8 +164,13 @@ package: sha256: 9d99416e9d4a01ea0915f65ea7fac71dee11916de115fbd0325c0cb82e0b63f8 optional: false category: main - source: null build: hdb3a94d_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1438931 + timestamp: 1683684067694 - name: libjpeg-turbo version: 2.1.5.1 manager: conda @@ -150,22 +183,53 @@ package: sha256: b19de7bda34eac4fa931be11fa8d7640cdf1441dfd51c91786586a4a4c64c92f optional: false category: main - source: null build: h0b41bf4_0 + subdir: linux-64 + build_number: 0 + constrains: + - jpeg <0.0.0a + license: IJG, modified 3-clause BSD and zlib + size: 490511 + timestamp: 1678127836526 - name: libwebp-base - version: 1.3.0 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.0-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.1-hd590300_0.conda hash: - md5: 0d4a7508d8c6c65314f2b9c1f56ad408 - sha256: ac3e073ea77803da71eb77e7fcef07defb345bda95eee3327c73ddf85b5714da + md5: 82bf6f63eb15ef719b556b63feec3a77 + sha256: 66658d5cdcf89169e284488d280b6ce693c98c0319d7eabebcedac0929140a73 optional: false category: main - source: null - build: h0b41bf4_0 + build: hd590300_0 + subdir: linux-64 + build_number: 0 + constrains: + - libwebp 1.3.1 + license: BSD-3-Clause + license_family: BSD + size: 399938 + timestamp: 1688046983701 +- name: libiconv + version: '1.17' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 + hash: + md5: b62b52da46c39ee2bc3c162ac7f1804d + sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 + optional: false + category: main + build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: GPL and LGPL + size: 1450368 + timestamp: 1652700749886 - name: libprotobuf version: 3.21.12 manager: conda @@ -180,8 +244,70 @@ package: sha256: 760118d7879b5524e118db1c75cc2a5dfceb2c4940dcae94751a94786c8cf12b optional: false category: main - source: null build: h3eb15da_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2208535 + timestamp: 1670987026227 +- name: xz + version: 5.2.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + hash: + md5: 2161070d867d1b1204ea749c8eec4ef0 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + optional: false + category: main + build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 418368 + timestamp: 1660346797927 +- name: lerc + version: 4.0.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + hash: + md5: 76bbff344f0134279f225174e9064c8f + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + optional: false + category: main + build: h27087fc_0 + subdir: linux-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 281798 + timestamp: 1657977462600 +- name: libdeflate + version: '1.18' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.18-h0b41bf4_0.conda + hash: + md5: 6aa9c9de5542ecb07fdda9ca626252d8 + sha256: 949d84ceea543802c1e085b2aa58f1d6cb5dd8cec5a9abaaf4e8ac65d6094b3a + optional: false + category: main + build: h0b41bf4_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 65177 + timestamp: 1679647333950 - name: icu version: '72.1' manager: conda @@ -195,8 +321,13 @@ package: sha256: e44cc00eec068e7f7a6dd117ba17bf5d57658729b7b841945546f82505138292 optional: false category: main - source: null build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 11994866 + timestamp: 1679314345076 - name: jasper version: 4.0.0 manager: conda @@ -212,35 +343,63 @@ package: sha256: 030b3e6da1ed79c700d73641259c7489b66632c96d9db6232e342951bb16d606 optional: false category: main - source: null build: h32699f2_1 + subdir: linux-64 + build_number: 1 + license: JasPer-2.0 + size: 645364 + timestamp: 1678299706537 - name: python - version: 3.10.11 + version: 3.10.12 manager: conda platform: linux-64 dependencies: tzdata: '*' - openssl: '>=3.1.0,<4.0a0' + openssl: '>=3.1.1,<4.0a0' readline: '>=8.2,<9.0a0' libffi: '>=3.4,<4.0a0' libnsl: '>=2.0.0,<2.1.0a0' - libsqlite: '>=3.41.2,<4.0a0' + libsqlite: '>=3.42.0,<4.0a0' libgcc-ng: '>=12' libzlib: '>=1.2.13,<1.3.0a0' bzip2: '>=1.0.8,<2.0a0' libuuid: '>=2.38.1,<3.0a0' - ncurses: '>=6.3,<7.0a0' + ncurses: '>=6.4,<7.0a0' ld_impl_linux-64: '>=2.36.1' tk: '>=8.6.12,<8.7.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.11-he550d4f_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.12-hd12c33a_0_cpython.conda + hash: + md5: eb6f1df105f37daedd6dca78523baa75 + sha256: 05e2a7ce916d259f11979634f770f31027d0a5d18463b094e64a30500f900699 + optional: false + category: main + build: hd12c33a_0_cpython + subdir: linux-64 + build_number: 0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + size: 25543395 + timestamp: 1687561173886 +- name: ncurses + version: '6.4' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda hash: - md5: 7439c9d24378a82b73a7a53868dacdf1 - sha256: 6682c75caf3456796fb76313a25475738d85729b43f8c0e904407c0ed8362ede + md5: 681105bccc2a3f7f1a837d47d39c9179 + sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a optional: false category: main - source: null - build: he550d4f_0_cpython + build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 880967 + timestamp: 1686076725450 - name: readline version: '8.2' manager: conda @@ -254,8 +413,13 @@ package: sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 optional: false category: main - source: null build: h8228510_1 + subdir: linux-64 + build_number: 1 + license: GPL-3.0-only + license_family: GPL + size: 281456 + timestamp: 1679532220005 - name: tk version: 8.6.12 manager: conda @@ -269,8 +433,13 @@ package: sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 optional: false category: main - source: null build: h27826a3_0 + subdir: linux-64 + build_number: 0 + license: TCL + license_family: BSD + size: 3456292 + timestamp: 1645033615058 - name: libuuid version: 2.38.1 manager: conda @@ -283,22 +452,13 @@ package: sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 optional: false category: main - source: null build: h0b41bf4_0 -- name: xz - version: 5.2.6 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - hash: - md5: 2161070d867d1b1204ea749c8eec4ef0 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 - optional: false - category: main - source: null - build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 33601 + timestamp: 1680112270483 - name: libnsl version: 2.0.0 manager: conda @@ -311,8 +471,58 @@ package: sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad optional: false category: main - source: null build: h7f98852_0 + subdir: linux-64 + build_number: 0 + license: GPL-2.0-only + license_family: GPL + size: 31236 + timestamp: 1633040059627 +- name: libsqlite + version: 3.42.0 + manager: conda + platform: linux-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.42.0-h2797004_0.conda + hash: + md5: fdaae20a1cf7cd62130a0973190a31b7 + sha256: 72e958870f49174ebc0ddcd4129e9a9f48de815f20aa3b553f136b514f29bb3a + optional: false + category: main + build: h2797004_0 + subdir: linux-64 + build_number: 0 + license: Unlicense + size: 828910 + timestamp: 1684264791037 +- name: requests + version: 2.31.0 + manager: conda + platform: linux-64 + dependencies: + certifi: '>=2017.4.17' + python: '>=3.7' + charset-normalizer: '>=2,<4' + urllib3: '>=1.21.1,<3' + idna: '>=2.5,<4' + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + hash: + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + constrains: + - chardet >=3.0.2,<6 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 56690 + timestamp: 1684774408600 - name: libgcc-ng version: 13.1.0 manager: conda @@ -326,8 +536,15 @@ package: sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 optional: false category: main - source: null build: he5830b7_0 + subdir: linux-64 + build_number: 0 + constrains: + - libgomp 13.1.0 he5830b7_0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 776294 + timestamp: 1685816209343 - name: _libgcc_mutex version: '0.1' manager: conda @@ -339,8 +556,12 @@ package: sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 optional: false category: main - source: null build: conda_forge + subdir: linux-64 + build_number: 0 + license: None + size: 2562 + timestamp: 1578324546067 - name: libstdcxx-ng version: 13.1.0 manager: conda @@ -352,8 +573,13 @@ package: sha256: 6f9eb2d7a96687938c0001166a3b308460a8eb02b10e9d0dd9e251f0219ea05c optional: false category: main - source: null build: hfd8a6a1_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3847887 + timestamp: 1685816251278 - name: libzlib version: 1.2.13 manager: conda @@ -366,42 +592,15 @@ package: sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 optional: false category: main - source: null build: hd590300_5 -- name: ncurses - version: '6.4' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda - hash: - md5: 681105bccc2a3f7f1a837d47d39c9179 - sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a - optional: false - category: main - source: null - build: hcb278e6_0 -- name: numpy - version: 1.25.0 - manager: conda - platform: linux-64 - dependencies: - libcblas: '>=3.9.0,<4.0a0' - liblapack: '>=3.9.0,<4.0a0' - libstdcxx-ng: '>=12' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libblas: '>=3.9.0,<4.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.25.0-py310ha4c1d20_0.conda - hash: - md5: 03319f78e5c9c8d90c0110e2c6ed24f6 - sha256: bee4c383e78effeccbf854636b174e7242cfb486daa5387cfa57963d3c65628e - optional: false - category: main - source: null - build: py310ha4c1d20_0 + subdir: linux-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 61588 + timestamp: 1686575217516 - name: python_abi version: '3.10' manager: conda @@ -413,59 +612,41 @@ package: sha256: bcb15db27eb6fbc0fe15d23aa60dcfa58ef451d92771441068d4a911aea7bb9f optional: false category: main - source: null build: 3_cp310 -- name: libtiff - version: 4.5.1 - manager: conda - platform: linux-64 - dependencies: - libdeflate: '>=1.18,<1.19.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - libwebp-base: '>=1.3.0,<2.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - xz: '>=5.2.6,<6.0a0' - libstdcxx-ng: '>=12' - lerc: '>=4.0.0,<5.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.1-h8b53f26_0.conda - hash: - md5: 8ad377fb60abab446a9f02c62b3c2190 - sha256: 920943ad46869938bd070ccd4c0117594e07538bc6b27b75462594c67b6f215d - optional: false - category: main - source: null - build: h8b53f26_0 -- name: lerc - version: 4.0.0 + subdir: linux-64 + build_number: 3 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 5677 + timestamp: 1669071721839 +- name: numpy + version: 1.25.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' + libcblas: '>=3.9.0,<4.0a0' + liblapack: '>=3.9.0,<4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 - hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 - optional: false - category: main - source: null - build: h27087fc_0 -- name: libdeflate - version: '1.18' - manager: conda - platform: linux-64 - dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libblas: '>=3.9.0,<4.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.18-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.25.1-py310ha4c1d20_0.conda hash: - md5: 6aa9c9de5542ecb07fdda9ca626252d8 - sha256: 949d84ceea543802c1e085b2aa58f1d6cb5dd8cec5a9abaaf4e8ac65d6094b3a + md5: 3810cbf2635cb1d0edb97715d4ad74e7 + sha256: 38ec15fe0afe9fb90bd50314ccd506f0e7d1642db0c7eb2b77627d448aa9ee6c optional: false category: main - source: null - build: h0b41bf4_0 + build: py310ha4c1d20_0 + subdir: linux-64 + build_number: 0 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + size: 6816069 + timestamp: 1688887559516 - name: ffmpeg version: 6.0.0 manager: conda @@ -498,8 +679,13 @@ package: sha256: b2e9d075f6517d9e9c63ef4a0b245ed091e32a137d9ed3bb386618000b74dfbc optional: false category: main - source: null build: gpl_hdbbbd96_103 + subdir: linux-64 + build_number: 103 + license: GPL-2.0-or-later + license_family: GPL + size: 9868145 + timestamp: 1687155748901 - name: fonts-conda-ecosystem version: '1' manager: conda @@ -512,8 +698,14 @@ package: sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 optional: false category: main - source: null build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 3667 + timestamp: 1566974674465 - name: gnutls version: 3.7.8 manager: conda @@ -531,8 +723,13 @@ package: sha256: 4a47e4558395b98fff4c1c44ad358dade62b350a03b5a784d4bc589d6eb7ac9e optional: false category: main - source: null build: hf3e180e_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 2271927 + timestamp: 1664445361111 - name: gmp version: 6.2.1 manager: conda @@ -546,8 +743,12 @@ package: sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198 optional: false category: main - source: null build: h58526e2_0 + subdir: linux-64 + build_number: 0 + license: GPL-2.0-or-later AND LGPL-3.0-or-later + size: 825784 + timestamp: 1605751468661 - name: libvpx version: 1.13.0 manager: conda @@ -561,8 +762,13 @@ package: sha256: f1d029c3a1b1026843f02541fff0d2407236c7b9fa46595e9e0dfd6e246de09e optional: false category: main - source: null build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 986753 + timestamp: 1679760127879 - name: libxml2 version: 2.11.4 manager: conda @@ -579,8 +785,13 @@ package: sha256: bc7fa8590c15ffdea5101075ce02de09441c9f378ac1d05e26510d12d25d7099 optional: false category: main - source: null build: h0d562d8_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 704128 + timestamp: 1684627162618 - name: aom version: 3.5.0 manager: conda @@ -594,26 +805,13 @@ package: sha256: ed05f72ffa891e3c6a507eac6f0221c85c1f0611491328cd098308060740891c optional: false category: main - source: null build: h27087fc_0 -- name: libva - version: 2.18.0 - manager: conda - platform: linux-64 - dependencies: - libdrm: '>=2.4.114,<2.5.0a0' - xorg-libxfixes: '*' - xorg-libx11: '>=1.8.4,<2.0a0' - libgcc-ng: '>=12' - xorg-libxext: '>=1.3.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.18.0-h0b41bf4_0.conda - hash: - md5: 56e049224de34bbe0478aad422227942 - sha256: e7254d0111a403ffe707e2ad39b6ce49a2be733e751d14a7255b0cb20da2a16b - optional: false - category: main - source: null - build: h0b41bf4_0 + subdir: linux-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 2859124 + timestamp: 1663808526544 - name: svt-av1 version: 1.6.0 manager: conda @@ -627,8 +825,13 @@ package: sha256: 910a1c9eda41ea4d6aa5f2f32468790462292442277b8c81e610ae3377fc0782 optional: false category: main - source: null build: h59595ed_0 + subdir: linux-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 2630931 + timestamp: 1687134610301 - name: fontconfig version: 2.14.2 manager: conda @@ -645,8 +848,13 @@ package: sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 optional: false category: main - source: null build: h14ed4e7_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 272010 + timestamp: 1674828850194 - name: libass version: 0.17.1 manager: conda @@ -666,8 +874,13 @@ package: sha256: 8df959388e1968ea14f27c4af209bb667ba3da7b15a76b25931090a6a47d3e1f optional: false category: main - source: null build: hc9aadba_0 + subdir: linux-64 + build_number: 0 + license: ISC + license_family: OTHER + size: 126023 + timestamp: 1683177194313 - name: dav1d version: 1.2.1 manager: conda @@ -680,8 +893,13 @@ package: sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020 optional: false category: main - source: null build: hd590300_0 + subdir: linux-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 760229 + timestamp: 1685695754230 - name: fonts-conda-forge version: '1' manager: conda @@ -697,8 +915,14 @@ package: sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 optional: false category: main - source: null build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 4102 + timestamp: 1566932280397 - name: nettle version: 3.8.1 manager: conda @@ -711,8 +935,13 @@ package: sha256: 49c569a69608eee784e815179a70c6ae4d088dac42b7df999044f68058d593bb optional: false category: main - source: null build: hc379101_1 + subdir: linux-64 + build_number: 1 + license: GPL 2 and LGPL3 + license_family: GPL + size: 1195508 + timestamp: 1659085101126 - name: libtasn1 version: 4.19.0 manager: conda @@ -725,8 +954,13 @@ package: sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8 optional: false category: main - source: null build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-or-later + license_family: GPL + size: 116878 + timestamp: 1661325701583 - name: p11-kit version: 0.24.1 manager: conda @@ -741,51 +975,34 @@ package: sha256: aa8d3887b36557ad0c839e4876c0496e0d670afe843bf5bba4a87764b868196d optional: false category: main - source: null build: hc5aa10d_0 -- name: libiconv - version: '1.17' + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 4702497 + timestamp: 1654868759643 +- name: libexpat + version: 2.5.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 - hash: - md5: b62b52da46c39ee2bc3c162ac7f1804d - sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 - optional: false - category: main - source: null - build: h166bdaf_0 -- name: libdrm - version: 2.4.114 - manager: conda - platform: linux-64 - dependencies: - libpciaccess: '>=0.17,<0.18.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.114-h166bdaf_0.tar.bz2 - hash: - md5: efb58e80f5d0179a783c4e76c3df3b9c - sha256: 9316075084ad66f9f96d31836e83303a8199eec93c12d68661e41c44eed101e3 - optional: false - category: main - source: null - build: h166bdaf_0 -- name: libexpat - version: 2.5.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda hash: md5: 6305a3dd2752c76335295da4e581f2fd sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 optional: false category: main - source: null build: hcb278e6_1 + subdir: linux-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 77980 + timestamp: 1680190528313 - name: font-ttf-dejavu-sans-mono version: '2.37' manager: conda @@ -797,8 +1014,14 @@ package: sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main - source: null build: hab24e00_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 397370 + timestamp: 1566932522327 - name: font-ttf-ubuntu version: '0.83' manager: conda @@ -810,22 +1033,89 @@ package: sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main - source: null build: hab24e00_0 -- name: libpciaccess - version: '0.17' + subdir: noarch + build_number: 0 + license: Ubuntu Font Licence Version 1.0 + license_family: Other + noarch: generic + size: 1961279 + timestamp: 1566932680646 +- name: hdf5 + version: 1.14.1 + manager: conda + platform: linux-64 + dependencies: + libgfortran-ng: '*' + libcurl: '>=8.1.2,<9.0a0' + openssl: '>=3.1.1,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + libgfortran5: '>=12.3.0' + libaec: '>=1.0.6,<2.0a0' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.1-nompi_h4f84152_100.conda + hash: + md5: ff9ae10aa224826c07da7ef26cb0b717 + sha256: 403f56e557cad703155678676bbd1eafcde2bf30b17a27d9866437733f476bcf + optional: false + category: main + build: nompi_h4f84152_100 + subdir: linux-64 + build_number: 100 + license: LicenseRef-HDF5 + license_family: BSD + size: 3683246 + timestamp: 1687159374169 +- name: libcurl + version: 8.1.2 manager: conda platform: linux-64 dependencies: + libssh2: '>=1.10.0,<2.0a0' + zstd: '>=1.5.2,<1.6.0a0' + libnghttp2: '>=1.52.0,<2.0a0' + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.17-h166bdaf_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.1.2-h409715c_0.conda hash: - md5: b7463391cf284065294e2941dd41ab95 - sha256: 9fe4aaf5629b4848d9407b9ed4da941ba7e5cebada63ee0becb9aa82259dc6e2 + md5: 50c873c9660ed116707ae15b663928d8 + sha256: d572c31ff48d2db6ca5bab476bf325811cfc82577480b3791487c3fe7bff2ffa optional: false category: main - source: null - build: h166bdaf_0 + build: h409715c_0 + subdir: linux-64 + build_number: 0 + license: curl + license_family: MIT + size: 372833 + timestamp: 1685447685782 +- name: libnghttp2 + version: 1.52.0 + manager: conda + platform: linux-64 + dependencies: + libstdcxx-ng: '>=12' + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda + hash: + md5: 613955a50485812985c059e7b269f42e + sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a + optional: false + category: main + build: h61bc06f_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 622366 + timestamp: 1677678076121 - name: freetype version: 2.12.1 manager: conda @@ -840,8 +1130,12 @@ package: sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f optional: false category: main - source: null build: hca18f0e_1 + subdir: linux-64 + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 625655 + timestamp: 1669232824158 - name: liblapacke version: 3.9.0 manager: conda @@ -856,8 +1150,15 @@ package: sha256: 6d936873d3f9ad6cc39117bc0b2f71bfd4eae93a2d2e32e9e2102b8346a5d99f optional: false category: main - source: null build: 17_linux64_openblas + subdir: linux-64 + build_number: 17 + constrains: + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14406 + timestamp: 1685930825081 - name: libblas version: 3.9.0 manager: conda @@ -870,8 +1171,18 @@ package: sha256: 5a9dfeb9ede4b7ac136ac8c0b589309f8aba5ce79d14ca64ad8bffb3876eb04b optional: false category: main - source: null build: 17_linux64_openblas + subdir: linux-64 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_linux64_openblas + - libcblas 3.9.0 17_linux64_openblas + - blas * openblas + - liblapack 3.9.0 17_linux64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14473 + timestamp: 1685930788591 - name: libcblas version: 3.9.0 manager: conda @@ -884,8 +1195,17 @@ package: sha256: 535bc0a6bc7641090b1bdd00a001bb6c4ac43bce2a11f238bc6676252f53eb3f optional: false category: main - source: null build: 17_linux64_openblas + subdir: linux-64 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_linux64_openblas + - blas * openblas + - liblapack 3.9.0 17_linux64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14401 + timestamp: 1685930800770 - name: liblapack version: 3.9.0 manager: conda @@ -898,8 +1218,17 @@ package: sha256: 45128394d2f4d4caf949c1b02bff1cace3ef2e33762dbe8f0edec7701a16aaa9 optional: false category: main - source: null build: 17_linux64_openblas + subdir: linux-64 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_linux64_openblas + - libcblas 3.9.0 17_linux64_openblas + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14408 + timestamp: 1685930812931 - name: _openmp_mutex version: '4.5' manager: conda @@ -913,8 +1242,15 @@ package: sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 optional: false category: main - source: null build: 2_gnu + subdir: linux-64 + build_number: 16 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 - name: libgomp version: 13.1.0 manager: conda @@ -927,8 +1263,13 @@ package: sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d optional: false category: main - source: null build: he5830b7_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 419184 + timestamp: 1685816132543 - name: libopenblas version: 0.3.23 manager: conda @@ -943,10 +1284,17 @@ package: sha256: 00aee12d04979d024c7f9cabccff5f5db2852c934397ec863a4abde3e09d5a79 optional: false category: main - source: null build: pthreads_h80387f5_0 + subdir: linux-64 + build_number: 0 + constrains: + - openblas >=0.3.23,<0.3.24.0a0 + license: BSD-3-Clause + license_family: BSD + size: 5406072 + timestamp: 1681398290679 - name: libglib - version: 2.76.3 + version: 2.76.4 manager: conda platform: linux-64 dependencies: @@ -957,14 +1305,20 @@ package: libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.3-hebfc3b9_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.4-hebfc3b9_0.conda hash: - md5: a64f11b244b2c112cd3fa1cbe9493999 - sha256: 6a34c6b123f06fcee7e28e981ec0daad09bce35616ad8e9e61ef84be7fad4d92 + md5: c6f951789c888f7bbd2dd6858eab69de + sha256: e909b5e648d1ace172aac2ddf9d755f72429b134155a9b07156acb58a77ceee1 optional: false category: main - source: null build: hebfc3b9_0 + subdir: linux-64 + build_number: 0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2689038 + timestamp: 1688694661996 - name: gettext version: 0.21.1 manager: conda @@ -977,8 +1331,12 @@ package: sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a optional: false category: main - source: null build: h27087fc_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4320628 + timestamp: 1665673494324 - name: pcre2 version: '10.40' manager: conda @@ -993,8 +1351,13 @@ package: sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a optional: false category: main - source: null build: hc3806b6_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2412495 + timestamp: 1665562915343 - name: qt-main version: 5.15.8 manager: conda @@ -1004,12 +1367,12 @@ package: nspr: '>=4.35,<5.0a0' xcb-util-renderutil: '>=0.3.9,<0.4.0a0' libsqlite: '>=3.42.0,<4.0a0' - xorg-libsm: '*' + xorg-libsm: '>=1.2.4,<2.0a0' libexpat: '>=2.5.0,<3.0a0' - mysql-libs: '>=8.0.32,<8.1.0a0' + mysql-libs: '>=8.0.33,<8.1.0a0' xorg-libxext: '>=1.3.4,<2.0a0' libxkbcommon: '>=1.5.0,<2.0a0' - xorg-libice: '*' + xorg-libice: '>=1.1.1,<2.0a0' nss: '>=3.89,<4.0a0' xcb-util-keysyms: '>=0.4.0,<0.5.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1017,14 +1380,14 @@ package: libclang: '>=15.0.7,<16.0a0' fonts-conda-ecosystem: '*' xcb-util-image: '>=0.4.0,<0.5.0a0' - openssl: '>=3.1.0,<4.0a0' + openssl: '>=3.1.1,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' xcb-util-wm: '>=0.4.1,<0.5.0a0' libzlib: '>=1.2.13,<1.3.0a0' - alsa-lib: '>=1.2.8,<1.2.9.0a0' + alsa-lib: '>=1.2.9,<1.2.10.0a0' libgcc-ng: '>=12' libcups: '>=2.3.3,<2.4.0a0' - gstreamer: '>=1.22.3,<1.23.0a0' + gstreamer: '>=1.22.4,<1.23.0a0' xorg-xf86vidmodeproto: '*' harfbuzz: '>=7.3.0,<8.0a0' pulseaudio-client: '>=16.1,<16.2.0a0' @@ -1035,37 +1398,92 @@ package: zstd: '>=1.5.2,<1.6.0a0' libglib: '>=2.76.3,<3.0a0' freetype: '>=2.12.1,<3.0a0' - gst-plugins-base: '>=1.22.3,<1.23.0a0' + gst-plugins-base: '>=1.22.4,<1.23.0a0' libjpeg-turbo: '>=2.1.5.1,<3.0a0' libxcb: '>=1.15,<1.16.0a0' __glibc: '>=2.17,<3.0.a0' libpq: '>=15.3,<16.0a0' libclang13: '>=15.0.7' krb5: '>=1.20.1,<1.21.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h01ceb2d_13.conda + xorg-libx11: '>=1.8.6,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-hf9e2b05_14.conda + hash: + md5: d8d4389bd97e0d604150c09d9894a711 + sha256: 6e35d43e91d4fd838ad26df8e2f6880c5e8707d1a2f630a35b57ab992a2416a8 + optional: false + category: main + build: hf9e2b05_14 + subdir: linux-64 + build_number: 14 + constrains: + - qt 5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 61260870 + timestamp: 1687874786721 +- name: xorg-libice + version: 1.1.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda hash: - md5: 99ca83a166224f46a62c9545b8d66401 - sha256: dce3d4e4765ee786fc616fb90b2e5363ad22d99b849c21686e03d5618d777dea + md5: b462a33c0be1421532f28bfe8f4a7514 + sha256: 5aa9b3682285bb2bf1a8adc064cb63aff76ef9178769740d855abb42b0d24236 optional: false category: main - source: null - build: h01ceb2d_13 -- name: libsqlite - version: 3.42.0 + build: hd590300_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 58469 + timestamp: 1685307573114 +- name: xorg-libsm + version: 1.2.4 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + xorg-libice: '>=1.1.1,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.42.0-h2797004_0.conda + libuuid: '>=2.38.1,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda hash: - md5: fdaae20a1cf7cd62130a0973190a31b7 - sha256: 72e958870f49174ebc0ddcd4129e9a9f48de815f20aa3b553f136b514f29bb3a + md5: 93ee23f12bc2e684548181256edd2cf6 + sha256: 089ad5f0453c604e18985480218a84b27009e9e6de9a0fa5f4a20b8778ede1f1 optional: false category: main - source: null - build: h2797004_0 + build: h7391055_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 27433 + timestamp: 1685453649160 +- name: xorg-libx11 + version: 1.8.6 + manager: conda + platform: linux-64 + dependencies: + xorg-xproto: '*' + libxcb: '>=1.15,<1.16.0a0' + xorg-kbproto: '*' + xorg-xextproto: '>=7.3.0,<8.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.6-h8ee46fc_0.conda + hash: + md5: 7590b76c3d11d21caa44f3fc38ac584a + sha256: 3360f81f7687179959a6bf1c762938240172e8bb3aef957e0a14fb12a0b7c105 + optional: false + category: main + build: h8ee46fc_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 828510 + timestamp: 1686866595393 - name: libxcb version: '1.15' manager: conda @@ -1081,8 +1499,13 @@ package: sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 optional: false category: main - source: null build: h0b41bf4_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 384238 + timestamp: 1682082368177 - name: nspr version: '4.35' manager: conda @@ -1096,8 +1519,13 @@ package: sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c optional: false category: main - source: null build: h27087fc_0 + subdir: linux-64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 226848 + timestamp: 1669784948267 - name: nss version: '3.89' manager: conda @@ -1115,22 +1543,32 @@ package: sha256: 6d512e4a7ffae4fed9feac2cb2037398c78ade47e5358fc79ac3e58494de0cad optional: false category: main - source: null build: he45b914_0 + subdir: linux-64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 1959876 + timestamp: 1678488155403 - name: alsa-lib - version: 1.2.8 + version: 1.2.9 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.9-hd590300_0.conda hash: - md5: be733e69048951df1e4b4b7bb8c7666f - sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd + md5: a0c6f0e7e1a467f5678f94dea18c8aa7 + sha256: f177627acdfcead15a28f4a07fcda6a1e26b83f053eaa1efa7cce01c0a3b09a8 optional: false category: main - source: null - build: h166bdaf_0 + build: hd590300_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + license_family: GPL + size: 546752 + timestamp: 1683210393229 - name: xcb-util-renderutil version: 0.3.9 manager: conda @@ -1144,8 +1582,13 @@ package: sha256: 6987588e6fff5892056021c2ea52f7a0deefb2c7348e70d24750e2d60dabf009 optional: false category: main - source: null build: hd590300_1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 16955 + timestamp: 1684639112393 - name: xcb-util-image version: 0.4.0 manager: conda @@ -1160,8 +1603,13 @@ package: sha256: 92ffd68d2801dbc27afe223e04ae7e78ef605fc8575f107113c93c7bafbd15b0 optional: false category: main - source: null build: h8ee46fc_1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 24474 + timestamp: 1684679894554 - name: cairo version: 1.16.0 manager: conda @@ -1189,8 +1637,12 @@ package: sha256: 1fffecc684c26e0f1aed6d9857ad0f2abfe3a849977f718ad82366c68c7a9a36 optional: false category: main - source: null build: hbbf8b49_1016 + subdir: linux-64 + build_number: 1016 + license: LGPL-2.1-only or MPL-1.1 + size: 1107996 + timestamp: 1684639348133 - name: freeglut version: 3.2.2 manager: conda @@ -1210,8 +1662,13 @@ package: sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f optional: false category: main - source: null build: hac7e632_2 + subdir: linux-64 + build_number: 2 + license: MIT + license_family: MIT + size: 142933 + timestamp: 1684688443008 - name: zlib version: 1.2.13 manager: conda @@ -1225,8 +1682,13 @@ package: sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b optional: false category: main - source: null build: hd590300_5 + subdir: linux-64 + build_number: 5 + license: Zlib + license_family: Other + size: 92825 + timestamp: 1686575231103 - name: pixman version: 0.40.0 manager: conda @@ -1239,8 +1701,13 @@ package: sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 optional: false category: main - source: null build: h36c2ea0_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 642520 + timestamp: 1604342437426 - name: xorg-libxau version: 1.0.11 manager: conda @@ -1253,140 +1720,57 @@ package: sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 optional: false category: main - source: null build: hd590300_0 -- name: bzip2 - version: 1.0.8 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 14468 + timestamp: 1684637984591 +- name: xorg-libxfixes + version: 5.0.3 manager: conda platform: linux-64 dependencies: + xorg-fixesproto: '*' + xorg-libx11: '>=1.7.0,<2.0a0' libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 - hash: - md5: a1fd65c7ccbf10880423d82bca54eb54 - sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa - optional: false - category: main - source: null - build: h7f98852_4 -- name: x264 - version: 1!164.3095 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 - hash: - md5: 6c99772d483f566d59e25037fea2c4b1 - sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 - optional: false - category: main - source: null - build: h166bdaf_2 -- name: openh264 - version: 2.3.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-hcb278e6_2.conda - hash: - md5: 37d01894f256b2a6921c5a218f42f8a2 - sha256: 3be6de15d40f02c9bb34d5095c65b6b3f07e04fc21a0fb63d1885f1a31de5ae2 - optional: false - category: main - source: null - build: hcb278e6_2 -- name: lame - version: '3.100' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 - hash: - md5: a8832b479f93521a9e7b5b743803be51 - sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab - optional: false - category: main - source: null - build: h166bdaf_1003 -- name: x265 - version: '3.5' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=10.3.0' - libstdcxx-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 hash: - md5: e7f6ed84d4623d52ee581325c1587a6b - sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 + md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a + sha256: 1e426a1abb774ef1dcf741945ed5c42ad12ea2dc7aeed7682d293879c3e1e4c3 optional: false category: main - source: null - build: h924138e_3 -- name: libopus - version: 1.3.1 + build: h7f98852_1004 + subdir: linux-64 + build_number: 1004 + license: MIT + license_family: MIT + size: 18145 + timestamp: 1617717802636 +- name: xorg-libxi + version: 1.7.10 manager: conda platform: linux-64 dependencies: + xorg-inputproto: '*' + xorg-libxfixes: 5.0.* + xorg-libx11: '>=1.7.0,<2.0a0' libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 - hash: - md5: 15345e56d527b330e1cacbdf58676e8f - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f - optional: false - category: main - source: null - build: h7f98852_1 -- name: zstd - version: 1.5.2 - manager: conda - platform: linux-64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda - hash: - md5: 6b63daed8feeca47be78f323e793d555 - sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 - optional: false - category: main - source: null - build: h3eb15da_6 -- name: libglu - version: 9.0.0 - manager: conda - platform: linux-64 - dependencies: - libxcb: '>=1.15,<1.16.0a0' - libstdcxx-ng: '>=12' - xorg-xextproto: '>=7.3.0,<8.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1002.conda - hash: - md5: 4c4dce87e96b321308f81ba2c10d2897 - sha256: 71bfd2955cf5fe8a4876d31fffe7da0c9504727582900ce96cefc8f77598c908 - optional: false - category: main - source: null - build: hac7e632_1002 -- name: tzdata - version: 2023c - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + xorg-libxext: 1.3.* + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2 hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: e77615e5141cad5a2acaa043d1cf0ca5 + sha256: 745c1284a96b4282fe6fe122b2643e1e8c26a7ff40b733a8f4b61357238c4e68 optional: false category: main - source: null - build: h71feb2d_0 + build: h7f98852_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 47287 + timestamp: 1620070911951 - name: openssl version: 3.1.1 manager: conda @@ -1400,8 +1784,15 @@ package: sha256: 407d655643389bdb49266842a816815c981ae98f3513a6a2059b908b3abb380a optional: false category: main - source: null build: hd590300_1 + subdir: linux-64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2642411 + timestamp: 1685517327134 - name: krb5 version: 1.20.1 manager: conda @@ -1418,8 +1809,13 @@ package: sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 optional: false category: main - source: null build: h81ceb04_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1329877 + timestamp: 1671091750695 - name: keyutils version: 1.6.1 manager: conda @@ -1432,8 +1828,12 @@ package: sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb optional: false category: main - source: null build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 117831 + timestamp: 1646151697040 - name: libcups version: 2.3.3 manager: conda @@ -1449,22 +1849,329 @@ package: sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 optional: false category: main - source: null build: h36d4200_3 -- name: libffi - version: 3.4.2 + subdir: linux-64 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 4519779 + timestamp: 1671148111233 +- name: libgfortran-ng + version: 13.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + libgfortran5: ==13.1.0 h15d22d2_0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.1.0-h69a702a_0.conda + hash: + md5: 506dc07710dd5b0ba63cbf134897fc10 + sha256: 429e1d8a3e70b632df5b876e3fc322a56f769756693daa07114c46fa5098684e + optional: false + category: main + build: h69a702a_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 23182 + timestamp: 1685816194244 +- name: libgfortran5 + version: 13.1.0 + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.1.0-h15d22d2_0.conda + hash: + md5: afb656a334c409dd9805508af1c89c7a + sha256: a06235f4c4b85b463d9b8a73c9e10c1b5b4105f8a0ea8ac1f2f5f64edac3dfe7 + optional: false + category: main + build: h15d22d2_0 + subdir: linux-64 + build_number: 0 + constrains: + - libgfortran-ng 13.1.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1437388 + timestamp: 1685816112374 +- name: libaec + version: 1.0.6 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda + hash: + md5: 0f683578378cddb223e7fd24f785ab2a + sha256: 4df6a29b71264fb25462065e8cddcf5bca60776b1801974af8cbd26b7425fcda + optional: false + category: main + build: hcb278e6_1 + subdir: linux-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 34438 + timestamp: 1673799481016 +- name: bzip2 + version: 1.0.8 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 + hash: + md5: a1fd65c7ccbf10880423d82bca54eb54 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa + optional: false + category: main + build: h7f98852_4 + subdir: linux-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 495686 + timestamp: 1606604745109 +- name: x264 + version: 1!164.3095 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 + hash: + md5: 6c99772d483f566d59e25037fea2c4b1 + sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 + optional: false + category: main + build: h166bdaf_2 + subdir: linux-64 + build_number: 2 + license: GPL-2.0-or-later + license_family: GPL + size: 897548 + timestamp: 1660323080555 +- name: openh264 + version: 2.3.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-hcb278e6_2.conda + hash: + md5: 37d01894f256b2a6921c5a218f42f8a2 + sha256: 3be6de15d40f02c9bb34d5095c65b6b3f07e04fc21a0fb63d1885f1a31de5ae2 + optional: false + category: main + build: hcb278e6_2 + subdir: linux-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 718775 + timestamp: 1675880590512 +- name: lame + version: '3.100' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + hash: + md5: a8832b479f93521a9e7b5b743803be51 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + optional: false + category: main + build: h166bdaf_1003 + subdir: linux-64 + build_number: 1003 + license: LGPL-2.0-only + license_family: LGPL + size: 508258 + timestamp: 1664996250081 +- name: x265 + version: '3.5' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 + hash: + md5: e7f6ed84d4623d52ee581325c1587a6b + sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 + optional: false + category: main + build: h924138e_3 + subdir: linux-64 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 3357188 + timestamp: 1646609687141 +- name: libva + version: 2.19.0 + manager: conda + platform: linux-64 + dependencies: + libdrm: '>=2.4.114,<2.5.0a0' + xorg-libxfixes: '*' + xorg-libx11: '>=1.8.6,<2.0a0' + libgcc-ng: '>=12' + xorg-libxext: '>=1.3.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.19.0-hd590300_0.conda + hash: + md5: 6267b97b1988c53e642b5d44650a81a0 + sha256: e0defaf6544b307d4f7695ba10d149a86d28c8c31c6e447f92136ba9bb05b658 + optional: false + category: main + build: hd590300_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 187521 + timestamp: 1688469552873 +- name: libdrm + version: 2.4.114 + manager: conda + platform: linux-64 + dependencies: + libpciaccess: '>=0.17,<0.18.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.114-h166bdaf_0.tar.bz2 + hash: + md5: efb58e80f5d0179a783c4e76c3df3b9c + sha256: 9316075084ad66f9f96d31836e83303a8199eec93c12d68661e41c44eed101e3 + optional: false + category: main + build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 305197 + timestamp: 1667566354412 +- name: libpciaccess + version: '0.17' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.17-h166bdaf_0.tar.bz2 + hash: + md5: b7463391cf284065294e2941dd41ab95 + sha256: 9fe4aaf5629b4848d9407b9ed4da941ba7e5cebada63ee0becb9aa82259dc6e2 + optional: false + category: main + build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 39750 + timestamp: 1666091838440 +- name: libopus + version: 1.3.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + hash: + md5: 15345e56d527b330e1cacbdf58676e8f + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + optional: false + category: main + build: h7f98852_1 + subdir: linux-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 260658 + timestamp: 1606823578035 +- name: zstd + version: 1.5.2 + manager: conda + platform: linux-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-hfc55251_7.conda + hash: + md5: 32ae18eb2a687912fc9e92a501c0a11b + sha256: a7f7e765dfb7af5265a38080e46f18cb07cfeecf81fe28fad23c4538e7d521c3 + optional: false + category: main + build: hfc55251_7 + subdir: linux-64 + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 431126 + timestamp: 1688721787223 +- name: libglu + version: 9.0.0 + manager: conda + platform: linux-64 + dependencies: + libxcb: '>=1.15,<1.16.0a0' + libstdcxx-ng: '>=12' + xorg-xextproto: '>=7.3.0,<8.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1002.conda + hash: + md5: 4c4dce87e96b321308f81ba2c10d2897 + sha256: 71bfd2955cf5fe8a4876d31fffe7da0c9504727582900ce96cefc8f77598c908 + optional: false + category: main + build: hac7e632_1002 + subdir: linux-64 + build_number: 1002 + license: SGI-2 + size: 325566 + timestamp: 1684677942494 +- name: tzdata + version: 2023c + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + hash: + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + optional: false + category: main + build: h71feb2d_0 + subdir: noarch + build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 +- name: libffi + version: 3.4.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 hash: md5: d645c6d2ac96843a2bfaccd2d62b3ac3 sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e optional: false category: main - source: null build: h7f98852_5 + subdir: linux-64 + build_number: 5 + license: MIT + license_family: MIT + size: 58292 + timestamp: 1636488182923 - name: ld_impl_linux-64 version: '2.40' manager: conda @@ -1476,8 +2183,15 @@ package: sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd optional: false category: main - source: null build: h41732ed_0 + subdir: linux-64 + build_number: 0 + constrains: + - binutils_impl_linux-64 2.40 + license: GPL-3.0-only + license_family: GPL + size: 704696 + timestamp: 1674833944779 - name: font-ttf-inconsolata version: '3.000' manager: conda @@ -1489,8 +2203,14 @@ package: sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c optional: false category: main - source: null build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 96530 + timestamp: 1620479909603 - name: font-ttf-source-code-pro version: '2.038' manager: conda @@ -1502,8 +2222,14 @@ package: sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 optional: false category: main - source: null build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 700814 + timestamp: 1620479612257 - name: certifi version: 2023.5.7 manager: conda @@ -1516,8 +2242,13 @@ package: sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: ISC + noarch: python + size: 152383 + timestamp: 1683450391501 - name: idna version: '3.4' manager: conda @@ -1530,8 +2261,14 @@ package: sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 56742 + timestamp: 1663625484114 - name: urllib3 version: 2.0.3 manager: conda @@ -1539,29 +2276,41 @@ package: dependencies: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.7' - brotli: '>=1.0.9' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda + brotli-python: '>=1.0.9' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_1.conda hash: - md5: ae465d0fbf9f1979cb2d8d4043d885e2 - sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 + md5: 89efeecbb24c62e2f1ed0b8ca959ec69 + sha256: 60b64b483b2c662f946837043d95c1a5d90948464a834403b0e3bce373a96a1e optional: false category: main - source: null - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 + subdir: noarch + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 98152 + timestamp: 1688005881308 - name: charset-normalizer - version: 3.1.0 + version: 3.2.0 manager: conda platform: linux-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 45686 + timestamp: 1688813585878 - name: xcb-util version: 0.4.0 manager: conda @@ -1575,219 +2324,220 @@ package: sha256: 0c91d87f0efdaadd4e56a5f024f8aab20ec30f90aa2ce9e4ebea05fbc20f71ad optional: false category: main - source: null build: hd590300_1 -- name: xorg-libice - version: 1.1.1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 19728 + timestamp: 1684639166048 +- name: c-ares + version: 1.19.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda hash: - md5: b462a33c0be1421532f28bfe8f4a7514 - sha256: 5aa9b3682285bb2bf1a8adc064cb63aff76ef9178769740d855abb42b0d24236 + md5: e8c18d865be43e2fb3f7a145b6adf1f5 + sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6 optional: false category: main - source: null build: hd590300_0 -- name: xorg-libsm - version: 1.2.4 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 113362 + timestamp: 1684782732180 +- name: libev + version: '4.33' manager: conda platform: linux-64 dependencies: - xorg-libice: '>=1.1.1,<2.0a0' - libgcc-ng: '>=12' - libuuid: '>=2.38.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 hash: - md5: 93ee23f12bc2e684548181256edd2cf6 - sha256: 089ad5f0453c604e18985480218a84b27009e9e6de9a0fa5f4a20b8778ede1f1 + md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 + sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 optional: false category: main - source: null - build: h7391055_0 -- name: xorg-libx11 - version: 1.8.6 + build: h516909a_1 + subdir: linux-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 106190 + timestamp: 1598867915 +- name: xorg-libxext + version: 1.3.4 manager: conda platform: linux-64 dependencies: - xorg-xproto: '*' - libxcb: '>=1.15,<1.16.0a0' - xorg-kbproto: '*' - xorg-xextproto: '>=7.3.0,<8.0a0' + xorg-libx11: '>=1.7.2,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.6-h8ee46fc_0.conda + xorg-xextproto: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda hash: - md5: 7590b76c3d11d21caa44f3fc38ac584a - sha256: 3360f81f7687179959a6bf1c762938240172e8bb3aef957e0a14fb12a0b7c105 + md5: 82b6df12252e6f32402b96dacc656fec + sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 optional: false category: main - source: null - build: h8ee46fc_0 -- name: xorg-libxi - version: 1.7.10 + build: h0b41bf4_2 + subdir: linux-64 + build_number: 2 + license: MIT + license_family: MIT + size: 50143 + timestamp: 1677036907815 +- name: dbus + version: 1.13.6 manager: conda platform: linux-64 dependencies: - xorg-inputproto: '*' - xorg-libxfixes: 5.0.* - xorg-libx11: '>=1.7.0,<2.0a0' - libgcc-ng: '>=9.3.0' - xorg-libxext: 1.3.* - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2 - hash: - md5: e77615e5141cad5a2acaa043d1cf0ca5 - sha256: 745c1284a96b4282fe6fe122b2643e1e8c26a7ff40b733a8f4b61357238c4e68 - optional: false - category: main - source: null - build: h7f98852_0 -- name: xorg-libxfixes - version: 5.0.3 - manager: conda - platform: linux-64 - dependencies: - xorg-fixesproto: '*' - xorg-libx11: '>=1.7.0,<2.0a0' - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 - hash: - md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a - sha256: 1e426a1abb774ef1dcf741945ed5c42ad12ea2dc7aeed7682d293879c3e1e4c3 - optional: false - category: main - source: null - build: h7f98852_1004 -- name: xorg-libxrender - version: 0.9.10 - manager: conda - platform: linux-64 - dependencies: - xorg-renderproto: '*' - xorg-libx11: '>=1.7.0,<2.0a0' - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2 - hash: - md5: f59c1242cc1dd93e72c2ee2b360979eb - sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 - optional: false - category: main - source: null - build: h7f98852_1003 -- name: xorg-libxext - version: 1.3.4 - manager: conda - platform: linux-64 - dependencies: - xorg-libx11: '>=1.7.2,<2.0a0' - libgcc-ng: '>=12' - xorg-xextproto: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda - hash: - md5: 82b6df12252e6f32402b96dacc656fec - sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 - optional: false - category: main - source: null - build: h0b41bf4_2 -- name: dbus - version: 1.13.6 - manager: conda - platform: linux-64 - dependencies: - libglib: '>=2.70.2,<3.0a0' - libgcc-ng: '>=9.4.0' - expat: '>=2.4.2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + libglib: '>=2.70.2,<3.0a0' + libgcc-ng: '>=9.4.0' + expat: '>=2.4.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 hash: md5: ecfff944ba3960ecb334b9a2663d708d sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 optional: false category: main - source: null build: h5008d03_3 + subdir: linux-64 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 618596 + timestamp: 1640112124844 - name: gst-plugins-base - version: 1.22.3 + version: 1.22.4 manager: conda platform: linux-64 dependencies: + xorg-libxrender: '>=0.9.11,<0.10.0a0' libpng: '>=1.6.39,<1.7.0a0' - libglib: '>=2.76.2,<3.0a0' - libvorbis: '>=1.3.7,<1.4.0a0' - alsa-lib: '>=1.2.8,<1.2.9.0a0' - libgcc-ng: '>=12' libzlib: '>=1.2.13,<1.3.0a0' - gstreamer: ==1.22.3 h977cf35_1 + alsa-lib: '>=1.2.9,<1.2.10.0a0' + libgcc-ng: '>=12' + libexpat: '>=2.5.0,<3.0a0' + gstreamer: ==1.22.4 h98fc4e7_1 gettext: '>=0.21.1,<1.0a0' - __glibc: '>=2.17,<3.0.a0' - libstdcxx-ng: '>=12' + xorg-libxau: '>=1.0.11,<2.0a0' libopus: '>=1.3.1,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + libglib: '>=2.76.3,<3.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' libxcb: '>=1.15,<1.16.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.3-h938bd60_1.conda + libstdcxx-ng: '>=12' + __glibc: '>=2.17,<3.0.a0' + xorg-libx11: '>=1.8.6,<2.0a0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.4-hf7dbed1_1.conda + hash: + md5: ae590378e58f11642bbdf8effd1d315d + sha256: d999811b95cb424fd23365c0e80897ab33768fb2c3457e01a641cf6ad4b5a0a7 + optional: false + category: main + build: hf7dbed1_1 + subdir: linux-64 + build_number: 1 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2706989 + timestamp: 1688582306867 +- name: xorg-libxrender + version: 0.9.11 + manager: conda + platform: linux-64 + dependencies: + xorg-renderproto: '*' + xorg-libx11: '>=1.8.6,<2.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda hash: - md5: 1f317eb7f00db75f4112a07476345376 - sha256: 1abfeadd880adbbebe37c097a13914f7ad383d19ff0249c35e06ddbba268ac5d + md5: ed67c36f215b310412b2af935bf3e530 + sha256: 26da4d1911473c965c32ce2b4ff7572349719eaacb88a066db8d968a4132c3f7 optional: false category: main - source: null - build: h938bd60_1 + build: hd590300_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 37770 + timestamp: 1688300707994 - name: gstreamer - version: 1.22.3 + version: 1.22.4 manager: conda platform: linux-64 dependencies: - glib: '>=2.76.2,<3.0a0' + glib: '>=2.76.3,<3.0a0' gettext: '>=0.21.1,<1.0a0' __glibc: '>=2.17,<3.0.a0' - libglib: '>=2.76.2,<3.0a0' - libstdcxx-ng: '>=12' + libglib: '>=2.76.3,<3.0a0' + libiconv: '>=1.17,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.3-h977cf35_1.conda + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.4-h98fc4e7_1.conda hash: - md5: 410ed3b168e5a139d12ebaf4143072cd - sha256: c04dcf43d09a2d0b879ad21515309fb89a496e12f7efceb8aa0c93c2c8746378 + md5: 7f203906e390f70687a7df985c573c89 + sha256: 105d612e5d5872b3be4bfbff3bcd5a674d3a83a7427dd52287f06a09bc844578 optional: false category: main - source: null - build: h977cf35_1 + build: h98fc4e7_1 + subdir: linux-64 + build_number: 1 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1977219 + timestamp: 1688582155623 - name: glib - version: 2.76.3 + version: 2.76.4 manager: conda platform: linux-64 dependencies: - glib-tools: ==2.76.3 hfc55251_0 + glib-tools: ==2.76.4 hfc55251_0 python: '*' gettext: '>=0.21.1,<1.0a0' libstdcxx-ng: '>=12' - libglib: ==2.76.3 hebfc3b9_0 + libglib: ==2.76.4 hebfc3b9_0 libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.76.3-hfc55251_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.76.4-hfc55251_0.conda hash: - md5: 950e02f5665f5f4ff0437a6acba58798 - sha256: c783d185d4f1296b9e9810f400b208d5e3a073198d753b3203ae83521941325d + md5: dbcec5fd9c6c8be24b23575048755a59 + sha256: 85de9ec71a143e9b86e381e865341f2d706387f3d3facaf935d4598b6dfa7229 optional: false category: main - source: null build: hfc55251_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 482405 + timestamp: 1688694735795 - name: glib-tools - version: 2.76.3 + version: 2.76.4 manager: conda platform: linux-64 dependencies: libstdcxx-ng: '>=12' - libglib: ==2.76.3 hebfc3b9_0 + libglib: ==2.76.4 hebfc3b9_0 libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.76.3-hfc55251_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.76.4-hfc55251_0.conda hash: - md5: 8951eedf3cdf94dd733c1b5eee1f4880 - sha256: 22882b3516eee26fc0482ad85b0c697ab8be4f345e238b60891866758392ebb6 + md5: 76ac435b8668f636a39fcb155c3543fd + sha256: 6940a5d60d1fd8a14e8597e1e65e1a6e3a811368f279d4a2ab66ed73a2c26b31 optional: false category: main - source: null build: hfc55251_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 111429 + timestamp: 1688694701485 - name: libclang version: 15.0.7 manager: conda @@ -1804,8 +2554,13 @@ package: sha256: 9fd064ed59a07ed096fe3c641752be5279f6696bc8b25da0ca4e41fb92758a5b optional: false category: main - source: null build: default_h7634d5b_2 + subdir: linux-64 + build_number: 2 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133475 + timestamp: 1684408546949 - name: libclang13 version: 15.0.7 manager: conda @@ -1821,8 +2576,13 @@ package: sha256: d9f9fb5622489d7e5c3237a4a6a46db20ead3c6bafb7277de1a25278db59b863 optional: false category: main - source: null build: default_h9986a30_2 + subdir: linux-64 + build_number: 2 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 9594391 + timestamp: 1684408496977 - name: libllvm15 version: 15.0.7 manager: conda @@ -1839,8 +2599,13 @@ package: sha256: c9438d40c00a70a1bd959cd133ffb2416e0528edfaefd8a25a73024da9aba5c1 optional: false category: main - source: null build: h5cf9203_2 + subdir: linux-64 + build_number: 2 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 33311743 + timestamp: 1684388312978 - name: libxkbcommon version: 1.5.0 manager: conda @@ -1857,8 +2622,13 @@ package: sha256: 28d7971db21e4cb3a52a550950ae91ff38896ba05938b1e3492b666988e87bd3 optional: false category: main - source: null build: h5d7e998_3 + subdir: linux-64 + build_number: 3 + license: MIT/X11 Derivative + license_family: MIT + size: 560725 + timestamp: 1684639184662 - name: libevent version: 2.1.12 manager: conda @@ -1872,8 +2642,13 @@ package: sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131 optional: false category: main - source: null build: hf998b51_1 + subdir: linux-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 427426 + timestamp: 1685725977222 - name: libpq version: '15.3' manager: conda @@ -1889,8 +2664,12 @@ package: sha256: 96031c853d1a8b32c50c04b791aa199508ab1f0fa879ab7fcce175ee24620f78 optional: false category: main - source: null build: hbcd7760_1 + subdir: linux-64 + build_number: 1 + license: PostgreSQL + size: 2530642 + timestamp: 1684451981378 - name: mysql-libs version: 8.0.33 manager: conda @@ -1901,15 +2680,18 @@ package: openssl: '>=3.1.1,<4.0a0' libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - mysql-common: ==8.0.33 hf1915f5_0 - url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.33-hca2cd23_0.conda + mysql-common: ==8.0.33 hf1915f5_1 + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.33-hca2cd23_1.conda hash: - md5: 276339b0115d92c6e0793dcdc7afe308 - sha256: 44ced085e8ccaef349bbc86f95b34595cf907abe56b6268551fe99b31d2dd007 + md5: a04ac37f0659929f3ba0f33c7f3d750f + sha256: d10f737f835a90d441c5cc0c15e46b4d34594a080f67a1e6cd64ac76bf3e6269 optional: false category: main - source: null - build: hca2cd23_0 + build: hca2cd23_1 + subdir: linux-64 + build_number: 1 + size: 1531126 + timestamp: 1688285898480 - name: mysql-common version: 8.0.33 manager: conda @@ -1918,14 +2700,17 @@ package: openssl: '>=3.1.1,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.33-hf1915f5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.33-hf1915f5_1.conda hash: - md5: aa8b86066614c4573f6db62c91978fa9 - sha256: 4131cd3a3e35050053da45e4f10415a8e4d1acaf169c4f3ad6a2fae9caa53c06 + md5: b241363e3b72bae6dfbd31e9fecf7d26 + sha256: 0ec502aaee1b9cb82947a1f56ad599d2ac79c9c25ccf2f44224a69e1e16f537e optional: false category: main - source: null - build: hf1915f5_0 + build: hf1915f5_1 + subdir: linux-64 + build_number: 1 + size: 760782 + timestamp: 1688285834125 - name: xcb-util-keysyms version: 0.4.0 manager: conda @@ -1939,8 +2724,13 @@ package: sha256: 8451d92f25d6054a941b962179180728c48c62aab5bf20ac10fef713d5da6a9a optional: false category: main - source: null build: h8ee46fc_1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 14186 + timestamp: 1684680497805 - name: xcb-util-wm version: 0.4.1 manager: conda @@ -1954,8 +2744,13 @@ package: sha256: 08ba7147c7579249b6efd33397dc1a8c2404278053165aaecd39280fee705724 optional: false category: main - source: null build: h8ee46fc_1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 52114 + timestamp: 1684679248466 - name: pulseaudio-client version: '16.1' manager: conda @@ -1972,8 +2767,15 @@ package: sha256: efd5ca5d5b0e55d25b8b2085449618f9777a07a89958c1d557d44f53eff061fe optional: false category: main - source: null build: hb77b528_4 + subdir: linux-64 + build_number: 4 + constrains: + - pulseaudio 16.1 *_4 + license: LGPL-2.1-or-later + license_family: LGPL + size: 750852 + timestamp: 1685466483507 - name: libsndfile version: 1.2.0 manager: conda @@ -1993,25 +2795,13 @@ package: sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 optional: false category: main - source: null build: hb75c966_0 -- name: libflac - version: 1.4.2 - manager: conda - platform: linux-64 - dependencies: - gettext: '>=0.21.1,<1.0a0' - libstdcxx-ng: '>=12' - libgcc-ng: '>=12' - libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2 - hash: - md5: 7daf72d8e2a8e848e11d63ed6d1026e0 - sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 - optional: false - category: main - source: null - build: h27087fc_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 350153 + timestamp: 1672054525440 - name: xkeyboard-config version: '2.39' manager: conda @@ -2025,8 +2815,32 @@ package: sha256: 364dd7781383336d701bf3f2e10662079b30094b5a9d2a679edeeea9d11cf059 optional: false category: main - source: null build: hd590300_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 880593 + timestamp: 1686533532648 +- name: libogg + version: 1.3.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 + hash: + md5: 6e8cc2173440d77708196c5b93771680 + sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + optional: false + category: main + build: h7f98852_1 + subdir: linux-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 210550 + timestamp: 1610382007814 - name: expat version: 2.5.0 manager: conda @@ -2040,8 +2854,13 @@ package: sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f optional: false category: main - source: null build: hcb278e6_1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 136778 + timestamp: 1680190541750 - name: xorg-xextproto version: 7.3.0 manager: conda @@ -2054,35 +2873,34 @@ package: sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743 optional: false category: main - source: null build: h0b41bf4_1003 -- name: libgfortran-ng - version: 13.1.0 + subdir: linux-64 + build_number: 1003 + license: MIT + license_family: MIT + size: 30270 + timestamp: 1677036833037 +- name: libssh2 + version: 1.11.0 manager: conda platform: linux-64 dependencies: - libgfortran5: ==13.1.0 h15d22d2_0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.1.0-h69a702a_0.conda - hash: - md5: 506dc07710dd5b0ba63cbf134897fc10 - sha256: 429e1d8a3e70b632df5b876e3fc322a56f769756693daa07114c46fa5098684e - optional: false - category: main - source: null - build: h69a702a_0 -- name: libgfortran5 - version: 13.1.0 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.1.0-h15d22d2_0.conda + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: - md5: afb656a334c409dd9805508af1c89c7a - sha256: a06235f4c4b85b463d9b8a73c9e10c1b5b4105f8a0ea8ac1f2f5f64edac3dfe7 + md5: 1f5a58e686b13bcfde88b93f547d23fe + sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d optional: false category: main - source: null - build: h15d22d2_0 + build: h0841786_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 271133 + timestamp: 1685837707056 - name: libidn2 version: 2.3.4 manager: conda @@ -2097,8 +2915,12 @@ package: sha256: 888848ae85be9df86f56407639c63bdce8e7651f0b2517be9bc0ac6e38b2d21d optional: false category: main - source: null build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: LGPLv2 + size: 160409 + timestamp: 1666574022481 - name: ca-certificates version: 2023.5.7 manager: conda @@ -2110,83 +2932,12 @@ package: sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345 optional: false category: main - source: null build: hbcca054_0 -- name: hdf5 - version: 1.14.0 - manager: conda - platform: linux-64 - dependencies: - libgfortran-ng: '*' - libcurl: '>=7.88.1,<9.0a0' - openssl: '>=3.0.8,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - libgfortran5: '>=11.3.0' - libaec: '>=1.0.6,<2.0a0' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.0-nompi_hb72d44e_103.conda - hash: - md5: 975973a4350ab45ff1981fe535a12af5 - sha256: 989019cdf2a1319afb299f47dde9a52dedc16906ec53e2d32e0627caf557d034 - optional: false - category: main - source: null - build: nompi_hb72d44e_103 -- name: libcurl - version: 8.1.2 - manager: conda - platform: linux-64 - dependencies: - libssh2: '>=1.10.0,<2.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - openssl: '>=3.1.0,<4.0a0' - krb5: '>=1.20.1,<1.21.0a0' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.1.2-h409715c_0.conda - hash: - md5: 50c873c9660ed116707ae15b663928d8 - sha256: d572c31ff48d2db6ca5bab476bf325811cfc82577480b3791487c3fe7bff2ffa - optional: false - category: main - source: null - build: h409715c_0 -- name: libnghttp2 - version: 1.52.0 - manager: conda - platform: linux-64 - dependencies: - libstdcxx-ng: '>=12' - c-ares: '>=1.18.1,<2.0a0' - libev: '>=4.33,<4.34.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - openssl: '>=3.0.8,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda - hash: - md5: 613955a50485812985c059e7b269f42e - sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a - optional: false - category: main - source: null - build: h61bc06f_0 -- name: libaec - version: 1.0.6 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda - hash: - md5: 0f683578378cddb223e7fd24f785ab2a - sha256: 4df6a29b71264fb25462065e8cddcf5bca60776b1801974af8cbd26b7425fcda - optional: false - category: main - source: null - build: hcb278e6_1 + subdir: linux-64 + build_number: 0 + license: ISC + size: 148360 + timestamp: 1683451720318 - name: pysocks version: 1.7.1 manager: conda @@ -2200,99 +2951,60 @@ package: sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b optional: false category: main - source: null build: pyha2e5f31_6 -- name: brotli - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlienc: ==1.0.9 h166bdaf_8 - brotli-bin: ==1.0.9 h166bdaf_8 - libgcc-ng: '>=12' - libbrotlidec: ==1.0.9 h166bdaf_8 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2 - hash: - md5: 2ff08978892a3e8b954397c461f18418 - sha256: 74c0fa22ea7c62d2c8f7a7aea03a3bd4919f7f3940ef5b027ce0dfb5feb38c06 - optional: false - category: main - source: null - build: h166bdaf_8 -- name: brotli-bin - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libbrotlienc: ==1.0.9 h166bdaf_8 - libbrotlidec: ==1.0.9 h166bdaf_8 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2 - hash: - md5: e5613f2bc717e9945840ff474419b8e4 - sha256: ab1994e03bdd88e4b27f9f802ac18e45ed29b92cce25e1fd86da43b89734950f - optional: false - category: main - source: null - build: h166bdaf_8 -- name: libbrotlidec - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlicommon: ==1.0.9 h166bdaf_8 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2 - hash: - md5: 4ae4d7795d33e02bd20f6b23d91caf82 - sha256: d88ba07c3be27c89cb4975cc7edf63ee7b1c62d01f70d5c3f7efeb987c82b052 - optional: false - category: main - source: null - build: h166bdaf_8 -- name: libbrotlienc + subdir: noarch + build_number: 6 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 18981 + timestamp: 1661604969727 +- name: brotli-python version: 1.0.9 manager: conda platform: linux-64 dependencies: - libbrotlicommon: ==1.0.9 h166bdaf_8 + python: '>=3.10,<3.11.0a0' + libstdcxx-ng: '>=12' + python_abi: 3.10.* *_cp310 libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.0.9-py310hd8f1fbe_9.conda hash: - md5: 04bac51ba35ea023dc48af73c1c88c25 - sha256: a0468858b2f647f51509a32040e93512818a8f9980f20b3554cccac747bcc4be + md5: e2047ad2af52c01845f58b580c6cbd5c + sha256: a4984cb906910850ae979387f0ac4e2623e0a3c8139bc67eb1fff0403bf8388b optional: false category: main - source: null - build: h166bdaf_8 -- name: libbrotlicommon - version: 1.0.9 + build: py310hd8f1fbe_9 + subdir: linux-64 + build_number: 9 + constrains: + - libbrotlicommon 1.0.9 h166bdaf_9 + license: MIT + license_family: MIT + size: 326479 + timestamp: 1687884330581 +- name: libflac + version: 1.4.3 manager: conda platform: linux-64 dependencies: + gettext: '>=0.21.1,<1.0a0' + libstdcxx-ng: '>=12' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2 - hash: - md5: 9194c9bf9428035a05352d031462eae4 - sha256: ddc961a36d498aaafd5b71078836ad5dd247cc6ba7924157f3801a2f09b77b14 - optional: false - category: main - source: null - build: h166bdaf_8 -- name: libogg - version: 1.3.4 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda hash: - md5: 6e8cc2173440d77708196c5b93771680 - sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + md5: ee48bf17cc83a00f59ca1494d5646869 + sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d optional: false category: main - source: null - build: h7f98852_1 + build: h59595ed_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 394383 + timestamp: 1687765514062 - name: mpg123 version: 1.31.3 manager: conda @@ -2306,8 +3018,13 @@ package: sha256: 7e4a64329595c0cbfc770585827b72a63d224606324dff5b399467486dc68344 optional: false category: main - source: null build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-only + license_family: LGPL + size: 485496 + timestamp: 1679317436814 - name: libsystemd0 version: '253' manager: conda @@ -2326,8 +3043,12 @@ package: sha256: 13f5db46b7ded028f5b53fd5373e27a47789b9a655b52a92c4b324099602f29a optional: false category: main - source: null build: h8c4010b_1 + subdir: linux-64 + build_number: 1 + license: LGPL-2.1-or-later + size: 380557 + timestamp: 1677532757148 - name: libcap version: '2.67' manager: conda @@ -2341,8 +3062,13 @@ package: sha256: 4dcf2290b9b90ad2654fbfff52e9c1d49885ce71f0bb853520e2b9d54809605b optional: false category: main - source: null build: he9d0100_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 99032 + timestamp: 1675412183349 - name: libgcrypt version: 1.10.1 manager: conda @@ -2356,59 +3082,20 @@ package: sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a optional: false category: main - source: null build: h166bdaf_0 -- name: c-ares - version: 1.19.1 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-2.0-or-later + license_family: GPL + size: 719561 + timestamp: 1649520091125 +- name: libgpg-error + version: '1.47' manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda - hash: - md5: e8c18d865be43e2fb3f7a145b6adf1f5 - sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6 - optional: false - category: main - source: null - build: hd590300_0 -- name: libev - version: '4.33' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 - hash: - md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 - sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 - optional: false - category: main - source: null - build: h516909a_1 -- name: libssh2 - version: 1.11.0 - manager: conda - platform: linux-64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - hash: - md5: 1f5a58e686b13bcfde88b93f547d23fe - sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d - optional: false - category: main - source: null - build: h0841786_0 -- name: libgpg-error - version: '1.47' - manager: conda - platform: linux-64 - dependencies: - libstdcxx-ng: '>=12' - gettext: '>=0.21.1,<1.0a0' + libstdcxx-ng: '>=12' + gettext: '>=0.21.1,<1.0a0' libgcc-ng: '>=12' url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.47-h71f35ed_0.conda hash: @@ -2416,8 +3103,13 @@ package: sha256: 0306b3c2d65863048983a50bd8b86f6f26e457ef55d1da745a5796af25093f5a optional: false category: main - source: null build: h71f35ed_0 + subdir: linux-64 + build_number: 0 + license: GPL-2.0-only + license_family: GPL + size: 260794 + timestamp: 1686979818648 - name: lz4-c version: 1.9.4 manager: conda @@ -2431,8 +3123,13 @@ package: sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f optional: false category: main - source: null build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 143402 + timestamp: 1674727076728 - name: attr version: 2.5.1 manager: conda @@ -2445,8 +3142,13 @@ package: sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 optional: false category: main - source: null build: h166bdaf_1 + subdir: linux-64 + build_number: 1 + license: GPL-2.0-or-later + license_family: GPL + size: 71042 + timestamp: 1660065501192 - name: graphite2 version: 1.3.13 manager: conda @@ -2460,8 +3162,12 @@ package: sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 optional: false category: main - source: null build: h58526e2_1001 + subdir: linux-64 + build_number: 1001 + license: LGPLv2 + size: 104701 + timestamp: 1604365484436 - name: libvorbis version: 1.3.7 manager: conda @@ -2476,8 +3182,13 @@ package: sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 optional: false category: main - source: null build: h9c3ff4c_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 286280 + timestamp: 1610609811627 - name: libedit version: 3.1.20191231 manager: conda @@ -2491,8 +3202,13 @@ package: sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf optional: false category: main - source: null build: he28a2e2_2 + subdir: linux-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 123878 + timestamp: 1597616541093 - name: libunistring version: 0.9.10 manager: conda @@ -2505,8 +3221,12 @@ package: sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d optional: false category: main - source: null build: h7f98852_0 + subdir: linux-64 + build_number: 0 + license: GPL-3.0-only OR LGPL-3.0-only + size: 1433436 + timestamp: 1626955018689 - name: xorg-inputproto version: 2.3.2 manager: conda @@ -2519,8 +3239,13 @@ package: sha256: 6c8c2803de0f643f8bad16ece3f9a7259e4a49247543239c182d66d5e3a129a7 optional: false category: main - source: null build: h7f98852_1002 + subdir: linux-64 + build_number: 1002 + license: MIT + license_family: MIT + size: 19602 + timestamp: 1610027678228 - name: xorg-fixesproto version: '5.0' manager: conda @@ -2534,8 +3259,13 @@ package: sha256: 5d2af1b40f82128221bace9466565eca87c97726bb80bbfcd03871813f3e1876 optional: false category: main - source: null build: h7f98852_1002 + subdir: linux-64 + build_number: 1002 + license: MIT + license_family: MIT + size: 9122 + timestamp: 1617479697350 - name: xorg-xf86vidmodeproto version: 2.3.1 manager: conda @@ -2548,8 +3278,13 @@ package: sha256: 43398aeacad5b8753b7a1c12cb6bca36124e0c842330372635879c350c430791 optional: false category: main - source: null build: h7f98852_1002 + subdir: linux-64 + build_number: 1002 + license: MIT + license_family: MIT + size: 23875 + timestamp: 1620067286978 - name: xorg-libxdmcp version: 1.1.3 manager: conda @@ -2562,8 +3297,13 @@ package: sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 optional: false category: main - source: null build: h7f98852_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 19126 + timestamp: 1610071769228 - name: pthread-stubs version: '0.4' manager: conda @@ -2576,8 +3316,13 @@ package: sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff optional: false category: main - source: null build: h36c2ea0_1001 + subdir: linux-64 + build_number: 1001 + license: MIT + license_family: MIT + size: 5625 + timestamp: 1606147468727 - name: xorg-renderproto version: 0.11.1 manager: conda @@ -2590,8 +3335,13 @@ package: sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 optional: false category: main - source: null build: h7f98852_1002 + subdir: linux-64 + build_number: 1002 + license: MIT + license_family: MIT + size: 9621 + timestamp: 1614866326326 - name: xorg-kbproto version: 1.0.7 manager: conda @@ -2604,8 +3354,13 @@ package: sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 optional: false category: main - source: null build: h7f98852_1002 + subdir: linux-64 + build_number: 1002 + license: MIT + license_family: MIT + size: 27338 + timestamp: 1610027759842 - name: xorg-xproto version: 7.0.31 manager: conda @@ -2618,8 +3373,13 @@ package: sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d optional: false category: main - source: null build: h7f98852_1007 + subdir: linux-64 + build_number: 1007 + license: MIT + license_family: MIT + size: 74922 + timestamp: 1607291557628 - name: fribidi version: 1.0.10 manager: conda @@ -2632,88 +3392,33 @@ package: sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 optional: false category: main - source: null build: h36c2ea0_0 -- name: python - version: 3.10.11 - manager: conda - platform: osx-arm64 - dependencies: - tzdata: '*' - openssl: '>=3.1.0,<4.0a0' - readline: '>=8.2,<9.0a0' - libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.41.2,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - xz: '>=5.2.6,<6.0a0' - tk: '>=8.6.12,<8.7.0a0' - bzip2: '>=1.0.8,<2.0a0' - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.11-h3ba56d0_0_cpython.conda - hash: - md5: 96c4e977d33ac768ca95ed9bc1166862 - sha256: 2bfbb1c08001de4f7b144cc132ab238cc83b836006edd6f48fb4c72957795f2f - optional: false - category: main - source: null - build: h3ba56d0_0_cpython -- name: readline - version: '8.2' - manager: conda - platform: osx-arm64 - dependencies: - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - hash: - md5: 8cbb776a2f641b943d413b3e19df71f4 - sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 - optional: false - category: main - source: null - build: h92ec313_1 -- name: tk - version: 8.6.12 - manager: conda - platform: osx-arm64 - dependencies: - libzlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 - hash: - md5: 2cb3d18eac154109107f093860bd545f - sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 - optional: false - category: main - source: null - build: he1e0b03_0 -- name: xz - version: 5.2.6 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - hash: - md5: 39c6b54e94014701dd157f4f576ed211 - sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec - optional: false - category: main - source: null - build: h57fd34a_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1 + size: 114383 + timestamp: 1604416621168 - name: opencv version: 4.7.0 manager: conda platform: osx-arm64 dependencies: - py-opencv: ==4.7.0 py310h69fb684_4 + py-opencv: ==4.7.0 py310h69fb684_6 python_abi: 3.10.* *_cp310 - libopencv: ==4.7.0 py310h7a1b33c_4 - url: https://conda.anaconda.org/conda-forge/osx-arm64/opencv-4.7.0-py310hb6292c7_4.conda + libopencv: ==4.7.0 py310hdc0018b_6 + url: https://conda.anaconda.org/conda-forge/osx-arm64/opencv-4.7.0-py310hb6292c7_6.conda hash: - md5: ecb764ec6bb90a0cf808f80c38ca56eb - sha256: 54e0774bf4437d1887f648e0705cca475cd9480ce365b3831b489c6c5df6ecdb + md5: a1dfcbfa771f626baff4d1451e70c265 + sha256: 05b881968484a79f7f9b1d1d28ae53f63efd5dceb5df6b982ab292c67366066e optional: false category: main - source: null - build: py310hb6292c7_4 + build: py310hb6292c7_6 + subdir: osx-arm64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 25595 + timestamp: 1688239777128 - name: libopencv version: 4.7.0 manager: conda @@ -2727,24 +3432,30 @@ package: jasper: '>=4.0.0,<5.0a0' harfbuzz: '>=7.3.0,<8.0a0' liblapacke: '>=3.9.0,<4.0a0' - libglib: '>=2.76.2,<3.0a0' + libglib: '>=2.76.3,<3.0a0' freetype: '>=2.12.1,<3.0a0' - hdf5: '>=1.14.0,<1.14.1.0a0' - libwebp-base: '>=1.3.0,<2.0a0' + hdf5: '>=1.14.1,<1.14.2.0a0' + libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=2.1.5.1,<3.0a0' liblapack: '>=3.9.0,<4.0a0' libcxx: '>=15.0.7' - ffmpeg: '>=5.1.2,<6.0a0' - libtiff: '>=4.5.0,<4.6.0a0' + ffmpeg: '>=6.0.0,<7.0a0' + libtiff: '>=4.5.1,<4.6.0a0' + libwebp-base: '>=1.3.1,<2.0a0' numpy: '>=1.21.6,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopencv-4.7.0-py310h7a1b33c_4.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopencv-4.7.0-py310hdc0018b_6.conda hash: - md5: 0b577b07c4190191aadde49ec88e149f - sha256: 70ebe2d15df76a254550e953a297b6dd6117f5bf119fa70fe2e5323c25ca6d97 + md5: b9571858768a7af4ca373b17993cd2c1 + sha256: bcfd2a41c1c6315372380b24fcea7655cae3888c9ac3d8b126917ee6fc97a81b optional: false category: main - source: null - build: py310h7a1b33c_4 + build: py310hdc0018b_6 + subdir: osx-arm64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 16745119 + timestamp: 1688239664030 - name: py-opencv version: 4.7.0 manager: conda @@ -2753,15 +3464,20 @@ package: numpy: '>=1.21.6,<2.0a0' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* *_cp310 - libopencv: ==4.7.0 py310h7a1b33c_4 - url: https://conda.anaconda.org/conda-forge/osx-arm64/py-opencv-4.7.0-py310h69fb684_4.conda + libopencv: ==4.7.0 py310hdc0018b_6 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-opencv-4.7.0-py310h69fb684_6.conda hash: - md5: 962ccc73d26bc008a9d7a2497769364c - sha256: ead9165b921b08359b8cc4b76c5b20fbe2f39664e27e822c8502807781bb3878 + md5: 61a37f27aaf1c8a3c9337745507e66be + sha256: bb4a1150ff65d5921075f5bf84d6702b1a420a53b614641614e99a5b8587c414 optional: false category: main - source: null - build: py310h69fb684_4 + build: py310h69fb684_6 + subdir: osx-arm64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 1152668 + timestamp: 1688239737132 - name: harfbuzz version: 7.3.0 manager: conda @@ -2779,8 +3495,13 @@ package: sha256: 29a2eb09dce14b93687660cf0efcdd2fb879a3786bce17ab73e56fbb05b3d26a optional: false category: main - source: null build: h46e5fef_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 1197980 + timestamp: 1683685100684 - name: libpng version: 1.6.39 manager: conda @@ -2793,21 +3514,57 @@ package: sha256: 21ab8409a8e66f9408b96428c0a36a9768faee9fe623c56614576f9e12962981 optional: false category: main - source: null build: h76d750c_0 + subdir: osx-arm64 + build_number: 0 + license: zlib-acknowledgement + size: 259412 + timestamp: 1669075883972 +- name: libtiff + version: 4.5.1 + manager: conda + platform: osx-arm64 + dependencies: + libdeflate: '>=1.18,<1.19.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + xz: '>=5.2.6,<6.0a0' + libcxx: '>=15.0.7' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.1-h23a1a89_0.conda + hash: + md5: 3bea2e090bd67b6eb1f34d645c2028a1 + sha256: ebb67ac0970b249786cb37a94be41744032fbb68b5536f661a70581a649d381e + optional: false + category: main + build: h23a1a89_0 + subdir: osx-arm64 + build_number: 0 + license: HPND + size: 364553 + timestamp: 1686757144896 - name: libwebp-base - version: 1.3.0 + version: 1.3.1 manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.0-h1a8c8d9_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.1-hb547adb_0.conda hash: - md5: c316f1e4a833d49672f1df3bc015a115 - sha256: f863700d96c722414d2406cfa6108f6d363068112b88d6b0a4b92e5724439070 + md5: 538e751abad9d7ee1bbb5630c679c44d + sha256: eee31a8b2bb5c0b1f950ed334f19f399bac0b0b8830dbe39d6f3b84e3aee21bf optional: false category: main - source: null - build: h1a8c8d9_0 + build: hb547adb_0 + subdir: osx-arm64 + build_number: 0 + constrains: + - libwebp 1.3.1 + license: BSD-3-Clause + license_family: BSD + size: 274105 + timestamp: 1688047313680 - name: libprotobuf version: 3.21.12 manager: conda @@ -2821,8 +3578,30 @@ package: sha256: 1ba3f141e7554b0d0998808b2ba270760e3d4b882839bb24a566ce046d58bbc8 optional: false category: main - source: null build: hb5ab8b9_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 1795574 + timestamp: 1670987082982 +- name: libiconv + version: '1.17' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 + hash: + md5: 686f9c755574aa221f29fbcf36a67265 + sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec + optional: false + category: main + build: he4db4b2_0 + subdir: osx-arm64 + build_number: 0 + license: GPL and LGPL + size: 1407036 + timestamp: 1652700956112 - name: libjpeg-turbo version: 2.1.5.1 manager: conda @@ -2834,8 +3613,14 @@ package: sha256: bda32077e0024630b2348dc1eabc21246b999ece3789e45e6f778c378ec77f08 optional: false category: main - source: null build: h1a8c8d9_0 + subdir: osx-arm64 + build_number: 0 + constrains: + - jpeg <0.0.0a + license: IJG, modified 3-clause BSD and zlib + size: 426518 + timestamp: 1678128003762 - name: graphite2 version: 1.3.13 manager: conda @@ -2848,8 +3633,12 @@ package: sha256: 57db1e563cdfe469cd453a2988039118e96ce4b77c9219e2f1022be0e1c2b03f optional: false category: main - source: null build: h9f76cd9_1001 + subdir: osx-arm64 + build_number: 1001 + license: LGPLv2 + size: 83198 + timestamp: 1604365687923 - name: icu version: '72.1' manager: conda @@ -2861,142 +3650,433 @@ package: sha256: 997835c56e899f4717b6707ab0734c27e7cdd8c735c952334314a7c9d59808e1 optional: false category: main - source: null build: he12128b_0 -- name: jasper - version: 4.0.0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 11700891 + timestamp: 1679315525149 +- name: xz + version: 5.2.6 manager: conda platform: osx-arm64 - dependencies: - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/jasper-4.0.0-hff9eb24_1.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 hash: - md5: 9d1caf2aeb5999a065be26807fd71c03 - sha256: f2c4e2719c247379e3010256a2af6ec54da9b2166b59695c3867900670c97b70 + md5: 39c6b54e94014701dd157f4f576ed211 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec optional: false category: main - source: null - build: hff9eb24_1 -- name: requests - version: 2.31.0 + build: h57fd34a_0 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 235693 + timestamp: 1660346961024 +- name: lerc + version: 4.0.0 manager: conda platform: osx-arm64 dependencies: - certifi: '>=2017.4.17' - python: '>=3.7' - charset-normalizer: '>=2,<4' - urllib3: '>=1.21.1,<3' - idna: '>=2.5,<4' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda - hash: - md5: a30144e4156cdbb236f99ebb49828f8b - sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad - optional: false - category: main - source: null - build: pyhd8ed1ab_0 -- name: libcxx - version: 16.0.6 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda + libcxx: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 hash: - md5: 9d7d724faf0413bf1dbc5a85935700c8 - sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355 + md5: de462d5aacda3b30721b512c5da4e742 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 optional: false category: main - source: null - build: h4653b0c_0 -- name: libzlib - version: 1.2.13 + build: h9a09cb3_0 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 215721 + timestamp: 1657977558796 +- name: libdeflate + version: '1.18' manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.18-h1a8c8d9_0.conda hash: - md5: 1a47f5236db2e06a320ffa0392f81bd8 - sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a + md5: 73ebca3d8666fcfcf28abd74b39b99eb + sha256: a7ef4fd6ca62619397af4f434e69b96dfbc2c4e13080475719a8371bfd73834a optional: false category: main - source: null - build: h53f4e23_5 -- name: freetype - version: 2.12.1 + build: h1a8c8d9_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 48428 + timestamp: 1679647544992 +- name: jasper + version: 4.0.0 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/jasper-4.0.0-hff9eb24_1.conda hash: - md5: 33ea6326e26d1da25eb8dfa768195b82 - sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4 + md5: 9d1caf2aeb5999a065be26807fd71c03 + sha256: f2c4e2719c247379e3010256a2af6ec54da9b2166b59695c3867900670c97b70 optional: false category: main - source: null - build: hd633e50_1 -- name: libglib - version: 2.76.3 + build: hff9eb24_1 + subdir: osx-arm64 + build_number: 1 + license: JasPer-2.0 + size: 583496 + timestamp: 1678300287927 +- name: python + version: 3.10.12 manager: conda platform: osx-arm64 dependencies: - gettext: '>=0.21.1,<1.0a0' - libcxx: '>=15.0.7' - pcre2: '>=10.40,<10.41.0a0' + tzdata: '*' + openssl: '>=3.1.1,<4.0a0' + readline: '>=8.2,<9.0a0' libffi: '>=3.4,<4.0a0' - libiconv: '>=1.17,<2.0a0' + libsqlite: '>=3.42.0,<4.0a0' libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.76.3-h24e9cb9_0.conda + xz: '>=5.2.6,<6.0a0' + tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + ncurses: '>=6.4,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.12-h01493a6_0_cpython.conda hash: - md5: 30b160e9e8ca46b28491ca85eab61dce - sha256: 5b31f80d89224fbfbd0c46b313f6a8d3c43f20f2ae57613cd25d46524a3ca23d + md5: a36e753b6c8875be1242229b3eabe907 + sha256: 318355582595373ee7962383b67b0386541ad13e3734c3ee11331db025613b57 optional: false category: main - source: null - build: h24e9cb9_0 -- name: libiconv - version: '1.17' + build: h01493a6_0_cpython + subdir: osx-arm64 + build_number: 0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + size: 12503692 + timestamp: 1687560425496 +- name: ncurses + version: '6.4' manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda hash: - md5: 686f9c755574aa221f29fbcf36a67265 - sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec + md5: 318337fb9d0c53ba635efb7888242373 + sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 optional: false category: main - source: null - build: he4db4b2_0 -- name: gettext - version: 0.21.1 + build: h7ea286d_0 + subdir: osx-arm64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 799196 + timestamp: 1686077139703 +- name: readline + version: '8.2' manager: conda platform: osx-arm64 dependencies: - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 + ncurses: '>=6.3,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda hash: - md5: 63d2ff6fddfa74e5458488fd311bf635 - sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e + md5: 8cbb776a2f641b943d413b3e19df71f4 + sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 optional: false category: main - source: null - build: h0186832_0 -- name: pcre2 - version: '10.40' + build: h92ec313_1 + subdir: osx-arm64 + build_number: 1 + license: GPL-3.0-only + license_family: GPL + size: 250351 + timestamp: 1679532511311 +- name: tk + version: 8.6.12 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.12,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 - hash: + libzlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 + hash: + md5: 2cb3d18eac154109107f093860bd545f + sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 + optional: false + category: main + build: he1e0b03_0 + subdir: osx-arm64 + build_number: 0 + license: TCL + license_family: BSD + size: 3382710 + timestamp: 1645032642101 +- name: libsqlite + version: 3.42.0 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda + hash: + md5: 6ae1bbf3ae393a45a75685072fffbe8d + sha256: 120913cf0fb694546fbaf95dff211ac5c1e3e91bc69c73350891a05dc106355f + optional: false + category: main + build: hb31c410_0 + subdir: osx-arm64 + build_number: 0 + license: Unlicense + size: 822883 + timestamp: 1684265273102 +- name: requests + version: 2.31.0 + manager: conda + platform: osx-arm64 + dependencies: + certifi: '>=2017.4.17' + python: '>=3.7' + charset-normalizer: '>=2,<4' + urllib3: '>=1.21.1,<3' + idna: '>=2.5,<4' + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + hash: + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + constrains: + - chardet >=3.0.2,<6 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 56690 + timestamp: 1684774408600 +- name: certifi + version: 2023.5.7 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda + hash: + md5: 5d1b71c942b8421285934dad1d891ebc + sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: ISC + noarch: python + size: 152383 + timestamp: 1683450391501 +- name: idna + version: '3.4' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 56742 + timestamp: 1663625484114 +- name: urllib3 + version: 2.0.3 + manager: conda + platform: osx-arm64 + dependencies: + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.7' + brotli-python: '>=1.0.9' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_1.conda + hash: + md5: 89efeecbb24c62e2f1ed0b8ca959ec69 + sha256: 60b64b483b2c662f946837043d95c1a5d90948464a834403b0e3bce373a96a1e + optional: false + category: main + build: pyhd8ed1ab_1 + subdir: noarch + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 98152 + timestamp: 1688005881308 +- name: charset-normalizer + version: 3.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda + hash: + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 45686 + timestamp: 1688813585878 +- name: libcxx + version: 16.0.6 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda + hash: + md5: 9d7d724faf0413bf1dbc5a85935700c8 + sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355 + optional: false + category: main + build: h4653b0c_0 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1160232 + timestamp: 1686896993785 +- name: libzlib + version: 1.2.13 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + hash: + md5: 1a47f5236db2e06a320ffa0392f81bd8 + sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a + optional: false + category: main + build: h53f4e23_5 + subdir: osx-arm64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 48102 + timestamp: 1686575426584 +- name: zstd + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-h4f39d0f_7.conda + hash: + md5: ac4a17e2fb251cbf3bce3aec64668ef2 + sha256: d51d2225da473689dcb5d633f3b60ab60beff74d29a380142da4b684db98dd56 + optional: false + category: main + build: h4f39d0f_7 + subdir: osx-arm64 + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 317319 + timestamp: 1688722265582 +- name: freetype + version: 2.12.1 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda + hash: + md5: 33ea6326e26d1da25eb8dfa768195b82 + sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4 + optional: false + category: main + build: hd633e50_1 + subdir: osx-arm64 + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 572579 + timestamp: 1669233072570 +- name: libglib + version: 2.76.4 + manager: conda + platform: osx-arm64 + dependencies: + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=15.0.7' + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.76.4-h24e9cb9_0.conda + hash: + md5: 6c68bbf6d89e0fd5d12a4c41e1a9e79b + sha256: 27e6c1c2db36e9156212da55ea6dd7c73194d8247549ccca5d6a4b12c0de1b4e + optional: false + category: main + build: h24e9cb9_0 + subdir: osx-arm64 + build_number: 0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2510157 + timestamp: 1688694829858 +- name: gettext + version: 0.21.1 + manager: conda + platform: osx-arm64 + dependencies: + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 + hash: + md5: 63d2ff6fddfa74e5458488fd311bf635 + sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e + optional: false + category: main + build: h0186832_0 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4021036 + timestamp: 1665674192347 +- name: pcre2 + version: '10.40' + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 + hash: md5: 721b7288270bafc83586b0f01c2a67f2 sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe optional: false category: main - source: null build: hb34f9b4_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 1161688 + timestamp: 1665563317371 - name: cairo version: 1.16.0 manager: conda @@ -3017,22 +4097,12 @@ package: sha256: 318cad8770aa5aa14a5808e1d6b39458e11d2c2411254e795269986467f864ea optional: false category: main - source: null build: h1e71087_1016 -- name: fonts-conda-ecosystem - version: '1' - manager: conda - platform: osx-arm64 - dependencies: - fonts-conda-forge: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 - optional: false - category: main - source: null - build: '0' + subdir: osx-arm64 + build_number: 1016 + license: LGPL-2.1-only or MPL-1.1 + size: 996907 + timestamp: 1684639742046 - name: zlib version: 1.2.13 manager: conda @@ -3045,8 +4115,13 @@ package: sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe optional: false category: main - source: null build: h53f4e23_5 + subdir: osx-arm64 + build_number: 5 + license: Zlib + license_family: Other + size: 79577 + timestamp: 1686575471024 - name: fontconfig version: 2.14.2 manager: conda @@ -3061,8 +4136,13 @@ package: sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b optional: false category: main - source: null build: h82840c6_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 237668 + timestamp: 1674829263740 - name: pixman version: 0.40.0 manager: conda @@ -3074,8 +4154,33 @@ package: sha256: a3bde72b3f9344ede1a189612d997f775b503a8eec61fb9720d18551f3c71080 optional: false category: main - source: null build: h27ca646_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 291804 + timestamp: 1604342450513 +- name: fonts-conda-ecosystem + version: '1' + manager: conda + platform: osx-arm64 + dependencies: + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + optional: false + category: main + build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 3667 + timestamp: 1566974674465 - name: fonts-conda-forge version: '1' manager: conda @@ -3091,8 +4196,14 @@ package: sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 optional: false category: main - source: null build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 4102 + timestamp: 1566932280397 - name: font-ttf-dejavu-sans-mono version: '2.37' manager: conda @@ -3104,8 +4215,14 @@ package: sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main - source: null build: hab24e00_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 397370 + timestamp: 1566932522327 - name: font-ttf-ubuntu version: '0.83' manager: conda @@ -3117,21 +4234,14 @@ package: sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main - source: null build: hab24e00_0 -- name: ncurses - version: '6.4' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda - hash: - md5: 318337fb9d0c53ba635efb7888242373 - sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 - optional: false - category: main - source: null - build: h7ea286d_0 + subdir: noarch + build_number: 0 + license: Ubuntu Font Licence Version 1.0 + license_family: Other + noarch: generic + size: 1961279 + timestamp: 1566932680646 - name: python_abi version: '3.10' manager: conda @@ -3143,10 +4253,17 @@ package: sha256: 3f23b0e1656682b0ad1ded4810ba269b610299091c36cf5d516e2dc1162695de optional: false category: main - source: null build: 3_cp310 + subdir: osx-arm64 + build_number: 3 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 5771 + timestamp: 1669071822684 - name: numpy - version: 1.25.0 + version: 1.25.1 manager: conda platform: osx-arm64 dependencies: @@ -3156,23 +4273,29 @@ package: python: '>=3.10,<3.11.0a0 *_cpython' python_abi: 3.10.* *_cp310 libblas: '>=3.9.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.25.0-py310haa1e00c_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.25.1-py310haa1e00c_0.conda hash: - md5: a0335061ed42c8906b86c3a308ac2e3e - sha256: c4a61497f741ddcbdab8781c24995445c355792c63f18b19b6d2f24c5c7ea649 + md5: e6cb6d386238dd8cce9b403b8f91a33f + sha256: 80a838a20e053efe45da5bdad7b21383eda398384caae77453330386c705012a optional: false category: main - source: null build: py310haa1e00c_0 + subdir: osx-arm64 + build_number: 0 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + size: 5634016 + timestamp: 1688887693258 - name: ffmpeg - version: 5.1.2 + version: 6.0.0 manager: conda platform: osx-arm64 dependencies: libxml2: '>=2.11.4,<2.12.0a0' openh264: '>=2.3.1,<2.3.2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' - svt-av1: '>=1.4.1,<1.4.2.0a0' + svt-av1: '>=1.6.0,<1.6.1.0a0' x265: '>=3.5,<3.6.0a0' libzlib: '>=1.2.13,<1.3.0a0' x264: '>=1!164.3095,<1!165' @@ -3189,14 +4312,19 @@ package: bzip2: '>=1.0.8,<2.0a0' libcxx: '>=15.0.7' fonts-conda-ecosystem: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-5.1.2-gpl_he347a24_111.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-6.0.0-gpl_h474fd3e_103.conda hash: - md5: 5e0adc0b2361129eb0ccf94c9370a10e - sha256: 238063d6455b5109394712da6f195a0c08ec1e8d14cf2ac6fd9f1193e5be2af7 + md5: eef82d4fb729b6df23a3891c9f32723a + sha256: c8c1501e283577807ee4642b1c3cd5548a3128f03d39d01c72ad43d8861d3b0e optional: false category: main - source: null - build: gpl_he347a24_111 + build: gpl_h474fd3e_103 + subdir: osx-arm64 + build_number: 103 + license: GPL-2.0-or-later + license_family: GPL + size: 8652656 + timestamp: 1687156267821 - name: gmp version: 6.2.1 manager: conda @@ -3209,8 +4337,12 @@ package: sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 optional: false category: main - source: null build: h9f76cd9_0 + subdir: osx-arm64 + build_number: 0 + license: GPL-2.0-or-later AND LGPL-3.0-or-later + size: 570567 + timestamp: 1605751606013 - name: gnutls version: 3.7.8 manager: conda @@ -3228,8 +4360,13 @@ package: sha256: 7b9b69cb2b3134e064b37948a4cd54dee2184a851c0cda5fe52efcfd90ae032d optional: false category: main - source: null build: h9f1a10d_0 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 2156057 + timestamp: 1664444818581 - name: aom version: 3.5.0 manager: conda @@ -3242,8 +4379,13 @@ package: sha256: 3a238c39da0bb29da396ae9f88655a1a6b05926055539ecc29cef9533671d71c optional: false category: main - source: null build: h7ea286d_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 2485267 + timestamp: 1663808577638 - name: libvpx version: 1.13.0 manager: conda @@ -3256,8 +4398,13 @@ package: sha256: 371a109830e0140e0f346ff540b12c8ecef7cc9a19767adc648b1eba3c4bd7e5 optional: false category: main - source: null build: h7ea286d_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 1085960 + timestamp: 1679760447978 - name: libxml2 version: 2.11.4 manager: conda @@ -3273,22 +4420,32 @@ package: sha256: 8f833df2746b013af73c41621c4b4bf4492de6f4c38352a9b6df21aa0db56ed6 optional: false category: main - source: null build: he3bdae6_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 616595 + timestamp: 1684627412037 - name: svt-av1 - version: 1.4.1 + version: 1.6.0 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-1.4.1-h7ea286d_0.conda + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-1.6.0-hb765f3a_0.conda hash: - md5: c249fb2d81c39843166f20b6a69a99c3 - sha256: b868a00e01cf9a5f5f411fc3e82500a22a910e3c916d06d9c443b2cc96aa93c4 + md5: fdf1dff258a4ab816043e44da9f46a10 + sha256: d53534bf8d0570e0292533dd4d2ef21b227f02257c625b5d114b7054f13c0e1e optional: false category: main - source: null - build: h7ea286d_0 + build: hb765f3a_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 1224901 + timestamp: 1687134992520 - name: dav1d version: 1.2.1 manager: conda @@ -3300,8 +4457,13 @@ package: sha256: 93e077b880a85baec8227e8c72199220c7f87849ad32d02c14fb3807368260b8 optional: false category: main - source: null build: hb547adb_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 316394 + timestamp: 1685695959391 - name: libass version: 0.17.1 manager: conda @@ -3320,8 +4482,13 @@ package: sha256: b163e49c115ee3ec76083bfbde7162a0e0531fbb64b321d559b4d29d19338c75 optional: false category: main - source: null build: h4da34ad_0 + subdir: osx-arm64 + build_number: 0 + license: ISC + license_family: OTHER + size: 110485 + timestamp: 1683177589534 - name: nettle version: 3.8.1 manager: conda @@ -3333,8 +4500,13 @@ package: sha256: 712b4e836060ab26772c343a05d243e7486bb44a39bb5b35f3371e72d7b38a24 optional: false category: main - source: null build: h63371fa_1 + subdir: osx-arm64 + build_number: 1 + license: GPL 2 and LGPL3 + license_family: GPL + size: 537453 + timestamp: 1659085354893 - name: libtasn1 version: 4.19.0 manager: conda @@ -3346,8 +4518,13 @@ package: sha256: 912e96644ea22b49921c71c9c94bcdd2b6463e9313da895c2fcee298a8c0e44c optional: false category: main - source: null build: h1a8c8d9_0 + subdir: osx-arm64 + build_number: 0 + license: GPL-3.0-or-later + license_family: GPL + size: 116745 + timestamp: 1661325945767 - name: p11-kit version: 0.24.1 manager: conda @@ -3361,8 +4538,13 @@ package: sha256: 3e124859307956f9f390f39c74b9700be4843eaaf56891c4b09da75b1bd5b57f optional: false category: main - source: null build: h29577a5_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 890711 + timestamp: 1654869118646 - name: libexpat version: 2.5.0 manager: conda @@ -3374,8 +4556,15 @@ package: sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 optional: false category: main - source: null build: hb7217d7_1 + subdir: osx-arm64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 63442 + timestamp: 1680190916539 - name: fribidi version: 1.0.10 manager: conda @@ -3387,143 +4576,200 @@ package: sha256: 4b37ea851a2cf85edf0a63d2a63266847ec3dcbba4a31156d430cdd6aa811303 optional: false category: main - source: null build: h27ca646_0 -- name: libcblas - version: 3.9.0 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1 + size: 60255 + timestamp: 1604417405528 +- name: hdf5 + version: 1.14.1 manager: conda platform: osx-arm64 dependencies: - libblas: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-17_osxarm64_openblas.conda + libgfortran: 5.* + libcxx: '>=15.0.7' + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=8.1.2,<9.0a0' + libgfortran5: '>=12.2.0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.1-nompi_h3aba7b3_100.conda hash: - md5: cf6f9ca46e3db6b2437024df14046b48 - sha256: d5828db3a507790582815aaf44d54ed6bb07dfce4fd25f92e34b2eb31378a372 + md5: 63a4b53d1a8b258cae8a1ee4312709af + sha256: 428f57a60b27a19b21f3044c0443bf307ef2ff7b50c6985578adce7b019fa104 optional: false category: main - source: null - build: 17_osxarm64_openblas -- name: libblas - version: 3.9.0 + build: nompi_h3aba7b3_100 + subdir: osx-arm64 + build_number: 100 + license: LicenseRef-HDF5 + license_family: BSD + size: 3368654 + timestamp: 1687159144764 +- name: libcurl + version: 8.1.2 manager: conda platform: osx-arm64 dependencies: - libopenblas: '>=0.3.23,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-17_osxarm64_openblas.conda + libssh2: '>=1.10.0,<2.0a0' + libnghttp2: '>=1.52.0,<2.0a0' + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.1.2-h912dcd9_0.conda hash: - md5: 2597bd39632ec57ef3f5ac14865dca09 - sha256: 76c68d59491b449b7608fb5e4a86f3c292c01cf487ce47288a22fc7001a6b150 + md5: af01aa21cd4bb0cf519cda6bcec83fc5 + sha256: 5d5bbc7a6eb363b2df85c5df32d34295346fc8b4d9e3754bbaf2af3e80422fab optional: false category: main - source: null - build: 17_osxarm64_openblas -- name: liblapacke - version: 3.9.0 + build: h912dcd9_0 + subdir: osx-arm64 + build_number: 0 + license: curl + license_family: MIT + size: 345816 + timestamp: 1685448186761 +- name: libnghttp2 + version: 1.52.0 manager: conda platform: osx-arm64 dependencies: - libcblas: ==3.9.0 17_osxarm64_openblas - libblas: ==3.9.0 17_osxarm64_openblas - liblapack: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapacke-3.9.0-17_osxarm64_openblas.conda - hash: - md5: c134445c3c15c057b58dc74cd295f156 - sha256: 3a0283b21be08080632f097b9f9d6faea2bc097d5ce2ce19dd5769b194076f81 - optional: false - category: main - source: null - build: 17_osxarm64_openblas -- name: liblapack + libcxx: '>=14.0.6' + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda + hash: + md5: 1d319e95a0216f801293626a00337712 + sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 + optional: false + category: main + build: hae82a92_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 564295 + timestamp: 1677678452375 +- name: libcblas version: 3.9.0 manager: conda platform: osx-arm64 dependencies: libblas: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-17_osxarm64_openblas.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-17_osxarm64_openblas.conda hash: - md5: d93cc56c1467a5bcf6a4c9c0be469114 - sha256: 7e32d178639c5bcaac4b654438aa364eec8a42f108bc592dda8e52a432b0cdb4 + md5: cf6f9ca46e3db6b2437024df14046b48 + sha256: d5828db3a507790582815aaf44d54ed6bb07dfce4fd25f92e34b2eb31378a372 optional: false category: main - source: null build: 17_osxarm64_openblas -- name: libopenblas - version: 0.3.23 + subdir: osx-arm64 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_osxarm64_openblas + - blas * openblas + - liblapack 3.9.0 17_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14629 + timestamp: 1685931056087 +- name: libblas + version: 3.9.0 manager: conda platform: osx-arm64 dependencies: - libgfortran: 5.* - libgfortran5: '>=11.3.0' - llvm-openmp: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.23-openmp_hc731615_0.conda + libopenblas: '>=0.3.23,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-17_osxarm64_openblas.conda hash: - md5: a40b73e171a91527c79fb1c8b10e3312 - sha256: 7f88475228d306962493a3f1c52637187695f7c9716a68a75e24a8aa910be69a + md5: 2597bd39632ec57ef3f5ac14865dca09 + sha256: 76c68d59491b449b7608fb5e4a86f3c292c01cf487ce47288a22fc7001a6b150 optional: false category: main - source: null - build: openmp_hc731615_0 -- name: libtiff - version: 4.5.1 + build: 17_osxarm64_openblas + subdir: osx-arm64 + build_number: 17 + constrains: + - libcblas 3.9.0 17_osxarm64_openblas + - liblapacke 3.9.0 17_osxarm64_openblas + - blas * openblas + - liblapack 3.9.0 17_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14715 + timestamp: 1685931044178 +- name: liblapacke + version: 3.9.0 manager: conda platform: osx-arm64 dependencies: - libdeflate: '>=1.18,<1.19.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libwebp-base: '>=1.3.0,<2.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - xz: '>=5.2.6,<6.0a0' - libcxx: '>=15.0.7' - lerc: '>=4.0.0,<5.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.1-h23a1a89_0.conda + libcblas: ==3.9.0 17_osxarm64_openblas + libblas: ==3.9.0 17_osxarm64_openblas + liblapack: ==3.9.0 17_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapacke-3.9.0-17_osxarm64_openblas.conda hash: - md5: 3bea2e090bd67b6eb1f34d645c2028a1 - sha256: ebb67ac0970b249786cb37a94be41744032fbb68b5536f661a70581a649d381e + md5: c134445c3c15c057b58dc74cd295f156 + sha256: 3a0283b21be08080632f097b9f9d6faea2bc097d5ce2ce19dd5769b194076f81 optional: false category: main - source: null - build: h23a1a89_0 -- name: lerc - version: 4.0.0 + build: 17_osxarm64_openblas + subdir: osx-arm64 + build_number: 17 + constrains: + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14633 + timestamp: 1685931077409 +- name: liblapack + version: 3.9.0 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 - hash: - md5: de462d5aacda3b30721b512c5da4e742 - sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 - optional: false - category: main - source: null - build: h9a09cb3_0 -- name: libdeflate - version: '1.18' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.18-h1a8c8d9_0.conda + libblas: ==3.9.0 17_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-17_osxarm64_openblas.conda hash: - md5: 73ebca3d8666fcfcf28abd74b39b99eb - sha256: a7ef4fd6ca62619397af4f434e69b96dfbc2c4e13080475719a8371bfd73834a + md5: d93cc56c1467a5bcf6a4c9c0be469114 + sha256: 7e32d178639c5bcaac4b654438aa364eec8a42f108bc592dda8e52a432b0cdb4 optional: false category: main - source: null - build: h1a8c8d9_0 -- name: tzdata - version: 2023c + build: 17_osxarm64_openblas + subdir: osx-arm64 + build_number: 17 + constrains: + - libcblas 3.9.0 17_osxarm64_openblas + - liblapacke 3.9.0 17_osxarm64_openblas + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14640 + timestamp: 1685931066631 +- name: libopenblas + version: 0.3.23 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + dependencies: + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.23-openmp_hc731615_0.conda hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: a40b73e171a91527c79fb1c8b10e3312 + sha256: 7f88475228d306962493a3f1c52637187695f7c9716a68a75e24a8aa910be69a optional: false category: main - source: null - build: h71feb2d_0 + build: openmp_hc731615_0 + subdir: osx-arm64 + build_number: 0 + constrains: + - openblas >=0.3.23,<0.3.24.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2732539 + timestamp: 1681398430140 - name: libffi version: 3.4.2 manager: conda @@ -3535,8 +4781,13 @@ package: sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca optional: false category: main - source: null build: h3422bc3_5 + subdir: osx-arm64 + build_number: 5 + license: MIT + license_family: MIT + size: 39020 + timestamp: 1636488587153 - name: openssl version: 3.1.1 manager: conda @@ -3549,22 +4800,73 @@ package: sha256: 898aac8f8753385e9cd378d539364647d1deb9396032b7c1fd8f0f08107e020b optional: false category: main - source: null build: h53f4e23_1 -- name: libsqlite - version: 3.42.0 + subdir: osx-arm64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2223980 + timestamp: 1685517736396 +- name: krb5 + version: 1.20.1 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda + libedit: '>=3.1.20191231,<4.0a0' + libcxx: '>=14.0.6' + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda hash: - md5: 6ae1bbf3ae393a45a75685072fffbe8d - sha256: 120913cf0fb694546fbaf95dff211ac5c1e3e91bc69c73350891a05dc106355f + md5: a85db53e45b1173f270fc998dd40ec03 + sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 optional: false category: main - source: null - build: hb31c410_0 + build: h69eda48_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 1094005 + timestamp: 1671091920523 +- name: libedit + version: 3.1.20191231 + manager: conda + platform: osx-arm64 + dependencies: + ncurses: '>=6.2,<7.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + hash: + md5: 30e4362988a2623e9eb34337b83e01f9 + sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca + optional: false + category: main + build: hc8eb9b7_2 + subdir: osx-arm64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 96607 + timestamp: 1597616630749 +- name: tzdata + version: 2023c + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + hash: + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + optional: false + category: main + build: h71feb2d_0 + subdir: noarch + build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 - name: font-ttf-inconsolata version: '3.000' manager: conda @@ -3576,8 +4878,14 @@ package: sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c optional: false category: main - source: null build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 96530 + timestamp: 1620479909603 - name: font-ttf-source-code-pro version: '2.038' manager: conda @@ -3589,66 +4897,58 @@ package: sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 optional: false category: main - source: null build: h77eed37_0 -- name: certifi - version: 2023.5.7 - manager: conda - platform: osx-arm64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda - hash: - md5: 5d1b71c942b8421285934dad1d891ebc - sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 - optional: false - category: main - source: null - build: pyhd8ed1ab_0 -- name: idna - version: '3.4' - manager: conda - platform: osx-arm64 - dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main - source: null - build: pyhd8ed1ab_0 -- name: urllib3 - version: 2.0.3 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 700814 + timestamp: 1620479612257 +- name: pysocks + version: 1.7.1 manager: conda platform: osx-arm64 dependencies: - pysocks: '>=1.5.6,<2.0,!=1.5.7' - python: '>=3.7' - brotli: '>=1.0.9' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda + __unix: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 hash: - md5: ae465d0fbf9f1979cb2d8d4043d885e2 - sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b optional: false category: main - source: null - build: pyhd8ed1ab_0 -- name: charset-normalizer - version: 3.1.0 + build: pyha2e5f31_6 + subdir: noarch + build_number: 6 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 18981 + timestamp: 1661604969727 +- name: brotli-python + version: 1.0.9 manager: conda platform: osx-arm64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + python: '>=3.10,<3.11.0a0 *_cpython' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.0.9-py310h0f1eb42_9.conda hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: 907f4a8f11d2e49fcf85322a8b71a188 + sha256: 5a006513c2be8726688ce1f25f88788c59c26c6c0e28d14455c534584b83ed8f optional: false category: main - source: null - build: pyhd8ed1ab_0 + build: py310h0f1eb42_9 + subdir: osx-arm64 + build_number: 9 + constrains: + - libbrotlicommon 1.0.9 h1a8c8d9_9 + license: MIT + license_family: MIT + size: 325644 + timestamp: 1687884931491 - name: libgfortran5 version: 12.2.0 manager: conda @@ -3661,8 +4961,15 @@ package: sha256: 375b6ebafffcc1b0e377559b5ba7cb723634a88b77513ad158982d98ff98c32b optional: false category: main - source: null build: h0eea778_31 + subdir: osx-arm64 + build_number: 31 + constrains: + - libgfortran 5.0.0 *_31 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1049187 + timestamp: 1678488257002 - name: llvm-openmp version: 16.0.6 manager: conda @@ -3674,8 +4981,71 @@ package: sha256: f5cbb852853a7a931716d55e39515876f61fefd0cb4e055f286adc2dc3bc9d2a optional: false category: main - source: null build: h1c12783_0 + subdir: osx-arm64 + build_number: 0 + constrains: + - openmp 16.0.6|16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 268740 + timestamp: 1686865657336 +- name: c-ares + version: 1.19.1 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda + hash: + md5: e7fc7430440d255e3a9c7e5a52f7b294 + sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 + optional: false + category: main + build: hb547adb_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 101998 + timestamp: 1684783026131 +- name: libev + version: '4.33' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 + hash: + md5: 566dbf70fe79eacdb3c3d3d195a27f55 + sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c + optional: false + category: main + build: h642e427_1 + subdir: osx-arm64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 100668 + timestamp: 1598868103393 +- name: libssh2 + version: 1.11.0 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + hash: + md5: 029f7dc931a3b626b94823bc77830b01 + sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 + optional: false + category: main + build: h7a5bd25_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 255610 + timestamp: 1685837894256 - name: expat version: 2.5.0 manager: conda @@ -3688,8 +5058,13 @@ package: sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0 optional: false category: main - source: null build: hb7217d7_1 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 117851 + timestamp: 1680190940654 - name: libidn2 version: 2.3.4 manager: conda @@ -3703,8 +5078,12 @@ package: sha256: 3f2990c33c57559fbf03c5e5b3f3c8e95886548ab4c7fc10314e4514d6632703 optional: false category: main - source: null build: h1a8c8d9_0 + subdir: osx-arm64 + build_number: 0 + license: LGPLv2 + size: 173494 + timestamp: 1666574243937 - name: libunistring version: 0.9.10 manager: conda @@ -3716,23 +5095,31 @@ package: sha256: a1afe12ab199f82f339eae83405d293d197f2485d45346a709703bc7e8299949 optional: false category: main - source: null build: h3422bc3_0 -- name: zstd - version: 1.5.2 + subdir: osx-arm64 + build_number: 0 + license: GPL-3.0-only OR LGPL-3.0-only + size: 1577561 + timestamp: 1626955172521 +- name: libaec + version: 1.0.6 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda hash: - md5: 8f346953ef63bf5fb482488a659adcf3 - sha256: 018989ba028e76abc332c246002e8f5975ff123c68f6116a30da8009b14ea88d + md5: 4f04770bf6f12d22fb6c1d91a04e0c8c + sha256: 9a2209a30923728fd9c430695a2fea9274ac6d357e6bdfa4c7b5aa52122d9e2c optional: false category: main - source: null - build: hf913c23_6 + build: hb7217d7_1 + subdir: osx-arm64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 28016 + timestamp: 1673801257939 - name: lame version: '3.100' manager: conda @@ -3744,8 +5131,13 @@ package: sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c optional: false category: main - source: null build: h1a8c8d9_1003 + subdir: osx-arm64 + build_number: 1003 + license: LGPL-2.0-only + license_family: LGPL + size: 528805 + timestamp: 1664996399305 - name: openh264 version: 2.3.1 manager: conda @@ -3758,8 +5150,13 @@ package: sha256: 36c6dc71bb10245ed93f3cb13280948cc8c6ca525f1639aac9d541726e4c80af optional: false category: main - source: null build: hb7217d7_2 + subdir: osx-arm64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 587729 + timestamp: 1675880932590 - name: x264 version: 1!164.3095 manager: conda @@ -3771,8 +5168,13 @@ package: sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a optional: false category: main - source: null build: h57fd34a_2 + subdir: osx-arm64 + build_number: 2 + license: GPL-2.0-or-later + license_family: GPL + size: 717038 + timestamp: 1660323292329 - name: x265 version: '3.5' manager: conda @@ -3785,8 +5187,13 @@ package: sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d optional: false category: main - source: null build: hbc6ce65_3 + subdir: osx-arm64 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 1832744 + timestamp: 1646609481185 - name: libopus version: 1.3.1 manager: conda @@ -3798,8 +5205,13 @@ package: sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a optional: false category: main - source: null build: h27ca646_1 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 252854 + timestamp: 1606823635137 - name: ca-certificates version: 2023.5.7 manager: conda @@ -3811,252 +5223,32 @@ package: sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5 optional: false category: main - source: null build: hf0a4a13_0 -- name: hdf5 - version: 1.14.0 + subdir: osx-arm64 + build_number: 0 + license: ISC + size: 148524 + timestamp: 1683451885269 +- name: bzip2 + version: 1.0.8 manager: conda platform: osx-arm64 - dependencies: - libgfortran: 5.* - libcxx: '>=14.0.6' - libaec: '>=1.0.6,<2.0a0' - libcurl: '>=7.88.1,<9.0a0' - libgfortran5: '>=12.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.8,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.0-nompi_h6b85c65_103.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 hash: - md5: faf772fbfc8c89d2874e32cbee498aa5 - sha256: 9e6721e487b2b5d700312897adaf19caa6a87da15f221bf06d8cfa05d29718f9 + md5: fc76ace7b94fb1f694988ab1b14dd248 + sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 optional: false category: main - source: null - build: nompi_h6b85c65_103 -- name: pysocks - version: 1.7.1 - manager: conda - platform: osx-arm64 - dependencies: - __unix: '*' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - optional: false - category: main - source: null - build: pyha2e5f31_6 -- name: brotli - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: - libbrotlienc: ==1.0.9 h1a8c8d9_8 - brotli-bin: ==1.0.9 h1a8c8d9_8 - libbrotlidec: ==1.0.9 h1a8c8d9_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2 - hash: - md5: e2a5e381ddd6529eb62e7710270b2ec5 - sha256: f97debd05c2caeeefba22e0b71173f1fff99c1e5e66e6e9caa91c1c66eb59741 - optional: false - category: main - source: null - build: h1a8c8d9_8 -- name: brotli-bin - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: - libbrotlienc: ==1.0.9 h1a8c8d9_8 - libbrotlidec: ==1.0.9 h1a8c8d9_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2 - hash: - md5: f212620a4f3606ff8f800b8b1077415a - sha256: d171637710bffc322b35198c03bcfd3d04f454433e845138e5120729f8941996 - optional: false - category: main - source: null - build: h1a8c8d9_8 -- name: libbrotlidec - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: - libbrotlicommon: ==1.0.9 h1a8c8d9_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2 - hash: - md5: 640ea7b788cdd0420409bd8479f023f9 - sha256: a0a52941eb59369a8b33b01b41bcf56efd313850c583f4814e2db59448439880 - optional: false - category: main - source: null - build: h1a8c8d9_8 -- name: libbrotlienc - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: - libbrotlicommon: ==1.0.9 h1a8c8d9_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2 - hash: - md5: 572907b78be867937c258421bc0807a8 - sha256: c5f65062cd41d5f5fd93eadd276885efbe7ce7c9346155852d4f5b619f8a166f - optional: false - category: main - source: null - build: h1a8c8d9_8 -- name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2 - hash: - md5: 84eb0c3c995a865079080d092e4a3c06 - sha256: 1bd70570aee08fe0274dd46879d0b4c36c662c18d3afc03c41c375c84658af88 - optional: false - category: main - source: null - build: h1a8c8d9_8 -- name: libcurl - version: 8.1.2 - manager: conda - platform: osx-arm64 - dependencies: - libssh2: '>=1.10.0,<2.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - openssl: '>=3.1.0,<4.0a0' - krb5: '>=1.20.1,<1.21.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.1.2-h912dcd9_0.conda - hash: - md5: af01aa21cd4bb0cf519cda6bcec83fc5 - sha256: 5d5bbc7a6eb363b2df85c5df32d34295346fc8b4d9e3754bbaf2af3e80422fab - optional: false - category: main - source: null - build: h912dcd9_0 -- name: krb5 - version: 1.20.1 - manager: conda - platform: osx-arm64 - dependencies: - libedit: '>=3.1.20191231,<4.0a0' - libcxx: '>=14.0.6' - openssl: '>=3.0.7,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda - hash: - md5: a85db53e45b1173f270fc998dd40ec03 - sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 - optional: false - category: main - source: null - build: h69eda48_0 -- name: libnghttp2 - version: 1.52.0 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=14.0.6' - c-ares: '>=1.18.1,<2.0a0' - libev: '>=4.33,<4.34.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.8,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda - hash: - md5: 1d319e95a0216f801293626a00337712 - sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 - optional: false - category: main - source: null - build: hae82a92_0 -- name: libedit - version: 3.1.20191231 - manager: conda - platform: osx-arm64 - dependencies: - ncurses: '>=6.2,<7.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - hash: - md5: 30e4362988a2623e9eb34337b83e01f9 - sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca - optional: false - category: main - source: null - build: hc8eb9b7_2 -- name: libaec - version: 1.0.6 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda - hash: - md5: 4f04770bf6f12d22fb6c1d91a04e0c8c - sha256: 9a2209a30923728fd9c430695a2fea9274ac6d357e6bdfa4c7b5aa52122d9e2c - optional: false - category: main - source: null - build: hb7217d7_1 -- name: c-ares - version: 1.19.1 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda - hash: - md5: e7fc7430440d255e3a9c7e5a52f7b294 - sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 - optional: false - category: main - source: null - build: hb547adb_0 -- name: libev - version: '4.33' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 - hash: - md5: 566dbf70fe79eacdb3c3d3d195a27f55 - sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c - optional: false - category: main - source: null - build: h642e427_1 -- name: libssh2 - version: 1.11.0 - manager: conda - platform: osx-arm64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - hash: - md5: 029f7dc931a3b626b94823bc77830b01 - sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 - optional: false - category: main - source: null - build: h7a5bd25_0 -- name: bzip2 - version: 1.0.8 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 - hash: - md5: fc76ace7b94fb1f694988ab1b14dd248 - sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 - optional: false - category: main - source: null - build: h3422bc3_4 -- name: libgfortran - version: 5.0.0 + build: h3422bc3_4 + subdir: osx-arm64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 151850 + timestamp: 1618862645215 +- name: libgfortran + version: 5.0.0 manager: conda platform: osx-arm64 dependencies: @@ -4067,77 +5259,34 @@ package: sha256: 1abde945c2c7377aec9f2f648d9cc1fcb5f818a1e0caf53f8188b1182cbc1332 optional: false category: main - source: null build: 12_2_0_hd922786_31 -- name: python - version: 3.10.11 - manager: conda - platform: win-64 - dependencies: - tzdata: '*' - openssl: '>=3.1.0,<4.0a0' - libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.41.2,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.1,<15' - tk: '>=8.6.12,<8.7.0a0' - bzip2: '>=1.0.8,<2.0a0' - vc14_runtime: '>=14.16.27033' - xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.11-h4de0772_0_cpython.conda - hash: - md5: db564a923e0197854756c727ad3e4b8f - sha256: 1a437ff15647fe8566e6ae2118945080b8cbaebe95bc50d3fb65c1cbefffc22f - optional: false - category: main - source: null - build: h4de0772_0_cpython -- name: tk - version: 8.6.12 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 - hash: - md5: c69a5047cc9291ae40afd4a1ad6f0c0f - sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 - optional: false - category: main - source: null - build: h8ffe710_0 -- name: xz - version: 5.2.6 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 - hash: - md5: 515d77642eaa3639413c6b1bc3f94219 - sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 - optional: false - category: main - source: null - build: h8d14728_0 + subdir: osx-arm64 + build_number: 31 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 160260 + timestamp: 1678488316051 - name: opencv version: 4.7.0 manager: conda platform: win-64 dependencies: - py-opencv: ==4.7.0 py310hbbfc1a7_4 + py-opencv: ==4.7.0 py310hbbfc1a7_6 python_abi: 3.10.* *_cp310 - libopencv: ==4.7.0 py310h74ad70b_4 - url: https://conda.anaconda.org/conda-forge/win-64/opencv-4.7.0-py310h5588dad_4.conda + libopencv: ==4.7.0 py310hea656e8_6 + url: https://conda.anaconda.org/conda-forge/win-64/opencv-4.7.0-py310h5588dad_6.conda hash: - md5: cc83e2be1f9ae7bad1fa52f7cafaca28 - sha256: 936b87de53ece135c8e2beb3e538bb5072fe60c9fdb238f2b0b86cfbe16dbc4e + md5: 8098273233b90bdfa322640943652c1c + sha256: 882f3915f1745f7fa35c4e7a279f0cf0d310849160428eba2d19a422244204ae optional: false category: main - source: null - build: py310h5588dad_4 + build: py310h5588dad_6 + subdir: win-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 25840 + timestamp: 1688238202564 - name: libopencv version: 4.7.0 manager: conda @@ -4154,22 +5303,27 @@ package: harfbuzz: '>=7.3.0,<8.0a0' liblapacke: '>=3.9.0,<4.0a0' freetype: '>=2.12.1,<3.0a0' - hdf5: '>=1.14.0,<1.14.1.0a0' - libwebp-base: '>=1.3.0,<2.0a0' + hdf5: '>=1.14.1,<1.14.2.0a0' + libwebp-base: '>=1.3.1,<2.0a0' libjpeg-turbo: '>=2.1.5.1,<3.0a0' liblapack: '>=3.9.0,<4.0a0' - libtiff: '>=4.5.0,<4.6.0a0' - ffmpeg: '>=5.1.2,<6.0a0' + libtiff: '>=4.5.1,<4.6.0a0' + ffmpeg: '>=6.0.0,<7.0a0' numpy: '>=1.21.6,<2.0a0' vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libopencv-4.7.0-py310h74ad70b_4.conda + url: https://conda.anaconda.org/conda-forge/win-64/libopencv-4.7.0-py310hea656e8_6.conda hash: - md5: 18536aa1f447a3a2b0b47d4ca4678168 - sha256: 73a9e6f45d57c00b62937c9cd99cc30bc97d5f17090d15a7bf759a4ffaa63a62 + md5: 57f9d6138d00a5854250f5ad7904b1a9 + sha256: a03242a190ca806a64fd23d95c7a50336896ee1f3c84254463e63b1a16b3442e optional: false category: main - source: null - build: py310h74ad70b_4 + build: py310hea656e8_6 + subdir: win-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 32358137 + timestamp: 1688238038986 - name: py-opencv version: 4.7.0 manager: conda @@ -4178,15 +5332,20 @@ package: numpy: '>=1.21.6,<2.0a0' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* *_cp310 - libopencv: ==4.7.0 py310h74ad70b_4 - url: https://conda.anaconda.org/conda-forge/win-64/py-opencv-4.7.0-py310hbbfc1a7_4.conda + libopencv: ==4.7.0 py310hea656e8_6 + url: https://conda.anaconda.org/conda-forge/win-64/py-opencv-4.7.0-py310hbbfc1a7_6.conda hash: - md5: 35cdfcece2dbf052d54db64a3cd6a607 - sha256: d9a85d1da41861119080b61db8ea74e330e575f88ff0e4125eda6b033f04bd8c + md5: c5f121ef7191a70b6ab23e6facb823a3 + sha256: 6be643831a86276e7838c38959b1b36ddecee6b3f09b61bd7552b549b65a2bc7 optional: false category: main - source: null - build: py310hbbfc1a7_4 + build: py310hbbfc1a7_6 + subdir: win-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 1152845 + timestamp: 1688238178759 - name: libpng version: 1.6.39 manager: conda @@ -4202,8 +5361,38 @@ package: sha256: 1f139a72109366ba1da69f5bdc569b0e6783f887615807c02d7bfcc2c7575067 optional: false category: main - source: null build: h19919ed_0 + subdir: win-64 + build_number: 0 + license: zlib-acknowledgement + size: 343883 + timestamp: 1669076173145 +- name: libtiff + version: 4.5.1 + manager: conda + platform: win-64 + dependencies: + libdeflate: '>=1.18,<1.19.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc14_runtime: '>=14.29.30139' + vc: '>=14.2,<15' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + ucrt: '>=10.0.20348.0' + xz: '>=5.2.6,<6.0a0' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.1-h6c8260b_0.conda + hash: + md5: cc46fe88f82f9c98bd6858b3f6efb4e0 + sha256: 688e813d61e0d5dff284ef95c53b5c0acf950bbc1df97def4a4a33bbf1bb2fab + optional: false + category: main + build: h6c8260b_0 + subdir: win-64 + build_number: 0 + license: HPND + size: 954786 + timestamp: 1686757228686 - name: libjpeg-turbo version: 2.1.5.1 manager: conda @@ -4218,24 +5407,37 @@ package: sha256: 42a874448d060b59f9b5c900b260c992df9543da55c2ac9537b442450d6e6497 optional: false category: main - source: null build: hcfcfb64_0 + subdir: win-64 + build_number: 0 + constrains: + - jpeg <0.0.0a + license: IJG, modified 3-clause BSD and zlib + size: 688076 + timestamp: 1678128177975 - name: libwebp-base - version: 1.3.0 + version: 1.3.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.0-hcfcfb64_0.conda + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.1-hcfcfb64_0.conda hash: - md5: 381a3645c51cbf478872899b16490318 - sha256: 9355940270db76592a1cdbcb840740afb5f6b81d167ac4f2cb0fbb2c37397566 + md5: f89e765213cac556a8ed72ba8c1b5071 + sha256: 1652438917a14bf67c1dc5a94a431f45fece7837c016a7144979a50924faa1b7 optional: false category: main - source: null build: hcfcfb64_0 + subdir: win-64 + build_number: 0 + constrains: + - libwebp 1.3.1 + license: BSD-3-Clause + license_family: BSD + size: 268638 + timestamp: 1688047352914 - name: libprotobuf version: 3.21.12 manager: conda @@ -4251,8 +5453,13 @@ package: sha256: 78340c88bcf39d0968a47509e8d15b30805dd8e3dda77eb67b30c10d3a552a32 optional: false category: main - source: null build: h12be248_0 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2085473 + timestamp: 1670987313092 - name: harfbuzz version: 7.3.0 manager: conda @@ -4272,24 +5479,143 @@ package: sha256: b9ffdff0a9fc6f0dfab67eba16df6021c0ca43da834151901926acbf6d89fcb1 optional: false category: main - source: null build: h196d34a_0 -- name: icu - version: '72.1' + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 979003 + timestamp: 1683684687582 +- name: hdf5 + version: 1.14.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=8.1.2,<9.0a0' + openssl: '>=3.1.1,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/icu-72.1-h63175ca_0.conda + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.1-nompi_h73e8ff5_100.conda hash: - md5: a108731562663d787066bd17c9595114 + md5: baa1a74c11b8b3bd353590602c84aba7 + sha256: 77c72068101ec885527fc00928b4926ffadacb63b36afd7ed36bdafdcca43709 + optional: false + category: main + build: nompi_h73e8ff5_100 + subdir: win-64 + build_number: 100 + license: LicenseRef-HDF5 + license_family: BSD + size: 2028733 + timestamp: 1687158896543 +- name: xz + version: 5.2.6 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + hash: + md5: 515d77642eaa3639413c6b1bc3f94219 + sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 + optional: false + category: main + build: h8d14728_0 + subdir: win-64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 217804 + timestamp: 1660346976440 +- name: lerc + version: 4.0.0 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30037' + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + hash: + md5: 1900cb3cab5055833cfddb0ba233b074 + sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + optional: false + category: main + build: h63175ca_0 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 194365 + timestamp: 1657977692274 +- name: libdeflate + version: '1.18' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.18-hcfcfb64_0.conda + hash: + md5: 493acc14c556ef6f1d13ba00b099c679 + sha256: 9a9a1a6e47777c9bf6086d88f6567ed3fc32d4f849b3d42b51bbf0b9fa4727f7 + optional: false + category: main + build: hcfcfb64_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 152345 + timestamp: 1679647873728 +- name: icu + version: '72.1' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/icu-72.1-h63175ca_0.conda + hash: + md5: a108731562663d787066bd17c9595114 sha256: 06ceff1f021f4a540a6b5c8a037b79b3d98757b1f9659a4b08ad352912b8ef2e optional: false category: main - source: null build: h63175ca_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 13209837 + timestamp: 1679314799856 +- name: libcurl + version: 8.1.2 + manager: conda + platform: win-64 + dependencies: + libssh2: '>=1.10.0,<2.0a0' + ucrt: '>=10.0.20348.0' + vc14_runtime: '>=14.29.30139' + krb5: '>=1.20.1,<1.21.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.1.2-h68f0423_0.conda + hash: + md5: 94b9b7d0e882461fdb72d8d4e7441746 + sha256: a9d21b363c6d3c81ec85903f86989157e7d93d8f247e023ff3b3f69789115a72 + optional: false + category: main + build: h68f0423_0 + subdir: win-64 + build_number: 0 + license: curl + license_family: MIT + size: 313345 + timestamp: 1685448211604 - name: jasper version: 4.0.0 manager: conda @@ -4306,8 +5632,81 @@ package: sha256: 00862dead62e48c09d8c45276b56da690266bbe358a0b75f8770524497729acf optional: false category: main - source: null build: h00710e9_1 + subdir: win-64 + build_number: 1 + license: JasPer-2.0 + size: 441066 + timestamp: 1678300287523 +- name: python + version: 3.10.12 + manager: conda + platform: win-64 + dependencies: + tzdata: '*' + openssl: '>=3.1.1,<4.0a0' + libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.42.0,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.1,<15' + tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + vc14_runtime: '>=14.16.27033' + xz: '>=5.2.6,<6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.12-h4de0772_0_cpython.conda + hash: + md5: 14273454ca348a123ce09ab9d39c1a6e + sha256: 02ee08f3f27488b76155535e43fc99ef491ccc21f28001c3cde9b134e8aa0b94 + optional: false + category: main + build: h4de0772_0_cpython + subdir: win-64 + build_number: 0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + size: 16002560 + timestamp: 1687560007019 +- name: tk + version: 8.6.12 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 + hash: + md5: c69a5047cc9291ae40afd4a1ad6f0c0f + sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 + optional: false + category: main + build: h8ffe710_0 + subdir: win-64 + build_number: 0 + license: TCL + license_family: BSD + size: 3681762 + timestamp: 1645033031535 +- name: libsqlite + version: 3.42.0 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.42.0-hcfcfb64_0.conda + hash: + md5: 9a71d93deb99cc09d8939d5235b5909a + sha256: 70bc1fdb72de847807355c13144666d4f151894f9b141ee559f5d243bdf577e2 + optional: false + category: main + build: hcfcfb64_0 + subdir: win-64 + build_number: 0 + license: Unlicense + size: 839797 + timestamp: 1684265312954 - name: requests version: 2.31.0 manager: conda @@ -4324,36 +5723,79 @@ package: sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + constrains: + - chardet >=3.0.2,<6 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 56690 + timestamp: 1684774408600 +- name: libzlib + version: 1.2.13 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda + hash: + md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 + sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 + optional: false + category: main + build: hcfcfb64_5 + subdir: win-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 55800 + timestamp: 1686575452215 - name: vc14_runtime - version: 14.34.31931 + version: 14.36.32532 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.34.31931-h5081d32_16.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hfdfe4a8_17.conda hash: - md5: 22125178654c6a8a393f9743d585704b - sha256: 1161f4848e1c0663897a6324fbc4ff13dafd11650b42c9864428da73593dda95 + md5: 91c1ecaf3996889532fc0456178b1058 + sha256: e76986c555647347a0185e646ef65625dabed60da255f6b30367df8bd6dc6cd8 optional: false category: main - source: null - build: h5081d32_16 + build: hfdfe4a8_17 + subdir: win-64 + build_number: 17 + constrains: + - vs2015_runtime 14.36.32532.* *_17 + license: LicenseRef-ProprietaryMicrosoft + license_family: Proprietary + size: 740599 + timestamp: 1688020615962 - name: vs2015_runtime - version: 14.34.31931 + version: 14.36.32532 manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.34.31931' - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-hed1258a_16.conda + vc14_runtime: '>=14.36.32532' + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda hash: - md5: 0374eae69b6dbfb27c3dc27167109eb4 - sha256: 25d852887a501ca8cb6753a4f3dae1549fa49592d51aec1a230b1f0c85fe4297 + md5: 4618046c39f7c81861e53ded842e738a + sha256: 5ecbd731dc7f13762d67be0eadc47eb7f14713005e430d9b5fc680e965ac0f81 optional: false category: main - source: null - build: hed1258a_16 + build: h05e6639_17 + subdir: win-64 + build_number: 17 + license: BSD-3-Clause + license_family: BSD + size: 17207 + timestamp: 1688020635322 - name: ucrt version: 10.0.22621.0 manager: conda @@ -4365,8 +5807,105 @@ package: sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 optional: false category: main - source: null build: h57928b3_0 + subdir: win-64 + build_number: 0 + constrains: + - vs2015_runtime >=14.29.30037 + license: LicenseRef-Proprietary + license_family: PROPRIETARY + size: 1283972 + timestamp: 1666630199266 +- name: libssh2 + version: 1.11.0 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + openssl: '>=3.1.1,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + hash: + md5: dc262d03aae04fe26825062879141a41 + sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec + optional: false + category: main + build: h7dfc565_0 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 266806 + timestamp: 1685838242099 +- name: openssl + version: 3.1.1 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + ca-certificates: '*' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.1-hcfcfb64_1.conda + hash: + md5: 1d913a5de46c6b2f7e4cfbd26b106b8b + sha256: 4424486fb9a2aeaba912a8dd8a5b5cdb6fcd65d7708fd854e3ea27449bb352a3 + optional: false + category: main + build: hcfcfb64_1 + subdir: win-64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 7415451 + timestamp: 1685519134254 +- name: krb5 + version: 1.20.1 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + openssl: '>=3.0.7,<4.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda + hash: + md5: a07b05ee8f451ab15698397185efe989 + sha256: 429edc4fa9e2420c55cdbd9febb154d2358bf662735efda4372f62142ff310cd + optional: false + category: main + build: heb0366b_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 717332 + timestamp: 1671092419752 +- name: libaec + version: 1.0.6 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda + hash: + md5: f98474a8245f55f4a273889dbe7bf193 + sha256: 441f580f90279bd62bd27fb82d0bbbb2c2d9f850fcc4c8781f199c5287cd1499 + optional: false + category: main + build: h63175ca_1 + subdir: win-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 34719 + timestamp: 1673799892542 - name: freetype version: 2.12.1 manager: conda @@ -4382,10 +5921,14 @@ package: sha256: fe027235660d9dfe7889c350a51e96bc0134c3f408827a4c58c4b0557409984c optional: false category: main - source: null build: h546665d_1 + subdir: win-64 + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 497412 + timestamp: 1669233360876 - name: libglib - version: 2.76.3 + version: 2.76.4 manager: conda platform: win-64 dependencies: @@ -4397,14 +5940,20 @@ package: libzlib: '>=1.2.13,<1.3.0a0' gettext: '>=0.21.1,<1.0a0' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.76.3-he8f3873_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.76.4-he8f3873_0.conda hash: - md5: 4695e6acaf4790170161048d56cb51fc - sha256: 170d42dcf0c73f5846dfb0c4a241c065cd9830c644d98042f076f25c309e7571 + md5: 8c3f24acdc0403eeb3fb42ab75e8a659 + sha256: 4d7b96d0ed8b46df5ccd5de7e726c1ed81c9dc4526460e7608d9dbdbb8ac18f5 optional: false category: main - source: null build: he8f3873_0 + subdir: win-64 + build_number: 0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2612308 + timestamp: 1688695049371 - name: libiconv version: '1.17' manager: conda @@ -4418,8 +5967,12 @@ package: sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1 optional: false category: main - source: null build: h8ffe710_0 + subdir: win-64 + build_number: 0 + license: GPL and LGPL + size: 714518 + timestamp: 1652702326553 - name: gettext version: 0.21.1 manager: conda @@ -4432,8 +5985,12 @@ package: sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616 optional: false category: main - source: null build: h5728263_0 + subdir: win-64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 5579416 + timestamp: 1665676022441 - name: pcre2 version: '10.40' manager: conda @@ -4450,8 +6007,13 @@ package: sha256: 5833c63548e4fae91da6d77739eab7dc9bf6542e43f105826b23c01bfdd9cb57 optional: false category: main - source: null build: h17e33f8_0 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2001630 + timestamp: 1665563527916 - name: graphite2 version: 1.3.13 manager: conda @@ -4464,8 +6026,12 @@ package: sha256: ed47008df8e57a83f45112985b76ac4339177486bd4d1d1b305d685a832532aa optional: false category: main - source: null build: '1000' + subdir: win-64 + build_number: 1000 + license: LGPLv2 + size: 99391 + timestamp: 1545518639227 - name: cairo version: 1.16.0 manager: conda @@ -4489,8 +6055,12 @@ package: sha256: a0e37d9fdd4069141889ab78154ed0dcee5417fe8fcd3585a744993660a7adc0 optional: false category: main - source: null build: hdecc03f_1016 + subdir: win-64 + build_number: 1016 + license: LGPL-2.1-only or MPL-1.1 + size: 1608495 + timestamp: 1684639521032 - name: fonts-conda-ecosystem version: '1' manager: conda @@ -4503,8 +6073,36 @@ package: sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 optional: false category: main - source: null build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 3667 + timestamp: 1566974674465 +- name: zlib + version: 1.2.13 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + libzlib: ==1.2.13 hcfcfb64_5 + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda + hash: + md5: a318e8622e11663f645cc7fa3260f462 + sha256: 0f91b719c7558046bcd37fdc7ae4b9eb2b7a8e335beb8b59ae7ccb285a46aa46 + optional: false + category: main + build: hcfcfb64_5 + subdir: win-64 + build_number: 5 + license: Zlib + license_family: Other + size: 107711 + timestamp: 1686575474476 - name: fontconfig version: 2.14.2 manager: conda @@ -4523,8 +6121,13 @@ package: sha256: 643f2b95be68abeb130c53d543dcd0c1244bebabd58c774a21b31e4b51ac3c96 optional: false category: main - source: null build: hbde0cde_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 190111 + timestamp: 1674829354122 - name: pixman version: 0.40.0 manager: conda @@ -4538,8 +6141,13 @@ package: sha256: 7f0ceed590a717ddc7612f67657119df1e6df0d031a822b570d741a89a3ba784 optional: false category: main - source: null build: h8ffe710_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 493231 + timestamp: 1604342509224 - name: fonts-conda-forge version: '1' manager: conda @@ -4555,8 +6163,14 @@ package: sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 optional: false category: main - source: null build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 4102 + timestamp: 1566932280397 - name: font-ttf-dejavu-sans-mono version: '2.37' manager: conda @@ -4568,8 +6182,14 @@ package: sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main - source: null build: hab24e00_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 397370 + timestamp: 1566932522327 - name: font-ttf-ubuntu version: '0.83' manager: conda @@ -4581,41 +6201,14 @@ package: sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main - source: null build: hab24e00_0 -- name: libzlib - version: 1.2.13 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda - hash: - md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 - sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 - optional: false - category: main - source: null - build: hcfcfb64_5 -- name: zlib - version: 1.2.13 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - libzlib: ==1.2.13 hcfcfb64_5 - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda - hash: - md5: a318e8622e11663f645cc7fa3260f462 - sha256: 0f91b719c7558046bcd37fdc7ae4b9eb2b7a8e335beb8b59ae7ccb285a46aa46 - optional: false - category: main - source: null - build: hcfcfb64_5 + subdir: noarch + build_number: 0 + license: Ubuntu Font Licence Version 1.0 + license_family: Other + noarch: generic + size: 1961279 + timestamp: 1566932680646 - name: freeglut version: 3.2.2 manager: conda @@ -4630,23 +6223,32 @@ package: sha256: 42fd40d97dab1adb63ff0bb001e4ed9b3eef377a2de5e572bf989c6db79262c8 optional: false category: main - source: null build: h63175ca_2 -- name: python_abi - version: '3.10' + subdir: win-64 + build_number: 2 + license: MIT + license_family: MIT + size: 111787 + timestamp: 1684688787619 +- name: ca-certificates + version: 2023.5.7 manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-3_cp310.conda + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.5.7-h56e8100_0.conda hash: - md5: f4cfd883c0d91bb17164d8e34f4900d5 - sha256: 8212c6f1a68d5a494bcde5cd64196626024059dcbe8995469c8a5ed32694efa0 - optional: false + md5: 604212634bd8c4d6f20d44b946e8eedb + sha256: d0488a3e7a86cc11f8c847a7c12a5f1fb8567f05646faae78944807862f9d167 + optional: false category: main - source: null - build: 3_cp310 + build: h56e8100_0 + subdir: win-64 + build_number: 0 + license: ISC + size: 148581 + timestamp: 1683451822049 - name: numpy - version: 1.25.0 + version: 1.25.1 manager: conda platform: win-64 dependencies: @@ -4658,67 +6260,40 @@ package: libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.25.0-py310hd02465a_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.25.1-py310hd02465a_0.conda hash: - md5: 63be5dd380067c6db32243e6ca56e8e8 - sha256: 2acd83d05b9095927dd7b147ac14140f13a97b45bdac1762d97f2009b2dfda77 + md5: 922f75b8698c5b9909bf03c658898117 + sha256: 25e07d23dd78641537082fd9b0c4183784fcc1d84c65f207d6e2e7ede7702c8f optional: false category: main - source: null build: py310hd02465a_0 -- name: libtiff - version: 4.5.1 - manager: conda - platform: win-64 - dependencies: - libdeflate: '>=1.18,<1.19.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc14_runtime: '>=14.29.30139' - vc: '>=14.2,<15' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - ucrt: '>=10.0.20348.0' - xz: '>=5.2.6,<6.0a0' - lerc: '>=4.0.0,<5.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.1-h6c8260b_0.conda - hash: - md5: cc46fe88f82f9c98bd6858b3f6efb4e0 - sha256: 688e813d61e0d5dff284ef95c53b5c0acf950bbc1df97def4a4a33bbf1bb2fab - optional: false - category: main - source: null - build: h6c8260b_0 -- name: lerc - version: 4.0.0 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30037' - url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 - hash: - md5: 1900cb3cab5055833cfddb0ba233b074 - sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 - optional: false - category: main - source: null - build: h63175ca_0 -- name: libdeflate - version: '1.18' + subdir: win-64 + build_number: 0 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + size: 5985520 + timestamp: 1688887651966 +- name: python_abi + version: '3.10' manager: conda platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.18-hcfcfb64_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-3_cp310.conda hash: - md5: 493acc14c556ef6f1d13ba00b099c679 - sha256: 9a9a1a6e47777c9bf6086d88f6567ed3fc32d4f849b3d42b51bbf0b9fa4727f7 + md5: f4cfd883c0d91bb17164d8e34f4900d5 + sha256: 8212c6f1a68d5a494bcde5cd64196626024059dcbe8995469c8a5ed32694efa0 optional: false category: main - source: null - build: hcfcfb64_0 + build: 3_cp310 + subdir: win-64 + build_number: 3 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6130 + timestamp: 1669071917673 - name: liblapacke version: 3.9.0 manager: conda @@ -4733,8 +6308,15 @@ package: sha256: 41edcf08345477f661675bf2595ae4c523b88bb712ded4d5a9bc40b0fdd1f10a optional: false category: main - source: null build: 17_win64_mkl + subdir: win-64 + build_number: 17 + constrains: + - blas * mkl + license: BSD-3-Clause + license_family: BSD + size: 3655599 + timestamp: 1685931297271 - name: libblas version: 3.9.0 manager: conda @@ -4747,8 +6329,18 @@ package: sha256: 56c5394e80c429acfee53a075e3d1b6ccd8c294510084cd6a2a4b7d8cc80abfb optional: false category: main - source: null build: 17_win64_mkl + subdir: win-64 + build_number: 17 + constrains: + - libcblas 3.9.0 17_win64_mkl + - liblapack 3.9.0 17_win64_mkl + - liblapacke 3.9.0 17_win64_mkl + - blas * mkl + license: BSD-3-Clause + license_family: BSD + size: 3655884 + timestamp: 1685931194813 - name: libcblas version: 3.9.0 manager: conda @@ -4761,8 +6353,17 @@ package: sha256: 5b9914c3b95d947a613a9b6d3c1c1515257a61e7838a1f2484927f0c9fe23063 optional: false category: main - source: null build: 17_win64_mkl + subdir: win-64 + build_number: 17 + constrains: + - liblapack 3.9.0 17_win64_mkl + - liblapacke 3.9.0 17_win64_mkl + - blas * mkl + license: BSD-3-Clause + license_family: BSD + size: 3655926 + timestamp: 1685931229487 - name: liblapack version: 3.9.0 manager: conda @@ -4775,8 +6376,17 @@ package: sha256: 68922a63d92a414af06b208136c9304be179c6fc911e8636430b0e15c0a9aa3b optional: false category: main - source: null build: 17_win64_mkl + subdir: win-64 + build_number: 17 + constrains: + - libcblas 3.9.0 17_win64_mkl + - liblapacke 3.9.0 17_win64_mkl + - blas * mkl + license: BSD-3-Clause + license_family: BSD + size: 3655939 + timestamp: 1685931263174 - name: mkl version: 2022.1.0 manager: conda @@ -4790,62 +6400,58 @@ package: sha256: b130d13dba6a798cbcce8f19c52e9765b75b8668d2f8f95ba8210c63b6fa84eb optional: false category: main - source: null build: h6a75c08_874 + subdir: win-64 + build_number: 874 + license: LicenseRef-ProprietaryIntel + license_family: Proprietary + size: 191569511 + timestamp: 1652946602922 - name: qt-main version: 5.15.8 manager: conda platform: win-64 dependencies: - openssl: '>=3.1.0,<4.0a0' + openssl: '>=3.1.1,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' libzlib: '>=1.2.13,<1.3.0a0' libsqlite: '>=3.42.0,<4.0a0' vc14_runtime: '>=14.29.30139' ucrt: '>=10.0.20348.0' - gstreamer: '>=1.22.3,<1.23.0a0' + gstreamer: '>=1.22.4,<1.23.0a0' zstd: '>=1.5.2,<1.6.0a0' icu: '>=72.1,<73.0a0' libglib: '>=2.76.3,<3.0a0' vc: '>=14.2,<15' - gst-plugins-base: '>=1.22.3,<1.23.0a0' + gst-plugins-base: '>=1.22.4,<1.23.0a0' libjpeg-turbo: '>=2.1.5.1,<3.0a0' libclang: '>=15.0.7,<16.0a0' krb5: '>=1.20.1,<1.21.0a0' libclang13: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-h2c8576c_13.conda - hash: - md5: b00e4814feb5fa92b864ef031130c2cf - sha256: 9f638055e92c8faf4d52511a14f01accc801b293e70565d284f2522d94ec71b0 - optional: false - category: main - source: null - build: h2c8576c_13 -- name: libsqlite - version: 3.42.0 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.42.0-hcfcfb64_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-h2c8576c_14.conda hash: - md5: 9a71d93deb99cc09d8939d5235b5909a - sha256: 70bc1fdb72de847807355c13144666d4f151894f9b141ee559f5d243bdf577e2 + md5: 1f5da14a40e9fa12912f1b2c0954a999 + sha256: 4571f4e194fc3ac7eab4b1f2656fa71beb4b5059cdc2bb3cc5d2c45452d02f04 optional: false category: main - source: null - build: hcfcfb64_0 + build: h2c8576c_14 + subdir: win-64 + build_number: 14 + constrains: + - qt 5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 60530287 + timestamp: 1687905731279 - name: ffmpeg - version: 5.1.2 + version: 6.0.0 manager: conda platform: win-64 dependencies: libxml2: '>=2.11.4,<2.12.0a0' openh264: '>=2.3.1,<2.3.2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' - svt-av1: '>=1.4.1,<1.4.2.0a0' + svt-av1: '>=1.6.0,<1.6.1.0a0' x265: '>=3.5,<3.6.0a0' libzlib: '>=1.2.13,<1.3.0a0' vc14_runtime: '>=14.29.30139' @@ -4858,14 +6464,19 @@ package: fontconfig: '>=2.14.2,<3.0a0' bzip2: '>=1.0.8,<2.0a0' fonts-conda-ecosystem: '*' - url: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-5.1.2-gpl_he426399_111.conda + url: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-6.0.0-gpl_h2b371f0_103.conda hash: - md5: 4988eb01855af480a61aa1e959d2c06d - sha256: 2dc846aaff335bc4c9a81f6aa71d3aaf1143e629f79395aae7a6ab100796e739 + md5: aa844176cf71ef6d73d41f0f851590d2 + sha256: 82249842cc477135fc78c2d67d359bc7acc31d1f5d90b03c3977489d338917ab optional: false category: main - source: null - build: gpl_he426399_111 + build: gpl_h2b371f0_103 + subdir: win-64 + build_number: 103 + license: GPL-2.0-or-later + license_family: GPL + size: 11471876 + timestamp: 1687157069038 - name: libxml2 version: 2.11.4 manager: conda @@ -4882,8 +6493,13 @@ package: sha256: d9d2210436ac28d1a15de08468202a944135d17da3b37fd82c0e90a36ce8ef72 optional: false category: main - source: null build: hc3477c8_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1700060 + timestamp: 1684627377126 - name: aom version: 3.5.0 manager: conda @@ -4897,24 +6513,34 @@ package: sha256: 76a2fc753c372facbb83bc9fc063cbc9c439ec0922d5c776a4d280fc42ff885c optional: false category: main - source: null build: h63175ca_0 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 12306923 + timestamp: 1663812651519 - name: svt-av1 - version: 1.4.1 + version: 1.6.0 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/svt-av1-1.4.1-h63175ca_0.conda + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/svt-av1-1.6.0-h63175ca_0.conda hash: - md5: 4e0b494c944e58a4de7aed21bb80645c - sha256: ca68968390a6811de0568241e254b5b29e86c96221d1760228efa584ce4c4f65 + md5: 962a812732b87aacabcce9e16813a8ea + sha256: f8ebf74e160a83f82749cb89dfe5705558f39056ac1ce48e4a6d1519b1c77f85 optional: false category: main - source: null build: h63175ca_0 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 1946946 + timestamp: 1687135319008 - name: x265 version: '3.5' manager: conda @@ -4928,8 +6554,13 @@ package: sha256: 02b9874049112f2b7335c9a3e880ac05d99a08d9a98160c5a98898b2b3ac42b2 optional: false category: main - source: null build: h2d74725_3 + subdir: win-64 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 5517425 + timestamp: 1646611941216 - name: dav1d version: 1.2.1 manager: conda @@ -4944,8 +6575,13 @@ package: sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4 optional: false category: main - source: null build: hcfcfb64_0 + subdir: win-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 618643 + timestamp: 1685696352968 - name: zstd version: 1.5.2 manager: conda @@ -4954,15 +6590,20 @@ package: ucrt: '>=10.0.20348.0' libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_6.conda + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_7.conda hash: - md5: 62826565682d013b3e2346aaf7bded0e - sha256: ef23b2eb748b0b2139755e5a20d49a642340af1313017918dc91b4a4ce8f3bd9 + md5: f3c3879d8cda1c5a6885435dd48a470e + sha256: 33e8fb73dee10740f00d4a450ad2d7f6d90692ca781480fa18fa70fd417d53ad optional: false category: main - source: null - build: h12be248_6 + build: h12be248_7 + subdir: win-64 + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 289661 + timestamp: 1688722138074 - name: tzdata version: 2023c manager: conda @@ -4974,8 +6615,13 @@ package: sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main - source: null build: h71feb2d_0 + subdir: noarch + build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 - name: bzip2 version: 1.0.8 manager: conda @@ -4989,8 +6635,13 @@ package: sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 optional: false category: main - source: null build: h8ffe710_4 + subdir: win-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 152247 + timestamp: 1606605223049 - name: libffi version: 3.4.2 manager: conda @@ -5004,42 +6655,13 @@ package: sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 optional: false category: main - source: null build: h8ffe710_5 -- name: openssl - version: 3.1.1 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - ca-certificates: '*' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.1-hcfcfb64_1.conda - hash: - md5: 1d913a5de46c6b2f7e4cfbd26b106b8b - sha256: 4424486fb9a2aeaba912a8dd8a5b5cdb6fcd65d7708fd854e3ea27449bb352a3 - optional: false - category: main - source: null - build: hcfcfb64_1 -- name: krb5 - version: 1.20.1 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - openssl: '>=3.0.7,<4.0a0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda - hash: - md5: a07b05ee8f451ab15698397185efe989 - sha256: 429edc4fa9e2420c55cdbd9febb154d2358bf662735efda4372f62142ff310cd - optional: false - category: main - source: null - build: heb0366b_0 + subdir: win-64 + build_number: 5 + license: MIT + license_family: MIT + size: 42063 + timestamp: 1636489106777 - name: font-ttf-inconsolata version: '3.000' manager: conda @@ -5051,8 +6673,14 @@ package: sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c optional: false category: main - source: null build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 96530 + timestamp: 1620479909603 - name: font-ttf-source-code-pro version: '2.038' manager: conda @@ -5064,8 +6692,14 @@ package: sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 optional: false category: main - source: null build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 700814 + timestamp: 1620479612257 - name: certifi version: 2023.5.7 manager: conda @@ -5078,8 +6712,13 @@ package: sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: ISC + noarch: python + size: 152383 + timestamp: 1683450391501 - name: idna version: '3.4' manager: conda @@ -5092,8 +6731,14 @@ package: sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 56742 + timestamp: 1663625484114 - name: urllib3 version: 2.0.3 manager: conda @@ -5101,29 +6746,41 @@ package: dependencies: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.7' - brotli: '>=1.0.9' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda + brotli-python: '>=1.0.9' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_1.conda hash: - md5: ae465d0fbf9f1979cb2d8d4043d885e2 - sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 + md5: 89efeecbb24c62e2f1ed0b8ca959ec69 + sha256: 60b64b483b2c662f946837043d95c1a5d90948464a834403b0e3bce373a96a1e optional: false category: main - source: null - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 + subdir: noarch + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 98152 + timestamp: 1688005881308 - name: charset-normalizer - version: 3.1.0 + version: 3.2.0 manager: conda platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 45686 + timestamp: 1688813585878 - name: expat version: 2.5.0 manager: conda @@ -5136,8 +6793,13 @@ package: sha256: 3bcd88290cd462d5573c2923c796599d0dece2ff9d9c9d6c914d31e9c5881aaf optional: false category: main - source: null build: h63175ca_1 + subdir: win-64 + build_number: 1 + license: MIT + license_family: MIT + size: 226571 + timestamp: 1680190888036 - name: libexpat version: 2.5.0 manager: conda @@ -5149,8 +6811,15 @@ package: sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf optional: false category: main - source: null build: h63175ca_1 + subdir: win-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 138689 + timestamp: 1680190844101 - name: intel-openmp version: 2023.1.0 manager: conda @@ -5162,8 +6831,13 @@ package: sha256: b3006690844eedbb51030e71778767acc9967f4148b6f335ba3fddf8aa42aa5b optional: false category: main - source: null build: h57928b3_46319 + subdir: win-64 + build_number: 46319 + license: LicenseRef-ProprietaryIntel + license_family: Proprietary + size: 2571975 + timestamp: 1681819121435 - name: tbb version: 2021.9.0 manager: conda @@ -5179,8 +6853,13 @@ package: sha256: bf9a0f71aa9234776fc5d940464f47b760e5b4907c6c4f7eb0273221fe1b834c optional: false category: main - source: null build: h91493d7_0 + subdir: win-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 154736 + timestamp: 1681487156667 - name: libhwloc version: 2.9.1 manager: conda @@ -5197,8 +6876,13 @@ package: sha256: dbb221db2ca66075fc12976c55db511dd88433c4db91ed20da59ffada2f6e6bb optional: false category: main - source: null build: nocuda_h15da153_6 + subdir: win-64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + size: 2537812 + timestamp: 1686174051116 - name: openh264 version: 2.3.1 manager: conda @@ -5213,8 +6897,13 @@ package: sha256: 251566b5326a292215a3db5a184c255a092242a371431b617c7baf300fa9d170 optional: false category: main - source: null build: h63175ca_2 + subdir: win-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 410812 + timestamp: 1675882258839 - name: x264 version: 1!164.3095 manager: conda @@ -5228,8 +6917,13 @@ package: sha256: 97166b318f8c68ffe4d50b2f4bd36e415219eeaef233e7d41c54244dc6108249 optional: false category: main - source: null build: h8ffe710_2 + subdir: win-64 + build_number: 2 + license: GPL-2.0-or-later + license_family: GPL + size: 1041889 + timestamp: 1660323726084 - name: libopus version: 1.3.1 manager: conda @@ -5243,8 +6937,13 @@ package: sha256: b2e5ec193762a5b4f905f8100437370e164df3db0ea5c18b4ce09390f5d3d525 optional: false category: main - source: null build: h8ffe710_1 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 260615 + timestamp: 1606824019288 - name: libclang version: 15.0.7 manager: conda @@ -5261,8 +6960,13 @@ package: sha256: af265f9358565c650ec3f09557d47c6ced441164d10cd500b74651513f61be46 optional: false category: main - source: null build: default_h77d9078_2 + subdir: win-64 + build_number: 2 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 148161 + timestamp: 1684447688680 - name: libclang13 version: 15.0.7 manager: conda @@ -5278,120 +6982,112 @@ package: sha256: 0be9e57f50f33c813df6e1ad65b8bf8ccf1c23f734785236146b56b9078e7c7b optional: false category: main - source: null build: default_h77d9078_2 + subdir: win-64 + build_number: 2 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21913050 + timestamp: 1684447290621 - name: gst-plugins-base - version: 1.22.3 + version: 1.22.4 manager: conda platform: win-64 dependencies: - libglib: '>=2.76.2,<3.0a0' + libglib: '>=2.76.3,<3.0a0' libvorbis: '>=1.3.7,<1.4.0a0' libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' - gstreamer: ==1.22.3 h6b5321d_1 + gstreamer: ==1.22.4 hb4038d2_1 gettext: '>=0.21.1,<1.0a0' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.3-h001b923_1.conda + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.4-h001b923_1.conda hash: - md5: bd6347f397891bf4eb264c652221507c - sha256: 5a9c3032a033d1cacf313527e1f492e17492d121c07c3f8213ffede1fef60d09 + md5: ce797dd3d60901f6260e84e84674c829 + sha256: 796b63de19fa87c76583e0253e02796937d635d98701976390494589b5109d54 optional: false category: main - source: null build: h001b923_1 + subdir: win-64 + build_number: 1 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2034245 + timestamp: 1688582747778 - name: gstreamer - version: 1.22.3 + version: 1.22.4 manager: conda platform: win-64 dependencies: - glib: '>=2.76.2,<3.0a0' + glib: '>=2.76.3,<3.0a0' ucrt: '>=10.0.20348.0' gettext: '>=0.21.1,<1.0a0' - libglib: '>=2.76.2,<3.0a0' + libglib: '>=2.76.3,<3.0a0' + libiconv: '>=1.17,<2.0a0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.3-h6b5321d_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.4-hb4038d2_1.conda hash: - md5: 00afb31665a8028ca2ff9af61fea64e1 - sha256: 328c1ddd1328d7419d827cf18e05522011337739302f332847f2d9d731f68d14 + md5: 42f53931331420f6b748f91ef356a558 + sha256: 5f9e74b2114872ed0ababbeaf5915a59729d1cc993a453de7584eaece1ddab91 optional: false category: main - source: null - build: h6b5321d_1 + build: hb4038d2_1 + subdir: win-64 + build_number: 1 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1936654 + timestamp: 1688582544317 - name: glib - version: 2.76.3 + version: 2.76.4 manager: conda platform: win-64 dependencies: - glib-tools: ==2.76.3 h12be248_0 + glib-tools: ==2.76.4 h12be248_0 python: '*' - libglib: ==2.76.3 he8f3873_0 + libglib: ==2.76.4 he8f3873_0 libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' ucrt: '>=10.0.20348.0' gettext: '>=0.21.1,<1.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/glib-2.76.3-h12be248_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/glib-2.76.4-h12be248_0.conda hash: - md5: fa3f1af2dc70e0d00a755667a741fad3 - sha256: 6c6f526cc153feeee786daf16f2790a8ff4478fde752b2d0d3619c884f00b898 + md5: 4d7ae53ee4b7e08f3fbd1d3a7efd4812 + sha256: 96457df6c2cb42ec32c25a135ca1232e740f21fe20216e54024df9274f5ae4ad optional: false category: main - source: null build: h12be248_0 + subdir: win-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 499494 + timestamp: 1688695170322 - name: glib-tools - version: 2.76.3 + version: 2.76.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - libglib: ==2.76.3 he8f3873_0 + libglib: ==2.76.4 he8f3873_0 libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.76.3-h12be248_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.76.4-h12be248_0.conda hash: - md5: 3015483cb3ffa200d51aac3c691fcda0 - sha256: 10cc47bc9194e42ea984e437e3d99c794d5d6e7c5ac2994716054fcbcf65d33a + md5: 88237d3ddd338164196043cb7e927246 + sha256: f90981fd787047c1b355bdaa9a981a5822152d3121f696d532ed29d51acc1507 optional: false category: main - source: null build: h12be248_0 -- name: hdf5 - version: 1.14.0 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - libaec: '>=1.0.6,<2.0a0' - libcurl: '>=7.88.1,<9.0a0' - openssl: '>=3.0.8,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.0-nompi_h918d9b7_103.conda - hash: - md5: cdd3ab75e65f0aad08ff7e25a4dc825d - sha256: 56d4543daffd3028481e85a583ed28a74b064faf151fa4b4c0890e6a1df11312 - optional: false - category: main - source: null - build: nompi_h918d9b7_103 -- name: ca-certificates - version: 2023.5.7 - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.5.7-h56e8100_0.conda - hash: - md5: 604212634bd8c4d6f20d44b946e8eedb - sha256: d0488a3e7a86cc11f8c847a7c12a5f1fb8567f05646faae78944807862f9d167 - optional: false - category: main - source: null - build: h56e8100_0 + subdir: win-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 145910 + timestamp: 1688695112953 - name: pysocks version: 1.7.1 manager: conda @@ -5406,95 +7102,39 @@ package: sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 optional: false category: main - source: null build: pyh0701188_6 -- name: brotli - version: 1.0.9 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - libbrotlienc: ==1.0.9 hcfcfb64_8 - brotli-bin: ==1.0.9 hcfcfb64_8 - vc: '>=14.2,<15' - libbrotlidec: ==1.0.9 hcfcfb64_8 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.0.9-hcfcfb64_8.tar.bz2 - hash: - md5: 2e661f21e1741c11506bdc7226e6b0bc - sha256: 6d2fc2f147c9fc6685124d984089683988729463193578ba1d62f80263bce3c5 - optional: false - category: main - source: null - build: hcfcfb64_8 -- name: brotli-bin - version: 1.0.9 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - libbrotlienc: ==1.0.9 hcfcfb64_8 - vc: '>=14.2,<15' - libbrotlidec: ==1.0.9 hcfcfb64_8 - url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.0.9-hcfcfb64_8.tar.bz2 - hash: - md5: e18b70ed349d96086fd60a9c642b1b58 - sha256: e8b55a51cb907f336c6f308d5d052483b0cad6a8b09040b811a7f12f4f199d67 - optional: false - category: main - source: null - build: hcfcfb64_8 -- name: libbrotlidec - version: 1.0.9 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - libbrotlicommon: ==1.0.9 hcfcfb64_8 - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.0.9-hcfcfb64_8.tar.bz2 - hash: - md5: 99839d9d81f33afa173c0fa82a702038 - sha256: 66814b8c0235bcc9124d32cb4b99845bcb2af0eba1d2ba609a501a6d8194e9a0 - optional: false - category: main - source: null - build: hcfcfb64_8 -- name: libbrotlienc - version: 1.0.9 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - libbrotlicommon: ==1.0.9 hcfcfb64_8 - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.0.9-hcfcfb64_8.tar.bz2 - hash: - md5: 88e62627120c20289bf8982b15e0a6a1 - sha256: 3abf0f0b124d54ad892bd74fe77089a712d6dad81a04583331a58728c58a69e0 - optional: false - category: main - source: null - build: hcfcfb64_8 -- name: libbrotlicommon + subdir: noarch + build_number: 6 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 19348 + timestamp: 1661605138291 +- name: brotli-python version: 1.0.9 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.0.9-hcfcfb64_8.tar.bz2 + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.0.9-py310h00ffb61_9.conda hash: - md5: e8078e37208cd7d3e1eb5053f370ded8 - sha256: 0e771d447108219f43de770f7ca9428b2e3b5a4fd08475a27ac442ad310cb684 + md5: 2a15bfd3d5b60a8a7f83940ab1e35f5f + sha256: e9acc5b227dbfdf1dc2822e12c3834411b87345f4032020dfac4400612e90f9b optional: false category: main - source: null - build: hcfcfb64_8 + build: py310h00ffb61_9 + subdir: win-64 + build_number: 9 + constrains: + - libbrotlicommon 1.0.9 hcfcfb64_9 + license: MIT + license_family: MIT + size: 307766 + timestamp: 1687886994095 - name: pthreads-win32 version: 2.9.1 manager: conda @@ -5507,43 +7147,32 @@ package: sha256: 576a228630a72f25d255a5e345e5f10878e153221a96560f2498040cd6f54005 optional: false category: main - source: null build: hfa6e2cd_3 -- name: libcurl - version: 8.1.2 - manager: conda - platform: win-64 - dependencies: - libssh2: '>=1.10.0,<2.0a0' - ucrt: '>=10.0.20348.0' - vc14_runtime: '>=14.29.30139' - krb5: '>=1.20.1,<1.21.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.1.2-h68f0423_0.conda - hash: - md5: 94b9b7d0e882461fdb72d8d4e7441746 - sha256: a9d21b363c6d3c81ec85903f86989157e7d93d8f247e023ff3b3f69789115a72 - optional: false - category: main - source: null - build: h68f0423_0 -- name: libaec - version: 1.0.6 + subdir: win-64 + build_number: 3 + license: LGPL 2 + size: 144301 + timestamp: 1537755684331 +- name: libogg + version: 1.3.4 manager: conda platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 hash: - md5: f98474a8245f55f4a273889dbe7bf193 - sha256: 441f580f90279bd62bd27fb82d0bbbb2c2d9f850fcc4c8781f199c5287cd1499 + md5: 04286d905a0dcb7f7d4a12bdfe02516d + sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 optional: false category: main - source: null - build: h63175ca_1 + build: h8ffe710_1 + subdir: win-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 35187 + timestamp: 1610382533961 - name: win_inet_pton version: 1.1.0 manager: conda @@ -5557,40 +7186,34 @@ package: sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511 optional: false category: main - source: null build: pyhd8ed1ab_6 -- name: libssh2 - version: 1.11.0 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - openssl: '>=3.1.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda - hash: - md5: dc262d03aae04fe26825062879141a41 - sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec - optional: false - category: main - source: null - build: h7dfc565_0 + subdir: noarch + build_number: 6 + license: PUBLIC-DOMAIN + noarch: python + size: 8191 + timestamp: 1667051294134 - name: vc version: '14.3' manager: conda platform: win-64 dependencies: - vc14_runtime: '>=14.32.31332' - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb25d44b_16.conda + vc14_runtime: '>=14.36.32532' + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda hash: - md5: ea326b37e3bd6d2616988e09f3a9396c - sha256: 29bc108d66150ca75cab937f844f4ac4a836beb6ea3ee167d03c611444bb2a82 + md5: 67ff6791f235bb606659bf2a5c169191 + sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6 optional: false category: main - source: null - build: hb25d44b_16 + build: h64f974e_17 + subdir: win-64 + build_number: 17 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 17176 + timestamp: 1688020629925 - name: libvorbis version: 1.3.7 manager: conda @@ -5605,74 +7228,236 @@ package: sha256: 6cdc018a024908270205d8512d92f92cf0adaaa5401c2b403757189b138bf56a optional: false category: main - source: null build: h0e60522_0 -- name: libogg - version: 1.3.4 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 273721 + timestamp: 1610610022421 +- name: opencv + version: 4.7.0 manager: conda - platform: win-64 + platform: osx-64 dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 + py-opencv: ==4.7.0 py310ha188af9_6 + python_abi: 3.10.* *_cp310 + libopencv: ==4.7.0 py310h12e1fec_6 + url: https://conda.anaconda.org/conda-forge/osx-64/opencv-4.7.0-py310h2ec42d9_6.conda hash: - md5: 04286d905a0dcb7f7d4a12bdfe02516d - sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 + md5: ff2f07c14c560a60964f54cbd35491ac + sha256: 70075c12a3d4ac8e2c9848aa92d228b45c0e660b5694960cb957d1f01c334b45 optional: false category: main - source: null - build: h8ffe710_1 -- name: python - version: 3.10.11 + build: py310h2ec42d9_6 + subdir: osx-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 25362 + timestamp: 1688238321504 +- name: libopencv + version: 4.7.0 manager: conda platform: osx-64 dependencies: - tzdata: '*' - openssl: '>=3.1.0,<4.0a0' - readline: '>=8.2,<9.0a0' - libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.41.2,<4.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libprotobuf: '>=4.23.3,<4.23.4.0a0' + libcblas: '>=3.9.0,<4.0a0' + jasper: '>=4.0.0,<5.0a0' + harfbuzz: '>=7.3.0,<8.0a0' + liblapacke: '>=3.9.0,<4.0a0' + libglib: '>=2.76.3,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + hdf5: '>=1.14.1,<1.14.2.0a0' + libiconv: '>=1.17,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + liblapack: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + ffmpeg: '>=6.0.0,<7.0a0' + libtiff: '>=4.5.1,<4.6.0a0' + libwebp-base: '>=1.3.1,<2.0a0' + numpy: '>=1.21.6,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopencv-4.7.0-py310h12e1fec_6.conda + hash: + md5: 5812c154412d8538403f05887bd363a5 + sha256: c90343e17e761db0d059345492f1da158f85dded47fe866ecd9c35b81d4ac3f6 + optional: false + category: main + build: py310h12e1fec_6 + subdir: osx-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 26645743 + timestamp: 1688238226175 +- name: py-opencv + version: 4.7.0 + manager: conda + platform: osx-64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libopencv: ==4.7.0 py310h12e1fec_6 + url: https://conda.anaconda.org/conda-forge/osx-64/py-opencv-4.7.0-py310ha188af9_6.conda + hash: + md5: ad2072c8c84b6ac7762b1041fcda8a80 + sha256: aa507006b8095f8667e4776fc4b413fe67e18c5aec1486a2164d0f869ead79d6 + optional: false + category: main + build: py310ha188af9_6 + subdir: osx-64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 1152189 + timestamp: 1688238301036 +- name: libpng + version: 1.6.39 + manager: conda + platform: osx-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda + hash: + md5: 35e4928794c5391aec14ffdf1deaaee5 + sha256: 5ad9f5e96e6770bfc8b0a826f48835e7f337c2d2e9512d76027a62f9c120b2a3 + optional: false + category: main + build: ha978bb4_0 + subdir: osx-64 + build_number: 0 + license: zlib-acknowledgement + size: 271689 + timestamp: 1669075890643 +- name: libtiff + version: 4.5.1 + manager: conda + platform: osx-64 + dependencies: + libdeflate: '>=1.18,<1.19.0a0' libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' xz: '>=5.2.6,<6.0a0' - tk: '>=8.6.12,<8.7.0a0' - bzip2: '>=1.0.8,<2.0a0' - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.11-he7542f4_0_cpython.conda + libcxx: '>=15.0.7' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.1-hf955e92_0.conda hash: - md5: ec1a9528837c5fcd34f387e317b30f1e - sha256: 6e5ed21b0d491e791cbdf0f1361d306173dcd0f25b65b5d2881d12a500d2e128 + md5: 56523ed556e3a44c0fd55bcf17045892 + sha256: 0526690c890b53419e6bbbe17dfc456789897ce9d7d79db3c4ea6568848bf6d0 optional: false category: main - source: null - build: he7542f4_0_cpython -- name: readline - version: '8.2' + build: hf955e92_0 + subdir: osx-64 + build_number: 0 + license: HPND + size: 394629 + timestamp: 1686757046182 +- name: harfbuzz + version: 7.3.0 manager: conda platform: osx-64 dependencies: - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + icu: '>=72.1,<73.0a0' + libcxx: '>=15.0.7' + graphite2: '*' + cairo: '>=1.16.0,<2.0a0' + freetype: '>=2.12.1,<3.0a0' + libglib: '>=2.76.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-7.3.0-h413ba03_0.conda hash: - md5: f17f77f2acf4d344734bda76829ce14e - sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 + md5: 52a090078d890befdd4865270d1164ec + sha256: 694dacf9977452654a920014406db5f4212191abce52191caa3c7cfcd376a5ce optional: false category: main - source: null - build: h9e318b2_1 -- name: tk - version: 8.6.12 + build: h413ba03_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1287854 + timestamp: 1683684660812 +- name: libjpeg-turbo + version: 2.1.5.1 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-2.1.5.1-hb7f2c08_0.conda + hash: + md5: d7309a152b9b79799063b8bb47e34a3a + sha256: 38288e83201639983d3e158a1e8f638334298a0ca3a59dbb188651c874fd6077 + optional: false + category: main + build: hb7f2c08_0 + subdir: osx-64 + build_number: 0 + constrains: + - jpeg <0.0.0a + license: IJG, modified 3-clause BSD and zlib + size: 458439 + timestamp: 1678127987545 +- name: libwebp-base + version: 1.3.1 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.1-h0dc2134_0.conda + hash: + md5: a25a41b5be3fed4b671a58b998dcf89b + sha256: ff0fb385d85dae7c4ba61d28990c32f2f2686b14e503dfb956a0c076e30d59e6 + optional: false + category: main + build: h0dc2134_0 + subdir: osx-64 + build_number: 0 + constrains: + - libwebp 1.3.1 + license: BSD-3-Clause + license_family: BSD + size: 346358 + timestamp: 1688047185328 +- name: libiconv + version: '1.17' + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2 + hash: + md5: 691d103d11180486154af49c037b7ed9 + sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2 + optional: false + category: main + build: hac89ed1_0 + subdir: osx-64 + build_number: 0 + license: GPL and LGPL + size: 1378276 + timestamp: 1652702364402 +- name: libprotobuf + version: 4.23.3 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libabseil: '>=20230125.2,<20230126.0a0' + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.23.3-h5feb325_0.conda hash: - md5: 8e9480d9c47061db2ed1b4ecce519a7f - sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 + md5: b9e780ed0d0a365ff10b8e83c64471ce + sha256: c46a032cffd7db2becfae7305a2e7c5568f3a6ce5a70c6c4092c87f837a4c9e5 optional: false category: main - source: null - build: h5dbffcc_0 + build: h5feb325_0 + subdir: osx-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2073528 + timestamp: 1688107469154 - name: xz version: 5.2.6 manager: conda @@ -5684,190 +7469,213 @@ package: sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 optional: false category: main - source: null build: h775f41a_0 -- name: requests - version: 2.31.0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 238119 + timestamp: 1660346964847 +- name: lerc + version: 4.0.0 manager: conda platform: osx-64 dependencies: - certifi: '>=2017.4.17' - python: '>=3.7' - charset-normalizer: '>=2,<4' - urllib3: '>=1.21.1,<3' - idna: '>=2.5,<4' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + libcxx: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 hash: - md5: a30144e4156cdbb236f99ebb49828f8b - sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + md5: f9d6a4c82889d5ecedec1d90eb673c55 + sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 optional: false category: main - source: null - build: pyhd8ed1ab_0 -- name: opencv - version: 4.7.0 + build: hb486fe8_0 + subdir: osx-64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 290319 + timestamp: 1657977526749 +- name: libdeflate + version: '1.18' manager: conda platform: osx-64 - dependencies: - py-opencv: ==4.7.0 py310ha188af9_4 - python_abi: 3.10.* *_cp310 - libopencv: ==4.7.0 py310h41d2c2e_4 - url: https://conda.anaconda.org/conda-forge/osx-64/opencv-4.7.0-py310h2ec42d9_4.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.18-hac1461d_0.conda hash: - md5: 42a21413857500f77d8594a241eda29b - sha256: 7775a260ed830c3d5c8989de5fbd09155dcffd34532699451948d8e3cda6e47c + md5: 3d131584456b277ce0871e6481fde49b + sha256: b985178bc45f83259c99026d988448277e17171801945769396e2577ce59778c optional: false category: main - source: null - build: py310h2ec42d9_4 -- name: libopencv - version: 4.7.0 + build: hac1461d_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 67061 + timestamp: 1679647698096 +- name: icu + version: '72.1' manager: conda platform: osx-64 - dependencies: - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libprotobuf: '>=3.21.12,<3.22.0a0' - libcblas: '>=3.9.0,<4.0a0' - jasper: '>=4.0.0,<5.0a0' - harfbuzz: '>=7.3.0,<8.0a0' - liblapacke: '>=3.9.0,<4.0a0' - libglib: '>=2.76.2,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - hdf5: '>=1.14.0,<1.14.1.0a0' - libwebp-base: '>=1.3.0,<2.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - liblapack: '>=3.9.0,<4.0a0' - libcxx: '>=15.0.7' - ffmpeg: '>=6.0.0,<7.0a0' - libtiff: '>=4.5.0,<4.6.0a0' - numpy: '>=1.21.6,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopencv-4.7.0-py310h41d2c2e_4.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/icu-72.1-h7336db1_0.conda hash: - md5: 13501a4aa7542f0d3e0eedeb84890daf - sha256: 0610823c65d78e5d23ed311bdbb6be8af6c530657fdbef161b9b8691b2335cd3 + md5: c9689510a50a4bb2ae978421671a125e + sha256: 3813b724fa741c63bf15698a716a9b9f4243a469cb658cdd47a1a9a602aa579e optional: false category: main - source: null - build: py310h41d2c2e_4 -- name: py-opencv - version: 4.7.0 + build: h7336db1_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 11631741 + timestamp: 1679314814805 +- name: jasper + version: 4.0.0 manager: conda platform: osx-64 dependencies: - numpy: '>=1.21.6,<2.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libopencv: ==4.7.0 py310h41d2c2e_4 - url: https://conda.anaconda.org/conda-forge/osx-64/py-opencv-4.7.0-py310ha188af9_4.conda + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.0.0-h794afb9_1.conda hash: - md5: aaafe0f0d7b638c160118fe8d3b4e883 - sha256: 4d8c14e85e5a1079a96817aba9545bd14c4d771eea6b92330ae88478c749befc + md5: 8bc3ad165a3b99166b995d5a1529b1e5 + sha256: 1725f9a02ec13010b5cf9e708f9d8b6d1b31b235c80a3130436e807e99da13b4 optional: false category: main - source: null - build: py310ha188af9_4 -- name: libpng - version: 1.6.39 + build: h794afb9_1 + subdir: osx-64 + build_number: 1 + license: JasPer-2.0 + size: 576456 + timestamp: 1678301881637 +- name: python + version: 3.10.12 manager: conda platform: osx-64 dependencies: + tzdata: '*' + openssl: '>=3.1.1,<4.0a0' + readline: '>=8.2,<9.0a0' + libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.42.0,<4.0a0' libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda + xz: '>=5.2.6,<6.0a0' + tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + ncurses: '>=6.4,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.12-had23ca6_0_cpython.conda hash: - md5: 35e4928794c5391aec14ffdf1deaaee5 - sha256: 5ad9f5e96e6770bfc8b0a826f48835e7f337c2d2e9512d76027a62f9c120b2a3 + md5: 351b8aa0687f3510620cf06ad11229f4 + sha256: cbf1b9cf9bdba639675a1431a053f3f2babb73ca6b4329cf72dcf9cd45a29cc8 optional: false category: main - source: null - build: ha978bb4_0 -- name: harfbuzz - version: 7.3.0 + build: had23ca6_0_cpython + subdir: osx-64 + build_number: 0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + size: 13065974 + timestamp: 1687560536470 +- name: readline + version: '8.2' manager: conda platform: osx-64 dependencies: - icu: '>=72.1,<73.0a0' - libcxx: '>=15.0.7' - graphite2: '*' - cairo: '>=1.16.0,<2.0a0' - freetype: '>=2.12.1,<3.0a0' - libglib: '>=2.76.2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-7.3.0-h413ba03_0.conda + ncurses: '>=6.3,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda hash: - md5: 52a090078d890befdd4865270d1164ec - sha256: 694dacf9977452654a920014406db5f4212191abce52191caa3c7cfcd376a5ce + md5: f17f77f2acf4d344734bda76829ce14e + sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 optional: false category: main - source: null - build: h413ba03_0 -- name: libjpeg-turbo - version: 2.1.5.1 + build: h9e318b2_1 + subdir: osx-64 + build_number: 1 + license: GPL-3.0-only + license_family: GPL + size: 255870 + timestamp: 1679532707590 +- name: tk + version: 8.6.12 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-2.1.5.1-hb7f2c08_0.conda + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 hash: - md5: d7309a152b9b79799063b8bb47e34a3a - sha256: 38288e83201639983d3e158a1e8f638334298a0ca3a59dbb188651c874fd6077 + md5: 8e9480d9c47061db2ed1b4ecce519a7f + sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 optional: false category: main - source: null - build: hb7f2c08_0 -- name: libwebp-base - version: 1.3.0 + build: h5dbffcc_0 + subdir: osx-64 + build_number: 0 + license: TCL + license_family: BSD + size: 3531016 + timestamp: 1645032719565 +- name: ncurses + version: '6.4' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.0-hb7f2c08_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda hash: - md5: 18981e4c840126d6118d8952485fea51 - sha256: 5ed0b7f127f578ddd28e3af86af278df8d5341416935a09ae772a57579cbb11b + md5: c3dbae2411164d9b02c69090a9a91857 + sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd optional: false category: main - source: null - build: hb7f2c08_0 -- name: libprotobuf - version: 3.21.12 + build: hf0c8a7f_0 + subdir: osx-64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 828118 + timestamp: 1686077056765 +- name: libsqlite + version: 3.42.0 manager: conda platform: osx-64 dependencies: libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.21.12-hbc0c0cd_0.conda - hash: - md5: 7a9b17cfb3e57143e4e9118b5244b691 - sha256: d3fbdc0808c4f433903704f943e4b13c079909f994fa157ec75615658d3bab17 - optional: false - category: main - source: null - build: hbc0c0cd_0 -- name: icu - version: '72.1' - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/icu-72.1-h7336db1_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.42.0-h58db7d2_0.conda hash: - md5: c9689510a50a4bb2ae978421671a125e - sha256: 3813b724fa741c63bf15698a716a9b9f4243a469cb658cdd47a1a9a602aa579e + md5: a7d3b44b7b0c9901ac7813b7a0462893 + sha256: 182689f4b1a5ed638cd615c7774e1a9974842bc127c59173f1d25e31a8795eef optional: false category: main - source: null - build: h7336db1_0 -- name: jasper - version: 4.0.0 + build: h58db7d2_0 + subdir: osx-64 + build_number: 0 + license: Unlicense + size: 878744 + timestamp: 1684265213849 +- name: requests + version: 2.31.0 manager: conda platform: osx-64 dependencies: - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.0.0-h794afb9_1.conda + certifi: '>=2017.4.17' + python: '>=3.7' + charset-normalizer: '>=2,<4' + urllib3: '>=1.21.1,<3' + idna: '>=2.5,<4' + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda hash: - md5: 8bc3ad165a3b99166b995d5a1529b1e5 - sha256: 1725f9a02ec13010b5cf9e708f9d8b6d1b31b235c80a3130436e807e99da13b4 + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad optional: false category: main - source: null - build: h794afb9_1 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + constrains: + - chardet >=3.0.2,<6 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 56690 + timestamp: 1684774408600 - name: libcxx version: 16.0.6 manager: conda @@ -5879,8 +7687,13 @@ package: sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 optional: false category: main - source: null build: hd57cbcb_0 + subdir: osx-64 + build_number: 0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1142172 + timestamp: 1686896907750 - name: libzlib version: 1.2.13 manager: conda @@ -5892,8 +7705,37 @@ package: sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 optional: false category: main - source: null build: h8a1eda9_5 + subdir: osx-64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 59404 + timestamp: 1686575566695 +- name: libabseil + version: '20230125.3' + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230125.3-cxx17_h000cb23_0.conda + hash: + md5: 1d883cd421a0b0af624c38fa8d043f98 + sha256: 915e61c37e1b57a296bf075c7b7ccf3f08f7cb2e873edf69e3c1b39e895dc61e + optional: false + category: main + build: cxx17_h000cb23_0 + subdir: osx-64 + build_number: 0 + constrains: + - libabseil-static =20230125.3=cxx17* + - abseil-cpp =20230125.3 + license: Apache-2.0 + license_family: Apache + size: 1128875 + timestamp: 1688113187054 - name: python_abi version: '3.10' manager: conda @@ -5905,10 +7747,17 @@ package: sha256: 0a66852c47be6b28b70bde29891a71d047730c723355d44b0da48db79fb99eb1 optional: false category: main - source: null build: 3_cp310 + subdir: osx-64 + build_number: 3 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 5765 + timestamp: 1669071919130 - name: numpy - version: 1.25.0 + version: 1.25.1 manager: conda platform: osx-64 dependencies: @@ -5918,62 +7767,20 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* *_cp310 libblas: '>=3.9.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.25.0-py310h7451ae0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.25.1-py310h7451ae0_0.conda hash: - md5: 9accbca17b11eed20ee32b57189e9e66 - sha256: b897d4d4ab581a22faba563c38981114bf16eb0eecc906b20421c96299def30f + md5: 525db32fd93b63f2f7ca3ece8576b9c8 + sha256: 32fe99f86e998169999514fb7f96695fdec9215bd0e7061425c1b4e399ca2cae optional: false category: main - source: null build: py310h7451ae0_0 -- name: libtiff - version: 4.5.1 - manager: conda - platform: osx-64 - dependencies: - libdeflate: '>=1.18,<1.19.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libwebp-base: '>=1.3.0,<2.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - xz: '>=5.2.6,<6.0a0' - libcxx: '>=15.0.7' - lerc: '>=4.0.0,<5.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.1-hf955e92_0.conda - hash: - md5: 56523ed556e3a44c0fd55bcf17045892 - sha256: 0526690c890b53419e6bbbe17dfc456789897ce9d7d79db3c4ea6568848bf6d0 - optional: false - category: main - source: null - build: hf955e92_0 -- name: lerc - version: 4.0.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 - hash: - md5: f9d6a4c82889d5ecedec1d90eb673c55 - sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 - optional: false - category: main - source: null - build: hb486fe8_0 -- name: libdeflate - version: '1.18' - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.18-hac1461d_0.conda - hash: - md5: 3d131584456b277ce0871e6481fde49b - sha256: b985178bc45f83259c99026d988448277e17171801945769396e2577ce59778c - optional: false - category: main - source: null - build: hac1461d_0 + subdir: osx-64 + build_number: 0 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + size: 6378643 + timestamp: 1688887678910 - name: ffmpeg version: 6.0.0 manager: conda @@ -6005,8 +7812,13 @@ package: sha256: 3497c83f03a2f1971ba8da622073d8df8e993bc3dc59d575732fefc46bd1b908 optional: false category: main - source: null build: gpl_h74aebd8_103 + subdir: osx-64 + build_number: 103 + license: GPL-2.0-or-later + license_family: GPL + size: 10033682 + timestamp: 1687155973808 - name: fonts-conda-ecosystem version: '1' manager: conda @@ -6019,21 +7831,14 @@ package: sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 optional: false category: main - source: null build: '0' -- name: libiconv - version: '1.17' - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2 - hash: - md5: 691d103d11180486154af49c037b7ed9 - sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2 - optional: false - category: main - source: null - build: hac89ed1_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 3667 + timestamp: 1566974674465 - name: gnutls version: 3.7.8 manager: conda @@ -6051,8 +7856,13 @@ package: sha256: dc309e4c24689deb19596a745e0a31519adcf65c16bc349e23c140ee6ffb8f94 optional: false category: main - source: null build: h207c4f0_0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 2228721 + timestamp: 1664446079954 - name: gmp version: 6.2.1 manager: conda @@ -6065,8 +7875,12 @@ package: sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 optional: false category: main - source: null build: h2e338ed_0 + subdir: osx-64 + build_number: 0 + license: GPL-2.0-or-later AND LGPL-3.0-or-later + size: 792127 + timestamp: 1605751675650 - name: aom version: 3.5.0 manager: conda @@ -6079,8 +7893,13 @@ package: sha256: 16ccdf58e3b8b3f446d53780964730e51c57ef11f87b64a4535d9f5a8904f39c optional: false category: main - source: null build: hf0c8a7f_0 + subdir: osx-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 3370097 + timestamp: 1663809123485 - name: libvpx version: 1.13.0 manager: conda @@ -6093,8 +7912,13 @@ package: sha256: 2b44fa140498b43b9dea56318bff46ad14b91b32598406daefed58d485464dbc optional: false category: main - source: null build: hf0c8a7f_0 + subdir: osx-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 1259413 + timestamp: 1679760395524 - name: libxml2 version: 2.11.4 manager: conda @@ -6110,8 +7934,13 @@ package: sha256: d113eeafcbbb4ee5086b31b45adac5818394dc9759e3e1d9fb95114a852ef535 optional: false category: main - source: null build: hd95e348_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 623719 + timestamp: 1684627463086 - name: svt-av1 version: 1.6.0 manager: conda @@ -6124,8 +7953,13 @@ package: sha256: af586b431be5391c0923857fbf656ea5cbdd9a6a4909b6cdf41e3a8a384f067c optional: false category: main - source: null build: he965462_0 + subdir: osx-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 2423099 + timestamp: 1687135106083 - name: fontconfig version: 2.14.2 manager: conda @@ -6140,8 +7974,13 @@ package: sha256: f63e6d1d6aef8ba6de4fc54d3d7898a153479888d40ffdf2e4cfad6f92679d34 optional: false category: main - source: null build: h5bb23bf_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 237068 + timestamp: 1674829100063 - name: dav1d version: 1.2.1 manager: conda @@ -6153,8 +7992,13 @@ package: sha256: ec71a835866b42e946cd2039a5f7a6458851a21890d315476f5e66790ac11c96 optional: false category: main - source: null build: h0dc2134_0 + subdir: osx-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 668439 + timestamp: 1685696184631 - name: libass version: 0.17.1 manager: conda @@ -6173,8 +8017,13 @@ package: sha256: 1052006a363a06e74f1633f5e1c54964120049383e6bdf384a8ebb30fa4ca12d optional: false category: main - source: null build: h66d2fa1_0 + subdir: osx-64 + build_number: 0 + license: ISC + license_family: OTHER + size: 124684 + timestamp: 1683177582447 - name: fonts-conda-forge version: '1' manager: conda @@ -6190,8 +8039,14 @@ package: sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 optional: false category: main - source: null build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 4102 + timestamp: 1566932280397 - name: nettle version: 3.8.1 manager: conda @@ -6203,8 +8058,13 @@ package: sha256: d8b3ffa9595e04a28c7cecb482548c868ec1d5d1937a40ac508ff97d0343d3dc optional: false category: main - source: null build: h96f3785_1 + subdir: osx-64 + build_number: 1 + license: GPL 2 and LGPL3 + license_family: GPL + size: 547875 + timestamp: 1659085424759 - name: libtasn1 version: 4.19.0 manager: conda @@ -6216,8 +8076,13 @@ package: sha256: 4197c155fb460fae65288c6c098c39f22495a53838356d29b79b31b8e33486dc optional: false category: main - source: null build: hb7f2c08_0 + subdir: osx-64 + build_number: 0 + license: GPL-3.0-or-later + license_family: GPL + size: 118785 + timestamp: 1661325967954 - name: p11-kit version: 0.24.1 manager: conda @@ -6231,8 +8096,13 @@ package: sha256: e16fbaadb2714c0965cb76de32fe7d13a21874cec02c97efef8ac51f4fda86fc optional: false category: main - source: null build: h65f8906_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 834487 + timestamp: 1654869241699 - name: libexpat version: 2.5.0 manager: conda @@ -6244,8 +8114,15 @@ package: sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96 optional: false category: main - source: null build: hf0c8a7f_1 + subdir: osx-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 69602 + timestamp: 1680191040160 - name: font-ttf-dejavu-sans-mono version: '2.37' manager: conda @@ -6257,8 +8134,14 @@ package: sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main - source: null build: hab24e00_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 397370 + timestamp: 1566932522327 - name: font-ttf-ubuntu version: '0.83' manager: conda @@ -6270,8 +8153,86 @@ package: sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main - source: null build: hab24e00_0 + subdir: noarch + build_number: 0 + license: Ubuntu Font Licence Version 1.0 + license_family: Other + noarch: generic + size: 1961279 + timestamp: 1566932680646 +- name: hdf5 + version: 1.14.1 + manager: conda + platform: osx-64 + dependencies: + libgfortran: 5.* + libcxx: '>=15.0.7' + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=8.1.2,<9.0a0' + libgfortran5: '>=12.2.0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.1-nompi_hedada53_100.conda + hash: + md5: 033c310c83abbd9c2f9a5c13b9f54225 + sha256: a3cddc0c0bbac7a9e30880c1cbd11643766e89945df3f101849fb6d073c878c3 + optional: false + category: main + build: nompi_hedada53_100 + subdir: osx-64 + build_number: 100 + license: LicenseRef-HDF5 + license_family: BSD + size: 3523686 + timestamp: 1687160111108 +- name: libcurl + version: 8.1.2 + manager: conda + platform: osx-64 + dependencies: + libssh2: '>=1.10.0,<2.0a0' + libnghttp2: '>=1.52.0,<2.0a0' + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.1.2-hbee3ae8_0.conda + hash: + md5: d51e337da844262f9033c9a26452520f + sha256: 2f81bb06377779ea1abe373a2a89289fb440751ad6f68f947ec0f3b1e4399968 + optional: false + category: main + build: hbee3ae8_0 + subdir: osx-64 + build_number: 0 + license: curl + license_family: MIT + size: 352385 + timestamp: 1685448012016 +- name: libnghttp2 + version: 1.52.0 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda + hash: + md5: 12ac7d100bf260263e30a019517f42a2 + sha256: 093e4f3f62b3b07befa403e84a1f550cffe3b3961e435d42a75284f44be5f68a + optional: false + category: main + build: he2ab024_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 613074 + timestamp: 1677678399575 - name: freetype version: 2.12.1 manager: conda @@ -6285,8 +8246,12 @@ package: sha256: 0aea2b93d0da8bf022501857de93f2fc0e362fabcd83c4579be8d8f5bc3e17cb optional: false category: main - source: null build: h3f81eb7_1 + subdir: osx-64 + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 599569 + timestamp: 1669233263749 - name: liblapacke version: 3.9.0 manager: conda @@ -6301,8 +8266,15 @@ package: sha256: f05576f58d8923c704967641a67e4079085c4b00e2f9eaec31a282df13a97182 optional: false category: main - source: null build: 17_osx64_openblas + subdir: osx-64 + build_number: 17 + constrains: + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14625 + timestamp: 1685931041523 - name: libblas version: 3.9.0 manager: conda @@ -6315,8 +8287,18 @@ package: sha256: d2439e4f7bbe0814128d080a01f8435875cc423543184ca0096087308631d73e optional: false category: main - source: null build: 17_osx64_openblas + subdir: osx-64 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_osx64_openblas + - libcblas 3.9.0 17_osx64_openblas + - blas * openblas + - liblapack 3.9.0 17_osx64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14710 + timestamp: 1685930987689 - name: libcblas version: 3.9.0 manager: conda @@ -6329,8 +8311,17 @@ package: sha256: 5c85941b55a8e897e11188ab66900eb3d83c87f6bdd0b88856733f8510fa4c91 optional: false category: main - source: null build: 17_osx64_openblas + subdir: osx-64 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_osx64_openblas + - blas * openblas + - liblapack 3.9.0 17_osx64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14614 + timestamp: 1685931005294 - name: liblapack version: 3.9.0 manager: conda @@ -6343,8 +8334,17 @@ package: sha256: 7ce76f3e9578b62fbd88c094f343c1b09ec3466afccfc08347d31742e6831e97 optional: false category: main - source: null build: 17_osx64_openblas + subdir: osx-64 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_osx64_openblas + - libcblas 3.9.0 17_osx64_openblas + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14619 + timestamp: 1685931022827 - name: libopenblas version: 0.3.23 manager: conda @@ -6359,10 +8359,17 @@ package: sha256: fb1ba347e07145807fb1688c78b115d5eb2f4775d9eb6d991d49cb88eef174b7 optional: false category: main - source: null build: openmp_h429af6e_0 + subdir: osx-64 + build_number: 0 + constrains: + - openblas >=0.3.23,<0.3.24.0a0 + license: BSD-3-Clause + license_family: BSD + size: 6018665 + timestamp: 1681400118468 - name: libglib - version: 2.76.3 + version: 2.76.4 manager: conda platform: osx-64 dependencies: @@ -6372,14 +8379,20 @@ package: libffi: '>=3.4,<4.0a0' libiconv: '>=1.17,<2.0a0' libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.76.3-hc62aa5d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.76.4-hc62aa5d_0.conda hash: - md5: 3687b3c1d257dec787418281cfc58358 - sha256: b9396d779ed9c12e4777500497f87414629e943f2f433d059f3378f8d5d4f57e + md5: 05c728fccc40277119bf94cf08e38384 + sha256: 8d53545974278511739df2711b59087eb7c991fb0e278864a8f5a21db04fd961 optional: false category: main - source: null build: hc62aa5d_0 + subdir: osx-64 + build_number: 0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2460888 + timestamp: 1688694812686 - name: gettext version: 0.21.1 manager: conda @@ -6392,8 +8405,12 @@ package: sha256: 915d3cd2d777b9b3fc2e87a25901b8e4a6aa1b2b33cf2ba54e9e9ed4f6b67d94 optional: false category: main - source: null build: h8a4c099_0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4153781 + timestamp: 1665674106245 - name: pcre2 version: '10.40' manager: conda @@ -6407,8 +8424,13 @@ package: sha256: 60265b48c96decbea89a19a7bc34be88d9b95d4725fd4dbdae158529c601875a optional: false category: main - source: null build: h1c4e4bc_0 + subdir: osx-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2552113 + timestamp: 1665563254214 - name: cairo version: 1.16.0 manager: conda @@ -6429,8 +8451,12 @@ package: sha256: d5dec1060a78deb70ddfd89c23ee683699f743fe68f78379dc4834e2553edb37 optional: false category: main - source: null build: h09dd18c_1016 + subdir: osx-64 + build_number: 1016 + license: LGPL-2.1-only or MPL-1.1 + size: 951603 + timestamp: 1684639693371 - name: zlib version: 1.2.13 manager: conda @@ -6443,21 +8469,113 @@ package: sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 optional: false category: main - source: null - build: h8a1eda9_5 -- name: pixman - version: 0.40.0 + build: h8a1eda9_5 + subdir: osx-64 + build_number: 5 + license: Zlib + license_family: Other + size: 90764 + timestamp: 1686575574678 +- name: pixman + version: 0.40.0 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2 + hash: + md5: 09a583a6f172715be21d93aaa1b42d71 + sha256: 50646988679b823958bd99983a9e66fce58a7368fa2bab5712efb5c7ce6199af + optional: false + category: main + build: hbcb3906_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 629262 + timestamp: 1604342792761 +- name: openssl + version: 3.1.1 + manager: conda + platform: osx-64 + dependencies: + ca-certificates: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.1-h8a1eda9_1.conda + hash: + md5: c7822d6ee74e34af1fd74365cfd18983 + sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 + optional: false + category: main + build: h8a1eda9_1 + subdir: osx-64 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2326872 + timestamp: 1685518213128 +- name: krb5 + version: 1.20.1 + manager: conda + platform: osx-64 + dependencies: + libedit: '>=3.1.20191231,<4.0a0' + libcxx: '>=14.0.6' + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda + hash: + md5: db11fa2968ef0837288fe2d7f5b77a50 + sha256: 41cfbf4c5cdb4a32eb5319943113d7ef1edb894ea0a5464233e510b59450c824 + optional: false + category: main + build: h049b76e_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1127291 + timestamp: 1671092045705 +- name: libgfortran5 + version: 12.2.0 + manager: conda + platform: osx-64 + dependencies: + llvm-openmp: '>=8.0.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda + hash: + md5: 5a544130e584b1f204ac896ff071d5b3 + sha256: 42ae06bbb3cf7f7c3194482894f4287fad7bc39214d1a0dbf0c43f8efb8d3c1a + optional: false + category: main + build: he409387_31 + subdir: osx-64 + build_number: 31 + constrains: + - libgfortran 5.0.0 *_31 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1600291 + timestamp: 1678485061597 +- name: libaec + version: 1.0.6 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.0.6-hf0c8a7f_1.conda hash: - md5: 09a583a6f172715be21d93aaa1b42d71 - sha256: 50646988679b823958bd99983a9e66fce58a7368fa2bab5712efb5c7ce6199af + md5: 7c0f82f435ab4c48d65dc9b28db2ad9e + sha256: 38d32f4c7efddc204e53f43cd910122d3e6a997de1a3cd15f263217b225a9cdf optional: false category: main - source: null - build: hbcb3906_0 + build: hf0c8a7f_1 + subdir: osx-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 29711 + timestamp: 1673799633171 - name: x264 version: 1!164.3095 manager: conda @@ -6469,8 +8587,13 @@ package: sha256: de611da29f4ed0733a330402e163f9260218e6ba6eae593a5f945827d0ee1069 optional: false category: main - source: null build: h775f41a_2 + subdir: osx-64 + build_number: 2 + license: GPL-2.0-or-later + license_family: GPL + size: 937077 + timestamp: 1660323305349 - name: openh264 version: 2.3.1 manager: conda @@ -6483,8 +8606,13 @@ package: sha256: 5f39b97f048d72b149627993072e15d37428338a9fe83600db5d09ae7ca9f7b4 optional: false category: main - source: null build: hf0c8a7f_2 + subdir: osx-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 671537 + timestamp: 1675880810146 - name: lame version: '3.100' manager: conda @@ -6496,8 +8624,13 @@ package: sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e optional: false category: main - source: null build: hb7f2c08_1003 + subdir: osx-64 + build_number: 1003 + license: LGPL-2.0-only + license_family: LGPL + size: 542681 + timestamp: 1664996421531 - name: x265 version: '3.5' manager: conda @@ -6510,8 +8643,13 @@ package: sha256: 6b6a57710192764d0538f72ea1ccecf2c6174a092e0bc76d790f8ca36bbe90e4 optional: false category: main - source: null build: hbb4e6a2_3 + subdir: osx-64 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 3433205 + timestamp: 1646610148268 - name: libopus version: 1.3.1 manager: conda @@ -6523,36 +8661,49 @@ package: sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 optional: false category: main - source: null build: hc929b4f_1 + subdir: osx-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 279983 + timestamp: 1606823633642 - name: zstd version: 1.5.2 manager: conda platform: osx-64 dependencies: libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-h829000d_7.conda hash: - md5: 40a188783d3c425bdccc9ae9104acbb8 - sha256: f845dafb0b488703ce81e25b6f27ed909ee9061b730c172e6b084fcf7156231f + md5: b274ec4dbf15a6e20900e397610567a0 + sha256: 8d6768da7c3170693c0649188e7575474046f8610d8074903cf84e403e3411e8 optional: false category: main - source: null - build: hbc0c0cd_6 -- name: ncurses - version: '6.4' + build: h829000d_7 + subdir: osx-64 + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 405881 + timestamp: 1688722093601 +- name: ca-certificates + version: 2023.5.7 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda hash: - md5: c3dbae2411164d9b02c69090a9a91857 - sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd + md5: b704e4b79ba0d887c4870b7b09d6a4df + sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c optional: false category: main - source: null - build: hf0c8a7f_0 + build: h8857fd0_0 + subdir: osx-64 + build_number: 0 + license: ISC + size: 148522 + timestamp: 1683451939937 - name: tzdata version: 2023c manager: conda @@ -6564,22 +8715,13 @@ package: sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main - source: null build: h71feb2d_0 -- name: openssl - version: 3.1.1 - manager: conda - platform: osx-64 - dependencies: - ca-certificates: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.1-h8a1eda9_1.conda - hash: - md5: c7822d6ee74e34af1fd74365cfd18983 - sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 - optional: false - category: main - source: null - build: h8a1eda9_1 + subdir: noarch + build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 - name: libffi version: 3.4.2 manager: conda @@ -6591,22 +8733,13 @@ package: sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f optional: false category: main - source: null build: h0d85af4_5 -- name: libsqlite - version: 3.42.0 - manager: conda - platform: osx-64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.42.0-h58db7d2_0.conda - hash: - md5: a7d3b44b7b0c9901ac7813b7a0462893 - sha256: 182689f4b1a5ed638cd615c7774e1a9974842bc127c59173f1d25e31a8795eef - optional: false - category: main - source: null - build: h58db7d2_0 + subdir: osx-64 + build_number: 5 + license: MIT + license_family: MIT + size: 51348 + timestamp: 1636488394370 - name: font-ttf-inconsolata version: '3.000' manager: conda @@ -6618,8 +8751,14 @@ package: sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c optional: false category: main - source: null build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 96530 + timestamp: 1620479909603 - name: font-ttf-source-code-pro version: '2.038' manager: conda @@ -6631,8 +8770,14 @@ package: sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 optional: false category: main - source: null build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 700814 + timestamp: 1620479612257 - name: certifi version: 2023.5.7 manager: conda @@ -6645,8 +8790,13 @@ package: sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: ISC + noarch: python + size: 152383 + timestamp: 1683450391501 - name: idna version: '3.4' manager: conda @@ -6659,8 +8809,14 @@ package: sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 optional: false category: main - source: null build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 56742 + timestamp: 1663625484114 - name: urllib3 version: 2.0.3 manager: conda @@ -6668,43 +8824,97 @@ package: dependencies: pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.7' - brotli: '>=1.0.9' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda + brotli-python: '>=1.0.9' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_1.conda hash: - md5: ae465d0fbf9f1979cb2d8d4043d885e2 - sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 + md5: 89efeecbb24c62e2f1ed0b8ca959ec69 + sha256: 60b64b483b2c662f946837043d95c1a5d90948464a834403b0e3bce373a96a1e optional: false category: main - source: null - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 + subdir: noarch + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 98152 + timestamp: 1688005881308 - name: charset-normalizer - version: 3.1.0 + version: 3.2.0 manager: conda platform: osx-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 optional: false category: main - source: null build: pyhd8ed1ab_0 -- name: libgfortran5 - version: 12.2.0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 45686 + timestamp: 1688813585878 +- name: c-ares + version: 1.19.1 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.19.1-h0dc2134_0.conda + hash: + md5: b3e62631b4e1b9801477523ce1d6f355 + sha256: 1de09d540facc3833e3f0a280ae987859f310f535726eff66d6f4a66045bd32c + optional: false + category: main + build: h0dc2134_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 103004 + timestamp: 1684783034995 +- name: libev + version: '4.33' + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2 + hash: + md5: 79dc2be110b2a3d1e97ec21f691c50ad + sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b + optional: false + category: main + build: haf1e3a3_1 + subdir: osx-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 101424 + timestamp: 1598868359024 +- name: libssh2 + version: 1.11.0 manager: conda platform: osx-64 dependencies: - llvm-openmp: '>=8.0.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: - md5: 5a544130e584b1f204ac896ff071d5b3 - sha256: 42ae06bbb3cf7f7c3194482894f4287fad7bc39214d1a0dbf0c43f8efb8d3c1a + md5: ca3a72efba692c59a90d4b9fc0dfe774 + sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 optional: false category: main - source: null - build: he409387_31 + build: hd019ec5_0 + subdir: osx-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 259556 + timestamp: 1685837820566 - name: llvm-openmp version: 16.0.6 manager: conda @@ -6716,8 +8926,15 @@ package: sha256: 0fbcf1c9e15dbb22d337063550ebcadbeb96b2a012e633f80255c8c720e4f832 optional: false category: main - source: null build: hff08bdf_0 + subdir: osx-64 + build_number: 0 + constrains: + - openmp 16.0.6|16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 295823 + timestamp: 1686865427800 - name: expat version: 2.5.0 manager: conda @@ -6730,8 +8947,13 @@ package: sha256: 15c04a5a690b337b50fb7550cce057d843cf94dd0109d576ec9bc3448a8571d0 optional: false category: main - source: null build: hf0c8a7f_1 + subdir: osx-64 + build_number: 1 + license: MIT + license_family: MIT + size: 120323 + timestamp: 1680191057827 - name: libidn2 version: 2.3.4 manager: conda @@ -6745,108 +8967,12 @@ package: sha256: a85127270c37fe2046372d706c44b7c707605dc1f8b97f80e8a1e1978bd3f8f5 optional: false category: main - source: null build: hb7f2c08_0 -- name: hdf5 - version: 1.14.0 - manager: conda - platform: osx-64 - dependencies: - libgfortran: 5.* - libcxx: '>=14.0.6' - libaec: '>=1.0.6,<2.0a0' - libcurl: '>=7.88.1,<9.0a0' - libgfortran5: '>=12.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.8,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.0-nompi_hbf0aa07_103.conda - hash: - md5: 90f50d124606a4e62628823b614a2f4c - sha256: 1c57bea7086af82b57d912d806516e432a179c4a46271c1e65bbe39466722e3d - optional: false - category: main - source: null - build: nompi_hbf0aa07_103 -- name: libcurl - version: 8.1.2 - manager: conda - platform: osx-64 - dependencies: - libssh2: '>=1.10.0,<2.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - openssl: '>=3.1.0,<4.0a0' - krb5: '>=1.20.1,<1.21.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.1.2-hbee3ae8_0.conda - hash: - md5: d51e337da844262f9033c9a26452520f - sha256: 2f81bb06377779ea1abe373a2a89289fb440751ad6f68f947ec0f3b1e4399968 - optional: false - category: main - source: null - build: hbee3ae8_0 -- name: krb5 - version: 1.20.1 - manager: conda - platform: osx-64 - dependencies: - libedit: '>=3.1.20191231,<4.0a0' - libcxx: '>=14.0.6' - openssl: '>=3.0.7,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda - hash: - md5: db11fa2968ef0837288fe2d7f5b77a50 - sha256: 41cfbf4c5cdb4a32eb5319943113d7ef1edb894ea0a5464233e510b59450c824 - optional: false - category: main - source: null - build: h049b76e_0 -- name: libnghttp2 - version: 1.52.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - c-ares: '>=1.18.1,<2.0a0' - libev: '>=4.33,<4.34.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.8,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda - hash: - md5: 12ac7d100bf260263e30a019517f42a2 - sha256: 093e4f3f62b3b07befa403e84a1f550cffe3b3961e435d42a75284f44be5f68a - optional: false - category: main - source: null - build: he2ab024_0 -- name: libaec - version: 1.0.6 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.0.6-hf0c8a7f_1.conda - hash: - md5: 7c0f82f435ab4c48d65dc9b28db2ad9e - sha256: 38d32f4c7efddc204e53f43cd910122d3e6a997de1a3cd15f263217b225a9cdf - optional: false - category: main - source: null - build: hf0c8a7f_1 -- name: ca-certificates - version: 2023.5.7 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda - hash: - md5: b704e4b79ba0d887c4870b7b09d6a4df - sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c - optional: false - category: main - source: null - build: h8857fd0_0 + subdir: osx-64 + build_number: 0 + license: LGPLv2 + size: 173894 + timestamp: 1666574251642 - name: pysocks version: 1.7.1 manager: conda @@ -6860,121 +8986,37 @@ package: sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b optional: false category: main - source: null build: pyha2e5f31_6 -- name: brotli - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: - libbrotlienc: ==1.0.9 hb7f2c08_8 - brotli-bin: ==1.0.9 hb7f2c08_8 - libbrotlidec: ==1.0.9 hb7f2c08_8 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2 - hash: - md5: 55f612fe4a9b5f6ac76348b6de94aaeb - sha256: 1272426370f1e8db1a8b245a7b522afe27413b09eab169990512a7676b802e3b - optional: false - category: main - source: null - build: hb7f2c08_8 -- name: brotli-bin - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: - libbrotlienc: ==1.0.9 hb7f2c08_8 - libbrotlidec: ==1.0.9 hb7f2c08_8 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2 - hash: - md5: aac5ad0d8f747ef7f871508146df75d9 - sha256: 36f79eb26da032c5d1ddc11e0bcac5526f249bf60d332e4743c8d48bb7334db0 - optional: false - category: main - source: null - build: hb7f2c08_8 -- name: libbrotlidec - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: - libbrotlicommon: ==1.0.9 hb7f2c08_8 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2 - hash: - md5: 7f952a036d9014b4dab96c6ea0f8c2a7 - sha256: 52d8e8929b2476cf13fd397d88cefd911f805de00e77090fdc50b8fb11c372ca - optional: false - category: main - source: null - build: hb7f2c08_8 -- name: libbrotlienc + subdir: noarch + build_number: 6 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 18981 + timestamp: 1661604969727 +- name: brotli-python version: 1.0.9 manager: conda platform: osx-64 dependencies: - libbrotlicommon: ==1.0.9 hb7f2c08_8 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2 - hash: - md5: b36a3bfe866d9127f25f286506982166 - sha256: be7e794c6208e7e12982872922df13fbf020ab594d516b7bc306a384ac7d3ac6 - optional: false - category: main - source: null - build: hb7f2c08_8 -- name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2 - hash: - md5: 37157d273eaf3bc7d6862104161d9ec9 - sha256: c983101653f5bffea605c4423d84fd5ca28ee36b290cdb6207ec246e293f7d94 - optional: false - category: main - source: null - build: hb7f2c08_8 -- name: c-ares - version: 1.19.1 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.19.1-h0dc2134_0.conda - hash: - md5: b3e62631b4e1b9801477523ce1d6f355 - sha256: 1de09d540facc3833e3f0a280ae987859f310f535726eff66d6f4a66045bd32c - optional: false - category: main - source: null - build: h0dc2134_0 -- name: libev - version: '4.33' - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2 - hash: - md5: 79dc2be110b2a3d1e97ec21f691c50ad - sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b - optional: false - category: main - source: null - build: haf1e3a3_1 -- name: libssh2 - version: 1.11.0 - manager: conda - platform: osx-64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + python: '>=3.10,<3.11.0a0' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.0.9-py310h7a76584_9.conda hash: - md5: ca3a72efba692c59a90d4b9fc0dfe774 - sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 + md5: c67beac00bdca7f4f18af799744fac95 + sha256: 65b56826c3e4ab2fbc29181814e983ef3a1b57c2ed8be997200933d620207e3b optional: false category: main - source: null - build: hd019ec5_0 + build: py310h7a76584_9 + subdir: osx-64 + build_number: 9 + constrains: + - libbrotlicommon 1.0.9 hb7f2c08_9 + license: MIT + license_family: MIT + size: 351652 + timestamp: 1687885260208 - name: graphite2 version: 1.3.13 manager: conda @@ -6987,8 +9029,12 @@ package: sha256: 1dba68533e6888c5e2a7e37119a77d6f388fb82721c530ba3bd28d541828e59b optional: false category: main - source: null build: h2e338ed_1001 + subdir: osx-64 + build_number: 1001 + license: LGPLv2 + size: 86556 + timestamp: 1604365555365 - name: libgfortran version: 5.0.0 manager: conda @@ -7001,8 +9047,13 @@ package: sha256: 55d3c81ce8cd931260c3cb8c85868e36223d2bd0d5e2f35a79503810ee172769 optional: false category: main - source: null build: 11_3_0_h97931a8_31 + subdir: osx-64 + build_number: 31 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 160084 + timestamp: 1678485362631 - name: bzip2 version: 1.0.8 manager: conda @@ -7014,8 +9065,13 @@ package: sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 optional: false category: main - source: null build: h0d85af4_4 + subdir: osx-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 158829 + timestamp: 1618862580095 - name: libedit version: 3.1.20191231 manager: conda @@ -7028,8 +9084,13 @@ package: sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 optional: false category: main - source: null build: h0678c8f_2 + subdir: osx-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 105382 + timestamp: 1597616576726 - name: libunistring version: 0.9.10 manager: conda @@ -7041,8 +9102,12 @@ package: sha256: c5805a58cd2b211bffdc8b7cdeba9af3cee456196ab52ab9a30e0353bc95beb7 optional: false category: main - source: null build: h0d85af4_0 + subdir: osx-64 + build_number: 0 + license: GPL-3.0-only OR LGPL-3.0-only + size: 1392865 + timestamp: 1626955817826 - name: fribidi version: 1.0.10 manager: conda @@ -7054,6 +9119,10 @@ package: sha256: 4f6db86ecc4984cd4ac88ca52030726c3cfd11a64dfb15c8602025ee3001a2b5 optional: false category: main - source: null build: hbcb3906_0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1 + size: 65388 + timestamp: 1604417213 version: 1 diff --git a/examples/turtlesim/pixi.lock b/examples/turtlesim/pixi.lock index e1b46a2dd7..524597954d 100644 --- a/examples/turtlesim/pixi.lock +++ b/examples/turtlesim/pixi.lock @@ -295,6 +295,7 @@ package: qt-main: '>=5.15.6,<5.16.0a0' ros-humble-ignition-math6-vendor: '*' ros-humble-urdf: '*' + xorg-libxext: '*' ros-humble-interactive-markers: '*' ros-humble-pluginlib: '*' ros-humble-image-transport: '*' @@ -314,7 +315,6 @@ package: ros-humble-rviz-ogre-vendor: '*' ros-humble-visualization-msgs: '*' xorg-libx11: '*' - xorg-libxext: '*' url: https://conda.anaconda.org/robostack-staging/linux-64/ros-humble-rviz-default-plugins-11.2.5-py310h7c61026_3.tar.bz2 hash: md5: 8226d85021e4878a5439bf0483401793 @@ -8276,6 +8276,352 @@ package: license_family: GPL size: 746941 timestamp: 1647071114396 +- name: python_abi + version: '3.10' + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-3_cp310.conda + hash: + md5: 4eb33d14d794b0f4be116443ffed3853 + sha256: bcb15db27eb6fbc0fe15d23aa60dcfa58ef451d92771441068d4a911aea7bb9f + optional: false + category: main + build: 3_cp310 + subdir: linux-64 + build_number: 3 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 5677 + timestamp: 1669071721839 +- name: setuptools + version: 61.0.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/linux-64/setuptools-61.0.0-py310hff52083_0.tar.bz2 + hash: + md5: 4e674dc97ab7286b2b3ef71a0ee1c7d1 + sha256: 0d7d5c54667b003895735bfa4dcbf46cba7bd939a862ffd70d15d9b63c3a506f + optional: false + category: main + build: py310hff52083_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1327066 + timestamp: 1648243775887 +- name: qt-main + version: 5.15.8 + manager: conda + platform: linux-64 + dependencies: + libxml2: '>=2.10.3,<2.11.0a0' + nspr: '>=4.35,<5.0a0' + jpeg: '>=9e,<10a' + libsqlite: '>=3.40.0,<4.0a0' + expat: '>=2.5.0,<3.0a0' + xcb-util-renderutil: '*' + mysql-libs: '>=8.0.32,<8.1.0a0' + libxkbcommon: '>=1.0.3,<2.0a0' + nss: '>=3.82,<4.0a0' + xcb-util-keysyms: '*' + fontconfig: '>=2.14.2,<3.0a0' + libstdcxx-ng: '>=12' + libclang: '>=15.0.7,<16.0a0' + fonts-conda-ecosystem: '*' + xcb-util-image: '*' + openssl: '>=3.0.8,<4.0a0' + libpng: '>=1.6.39,<1.7.0a0' + xcb-util-wm: '*' + libzlib: '>=1.2.13,<1.3.0a0' + alsa-lib: '>=1.2.8,<1.2.9.0a0' + libgcc-ng: '>=12' + pulseaudio: '>=16.1,<16.2.0a0' + gstreamer: '>=1.22.0,<1.23.0a0' + libcups: '>=2.3.3,<2.4.0a0' + harfbuzz: '>=6.0.0,<7.0a0' + xcb-util: '*' + dbus: '>=1.13.6,<2.0a0' + libevent: '>=2.1.10,<2.1.11.0a0' + zstd: '>=1.5.2,<1.6.0a0' + icu: '>=70.1,<71.0a0' + libglib: '>=2.74.1,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + gst-plugins-base: '>=1.22.0,<1.23.0a0' + libxcb: '>=1.13,<1.14.0a0' + __glibc: '>=2.17,<3.0.a0' + libpq: '>=15.1,<16.0a0' + krb5: '>=1.20.1,<1.21.0a0' + libclang13: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5d23da1_6.conda + hash: + md5: 59c73debd9405771690ddbbad6c57b69 + sha256: fd0b6b8365fd4d0e86476a3047ba6a281eea0bdfef770df83b897fd73e959dd9 + optional: false + category: main + build: h5d23da1_6 + subdir: linux-64 + build_number: 6 + constrains: + - qt 5.15.8 + license: LGPL-3.0-only + license_family: LGPL + size: 52472654 + timestamp: 1675839238854 +- name: fonts-conda-ecosystem + version: '1' + manager: conda + platform: linux-64 + dependencies: + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + optional: false + category: main + build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 3667 + timestamp: 1566974674465 +- name: alsa-lib + version: 1.2.8 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2 + hash: + md5: be733e69048951df1e4b4b7bb8c7666f + sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd + optional: false + category: main + build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: LGPL-2.1-or-later + license_family: GPL + size: 592320 + timestamp: 1666699031168 +- name: fontconfig + version: 2.14.2 + manager: conda + platform: linux-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libuuid: '>=2.32.1,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + expat: '>=2.5.0,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda + hash: + md5: 0f69b688f52ff6da70bccb7ff7001d1d + sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 + optional: false + category: main + build: h14ed4e7_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 272010 + timestamp: 1674828850194 +- name: icu + version: '70.1' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2 + hash: + md5: 87473a15119779e021c314249d4b4aed + sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a + optional: false + category: main + build: h27087fc_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 14191488 + timestamp: 1648050221778 +- name: libpng + version: 1.6.39 + manager: conda + platform: linux-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda + hash: + md5: e1c890aebdebbfbf87e2c917187b4416 + sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 + optional: false + category: main + build: h753d276_0 + subdir: linux-64 + build_number: 0 + license: zlib-acknowledgement + size: 282599 + timestamp: 1669075729952 +- name: nspr + version: '4.35' + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda + hash: + md5: da0ec11a6454ae19bff5b02ed881a2b1 + sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c + optional: false + category: main + build: h27087fc_0 + subdir: linux-64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 226848 + timestamp: 1669784948267 +- name: xcb-util-image + version: 0.4.0 + manager: conda + platform: linux-64 + dependencies: + libxcb: '>=1.13,<1.14.0a0' + libgcc-ng: '>=12' + xcb-util: '>=0.4.0,<0.5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h166bdaf_0.tar.bz2 + hash: + md5: c9b568bd804cb2903c6be6f5f68182e4 + sha256: 6db358d4afa0eb1225e24871f6c64c1b6c433f203babdd43508b0d61252467d1 + optional: false + category: main + build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 24256 + timestamp: 1654738819647 +- name: xcb-util-renderutil + version: 0.3.9 + manager: conda + platform: linux-64 + dependencies: + libxcb: '>=1.13,<1.14.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-h166bdaf_0.tar.bz2 + hash: + md5: 732e22f1741bccea861f5668cf7342a7 + sha256: 19d27b7af8fb8047e044de2b87244337343c51fe7caa0fbaa9c53c2215787188 + optional: false + category: main + build: h166bdaf_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 15659 + timestamp: 1654738584558 +- name: fonts-conda-forge + version: '1' + manager: conda + platform: linux-64 + dependencies: + font-ttf-ubuntu: '*' + font-ttf-inconsolata: '*' + font-ttf-dejavu-sans-mono: '*' + font-ttf-source-code-pro: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + optional: false + category: main + build: '0' + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 4102 + timestamp: 1566932280397 +- name: font-ttf-dejavu-sans-mono + version: '2.37' + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + optional: false + category: main + build: hab24e00_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 397370 + timestamp: 1566932522327 +- name: font-ttf-ubuntu + version: '0.83' + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + optional: false + category: main + build: hab24e00_0 + subdir: noarch + build_number: 0 + license: Ubuntu Font Licence Version 1.0 + license_family: Other + noarch: generic + size: 1961279 + timestamp: 1566932680646 +- name: harfbuzz + version: 6.0.0 + manager: conda + platform: linux-64 + dependencies: + libglib: '>=2.74.1,<3.0a0' + icu: '>=70.1,<71.0a0' + libstdcxx-ng: '>=12' + graphite2: '*' + cairo: '>=1.16.0,<2.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda + hash: + md5: 448fe40d2fed88ccf4d9ded37cbb2b38 + sha256: f300fcb390253d6d63346ee71e56f82bc830783d1682ac933fe9ac86f39da942 + optional: false + category: main + build: h8e241bc_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1300409 + timestamp: 1671365973953 - name: libgcc-ng version: 13.1.0 manager: conda @@ -8333,409 +8679,406 @@ package: license_family: GPL size: 3847887 timestamp: 1685816251278 -- name: python_abi - version: '3.10' +- name: zlib + version: 1.2.13 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-3_cp310.conda + dependencies: + libzlib: ==1.2.13 hd590300_5 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda hash: - md5: 4eb33d14d794b0f4be116443ffed3853 - sha256: bcb15db27eb6fbc0fe15d23aa60dcfa58ef451d92771441068d4a911aea7bb9f + md5: 68c34ec6149623be41a1933ab996a209 + sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b optional: false category: main - build: 3_cp310 + build: hd590300_5 subdir: linux-64 - build_number: 3 - constrains: - - python 3.10.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 5677 - timestamp: 1669071721839 -- name: setuptools - version: 61.0.0 + build_number: 5 + license: Zlib + license_family: Other + size: 92825 + timestamp: 1686575231103 +- name: libzlib + version: 1.2.13 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/linux-64/setuptools-61.0.0-py310hff52083_0.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda hash: - md5: 4e674dc97ab7286b2b3ef71a0ee1c7d1 - sha256: 0d7d5c54667b003895735bfa4dcbf46cba7bd939a862ffd70d15d9b63c3a506f + md5: f36c115f1ee199da648e0597ec2047ad + sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 optional: false category: main - build: py310hff52083_0 + build: hd590300_5 subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 1327066 - timestamp: 1648243775887 -- name: pydocstyle - version: 6.3.0 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 61588 + timestamp: 1686575217516 +- name: boost-cpp + version: 1.78.0 manager: conda platform: linux-64 dependencies: - python: '>=3.8' - snowballstemmer: '>=2.2.0' - tomli: '>=1.2.3' - url: https://conda.anaconda.org/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_0.conda + xz: '>=5.2.6,<6.0a0' + bzip2: '>=1.0.8,<2.0a0' + icu: '>=70.1,<71.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.78.0-h5adbc97_2.conda hash: - md5: 7e23a61a7fbaedfef6eb0e1ac775c8e5 - sha256: 2076385b40e99732a013eff3b8defd88cd848764b9911d8e0d21728fbc89e301 + md5: 09be6b4c66c7881e2b24214c6f6841c9 + sha256: 7f88fff764eee5c95afa8d71864caa1a9fe862940699bceee1ec1f8e1e023174 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 39851 - timestamp: 1673997613432 -- name: snowballstemmer - version: 2.2.0 + build: h5adbc97_2 + subdir: linux-64 + build_number: 2 + constrains: + - libboost <0 + license: BSL-1.0 + size: 15907170 + timestamp: 1680712174404 +- name: xz + version: 5.2.6 manager: conda platform: linux-64 dependencies: - python: '>=2' - url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + md5: 2161070d867d1b1204ea749c8eec4ef0 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h166bdaf_0 + subdir: linux-64 build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 58824 - timestamp: 1637143137377 -- name: numpy - version: 1.25.0 + license: LGPL-2.1 and GPL-2.0 + size: 418368 + timestamp: 1660346797927 +- name: bzip2 + version: 1.0.8 manager: conda platform: linux-64 dependencies: - libcblas: '>=3.9.0,<4.0a0' - liblapack: '>=3.9.0,<4.0a0' - libstdcxx-ng: '>=12' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libblas: '>=3.9.0,<4.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.25.0-py310ha4c1d20_0.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 hash: - md5: 03319f78e5c9c8d90c0110e2c6ed24f6 - sha256: bee4c383e78effeccbf854636b174e7242cfb486daa5387cfa57963d3c65628e + md5: a1fd65c7ccbf10880423d82bca54eb54 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa optional: false category: main - build: py310ha4c1d20_0 + build: h7f98852_4 subdir: linux-64 - build_number: 0 - constrains: - - numpy-base <0a0 - license: BSD-3-Clause + build_number: 4 + license: bzip2-1.0.6 license_family: BSD - size: 6766910 - timestamp: 1687056693894 -- name: python - version: 3.10.12 + size: 495686 + timestamp: 1606604745109 +- name: zstd + version: 1.5.2 manager: conda platform: linux-64 dependencies: - tzdata: '*' - openssl: '>=3.1.1,<4.0a0' - readline: '>=8.2,<9.0a0' - libffi: '>=3.4,<4.0a0' - libnsl: '>=2.0.0,<2.1.0a0' - libsqlite: '>=3.42.0,<4.0a0' - libgcc-ng: '>=12' libzlib: '>=1.2.13,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' - libuuid: '>=2.38.1,<3.0a0' - ncurses: '>=6.4,<7.0a0' - ld_impl_linux-64: '>=2.36.1' - tk: '>=8.6.12,<8.7.0a0' - xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.12-hd12c33a_0_cpython.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-hfc55251_7.conda hash: - md5: eb6f1df105f37daedd6dca78523baa75 - sha256: 05e2a7ce916d259f11979634f770f31027d0a5d18463b094e64a30500f900699 + md5: 32ae18eb2a687912fc9e92a501c0a11b + sha256: a7f7e765dfb7af5265a38080e46f18cb07cfeecf81fe28fad23c4538e7d521c3 optional: false category: main - build: hd12c33a_0_cpython + build: hfc55251_7 subdir: linux-64 - build_number: 0 - constrains: - - python_abi 3.10.* *_cp310 - license: Python-2.0 - size: 25543395 - timestamp: 1687561173886 -- name: ncurses - version: '6.4' + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 431126 + timestamp: 1688721787223 +- name: freetype + version: 2.12.1 manager: conda platform: linux-64 dependencies: + libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda + libpng: '>=1.6.39,<1.7.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda hash: - md5: 681105bccc2a3f7f1a837d47d39c9179 - sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a + md5: e1232042de76d24539a436d37597eb06 + sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f optional: false category: main - build: hcb278e6_0 + build: hca18f0e_1 subdir: linux-64 - build_number: 0 - license: X11 AND BSD-3-Clause - size: 880967 - timestamp: 1686076725450 -- name: readline - version: '8.2' + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 625655 + timestamp: 1669232824158 +- name: libglib + version: 2.76.4 manager: conda platform: linux-64 dependencies: - ncurses: '>=6.3,<7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + gettext: '>=0.21.1,<1.0a0' + libstdcxx-ng: '>=12' + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.4-hebfc3b9_0.conda hash: - md5: 47d31b792659ce70f470b5c82fdfb7a4 - sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 + md5: c6f951789c888f7bbd2dd6858eab69de + sha256: e909b5e648d1ace172aac2ddf9d755f72429b134155a9b07156acb58a77ceee1 optional: false category: main - build: h8228510_1 + build: hebfc3b9_0 subdir: linux-64 - build_number: 1 - license: GPL-3.0-only - license_family: GPL - size: 281456 - timestamp: 1679532220005 -- name: tk - version: 8.6.12 + build_number: 0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2689038 + timestamp: 1688694661996 +- name: libiconv + version: '1.17' manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.11,<1.3.0a0' - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 + libgcc-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 hash: - md5: 5b8c42eb62e9fc961af70bdd6a26e168 - sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 + md5: b62b52da46c39ee2bc3c162ac7f1804d + sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 optional: false category: main - build: h27826a3_0 + build: h166bdaf_0 subdir: linux-64 build_number: 0 - license: TCL - license_family: BSD - size: 3456292 - timestamp: 1645033615058 -- name: libuuid - version: 2.38.1 + license: GPL and LGPL + size: 1450368 + timestamp: 1652700749886 +- name: gettext + version: 0.21.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 hash: - md5: 40b61aab5c7ba9ff276c41cfffe6b80b - sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 + md5: 14947d8770185e5153fdd04d4673ed37 + sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a optional: false category: main - build: h0b41bf4_0 + build: h27087fc_0 subdir: linux-64 build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 33601 - timestamp: 1680112270483 -- name: xz - version: 5.2.6 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4320628 + timestamp: 1665673494324 +- name: pcre2 + version: '10.40' manager: conda platform: linux-64 dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2 hash: - md5: 2161070d867d1b1204ea749c8eec4ef0 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + md5: 69e2c796349cd9b273890bee0febfe1b + sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a optional: false category: main - build: h166bdaf_0 + build: hc3806b6_0 subdir: linux-64 build_number: 0 - license: LGPL-2.1 and GPL-2.0 - size: 418368 - timestamp: 1660346797927 -- name: libnsl - version: 2.0.0 + license: BSD-3-Clause + license_family: BSD + size: 2412495 + timestamp: 1665562915343 +- name: cairo + version: 1.16.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 + xorg-libxrender: '*' + libpng: '>=1.6.38,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + libgcc-ng: '>=12' + xorg-libsm: '*' + xorg-libxext: '*' + icu: '>=70.1,<71.0a0' + libglib: '>=2.72.1,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + xorg-libice: '*' + zlib: '>=1.2.12,<1.3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + libxcb: '>=1.13,<1.14.0a0' + fonts-conda-ecosystem: '*' + xorg-libx11: '*' + pixman: '>=0.40.0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2 hash: - md5: 39b1328babf85c7c3a61636d9cd50206 - sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad + md5: d1a88f3ed5b52e1024b80d4bcd26a7a0 + sha256: f062cf56e6e50d3ad4b425ebb3765ca9138c6ebc52e6a42d1377de8bc8d954f6 optional: false category: main - build: h7f98852_0 + build: ha61ee94_1014 subdir: linux-64 - build_number: 0 - license: GPL-2.0-only - license_family: GPL - size: 31236 - timestamp: 1633040059627 -- name: libsqlite - version: 3.42.0 + build_number: 1014 + license: LGPL-2.1-only or MPL-1.1 + size: 1576122 + timestamp: 1663568213559 +- name: pixman + version: 0.40.0 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.42.0-h2797004_0.conda + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2 hash: - md5: fdaae20a1cf7cd62130a0973190a31b7 - sha256: 72e958870f49174ebc0ddcd4129e9a9f48de815f20aa3b553f136b514f29bb3a + md5: 660e72c82f2e75a6b3fe6a6e75c79f19 + sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 optional: false category: main - build: h2797004_0 + build: h36c2ea0_0 subdir: linux-64 build_number: 0 - license: Unlicense - size: 828910 - timestamp: 1684264791037 -- name: flake8 - version: 6.0.0 + license: MIT + license_family: MIT + size: 642520 + timestamp: 1604342437426 +- name: libxcb + version: '1.13' manager: conda platform: linux-64 dependencies: - mccabe: '>=0.7.0,<0.8.0' - pyflakes: '>=3.0.0,<3.1.0' - python: '>=3.8.1' - pycodestyle: '>=2.10.0,<2.11.0' - url: https://conda.anaconda.org/conda-forge/noarch/flake8-6.0.0-pyhd8ed1ab_0.conda + xorg-libxau: '*' + xorg-libxdmcp: '*' + libgcc-ng: '>=9.4.0' + pthread-stubs: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2 hash: - md5: e9345ba05d71742412b8aa6992ad9457 - sha256: 4a988f1b1bb9c58b1ee58220e880aa30f346ca193e3fb0d48607f3d961bb5e20 + md5: b3653fdc58d03face9724f602218a904 + sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build: h7f98852_1004 + subdir: linux-64 + build_number: 1004 license: MIT license_family: MIT - noarch: python - size: 109426 - timestamp: 1669396799974 -- name: mccabe - version: 0.7.0 + size: 399895 + timestamp: 1636658924671 +- name: xorg-libxau + version: 1.0.11 manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_0.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda hash: - md5: 34fc335fc50eef0b5ea708f2b5f54e0c - sha256: 0466ad9490b761e9a8c57fab574fc099136b45fa19a0746ce33acdeb2a84766b + md5: 2c80dc38fface310c9bd81b17037fee5 + sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: hd590300_0 + subdir: linux-64 build_number: 0 license: MIT license_family: MIT - noarch: python - size: 10909 - timestamp: 1643049714491 -- name: pycodestyle - version: 2.10.0 + size: 14468 + timestamp: 1684637984591 +- name: libffi + version: 3.4.2 manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.10.0-pyhd8ed1ab_0.conda + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 hash: - md5: 89843e4cc99c6a3fe5f4c86994cc8410 - sha256: 045624129b3a1cb288527353398af14479a58bee29d42498dc23a9b047f8d042 + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build: h7f98852_5 + subdir: linux-64 + build_number: 5 license: MIT license_family: MIT - noarch: python - size: 42519 - timestamp: 1669306964956 -- name: cppcheck - version: 2.10.3 + size: 58292 + timestamp: 1636488182923 +- name: libuuid + version: 2.38.1 manager: conda platform: linux-64 dependencies: - pygments: '*' - pcre: '>=8.45,<9.0a0' - libstdcxx-ng: '>=12' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/cppcheck-2.10.3-py310he65e294_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: - md5: 518c87ced8a6adc6d355329a0016aed4 - sha256: 996a0487b63965fc1b2f4f83ec76b388fa753296027ff4f7f1b78d937a789998 + md5: 40b61aab5c7ba9ff276c41cfffe6b80b + sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 optional: false category: main - build: py310he65e294_0 + build: h0b41bf4_0 subdir: linux-64 build_number: 0 - license: GPL-3.0-or-later - license_family: GPL - size: 2368648 - timestamp: 1678899770564 -- name: pcre - version: '8.45' + license: BSD-3-Clause + license_family: BSD + size: 33601 + timestamp: 1680112270483 +- name: expat + version: 2.5.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - libstdcxx-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2 + libexpat: ==2.5.0 hcb278e6_1 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda hash: - md5: c05d1820a6d34ff07aaaab7a9b7eddaa - sha256: 8f35c244b1631a4f31fb1d66ab6e1d9bfac0ca9b679deced1112c7225b3ad138 + md5: 8b9b5aca60558d02ddaa09d599e55920 + sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f optional: false category: main - build: h9c3ff4c_0 + build: hcb278e6_1 subdir: linux-64 - build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 259377 - timestamp: 1623788789327 -- name: importlib-metadata - version: 6.7.0 + build_number: 1 + license: MIT + license_family: MIT + size: 136778 + timestamp: 1680190541750 +- name: libexpat + version: 2.5.0 manager: conda platform: linux-64 dependencies: - python: '>=3.8' - zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.7.0-pyha770c72_0.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda hash: - md5: ba3786c6846e46038fe60c785d46dc81 - sha256: 1ffffc30dc67d8329d47c6d22de726cfd28d7ed236bca54f52fc0bdcd0a53fc7 + md5: 6305a3dd2752c76335295da4e581f2fd + sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 optional: false category: main - build: pyha770c72_0 - subdir: noarch - build_number: 0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 25884 - timestamp: 1687138526439 + build: hcb278e6_1 + subdir: linux-64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 77980 + timestamp: 1680190528313 - name: openssl version: 3.1.1 manager: conda @@ -8758,963 +9101,835 @@ package: license_family: Apache size: 2642411 timestamp: 1685517327134 -- name: spdlog - version: 1.11.0 +- name: krb5 + version: 1.20.1 manager: conda platform: linux-64 dependencies: - fmt: '>=9.1.0,<10.0a0' - libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.11.0-h9b3ece8_1.conda + openssl: '>=3.0.7,<4.0a0' + libedit: '>=3.1.20191231,<4.0a0' + libgcc-ng: '>=12' + keyutils: '>=1.6.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda hash: - md5: d1969251268232eb33e3bf95d041a06a - sha256: 33cd2da7147a36724f64fe66784cbb5eb99be5c9b1e3c192ff4c93baec121a82 + md5: 89a41adce7106749573d883b2f657d78 + sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 optional: false category: main - build: h9b3ece8_1 + build: h81ceb04_0 subdir: linux-64 - build_number: 1 + build_number: 0 license: MIT license_family: MIT - size: 221184 - timestamp: 1673570097299 -- name: fmt - version: 9.1.0 - manager: conda - platform: linux-64 + size: 1329877 + timestamp: 1671091750695 +- name: libevent + version: 2.1.10 + manager: conda + platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-9.1.0-h924138e_0.tar.bz2 + libgcc-ng: '>=9.4.0' + openssl: '>=3.0.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2 hash: - md5: b57864c85261a0fbc7132d2cc17478c7 - sha256: bd48506faffa86e07f7b40d54f2d7e13b0fc956eda9760236750f5ea20db7129 + md5: 4a049fc560e00e43151dc51368915fdd + sha256: 31ac7124c92628cd1c6bea368e38d7f43f8ec68d88128ecdc177773e6d00c60a optional: false category: main - build: h924138e_0 + build: h28343ad_4 subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 189730 - timestamp: 1661661115134 -- name: tinyxml - version: 2.6.2 + build_number: 4 + license: BSD-3-Clause + license_family: BSD + size: 1169108 + timestamp: 1633489266107 +- name: keyutils + version: 1.6.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - libstdcxx-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/tinyxml-2.6.2-h4bd325d_2.tar.bz2 + libgcc-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: - md5: 39dd0757ee71ccd5b120440dce126c37 - sha256: d9e3c192c535c06ec139ada7bcd1f12313ebd377208fc8149348e8534229f39e + md5: 30186d27e2c9fa62b45fb1476b7200e3 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb optional: false category: main - build: h4bd325d_2 + build: h166bdaf_0 subdir: linux-64 - build_number: 2 - license: Zlib - size: 56535 - timestamp: 1611562094388 -- name: pybind11 - version: 2.10.4 + build_number: 0 + license: LGPL-2.1-or-later + size: 117831 + timestamp: 1646151697040 +- name: libcups + version: 2.3.3 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' libstdcxx-ng: '>=12' - python_abi: 3.10.* *_cp310 - pybind11-global: ==2.10.4 py310hdf3cbec_0 + krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/pybind11-2.10.4-py310hdf3cbec_0.conda + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda hash: - md5: baa081de91b874136e0eeebcdbd9fa3e - sha256: 765dbfaf5f0b379be15fc137c28cd834794d20ab82646b7551bf1ea939e27409 + md5: c9f4416a34bc91e0eb029f912c68f81f + sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 optional: false category: main - build: py310hdf3cbec_0 + build: h36d4200_3 subdir: linux-64 - build_number: 0 - constrains: - - pybind11-abi ==4 - license: BSD-3-Clause - license_family: BSD - size: 180030 - timestamp: 1679012864769 -- name: pybind11-global - version: 2.10.4 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 4519779 + timestamp: 1671148111233 +- name: numpy + version: 1.25.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' + libcblas: '>=3.9.0,<4.0a0' + liblapack: '>=3.9.0,<4.0a0' libstdcxx-ng: '>=12' + python: '>=3.10,<3.11.0a0' python_abi: 3.10.* *_cp310 + libblas: '>=3.9.0,<4.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/pybind11-global-2.10.4-py310hdf3cbec_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.25.1-py310ha4c1d20_0.conda hash: - md5: fa8a0be85e4ffd8a2035a06cad9c707f - sha256: cf8f1e63784dbd75100c331274235ca0cdfa9f0a1c1a32504e5ca4946e6da054 + md5: 3810cbf2635cb1d0edb97715d4ad74e7 + sha256: 38ec15fe0afe9fb90bd50314ccd506f0e7d1642db0c7eb2b77627d448aa9ee6c optional: false category: main - build: py310hdf3cbec_0 + build: py310ha4c1d20_0 subdir: linux-64 build_number: 0 constrains: - - pybind11-abi ==4 + - numpy-base <0a0 license: BSD-3-Clause - license_family: BSD - size: 168201 - timestamp: 1679012721798 -- name: zstd - version: 1.5.2 + size: 6816069 + timestamp: 1688887559516 +- name: python + version: 3.10.12 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + tzdata: '*' + openssl: '>=3.1.1,<4.0a0' + readline: '>=8.2,<9.0a0' + libffi: '>=3.4,<4.0a0' + libnsl: '>=2.0.0,<2.1.0a0' + libsqlite: '>=3.42.0,<4.0a0' libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda + libzlib: '>=1.2.13,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libuuid: '>=2.38.1,<3.0a0' + ncurses: '>=6.4,<7.0a0' + ld_impl_linux-64: '>=2.36.1' + tk: '>=8.6.12,<8.7.0a0' + xz: '>=5.2.6,<6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.12-hd12c33a_0_cpython.conda hash: - md5: 6b63daed8feeca47be78f323e793d555 - sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 + md5: eb6f1df105f37daedd6dca78523baa75 + sha256: 05e2a7ce916d259f11979634f770f31027d0a5d18463b094e64a30500f900699 optional: false category: main - build: h3eb15da_6 + build: hd12c33a_0_cpython subdir: linux-64 - build_number: 6 - license: BSD-3-Clause - license_family: BSD - size: 419583 - timestamp: 1674244601308 -- name: pyyaml - version: '6.0' + build_number: 0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + size: 25543395 + timestamp: 1687561173886 +- name: ncurses + version: '6.4' manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 libgcc-ng: '>=12' - yaml: '>=0.2.5,<0.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py310h5764c6d_5.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda hash: - md5: 9e68d2ff6d98737c855b65f48dd3c597 - sha256: 602d68ee4544274b12fb6d13b8d5fc61d0ebbee190292c21d8be10a4e68185bd + md5: 681105bccc2a3f7f1a837d47d39c9179 + sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a optional: false category: main - build: py310h5764c6d_5 + build: hcb278e6_0 subdir: linux-64 - build_number: 5 - license: MIT - license_family: MIT - size: 176321 - timestamp: 1666772551486 -- name: catkin_pkg - version: 0.5.2 - manager: conda - platform: linux-64 - dependencies: - setuptools: '*' - python: '>=3.6' - python-dateutil: '*' - pyparsing: '>=1.5.7' - docutils: '*' - url: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-0.5.2-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 023308d75d557ab1ce66bf99a2988d9b - sha256: fbb30218baeceeabaa49fcd3e053b928899d4f78fb5dea131ee550de3e377d42 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 51088 - timestamp: 1653705145099 -- name: empy - version: 3.3.4 + license: X11 AND BSD-3-Clause + size: 880967 + timestamp: 1686076725450 +- name: readline + version: '8.2' manager: conda platform: linux-64 dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 + ncurses: '>=6.3,<7.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda hash: - md5: e4be10fd1a907b223da5be93f06709d2 - sha256: 75e04755df8d8db7a7711dddaf68963c11258b755c9c24565bfefa493ee383e3 + md5: 47d31b792659ce70f470b5c82fdfb7a4 + sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 optional: false category: main - build: pyh9f0ad1d_1 - subdir: noarch + build: h8228510_1 + subdir: linux-64 build_number: 1 - license: LGPL-2.1 + license: GPL-3.0-only license_family: GPL - noarch: python - size: 40210 - timestamp: 1586444722817 -- name: importlib_resources - version: 5.12.0 + size: 281456 + timestamp: 1679532220005 +- name: tk + version: 8.6.12 manager: conda platform: linux-64 dependencies: - python: '>=3.7' - zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda + libzlib: '>=1.2.11,<1.3.0a0' + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 hash: - md5: e5fd2260a231ee63b6969f4801082f2b - sha256: 091cca3e010f7a7353152f0abda2d68cfd83ddde80a15e974d9e18b2047e7be2 + md5: 5b8c42eb62e9fc961af70bdd6a26e168 + sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h27826a3_0 + subdir: linux-64 build_number: 0 - constrains: - - importlib-resources >=5.12.0,<5.12.1.0a0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 31030 - timestamp: 1676919099370 -- name: psutil - version: 5.9.5 + license: TCL + license_family: BSD + size: 3456292 + timestamp: 1645033615058 +- name: libnsl + version: 2.0.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - libgcc-ng: '>=12' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.5-py310h1fa729e_0.conda + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 hash: - md5: b0f0a014fc04012c05f39df15fe270ce - sha256: 6864a95001b67413f7d06e35dc2ef0f13afb8c93cde8e826321453eac1bf1991 + md5: 39b1328babf85c7c3a61636d9cd50206 + sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad optional: false category: main - build: py310h1fa729e_0 + build: h7f98852_0 subdir: linux-64 build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 362309 - timestamp: 1681775208997 -- name: rosdistro - version: 0.9.0 + license: GPL-2.0-only + license_family: GPL + size: 31236 + timestamp: 1633040059627 +- name: libsqlite + version: 3.42.0 manager: conda platform: linux-64 dependencies: - setuptools: '*' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - catkin_pkg: '*' - pyyaml: '*' - rospkg: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/rosdistro-0.9.0-py310hff52083_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.42.0-h2797004_0.conda hash: - md5: c39227fbdcb634c4e9dc59230cb2df8b - sha256: a3d4fb2b0f84c5ea7b4f6d711d260060cfe7a7be494dc5eb2f0dde4e35ef6f60 + md5: fdaae20a1cf7cd62130a0973190a31b7 + sha256: 72e958870f49174ebc0ddcd4129e9a9f48de815f20aa3b553f136b514f29bb3a optional: false category: main - build: py310hff52083_0 + build: h2797004_0 subdir: linux-64 build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 81356 - timestamp: 1666960784426 -- name: packaging - version: '23.1' + license: Unlicense + size: 828910 + timestamp: 1684264791037 +- name: libignition-cmake2 + version: 2.16.0 manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libignition-cmake2-2.16.0-hcb278e6_1.conda hash: - md5: 91cda59e66e1e4afe9476f8ef98f5c30 - sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 + md5: 5f317425f04154a862d19815e4284ad2 + sha256: d17e6b6935c2541e0f848b2df167842981f66b035a01dea5e51ecff3117ab190 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build: hcb278e6_1 + subdir: linux-64 + build_number: 1 license: Apache-2.0 license_family: APACHE - noarch: python - size: 46098 - timestamp: 1681337144376 -- name: argcomplete - version: 3.1.1 + size: 270234 + timestamp: 1670578794904 +- name: catkin_pkg + version: 0.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.1.1-pyhd8ed1ab_0.conda + setuptools: '*' + python: '>=3.6' + python-dateutil: '*' + pyparsing: '>=1.5.7' + docutils: '*' + url: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-0.5.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: 964bace0c38ce4733851a2a29679e3f9 - sha256: 1fe9b55d3daeb26ac404ec51f106ce8792d7d6548810ca87600cd9b9e9cfbd6e + md5: 023308d75d557ab1ce66bf99a2988d9b + sha256: fbb30218baeceeabaa49fcd3e053b928899d4f78fb5dea131ee550de3e377d42 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: Apache-2.0 - license_family: Apache + license: BSD-3-Clause + license_family: BSD noarch: python - size: 39430 - timestamp: 1686587564613 -- name: netifaces - version: 0.11.0 + size: 51088 + timestamp: 1653705145099 +- name: pyqt + version: 5.15.7 manager: conda platform: linux-64 dependencies: + pyqt5-sip: ==12.11.0 py310heca2aa9_3 python: '>=3.10,<3.11.0a0' - libgcc-ng: '>=12' + libstdcxx-ng: '>=12' python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/linux-64/netifaces-0.11.0-py310h5764c6d_1.tar.bz2 + sip: '>=6.7.5,<6.8.0a0' + libgcc-ng: '>=12' + qt-main: '>=5.15.6,<5.16.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.7-py310hab646b1_3.conda hash: - md5: 7510edfd9dccb73a69d9ee103ca252b3 - sha256: 0c57f9da1e91c4c5c228074545da03ee8856bcd0350929f4d49d058e018f1085 + md5: d049da3204bf5ecb54a852b622f2d7d2 + sha256: 9210571612b135979541c5c65d28eda82941b3d613f3c8c792971bdfb7b4383a optional: false category: main - build: py310h5764c6d_1 + build: py310hab646b1_3 subdir: linux-64 - build_number: 1 - license: MIT - license_family: MIT - size: 18572 - timestamp: 1666851304014 -- name: cmake - version: 3.26.3 + build_number: 3 + license: GPL-3.0-only + license_family: GPL + size: 5239716 + timestamp: 1674670610336 +- name: pyqt5-sip + version: 12.11.0 manager: conda platform: linux-64 dependencies: - libuv: '*' - libcurl: '>=7.88.1,<9.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - expat: '*' - libexpat: '>=2.5.0,<3.0a0' - rhash: '*' - bzip2: '>=1.0.8,<2.0a0' + sip: '*' + python: '>=3.10,<3.11.0a0' libstdcxx-ng: '>=12' - ncurses: '>=6.3,<7.0a0' - xz: '>=5.2.6,<6.0a0' - zlib: '*' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.26.3-h077f3f9_0.conda + python_abi: 3.10.* *_cp310 + toml: '*' + packaging: '*' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.11.0-py310heca2aa9_3.conda hash: - md5: 6edec767268ad8451d27bb65f38c7ea4 - sha256: 3bb9d7c35d5297d85516769eb0517c83f7fc2ed7ab944a8c028871bb375bed51 + md5: 3b1946b676534472ce65181dda0b9554 + sha256: 7b58a8ca0bd2ab65d2c77017b288a551522dc5fe07d5d2dfa5189cdbb71019e8 optional: false category: main - build: h077f3f9_0 + build: py310heca2aa9_3 subdir: linux-64 - build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 16285339 - timestamp: 1680747838589 -- name: libexpat - version: 2.5.0 + build_number: 3 + license: GPL-3.0-only + license_family: GPL + size: 85394 + timestamp: 1674667054396 +- name: xorg-libx11 + version: 1.8.4 manager: conda platform: linux-64 dependencies: + xorg-xproto: '*' + libxcb: '>=1.13,<1.14.0a0' + xorg-kbproto: '*' + xorg-xextproto: '>=7.3.0,<8.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.4-h0b41bf4_0.conda hash: - md5: 6305a3dd2752c76335295da4e581f2fd - sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 + md5: ea8fbfeb976ac49cbeb594e985393514 + sha256: 3c6862a01a39cdea3870b132706ad7256824299947a3a94ae361d863d402d704 optional: false category: main - build: hcb278e6_1 + build: h0b41bf4_0 subdir: linux-64 - build_number: 1 - constrains: - - expat 2.5.0.* + build_number: 0 license: MIT license_family: MIT - size: 77980 - timestamp: 1680190528313 -- name: foonathan-memory - version: 0.7.2 + size: 829872 + timestamp: 1677611125385 +- name: xorg-libxrender + version: 0.9.10 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/foonathan-memory-0.7.2-h27087fc_1.tar.bz2 + xorg-renderproto: '*' + xorg-libx11: '>=1.7.0,<2.0a0' + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2 hash: - md5: 106ca303dbd513de03e3cce07550a7d0 - sha256: 0bb4026456bd678423fe80b478718d9609345ec727df2ee7e88106f5bccafc76 + md5: f59c1242cc1dd93e72c2ee2b360979eb + sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 optional: false category: main - build: h27087fc_1 + build: h7f98852_1003 subdir: linux-64 - build_number: 1 - license: Zlib - size: 182012 - timestamp: 1661195398612 -- name: lark-parser - version: 0.12.0 + build_number: 1003 + license: MIT + license_family: MIT + size: 32906 + timestamp: 1614866792944 +- name: xorg-libxrandr + version: 1.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_0.tar.bz2 + xorg-libxrender: '*' + xorg-randrproto: '*' + xorg-xextproto: '*' + xorg-renderproto: '*' + xorg-libx11: '>=1.7.1,<2.0a0' + libgcc-ng: '>=9.3.0' + xorg-libxext: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.2-h7f98852_1.tar.bz2 hash: - md5: 2d1f963b23792b269635b9b32bee1913 - sha256: 5a1b0fb3c9e6ba7f8c5788d0bc90aadc85f88371ba261c07edf951805988f89a + md5: 5b0f7da25a4556c9619c3e4b4a98ab07 + sha256: ffd075a463896ed86d9519e26dc36f754b695b9c1e1b6115d34fe138b36d8200 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build: h7f98852_1 + subdir: linux-64 + build_number: 1 license: MIT license_family: MIT - noarch: python - size: 79371 - timestamp: 1630320889981 -- name: yaml - version: 0.2.5 + size: 29688 + timestamp: 1621515728586 +- name: xorg-libxaw + version: 1.0.14 manager: conda platform: linux-64 dependencies: + xorg-libxmu: 1.1.* + xorg-libxt: '>=1.2.1,<2.0a0' + xorg-libxpm: '>=3.5.13,<4.0a0' + xorg-libx11: '>=1.7.2,<2.0a0' libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + xorg-libxext: 1.3.* + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxaw-1.0.14-h7f98852_1.tar.bz2 hash: - md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae - sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 + md5: 45b68dc2fc7549c16044d533ceaf340e + sha256: e3d90674a3178999b664a1c7c8ec8729ada60d144a2aa16da474488dfc86d713 optional: false category: main - build: h7f98852_2 + build: h7f98852_1 subdir: linux-64 - build_number: 2 + build_number: 1 license: MIT license_family: MIT - size: 89141 - timestamp: 1641346969816 -- name: yaml-cpp - version: 0.7.0 + size: 382060 + timestamp: 1641502851233 +- name: xorg-libxmu + version: 1.1.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.7.0-h27087fc_2.tar.bz2 + xorg-libxt: '>=1.2.1,<2.0a0' + xorg-libx11: '>=1.7.0,<2.0a0' + libgcc-ng: '>=9.3.0' + xorg-libxext: 1.3.* + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2 hash: - md5: 0449d47d8457feaa3720d4779616dde2 - sha256: fcdffce895f84a49221720b811a6bb14ae79f7ac14f7930f3768bbb7b2470444 + md5: 3cdb89236358326adfce12be820a8af3 + sha256: 3a9f9f8bbf3a6934dada98a7a224dd264c533a251d2a92be604a4b23e772e79b optional: false category: main - build: h27087fc_2 + build: h7f98852_0 subdir: linux-64 - build_number: 2 + build_number: 0 license: MIT license_family: MIT - size: 219830 - timestamp: 1664345837170 -- name: console_bridge - version: 1.0.2 + size: 92562 + timestamp: 1617482204922 +- name: xorg-libxext + version: 1.3.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=10.3.0' - libstdcxx-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2 + xorg-libx11: '>=1.7.2,<2.0a0' + libgcc-ng: '>=12' + xorg-xextproto: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda hash: - md5: e891b2b856a57d2b2ddb9ed366e3f2ce - sha256: 29caeda123ea705e68de46dc3b86065ec78f5b44d7ae69b320cc57e136d2d9d7 + md5: 82b6df12252e6f32402b96dacc656fec + sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 optional: false category: main - build: h924138e_1 + build: h0b41bf4_2 subdir: linux-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 18460 - timestamp: 1648912649612 -- name: libcurl - version: 7.88.1 + build_number: 2 + license: MIT + license_family: MIT + size: 50143 + timestamp: 1677036907815 +- name: xorg-xextproto + version: 7.3.0 manager: conda platform: linux-64 dependencies: - libssh2: '>=1.10.0,<2.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - openssl: '>=3.1.0,<4.0a0' - krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.88.1-hdc1c0ab_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda hash: - md5: 3d1189864d1c0ed2a5919cb067b5903d - sha256: 500c08e61871df6dc4fc87913c99cb799f5fa8333db991201be32b657e9dcdb1 + md5: bce9f945da8ad2ae9b1d7165a64d0f87 + sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743 optional: false category: main - build: hdc1c0ab_1 + build: h0b41bf4_1003 subdir: linux-64 - build_number: 1 - license: curl + build_number: 1003 + license: MIT license_family: MIT - size: 358872 - timestamp: 1679081875705 -- name: krb5 - version: 1.20.1 + size: 30270 + timestamp: 1677036833037 +- name: xorg-libxt + version: 1.3.0 manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=12' - openssl: '>=3.0.7,<4.0a0' - libedit: '>=3.1.20191231,<4.0a0' + xorg-libx11: '>=1.8.4,<2.0a0' + xorg-xproto: '*' + xorg-kbproto: '*' + xorg-libice: 1.0.* libgcc-ng: '>=12' - keyutils: '>=1.6.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda + xorg-libsm: 1.2.* + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_0.conda hash: - md5: 89a41adce7106749573d883b2f657d78 - sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 + md5: ab2044e8d87dda9f74652e8e084a5569 + sha256: fbceccea26f81d557ac93ca08afa95b3638f713c43deb468488013218be11fed optional: false category: main - build: h81ceb04_0 + build: hd590300_0 subdir: linux-64 build_number: 0 license: MIT license_family: MIT - size: 1329877 - timestamp: 1671091750695 -- name: libnghttp2 - version: 1.52.0 + size: 380077 + timestamp: 1685496527581 +- name: xorg-libxpm + version: 3.5.16 manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=12' - c-ares: '>=1.18.1,<2.0a0' - libev: '>=4.33,<4.34.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + xorg-libxt: '>=1.2.1,<2.0a0' + xorg-xextproto: '>=7.3.0,<8.0a0' + gettext: '>=0.21.1,<1.0a0' + xorg-xproto: '*' + xorg-libx11: '>=1.8.4,<2.0a0' libgcc-ng: '>=12' - openssl: '>=3.0.8,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda + xorg-libxext: '>=1.3.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxpm-3.5.16-hd590300_0.conda hash: - md5: 613955a50485812985c059e7b269f42e - sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a + md5: 7a2672267d49208afe2df6cbef8a6a79 + sha256: 6f30264e570a7c8b0cdc5f20489f07d9cdb7f8e0929d84d6e4847c6da4a81b78 optional: false category: main - build: h61bc06f_0 + build: hd590300_0 subdir: linux-64 build_number: 0 license: MIT license_family: MIT - size: 622366 - timestamp: 1677678076121 -- name: keyutils - version: 1.6.1 + size: 65076 + timestamp: 1685307554451 +- name: ca-certificates + version: 2023.5.7 manager: conda platform: linux-64 - dependencies: - libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.5.7-hbcca054_0.conda hash: - md5: 30186d27e2c9fa62b45fb1476b7200e3 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + md5: f5c65075fc34438d5b456c7f3f5ab695 + sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345 optional: false category: main - build: h166bdaf_0 + build: hbcca054_0 subdir: linux-64 build_number: 0 - license: LGPL-2.1-or-later - size: 117831 - timestamp: 1646151697040 -- name: libignition-cmake2 - version: 2.16.0 + license: ISC + size: 148360 + timestamp: 1683451720318 +- name: dbus + version: 1.13.6 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libignition-cmake2-2.16.0-hcb278e6_1.conda + libglib: '>=2.70.2,<3.0a0' + libgcc-ng: '>=9.4.0' + expat: '>=2.4.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 hash: - md5: 5f317425f04154a862d19815e4284ad2 - sha256: d17e6b6935c2541e0f848b2df167842981f66b035a01dea5e51ecff3117ab190 + md5: ecfff944ba3960ecb334b9a2663d708d + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 optional: false category: main - build: hcb278e6_1 + build: h5008d03_3 subdir: linux-64 - build_number: 1 - license: Apache-2.0 - license_family: APACHE - size: 270234 - timestamp: 1670578794904 -- name: qt-main - version: 5.15.8 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 618596 + timestamp: 1640112124844 +- name: gst-plugins-base + version: 1.22.0 manager: conda platform: linux-64 dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - nspr: '>=4.35,<5.0a0' - jpeg: '>=9e,<10a' - libsqlite: '>=3.40.0,<4.0a0' - expat: '>=2.5.0,<3.0a0' - xcb-util-renderutil: '*' - mysql-libs: '>=8.0.32,<8.1.0a0' - libxkbcommon: '>=1.0.3,<2.0a0' - nss: '>=3.82,<4.0a0' - xcb-util-keysyms: '*' - fontconfig: '>=2.14.2,<3.0a0' - libstdcxx-ng: '>=12' - libclang: '>=15.0.7,<16.0a0' - fonts-conda-ecosystem: '*' - xcb-util-image: '*' - openssl: '>=3.0.8,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' - xcb-util-wm: '*' - libzlib: '>=1.2.13,<1.3.0a0' + libglib: '>=2.74.1,<3.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' alsa-lib: '>=1.2.8,<1.2.9.0a0' libgcc-ng: '>=12' - pulseaudio: '>=16.1,<16.2.0a0' - gstreamer: '>=1.22.0,<1.23.0a0' - libcups: '>=2.3.3,<2.4.0a0' - harfbuzz: '>=6.0.0,<7.0a0' - xcb-util: '*' - dbus: '>=1.13.6,<2.0a0' - libevent: '>=2.1.10,<2.1.11.0a0' - zstd: '>=1.5.2,<1.6.0a0' - icu: '>=70.1,<71.0a0' - libglib: '>=2.74.1,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - gst-plugins-base: '>=1.22.0,<1.23.0a0' - libxcb: '>=1.13,<1.14.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + gstreamer: ==1.22.0 h25f0c4b_2 + gettext: '>=0.21.1,<1.0a0' __glibc: '>=2.17,<3.0.a0' - libpq: '>=15.1,<16.0a0' - krb5: '>=1.20.1,<1.21.0a0' - libclang13: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h5d23da1_6.conda + libstdcxx-ng: '>=12' + libopus: '>=1.3.1,<2.0a0' + libxcb: '>=1.13,<1.14.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.0-h4243ec0_2.conda hash: - md5: 59c73debd9405771690ddbbad6c57b69 - sha256: fd0b6b8365fd4d0e86476a3047ba6a281eea0bdfef770df83b897fd73e959dd9 + md5: 0d0c6604c8ac4ad5e51efa7bb58da05c + sha256: e0f3e53f179440a8cdfd38c0b47d175aa560ff1600d43e15e6a6cbdaa7a01da3 optional: false category: main - build: h5d23da1_6 + build: h4243ec0_2 subdir: linux-64 - build_number: 6 - constrains: - - qt 5.15.8 - license: LGPL-3.0-only + build_number: 2 + license: LGPL-2.0-or-later license_family: LGPL - size: 52472654 - timestamp: 1675839238854 -- name: libcups - version: 2.3.3 + size: 2708542 + timestamp: 1678159510042 +- name: gstreamer + version: 1.22.0 manager: conda platform: linux-64 dependencies: + glib: '>=2.74.1,<3.0a0' + gettext: '>=0.21.1,<1.0a0' + __glibc: '>=2.17,<3.0.a0' + libglib: '>=2.74.1,<3.0a0' libstdcxx-ng: '>=12' - krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.0-h25f0c4b_2.conda hash: - md5: c9f4416a34bc91e0eb029f912c68f81f - sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 + md5: 461541cb1b387c2a28ab6217f3d38502 + sha256: b60bf8f5cae60d276e26f9de0f03faddc6dd341c910924ffe0f3c1aa7e0852c7 optional: false category: main - build: h36d4200_3 + build: h25f0c4b_2 subdir: linux-64 - build_number: 3 - license: Apache-2.0 - license_family: Apache - size: 4519779 - timestamp: 1671148111233 -- name: libevent - version: 2.1.10 + build_number: 2 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1985068 + timestamp: 1678159402537 +- name: glib + version: 2.76.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.4.0' - openssl: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.10-h28343ad_4.tar.bz2 + glib-tools: ==2.76.4 hfc55251_0 + python: '*' + gettext: '>=0.21.1,<1.0a0' + libstdcxx-ng: '>=12' + libglib: ==2.76.4 hebfc3b9_0 + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.76.4-hfc55251_0.conda hash: - md5: 4a049fc560e00e43151dc51368915fdd - sha256: 31ac7124c92628cd1c6bea368e38d7f43f8ec68d88128ecdc177773e6d00c60a + md5: dbcec5fd9c6c8be24b23575048755a59 + sha256: 85de9ec71a143e9b86e381e865341f2d706387f3d3facaf935d4598b6dfa7229 optional: false category: main - build: h28343ad_4 + build: hfc55251_0 subdir: linux-64 - build_number: 4 - license: BSD-3-Clause - license_family: BSD - size: 1169108 - timestamp: 1633489266107 -- name: fonts-conda-ecosystem - version: '1' - manager: conda - platform: linux-64 - dependencies: - fonts-conda-forge: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 - optional: false - category: main - build: '0' - subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: generic - size: 3667 - timestamp: 1566974674465 -- name: alsa-lib - version: 1.2.8 + license: LGPL-2.1-or-later + size: 482405 + timestamp: 1688694735795 +- name: glib-tools + version: 2.76.4 manager: conda platform: linux-64 dependencies: + libstdcxx-ng: '>=12' + libglib: ==2.76.4 hebfc3b9_0 + libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.76.4-hfc55251_0.conda hash: - md5: be733e69048951df1e4b4b7bb8c7666f - sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd + md5: 76ac435b8668f636a39fcb155c3543fd + sha256: 6940a5d60d1fd8a14e8597e1e65e1a6e3a811368f279d4a2ab66ed73a2c26b31 optional: false category: main - build: h166bdaf_0 + build: hfc55251_0 subdir: linux-64 build_number: 0 license: LGPL-2.1-or-later - license_family: GPL - size: 592320 - timestamp: 1666699031168 -- name: fontconfig - version: 2.14.2 + size: 111429 + timestamp: 1688694701485 +- name: jpeg + version: 9e manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libuuid: '>=2.32.1,<3.0a0' - freetype: '>=2.12.1,<3.0a0' libgcc-ng: '>=12' - expat: '>=2.5.0,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda hash: - md5: 0f69b688f52ff6da70bccb7ff7001d1d - sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 + md5: c7a069243e1fbe9a556ed2ec030e6407 + sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b optional: false category: main - build: h14ed4e7_0 + build: h0b41bf4_3 subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 272010 - timestamp: 1674828850194 -- name: icu - version: '70.1' + build_number: 3 + constrains: + - libjpeg-turbo <0.0.0a + license: IJG + size: 240359 + timestamp: 1676177310738 +- name: libclang + version: 15.0.7 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=10.3.0' - libstdcxx-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/icu-70.1-h27087fc_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libstdcxx-ng: '>=12' + libclang13: ==15.0.7 default_h9986a30_2 + libgcc-ng: '>=12' + libllvm15: '>=15.0.7,<15.1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h7634d5b_2.conda hash: - md5: 87473a15119779e021c314249d4b4aed - sha256: 1d7950f3be4637ab915d886304e57731d39a41ab705ffc95c4681655c459374a + md5: 1a4fe5162abe4a19b5a9dedf158a0ff9 + sha256: 9fd064ed59a07ed096fe3c641752be5279f6696bc8b25da0ca4e41fb92758a5b optional: false category: main - build: h27087fc_0 + build: default_h7634d5b_2 subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 14191488 - timestamp: 1648050221778 -- name: libpng - version: 1.6.39 + build_number: 2 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133475 + timestamp: 1684408546949 +- name: libclang13 + version: 15.0.7 manager: conda platform: linux-64 dependencies: + libstdcxx-ng: '>=12' libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda + libllvm15: '>=15.0.7,<15.1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h9986a30_2.conda hash: - md5: e1c890aebdebbfbf87e2c917187b4416 - sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 + md5: 907344cee64101d44d806bbe0fccb01d + sha256: d9f9fb5622489d7e5c3237a4a6a46db20ead3c6bafb7277de1a25278db59b863 optional: false category: main - build: h753d276_0 + build: default_h9986a30_2 subdir: linux-64 - build_number: 0 - license: zlib-acknowledgement - size: 282599 - timestamp: 1669075729952 -- name: nspr - version: '4.35' + build_number: 2 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 9594391 + timestamp: 1684408496977 +- name: libpq + version: '15.3' manager: conda platform: linux-64 dependencies: + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libpq-15.3-hbcd7760_1.conda hash: - md5: da0ec11a6454ae19bff5b02ed881a2b1 - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c + md5: 8afb2a97d256ffde95b91a6283bc598c + sha256: 96031c853d1a8b32c50c04b791aa199508ab1f0fa879ab7fcce175ee24620f78 optional: false category: main - build: h27087fc_0 + build: hbcd7760_1 subdir: linux-64 - build_number: 0 - license: MPL-2.0 - license_family: MOZILLA - size: 226848 - timestamp: 1669784948267 -- name: xcb-util-image - version: 0.4.0 + build_number: 1 + license: PostgreSQL + size: 2530642 + timestamp: 1684451981378 +- name: libxkbcommon + version: 1.5.0 manager: conda platform: linux-64 dependencies: + libxml2: '>=2.10.3,<2.11.0a0' libxcb: '>=1.13,<1.14.0a0' + libstdcxx-ng: '>=12' libgcc-ng: '>=12' - xcb-util: '>=0.4.0,<0.5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h166bdaf_0.tar.bz2 + xkeyboard-config: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.5.0-h79f4944_1.conda hash: - md5: c9b568bd804cb2903c6be6f5f68182e4 - sha256: 6db358d4afa0eb1225e24871f6c64c1b6c433f203babdd43508b0d61252467d1 + md5: 04a39cdd663f295653fc143851830563 + sha256: f57aa3eeeb4abbeeafb6e61fbffa6f89fa2434e914c1eb65551e6e0905b363aa optional: false category: main - build: h166bdaf_0 + build: h79f4944_1 subdir: linux-64 - build_number: 0 - license: MIT + build_number: 1 + license: MIT/X11 Derivative license_family: MIT - size: 24256 - timestamp: 1654738819647 -- name: xcb-util-renderutil - version: 0.3.9 + size: 563179 + timestamp: 1678659270113 +- name: libxml2 + version: 2.10.3 manager: conda platform: linux-64 dependencies: - libxcb: '>=1.13,<1.14.0a0' + xz: '>=5.2.6,<6.0a0' + icu: '>=70.1,<71.0a0' + libiconv: '>=1.17,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-h166bdaf_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-hca2bb57_4.conda hash: - md5: 732e22f1741bccea861f5668cf7342a7 - sha256: 19d27b7af8fb8047e044de2b87244337343c51fe7caa0fbaa9c53c2215787188 + md5: bb808b654bdc3c783deaf107a2ffb503 + sha256: d4170f1fe356768758b13a51db123f990bff81b0eae0d5a0ba11c7ca6b9536f4 optional: false category: main - build: h166bdaf_0 + build: hca2bb57_4 subdir: linux-64 - build_number: 0 + build_number: 4 license: MIT license_family: MIT - size: 15659 - timestamp: 1654738584558 -- name: fonts-conda-forge - version: '1' + size: 713891 + timestamp: 1679341466192 +- name: py-opencv + version: 4.6.0 manager: conda platform: linux-64 dependencies: - font-ttf-ubuntu: '*' - font-ttf-inconsolata: '*' - font-ttf-dejavu-sans-mono: '*' - font-ttf-source-code-pro: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - hash: - md5: f766549260d6815b0c52253f1fb1bb29 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 - optional: false - category: main - build: '0' - subdir: noarch - build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: generic - size: 4102 - timestamp: 1566932280397 -- name: font-ttf-dejavu-sans-mono - version: '2.37' - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libopencv: ==4.6.0 py310h8149549_8 + url: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.6.0-py310hfdc917e_8.conda hash: - md5: 0c96522c6bdaed4b1566d11387caaf45 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: 304c554aabfccb4e9b35234383afd402 + sha256: 6eabef13d3e1f7c5b9ad93565af2f5d816e943309c0119537ede24faaddcddfc optional: false category: main - build: hab24e00_0 - subdir: noarch - build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: generic - size: 397370 - timestamp: 1566932522327 -- name: font-ttf-ubuntu - version: '0.83' - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 - hash: - md5: 19410c3df09dfb12d1206132a1d357c5 - sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e - optional: false - category: main - build: hab24e00_0 - subdir: noarch - build_number: 0 - license: Ubuntu Font Licence Version 1.0 - license_family: Other - noarch: generic - size: 1961279 - timestamp: 1566932680646 -- name: harfbuzz - version: 6.0.0 - manager: conda - platform: linux-64 - dependencies: - libglib: '>=2.74.1,<3.0a0' - icu: '>=70.1,<71.0a0' - libstdcxx-ng: '>=12' - graphite2: '*' - cairo: '>=1.16.0,<2.0a0' - freetype: '>=2.12.1,<3.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-6.0.0-h8e241bc_0.conda - hash: - md5: 448fe40d2fed88ccf4d9ded37cbb2b38 - sha256: f300fcb390253d6d63346ee71e56f82bc830783d1682ac933fe9ac86f39da942 - optional: false - category: main - build: h8e241bc_0 - subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 1300409 - timestamp: 1671365973953 -- name: py-opencv - version: 4.6.0 - manager: conda - platform: linux-64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libopencv: ==4.6.0 py310h8149549_8 - url: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.6.0-py310hfdc917e_8.conda - hash: - md5: 304c554aabfccb4e9b35234383afd402 - sha256: 6eabef13d3e1f7c5b9ad93565af2f5d816e943309c0119537ede24faaddcddfc - optional: false - category: main - build: py310hfdc917e_8 - subdir: linux-64 - build_number: 8 - license: Apache-2.0 - license_family: Apache - size: 1151627 - timestamp: 1671408911837 -- name: libopencv - version: 4.6.0 + build: py310hfdc917e_8 + subdir: linux-64 + build_number: 8 + license: Apache-2.0 + license_family: Apache + size: 1151627 + timestamp: 1671408911837 +- name: libopencv + version: 4.6.0 manager: conda platform: linux-64 dependencies: @@ -9772,623 +9987,795 @@ package: license_family: BSD size: 2208535 timestamp: 1670987026227 -- name: jasper - version: 2.0.33 +- name: graphite2 + version: 1.3.13 manager: conda platform: linux-64 dependencies: - freeglut: '>=3.2.2,<4.0a0' - libglu: '>=9.0.0,<10.0a0' - jpeg: '>=9e,<10a' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/jasper-2.0.33-h0ff4b12_1.conda + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2 hash: - md5: 753b7aa9da058b8cb4cd699b71c4bb77 - sha256: 815eff8ea908613fb224aa6117f0b09c3621c10a671d651539955521d4d6f2bf + md5: 8c54672728e8ec6aa6db90cf2806d220 + sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 optional: false category: main - build: h0ff4b12_1 + build: h58526e2_1001 subdir: linux-64 - build_number: 1 - license: JasPer 2.0 - size: 725587 - timestamp: 1674878812409 -- name: libtiff - version: 4.4.0 + build_number: 1001 + license: LGPLv2 + size: 104701 + timestamp: 1604365484436 +- name: xcb-util + version: 0.4.0 manager: conda platform: linux-64 dependencies: - libdeflate: '>=1.14,<1.15.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libwebp-base: '>=1.2.4,<2.0a0' - jpeg: '>=9e,<10a' - libgcc-ng: '>=12' - xz: '>=5.2.6,<6.0a0' - libstdcxx-ng: '>=12' - lerc: '>=4.0.0,<5.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.4.0-h82bc61c_5.conda + libxcb: '>=1.13' + libgcc-ng: '>=7.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-h516909a_0.tar.bz2 hash: - md5: e712a63a21f9db647982971dc121cdcf - sha256: f81d38e7458c6ba2fcf93bef4ed2c12c2977e89ca9a7f936ce53a3338a88352f + md5: a88ab22508ba067b689dc12696157cee + sha256: d797cecb10d9d20970656db803186b2d87e51f58202a87a359b18bae6f0b0d1e optional: false category: main - build: h82bc61c_5 + build: h516909a_0 subdir: linux-64 - build_number: 5 - license: HPND - size: 484764 - timestamp: 1671300678072 -- name: lerc - version: 4.0.0 + build_number: 0 + license: MIT + license_family: MIT + size: 20109 + timestamp: 1574273086272 +- name: libllvm15 + version: 15.0.7 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' + libxml2: '>=2.10.3,<2.11.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hadd5161_1.conda hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 17d91085ccf5934ce652cb448d0cb65a + sha256: f649fac60cb122bf0d85c4955725d94c353fdbd768bcd44f0444979b363cc9ab optional: false category: main - build: h27087fc_0 + build: hadd5161_1 subdir: linux-64 - build_number: 0 - license: Apache-2.0 + build_number: 1 + license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 281798 - timestamp: 1657977462600 -- name: libdeflate - version: '1.14' + size: 33016652 + timestamp: 1678862492181 +- name: xkeyboard-config + version: '2.38' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.14-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.38-h0b41bf4_0.conda hash: - md5: fc84a0446e4e4fb882e78d786cfb9734 - sha256: 6f7cbc9347964e7f9697bde98a8fb68e0ed926888b3116474b1224eaa92209dc + md5: 9ac34337e5101a87e5d91da05d84aa48 + sha256: 0518e65929deded6afc5f91f31febb15e8c93f7ee599a18b787f9fab3f79cfd6 optional: false category: main - build: h166bdaf_0 + build: h0b41bf4_0 subdir: linux-64 build_number: 0 license: MIT license_family: MIT - size: 82697 - timestamp: 1662888469663 -- name: libgd - version: 2.3.3 + size: 882013 + timestamp: 1676563054660 +- name: xorg-libxdmcp + version: 1.1.3 manager: conda platform: linux-64 dependencies: - icu: '>=70.1,<71.0a0' - libpng: '>=1.6.37,<1.7.0a0' - freetype: '>=2.10.4,<3.0a0' - libgcc-ng: '>=10.3.0' - jpeg: '>=9e,<10a' - expat: '>=2.4.8,<3.0a0' - fontconfig: '>=2.13.96,<3.0a0' - libtiff: '>=4.3.0,<4.5.0a0' - libwebp: '*' - fonts-conda-ecosystem: '*' - libwebp-base: '>=1.2.2,<2.0a0' - libzlib: '>=1.2.11,<1.3.0a0' - zlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h18fbbfe_3.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2 hash: - md5: ea9758cf553476ddf75c789fdd239dc5 - sha256: ce87f320fb409c453671fc0c074ba04987f75b4e9a88d074650f23a92eae1054 + md5: be93aabceefa2fac576e971aef407908 + sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 optional: false category: main - build: h18fbbfe_3 + build: h7f98852_0 subdir: linux-64 - build_number: 3 - license: GD - license_family: BSD - size: 272476 - timestamp: 1648739511628 -- name: libwebp-base - version: 1.2.4 + build_number: 0 + license: MIT + license_family: MIT + size: 19126 + timestamp: 1610071769228 +- name: pthread-stubs + version: '0.4' manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2 + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 hash: - md5: ac2ccf7323d21f2994e4d1f5da664f37 - sha256: 221f2e138dd264b7394b88f08884d93825d38800a51415059e813c02467abfd1 + md5: 22dad4df6e8630e8dff2428f6f6a7036 + sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff optional: false category: main - build: h166bdaf_0 + build: h36c2ea0_1001 subdir: linux-64 - build_number: 0 - constrains: - - libwebp 1.2.4 - license: BSD-3-Clause - license_family: BSD - size: 413389 - timestamp: 1659984002215 -- name: libwebp - version: 1.2.4 + build_number: 1001 + license: MIT + license_family: MIT + size: 5625 + timestamp: 1606147468727 +- name: libedit + version: 3.1.20191231 manager: conda platform: linux-64 dependencies: - libwebp-base: '>=1.2.4,<2.0a0' - libtiff: '>=4.4.0,<4.5.0a0' - libpng: '>=1.6.37,<1.7.0a0' - giflib: '>=5.2.1,<5.3.0a0' - jpeg: '>=9e,<10a' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h522a892_0.tar.bz2 + ncurses: '>=6.2,<7.0.0a0' + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 hash: - md5: 802e43f480122a85ae6a34c1909f8f98 - sha256: 56520354bc39baeab8df964138639110eafa6069e34e9545f8818c8abd742f32 + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf optional: false category: main - build: h522a892_0 + build: he28a2e2_2 subdir: linux-64 - build_number: 0 - license: BSD-3-Clause + build_number: 2 + license: BSD-2-Clause license_family: BSD - size: 89553 - timestamp: 1660329322502 -- name: libzlib - version: 1.2.13 + size: 123878 + timestamp: 1597616541093 +- name: libopus + version: 1.3.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 15345e56d527b330e1cacbdf58676e8f + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f optional: false category: main - build: hd590300_5 + build: h7f98852_1 subdir: linux-64 - build_number: 5 - constrains: - - zlib 1.2.13 *_5 - license: Zlib - license_family: Other - size: 61588 - timestamp: 1686575217516 -- name: zlib - version: 1.2.13 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 260658 + timestamp: 1606823578035 +- name: libvorbis + version: 1.3.7 manager: conda platform: linux-64 dependencies: - libzlib: ==1.2.13 hd590300_5 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libstdcxx-ng: '>=9.3.0' + libgcc-ng: '>=9.3.0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 309dec04b70a3cc0f1e84a4013683bc0 + sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 optional: false category: main - build: hd590300_5 + build: h9c3ff4c_0 subdir: linux-64 - build_number: 5 - license: Zlib - license_family: Other - size: 92825 - timestamp: 1686575231103 -- name: ca-certificates - version: 2023.5.7 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 286280 + timestamp: 1610609811627 +- name: _openmp_mutex + version: '4.5' manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.5.7-hbcca054_0.conda + dependencies: + libgomp: '>=7.5.0' + _libgcc_mutex: ==0.1 conda_forge + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 hash: - md5: f5c65075fc34438d5b456c7f3f5ab695 - sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345 + md5: 73aaf86a425cc6e73fcf236a5a46396d + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 optional: false category: main - build: hbcca054_0 + build: 2_gnu subdir: linux-64 - build_number: 0 - license: ISC - size: 148360 - timestamp: 1683451720318 -- name: dbus - version: 1.13.6 + build_number: 16 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 +- name: libgomp + version: 13.1.0 manager: conda platform: linux-64 dependencies: - libglib: '>=2.70.2,<3.0a0' - libgcc-ng: '>=9.4.0' - expat: '>=2.4.2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + _libgcc_mutex: ==0.1 conda_forge + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda hash: - md5: ecfff944ba3960ecb334b9a2663d708d - sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + md5: 56ca14d57ac29a75d23a39eb3ee0ddeb + sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d optional: false category: main - build: h5008d03_3 + build: he5830b7_0 subdir: linux-64 - build_number: 3 - license: GPL-2.0-or-later + build_number: 0 + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 618596 - timestamp: 1640112124844 -- name: expat - version: 2.5.0 + size: 419184 + timestamp: 1685816132543 +- name: libcblas + version: 3.9.0 manager: conda platform: linux-64 dependencies: - libexpat: ==2.5.0 hcb278e6_1 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda + libblas: ==3.9.0 17_linux64_openblas + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-17_linux64_openblas.conda hash: - md5: 8b9b5aca60558d02ddaa09d599e55920 - sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f + md5: 7ef0969b00fe3d6eef56a8151d3afb29 + sha256: 535bc0a6bc7641090b1bdd00a001bb6c4ac43bce2a11f238bc6676252f53eb3f optional: false category: main - build: hcb278e6_1 + build: 17_linux64_openblas subdir: linux-64 - build_number: 1 - license: MIT - license_family: MIT - size: 136778 - timestamp: 1680190541750 -- name: freetype - version: 2.12.1 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_linux64_openblas + - blas * openblas + - liblapack 3.9.0 17_linux64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14401 + timestamp: 1685930800770 +- name: libblas + version: 3.9.0 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - libpng: '>=1.6.39,<1.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda + libopenblas: '>=0.3.23,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-17_linux64_openblas.conda hash: - md5: e1232042de76d24539a436d37597eb06 - sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f + md5: 57fb44770b1bc832fb2dbefa1bd502de + sha256: 5a9dfeb9ede4b7ac136ac8c0b589309f8aba5ce79d14ca64ad8bffb3876eb04b optional: false category: main - build: hca18f0e_1 + build: 17_linux64_openblas subdir: linux-64 - build_number: 1 - license: GPL-2.0-only and LicenseRef-FreeType - size: 625655 - timestamp: 1669232824158 -- name: gst-plugins-base - version: 1.22.0 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_linux64_openblas + - libcblas 3.9.0 17_linux64_openblas + - blas * openblas + - liblapack 3.9.0 17_linux64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14473 + timestamp: 1685930788591 +- name: liblapacke + version: 3.9.0 manager: conda platform: linux-64 dependencies: - libpng: '>=1.6.39,<1.7.0a0' - libglib: '>=2.74.1,<3.0a0' - libvorbis: '>=1.3.7,<1.4.0a0' - alsa-lib: '>=1.2.8,<1.2.9.0a0' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - gstreamer: ==1.22.0 h25f0c4b_2 - gettext: '>=0.21.1,<1.0a0' - __glibc: '>=2.17,<3.0.a0' - libstdcxx-ng: '>=12' - libopus: '>=1.3.1,<2.0a0' - libxcb: '>=1.13,<1.14.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.0-h4243ec0_2.conda + libcblas: ==3.9.0 17_linux64_openblas + libblas: ==3.9.0 17_linux64_openblas + liblapack: ==3.9.0 17_linux64_openblas + url: https://conda.anaconda.org/conda-forge/linux-64/liblapacke-3.9.0-17_linux64_openblas.conda hash: - md5: 0d0c6604c8ac4ad5e51efa7bb58da05c - sha256: e0f3e53f179440a8cdfd38c0b47d175aa560ff1600d43e15e6a6cbdaa7a01da3 + md5: 949709aa6ee6a2dcdb3de6dd99147d17 + sha256: 6d936873d3f9ad6cc39117bc0b2f71bfd4eae93a2d2e32e9e2102b8346a5d99f optional: false category: main - build: h4243ec0_2 + build: 17_linux64_openblas subdir: linux-64 - build_number: 2 - license: LGPL-2.0-or-later - license_family: LGPL - size: 2708542 - timestamp: 1678159510042 -- name: gstreamer - version: 1.22.0 + build_number: 17 + constrains: + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14406 + timestamp: 1685930825081 +- name: liblapack + version: 3.9.0 manager: conda platform: linux-64 dependencies: - glib: '>=2.74.1,<3.0a0' - gettext: '>=0.21.1,<1.0a0' - __glibc: '>=2.17,<3.0.a0' - libglib: '>=2.74.1,<3.0a0' - libstdcxx-ng: '>=12' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.0-h25f0c4b_2.conda + libblas: ==3.9.0 17_linux64_openblas + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-17_linux64_openblas.conda hash: - md5: 461541cb1b387c2a28ab6217f3d38502 - sha256: b60bf8f5cae60d276e26f9de0f03faddc6dd341c910924ffe0f3c1aa7e0852c7 + md5: a2103882c46492e26500fcb56c03de8b + sha256: 45128394d2f4d4caf949c1b02bff1cace3ef2e33762dbe8f0edec7701a16aaa9 optional: false category: main - build: h25f0c4b_2 + build: 17_linux64_openblas subdir: linux-64 - build_number: 2 - license: LGPL-2.0-or-later - license_family: LGPL - size: 1985068 - timestamp: 1678159402537 -- name: gettext - version: 0.21.1 + build_number: 17 + constrains: + - liblapacke 3.9.0 17_linux64_openblas + - libcblas 3.9.0 17_linux64_openblas + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14408 + timestamp: 1685930812931 +- name: libopenblas + version: 0.3.23 manager: conda platform: linux-64 dependencies: + libgfortran-ng: '*' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 + libgfortran5: '>=11.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.23-pthreads_h80387f5_0.conda hash: - md5: 14947d8770185e5153fdd04d4673ed37 - sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a + md5: 9c5ea51ccb8ffae7d06c645869d24ce6 + sha256: 00aee12d04979d024c7f9cabccff5f5db2852c934397ec863a4abde3e09d5a79 optional: false category: main - build: h27087fc_0 + build: pthreads_h80387f5_0 subdir: linux-64 build_number: 0 - license: LGPL-2.1-or-later AND GPL-3.0-or-later - size: 4320628 - timestamp: 1665673494324 -- name: jpeg - version: 9e - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda - hash: - md5: c7a069243e1fbe9a556ed2ec030e6407 - sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b + constrains: + - openblas >=0.3.23,<0.3.24.0a0 + license: BSD-3-Clause + license_family: BSD + size: 5406072 + timestamp: 1681398290679 +- name: ffmpeg + version: 5.1.2 + manager: conda + platform: linux-64 + dependencies: + libxml2: '>=2.10.3,<2.11.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + svt-av1: '>=1.4.1,<1.4.2.0a0' + x265: '>=3.5,<3.6.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + x264: '>=1!164.3095,<1!165' + aom: '>=3.5.0,<3.6.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + libopus: '>=1.3.1,<2.0a0' + lame: '>=3.100,<3.101.0a0' + gmp: '>=6.2.1,<7.0a0' + libvpx: '>=1.11.0,<1.12.0a0' + freetype: '>=2.12.1,<3.0a0' + libva: '>=2.17.0,<3.0a0' + fontconfig: '>=2.14.1,<3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libstdcxx-ng: '>=12' + fonts-conda-ecosystem: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-5.1.2-gpl_h8dda1f0_106.conda + hash: + md5: 6845420373a9e260942bfbc5c786a4bb + sha256: be22acd41af31933f835c86998052d7a7073f9c8b267f01f5f3d8c501a2ce21f optional: false category: main - build: h0b41bf4_3 + build: gpl_h8dda1f0_106 subdir: linux-64 - build_number: 3 - constrains: - - libjpeg-turbo <0.0.0a - license: IJG - size: 240359 - timestamp: 1676177310738 -- name: libclang - version: 15.0.7 + build_number: 106 + license: GPL-2.0-or-later + license_family: GPL + size: 9621299 + timestamp: 1674566990384 +- name: gnutls + version: 3.7.8 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + p11-kit: '>=0.24.1,<0.25.0a0' libstdcxx-ng: '>=12' - libclang13: ==15.0.7 default_h9986a30_2 + libidn2: '>=2,<3.0a0' + nettle: '>=3.8.1,<3.9.0a0' libgcc-ng: '>=12' - libllvm15: '>=15.0.7,<15.1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h7634d5b_2.conda + libtasn1: '>=4.19.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.8-hf3e180e_0.tar.bz2 hash: - md5: 1a4fe5162abe4a19b5a9dedf158a0ff9 - sha256: 9fd064ed59a07ed096fe3c641752be5279f6696bc8b25da0ca4e41fb92758a5b + md5: cbe8e27140d67c3f30e01cfb642a6e7c + sha256: 4a47e4558395b98fff4c1c44ad358dade62b350a03b5a784d4bc589d6eb7ac9e optional: false category: main - build: default_h7634d5b_2 + build: hf3e180e_0 subdir: linux-64 - build_number: 2 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 133475 - timestamp: 1684408546949 -- name: libclang13 - version: 15.0.7 + build_number: 0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 2271927 + timestamp: 1664445361111 +- name: gmp + version: 6.2.1 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2 + hash: + md5: b94cf2db16066b242ebd26db2facbd56 + sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198 + optional: false + category: main + build: h58526e2_0 + subdir: linux-64 + build_number: 0 + license: GPL-2.0-or-later AND LGPL-3.0-or-later + size: 825784 + timestamp: 1605751468661 +- name: aom + version: 3.5.0 manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - libllvm15: '>=15.0.7,<15.1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h9986a30_2.conda + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.5.0-h27087fc_0.tar.bz2 hash: - md5: 907344cee64101d44d806bbe0fccb01d - sha256: d9f9fb5622489d7e5c3237a4a6a46db20ead3c6bafb7277de1a25278db59b863 + md5: a08150fd2298460cd1fcccf626305642 + sha256: ed05f72ffa891e3c6a507eac6f0221c85c1f0611491328cd098308060740891c optional: false category: main - build: default_h9986a30_2 + build: h27087fc_0 subdir: linux-64 - build_number: 2 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 9594391 - timestamp: 1684408496977 -- name: libglib - version: 2.76.3 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 2859124 + timestamp: 1663808526544 +- name: svt-av1 + version: 1.4.1 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - gettext: '>=0.21.1,<1.0a0' + libgcc-ng: '>=12' libstdcxx-ng: '>=12' - pcre2: '>=10.40,<10.41.0a0' - libffi: '>=3.4,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-1.4.1-hcb278e6_0.conda + hash: + md5: 2b32b8a10fa6ec9c18c897c4527720dc + sha256: 478e8362e0234c85f7b6cbd22a45fbf9a5a84b7b7c128ab7f1ef8ff887f67981 + optional: false + category: main + build: hcb278e6_0 + subdir: linux-64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 2488189 + timestamp: 1670988797792 +- name: nettle + version: 3.8.1 + manager: conda + platform: linux-64 + dependencies: libgcc-ng: '>=12' - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.3-hebfc3b9_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.8.1-hc379101_1.tar.bz2 hash: - md5: a64f11b244b2c112cd3fa1cbe9493999 - sha256: 6a34c6b123f06fcee7e28e981ec0daad09bce35616ad8e9e61ef84be7fad4d92 + md5: 3cb2c7df59990bd37c2ce27fd906de68 + sha256: 49c569a69608eee784e815179a70c6ae4d088dac42b7df999044f68058d593bb optional: false category: main - build: hebfc3b9_0 + build: hc379101_1 + subdir: linux-64 + build_number: 1 + license: GPL 2 and LGPL3 + license_family: GPL + size: 1195508 + timestamp: 1659085101126 +- name: libtasn1 + version: 4.19.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2 + hash: + md5: 93840744a8552e9ebf6bb1a5dffc125a + sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8 + optional: false + category: main + build: h166bdaf_0 subdir: linux-64 build_number: 0 - constrains: - - glib 2.76.3 *_0 - license: LGPL-2.1-or-later - size: 2675188 - timestamp: 1684848294347 -- name: libiconv - version: '1.17' + license: GPL-3.0-or-later + license_family: GPL + size: 116878 + timestamp: 1661325701583 +- name: p11-kit + version: 0.24.1 + manager: conda + platform: linux-64 + dependencies: + libffi: '>=3.4.2,<3.5.0a0' + libgcc-ng: '>=12' + libtasn1: '>=4.18.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2 + hash: + md5: 56ee94e34b71742bbdfa832c974e47a8 + sha256: aa8d3887b36557ad0c839e4876c0496e0d670afe843bf5bba4a87764b868196d + optional: false + category: main + build: hc5aa10d_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 4702497 + timestamp: 1654868759643 +- name: pcl + version: 1.12.1 + manager: conda + platform: linux-64 + dependencies: + flann: '>=1.9.1,<1.9.2.0a0' + glew: '>=2.1.0,<2.2.0a0' + libpng: '>=1.6.38,<1.7.0a0' + vtk: '>=9.2.2,<9.2.3.0a0' + libgcc-ng: '>=12' + qt-main: '>=5.15.6,<5.16.0a0' + libstdcxx-ng: '>=12' + boost-cpp: '>=1.78.0,<1.78.1.0a0' + qhull: '>=2020.2,<2020.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pcl-1.12.1-he8b3650_4.tar.bz2 + hash: + md5: 37d088748a75a61edef4afd956f948fd + sha256: 07a16d3807ef9af44165d534de6d2deef615de39c3c3358efafa79561c0e372b + optional: false + category: main + build: he8b3650_4 + subdir: linux-64 + build_number: 4 + license: BSD-3-Clause + license_family: BSD + size: 23594752 + timestamp: 1665465566612 +- name: libgd + version: 2.3.3 manager: conda platform: linux-64 dependencies: + icu: '>=70.1,<71.0a0' + libpng: '>=1.6.37,<1.7.0a0' + freetype: '>=2.10.4,<3.0a0' libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 + jpeg: '>=9e,<10a' + expat: '>=2.4.8,<3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + libtiff: '>=4.3.0,<4.5.0a0' + libwebp: '*' + fonts-conda-ecosystem: '*' + libwebp-base: '>=1.2.2,<2.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + zlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h18fbbfe_3.tar.bz2 hash: - md5: b62b52da46c39ee2bc3c162ac7f1804d - sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 + md5: ea9758cf553476ddf75c789fdd239dc5 + sha256: ce87f320fb409c453671fc0c074ba04987f75b4e9a88d074650f23a92eae1054 + optional: false + category: main + build: h18fbbfe_3 + subdir: linux-64 + build_number: 3 + license: GD + license_family: BSD + size: 272476 + timestamp: 1648739511628 +- name: libwebp-base + version: 1.2.4 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.2.4-h166bdaf_0.tar.bz2 + hash: + md5: ac2ccf7323d21f2994e4d1f5da664f37 + sha256: 221f2e138dd264b7394b88f08884d93825d38800a51415059e813c02467abfd1 optional: false category: main build: h166bdaf_0 subdir: linux-64 build_number: 0 - license: GPL and LGPL - size: 1450368 - timestamp: 1652700749886 -- name: pcre2 - version: '10.40' + constrains: + - libwebp 1.2.4 + license: BSD-3-Clause + license_family: BSD + size: 413389 + timestamp: 1659984002215 +- name: libwebp + version: 1.2.4 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.12,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libtiff: '>=4.4.0,<4.5.0a0' + libpng: '>=1.6.37,<1.7.0a0' + giflib: '>=5.2.1,<5.3.0a0' + jpeg: '>=9e,<10a' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.2.4-h522a892_0.tar.bz2 hash: - md5: 69e2c796349cd9b273890bee0febfe1b - sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a + md5: 802e43f480122a85ae6a34c1909f8f98 + sha256: 56520354bc39baeab8df964138639110eafa6069e34e9545f8818c8abd742f32 optional: false category: main - build: hc3806b6_0 + build: h522a892_0 subdir: linux-64 build_number: 0 license: BSD-3-Clause license_family: BSD - size: 2412495 - timestamp: 1665562915343 -- name: glib - version: 2.76.3 + size: 89553 + timestamp: 1660329322502 +- name: hdf5 + version: 1.12.2 manager: conda platform: linux-64 dependencies: - glib-tools: ==2.76.3 hfc55251_0 - python: '*' - gettext: '>=0.21.1,<1.0a0' - libstdcxx-ng: '>=12' - libglib: ==2.76.3 hebfc3b9_0 + libgfortran-ng: '*' + libcurl: '>=7.87.0,<9.0a0' + openssl: '>=3.0.7,<4.0a0' libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.76.3-hfc55251_0.conda + libgfortran5: '>=10.4.0' + libaec: '>=1.0.6,<2.0a0' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h4df4325_101.conda hash: - md5: 950e02f5665f5f4ff0437a6acba58798 - sha256: c783d185d4f1296b9e9810f400b208d5e3a073198d753b3203ae83521941325d + md5: 162a25904af6586b234b2dd52ee99c61 + sha256: f83472851e0fc2834c881f6962e324cd0c7a96afe9d575f9cce599dd19436446 optional: false category: main - build: hfc55251_0 + build: nompi_h4df4325_101 subdir: linux-64 - build_number: 0 - license: LGPL-2.1-or-later - size: 481755 - timestamp: 1684848382045 -- name: glib-tools - version: 2.76.3 + build_number: 101 + license: LicenseRef-HDF5 + license_family: BSD + size: 3319523 + timestamp: 1671624959330 +- name: flann + version: 1.9.1 manager: conda platform: linux-64 dependencies: + hdf5: '>=1.12.2,<1.12.3.0a0' + libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libglib: ==2.76.3 hebfc3b9_0 + url: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.1-he05ef13_1011.tar.bz2 + hash: + md5: f673dadfe929e565fb6bebb5f008b247 + sha256: baf512883461175edef0591220f7c5d70f86d75cfa2b8a0ee291f285ef6de18c + optional: false + category: main + build: he05ef13_1011 + subdir: linux-64 + build_number: 1011 + license: BSD-3-Clause + license_family: BSD + size: 37096572 + timestamp: 1660524245757 +- name: jasper + version: 2.0.33 + manager: conda + platform: linux-64 + dependencies: + freeglut: '>=3.2.2,<4.0a0' + libglu: '>=9.0.0,<10.0a0' + jpeg: '>=9e,<10a' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/jasper-2.0.33-h0ff4b12_1.conda + hash: + md5: 753b7aa9da058b8cb4cd699b71c4bb77 + sha256: 815eff8ea908613fb224aa6117f0b09c3621c10a671d651539955521d4d6f2bf + optional: false + category: main + build: h0ff4b12_1 + subdir: linux-64 + build_number: 1 + license: JasPer 2.0 + size: 725587 + timestamp: 1674878812409 +- name: libtiff + version: 4.4.0 + manager: conda + platform: linux-64 + dependencies: + libdeflate: '>=1.14,<1.15.0a0' libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + jpeg: '>=9e,<10a' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.76.3-hfc55251_0.conda + xz: '>=5.2.6,<6.0a0' + libstdcxx-ng: '>=12' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.4.0-h82bc61c_5.conda hash: - md5: 8951eedf3cdf94dd733c1b5eee1f4880 - sha256: 22882b3516eee26fc0482ad85b0c697ab8be4f345e238b60891866758392ebb6 + md5: e712a63a21f9db647982971dc121cdcf + sha256: f81d38e7458c6ba2fcf93bef4ed2c12c2977e89ca9a7f936ce53a3338a88352f optional: false category: main - build: hfc55251_0 + build: h82bc61c_5 subdir: linux-64 - build_number: 0 - license: LGPL-2.1-or-later - size: 111404 - timestamp: 1684848340380 -- name: libpq - version: '15.3' + build_number: 5 + license: HPND + size: 484764 + timestamp: 1671300678072 +- name: lerc + version: 4.0.0 manager: conda platform: linux-64 dependencies: - openssl: '>=3.1.0,<4.0a0' - krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpq-15.3-hbcd7760_1.conda + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 hash: - md5: 8afb2a97d256ffde95b91a6283bc598c - sha256: 96031c853d1a8b32c50c04b791aa199508ab1f0fa879ab7fcce175ee24620f78 + md5: 76bbff344f0134279f225174e9064c8f + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 optional: false category: main - build: hbcd7760_1 + build: h27087fc_0 subdir: linux-64 - build_number: 1 - license: PostgreSQL - size: 2530642 - timestamp: 1684451981378 -- name: libxcb - version: '1.13' + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 281798 + timestamp: 1657977462600 +- name: libdeflate + version: '1.14' manager: conda platform: linux-64 dependencies: - xorg-libxau: '*' - xorg-libxdmcp: '*' - libgcc-ng: '>=9.4.0' - pthread-stubs: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.13-h7f98852_1004.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.14-h166bdaf_0.tar.bz2 hash: - md5: b3653fdc58d03face9724f602218a904 - sha256: 8d5d24cbeda9282dd707edd3156e5fde2e3f3fe86c802fa7ce08c8f1e803bfd9 + md5: fc84a0446e4e4fb882e78d786cfb9734 + sha256: 6f7cbc9347964e7f9697bde98a8fb68e0ed926888b3116474b1224eaa92209dc optional: false category: main - build: h7f98852_1004 + build: h166bdaf_0 subdir: linux-64 - build_number: 1004 + build_number: 0 license: MIT license_family: MIT - size: 399895 - timestamp: 1636658924671 -- name: libxkbcommon - version: 1.5.0 + size: 82697 + timestamp: 1662888469663 +- name: xorg-kbproto + version: 1.0.7 manager: conda platform: linux-64 dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - libxcb: '>=1.13,<1.14.0a0' - libstdcxx-ng: '>=12' - libgcc-ng: '>=12' - xkeyboard-config: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.5.0-h79f4944_1.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2 hash: - md5: 04a39cdd663f295653fc143851830563 - sha256: f57aa3eeeb4abbeeafb6e61fbffa6f89fa2434e914c1eb65551e6e0905b363aa + md5: 4b230e8381279d76131116660f5a241a + sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 optional: false category: main - build: h79f4944_1 + build: h7f98852_1002 subdir: linux-64 - build_number: 1 - license: MIT/X11 Derivative + build_number: 1002 + license: MIT license_family: MIT - size: 563179 - timestamp: 1678659270113 -- name: libxml2 - version: 2.10.3 + size: 27338 + timestamp: 1610027759842 +- name: xorg-xproto + version: 7.0.31 manager: conda platform: linux-64 dependencies: - xz: '>=5.2.6,<6.0a0' - icu: '>=70.1,<71.0a0' - libiconv: '>=1.17,<2.0a0' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.10.3-hca2bb57_4.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2 hash: - md5: bb808b654bdc3c783deaf107a2ffb503 - sha256: d4170f1fe356768758b13a51db123f990bff81b0eae0d5a0ba11c7ca6b9536f4 + md5: b4a4381d54784606820704f7b5f05a15 + sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d optional: false category: main - build: hca2bb57_4 + build: h7f98852_1007 subdir: linux-64 - build_number: 4 + build_number: 1007 license: MIT license_family: MIT - size: 713891 - timestamp: 1679341466192 + size: 74922 + timestamp: 1607291557628 - name: mysql-libs version: 8.0.33 manager: conda @@ -10399,18 +10786,18 @@ package: openssl: '>=3.1.1,<4.0a0' libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - mysql-common: ==8.0.33 hf1915f5_0 - url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.33-hca2cd23_0.conda + mysql-common: ==8.0.33 hf1915f5_1 + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.33-hca2cd23_1.conda hash: - md5: 276339b0115d92c6e0793dcdc7afe308 - sha256: 44ced085e8ccaef349bbc86f95b34595cf907abe56b6268551fe99b31d2dd007 + md5: a04ac37f0659929f3ba0f33c7f3d750f + sha256: d10f737f835a90d441c5cc0c15e46b4d34594a080f67a1e6cd64ac76bf3e6269 optional: false category: main - build: hca2cd23_0 + build: hca2cd23_1 subdir: linux-64 - build_number: 0 - size: 1530880 - timestamp: 1687218728715 + build_number: 1 + size: 1531126 + timestamp: 1688285898480 - name: mysql-common version: 8.0.33 manager: conda @@ -10419,17 +10806,17 @@ package: openssl: '>=3.1.1,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.33-hf1915f5_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.33-hf1915f5_1.conda hash: - md5: aa8b86066614c4573f6db62c91978fa9 - sha256: 4131cd3a3e35050053da45e4f10415a8e4d1acaf169c4f3ad6a2fae9caa53c06 + md5: b241363e3b72bae6dfbd31e9fecf7d26 + sha256: 0ec502aaee1b9cb82947a1f56ad599d2ac79c9c25ccf2f44224a69e1e16f537e optional: false category: main - build: hf1915f5_0 + build: hf1915f5_1 subdir: linux-64 - build_number: 0 - size: 781773 - timestamp: 1687218649097 + build_number: 1 + size: 760782 + timestamp: 1688285834125 - name: nss version: '3.89' manager: conda @@ -10622,26 +11009,6 @@ package: license_family: GPL size: 411817 timestamp: 1672361825713 -- name: xcb-util - version: 0.4.0 - manager: conda - platform: linux-64 - dependencies: - libxcb: '>=1.13' - libgcc-ng: '>=7.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-h516909a_0.tar.bz2 - hash: - md5: a88ab22508ba067b689dc12696157cee - sha256: d797cecb10d9d20970656db803186b2d87e51f58202a87a359b18bae6f0b0d1e - optional: false - category: main - build: h516909a_0 - subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 20109 - timestamp: 1574273086272 - name: xcb-util-keysyms version: 0.4.0 manager: conda @@ -10700,27 +11067,8 @@ package: noarch: generic size: 117580 timestamp: 1680041306008 -- name: libffi - version: 3.4.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - hash: - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - optional: false - category: main - build: h7f98852_5 - subdir: linux-64 - build_number: 5 - license: MIT - license_family: MIT - size: 58292 - timestamp: 1636488182923 -- name: ld_impl_linux-64 - version: '2.40' +- name: ld_impl_linux-64 + version: '2.40' manager: conda platform: linux-64 dependencies: {} @@ -10739,182 +11087,104 @@ package: license_family: GPL size: 704696 timestamp: 1674833944779 -- name: bzip2 - version: 1.0.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 - hash: - md5: a1fd65c7ccbf10880423d82bca54eb54 - sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa - optional: false - category: main - build: h7f98852_4 - subdir: linux-64 - build_number: 4 - license: bzip2-1.0.6 - license_family: BSD - size: 495686 - timestamp: 1606604745109 -- name: libblas - version: 3.9.0 - manager: conda - platform: linux-64 - dependencies: - libopenblas: '>=0.3.23,<1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-17_linux64_openblas.conda - hash: - md5: 57fb44770b1bc832fb2dbefa1bd502de - sha256: 5a9dfeb9ede4b7ac136ac8c0b589309f8aba5ce79d14ca64ad8bffb3876eb04b - optional: false - category: main - build: 17_linux64_openblas - subdir: linux-64 - build_number: 17 - constrains: - - liblapacke 3.9.0 17_linux64_openblas - - libcblas 3.9.0 17_linux64_openblas - - blas * openblas - - liblapack 3.9.0 17_linux64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14473 - timestamp: 1685930788591 -- name: liblapacke - version: 3.9.0 - manager: conda - platform: linux-64 - dependencies: - libcblas: ==3.9.0 17_linux64_openblas - libblas: ==3.9.0 17_linux64_openblas - liblapack: ==3.9.0 17_linux64_openblas - url: https://conda.anaconda.org/conda-forge/linux-64/liblapacke-3.9.0-17_linux64_openblas.conda - hash: - md5: 949709aa6ee6a2dcdb3de6dd99147d17 - sha256: 6d936873d3f9ad6cc39117bc0b2f71bfd4eae93a2d2e32e9e2102b8346a5d99f - optional: false - category: main - build: 17_linux64_openblas - subdir: linux-64 - build_number: 17 - constrains: - - blas * openblas - license: BSD-3-Clause - license_family: BSD - size: 14406 - timestamp: 1685930825081 -- name: liblapack - version: 3.9.0 +- name: font-ttf-inconsolata + version: '3.000' manager: conda platform: linux-64 - dependencies: - libblas: ==3.9.0 17_linux64_openblas - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-17_linux64_openblas.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 hash: - md5: a2103882c46492e26500fcb56c03de8b - sha256: 45128394d2f4d4caf949c1b02bff1cace3ef2e33762dbe8f0edec7701a16aaa9 + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c optional: false category: main - build: 17_linux64_openblas - subdir: linux-64 - build_number: 17 - constrains: - - liblapacke 3.9.0 17_linux64_openblas - - libcblas 3.9.0 17_linux64_openblas - - blas * openblas - license: BSD-3-Clause - license_family: BSD - size: 14408 - timestamp: 1685930812931 -- name: libcblas - version: 3.9.0 + build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 96530 + timestamp: 1620479909603 +- name: font-ttf-source-code-pro + version: '2.038' manager: conda platform: linux-64 - dependencies: - libblas: ==3.9.0 17_linux64_openblas - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-17_linux64_openblas.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 hash: - md5: 7ef0969b00fe3d6eef56a8151d3afb29 - sha256: 535bc0a6bc7641090b1bdd00a001bb6c4ac43bce2a11f238bc6676252f53eb3f + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 optional: false category: main - build: 17_linux64_openblas - subdir: linux-64 - build_number: 17 - constrains: - - liblapacke 3.9.0 17_linux64_openblas - - blas * openblas - - liblapack 3.9.0 17_linux64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14401 - timestamp: 1685930800770 -- name: _openmp_mutex - version: '4.5' + build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 700814 + timestamp: 1620479612257 +- name: pyparsing + version: 3.1.0 manager: conda platform: linux-64 dependencies: - libgomp: '>=7.5.0' - _libgcc_mutex: ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: d3ed087d1f7f8f5590e8e87b57a8ce64 + sha256: 18e3bd52c64f23bbc7c200fd2fc4152dd29423936dc43e8f129cb43f1af0136c optional: false category: main - build: 2_gnu - subdir: linux-64 - build_number: 16 - constrains: - - openmp_impl 9999 - license: BSD-3-Clause - license_family: BSD - size: 23621 - timestamp: 1650670423406 -- name: libgomp - version: 13.1.0 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 88865 + timestamp: 1687132145260 +- name: python-dateutil + version: 2.8.2 manager: conda platform: linux-64 dependencies: - _libgcc_mutex: ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda + python: '>=3.6' + six: '>=1.5' + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: 56ca14d57ac29a75d23a39eb3ee0ddeb - sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da optional: false category: main - build: he5830b7_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 419184 - timestamp: 1685816132543 -- name: libopenblas - version: 0.3.23 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 245987 + timestamp: 1626286448716 +- name: docutils + version: 0.20.1 manager: conda platform: linux-64 dependencies: - libgfortran-ng: '*' - libgcc-ng: '>=12' - libgfortran5: '>=11.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.23-pthreads_h80387f5_0.conda + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.20.1-py310hff52083_0.conda hash: - md5: 9c5ea51ccb8ffae7d06c645869d24ce6 - sha256: 00aee12d04979d024c7f9cabccff5f5db2852c934397ec863a4abde3e09d5a79 + md5: 741a0de9f26de79576d681d950910781 + sha256: c6bc09969813b2a2ee0694f6e34b077bbfacf20fd2bf07c8826b22cf2377b7b1 optional: false category: main - build: pthreads_h80387f5_0 + build: py310hff52083_0 subdir: linux-64 build_number: 0 - constrains: - - openblas >=0.3.23,<0.3.24.0a0 - license: BSD-3-Clause - license_family: BSD - size: 5406072 - timestamp: 1681398290679 + license: LicenseRef-Public-Domain-Dedictation and BSD-2-Clause and LicenseRef-PSF-2.1.1 and GPL-3.0-or-later + size: 721160 + timestamp: 1684324293006 - name: libacl version: 2.3.1 manager: conda @@ -10935,252 +11205,694 @@ package: license_family: GPL size: 113519 timestamp: 1649237875053 -- name: pkg-config - version: 0.29.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2 - hash: - md5: fbef41ff6a4c8140c30057466a1cdd47 - sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c - optional: false - category: main - build: h36c2ea0_1008 - subdir: linux-64 - build_number: 1008 - license: GPL-2.0-or-later - license_family: GPL - size: 123341 - timestamp: 1604184579935 -- name: pyqt - version: 5.15.7 - manager: conda - platform: linux-64 - dependencies: - pyqt5-sip: ==12.11.0 py310heca2aa9_3 - python: '>=3.10,<3.11.0a0' - libstdcxx-ng: '>=12' - python_abi: 3.10.* *_cp310 - sip: '>=6.7.5,<6.8.0a0' - libgcc-ng: '>=12' - qt-main: '>=5.15.6,<5.16.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.7-py310hab646b1_3.conda - hash: - md5: d049da3204bf5ecb54a852b622f2d7d2 - sha256: 9210571612b135979541c5c65d28eda82941b3d613f3c8c792971bdfb7b4383a - optional: false - category: main - build: py310hab646b1_3 - subdir: linux-64 - build_number: 3 - license: GPL-3.0-only - license_family: GPL - size: 5239716 - timestamp: 1674670610336 -- name: pyqt5-sip - version: 12.11.0 +- name: pyyaml + version: '6.0' manager: conda platform: linux-64 dependencies: - sip: '*' python: '>=3.10,<3.11.0a0' - libstdcxx-ng: '>=12' python_abi: 3.10.* *_cp310 - toml: '*' - packaging: '*' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.11.0-py310heca2aa9_3.conda + yaml: '>=0.2.5,<0.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py310h5764c6d_5.tar.bz2 hash: - md5: 3b1946b676534472ce65181dda0b9554 - sha256: 7b58a8ca0bd2ab65d2c77017b288a551522dc5fe07d5d2dfa5189cdbb71019e8 + md5: 9e68d2ff6d98737c855b65f48dd3c597 + sha256: 602d68ee4544274b12fb6d13b8d5fc61d0ebbee190292c21d8be10a4e68185bd optional: false category: main - build: py310heca2aa9_3 + build: py310h5764c6d_5 subdir: linux-64 - build_number: 3 - license: GPL-3.0-only - license_family: GPL - size: 85394 - timestamp: 1674667054396 -- name: xorg-libx11 - version: 1.8.4 + build_number: 5 + license: MIT + license_family: MIT + size: 176321 + timestamp: 1666772551486 +- name: pydocstyle + version: 6.3.0 manager: conda platform: linux-64 dependencies: - xorg-xproto: '*' - libxcb: '>=1.13,<1.14.0a0' - xorg-kbproto: '*' - xorg-xextproto: '>=7.3.0,<8.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.4-h0b41bf4_0.conda + python: '>=3.8' + snowballstemmer: '>=2.2.0' + tomli: '>=1.2.3' + url: https://conda.anaconda.org/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_0.conda hash: - md5: ea8fbfeb976ac49cbeb594e985393514 - sha256: 3c6862a01a39cdea3870b132706ad7256824299947a3a94ae361d863d402d704 + md5: 7e23a61a7fbaedfef6eb0e1ac775c8e5 + sha256: 2076385b40e99732a013eff3b8defd88cd848764b9911d8e0d21728fbc89e301 optional: false category: main - build: h0b41bf4_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 license: MIT license_family: MIT - size: 829872 - timestamp: 1677611125385 -- name: xorg-libxrandr - version: 1.5.2 + noarch: python + size: 39851 + timestamp: 1673997613432 +- name: snowballstemmer + version: 2.2.0 manager: conda platform: linux-64 dependencies: - xorg-libxrender: '*' - xorg-randrproto: '*' - xorg-xextproto: '*' - xorg-renderproto: '*' - xorg-libx11: '>=1.7.1,<2.0a0' - libgcc-ng: '>=9.3.0' - xorg-libxext: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.2-h7f98852_1.tar.bz2 + python: '>=2' + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: 5b0f7da25a4556c9619c3e4b4a98ab07 - sha256: ffd075a463896ed86d9519e26dc36f754b695b9c1e1b6115d34fe138b36d8200 + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 optional: false category: main - build: h7f98852_1 - subdir: linux-64 - build_number: 1 - license: MIT - license_family: MIT - size: 29688 - timestamp: 1621515728586 -- name: xorg-libxaw - version: 1.0.14 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 58824 + timestamp: 1637143137377 +- name: flake8 + version: 6.0.0 manager: conda platform: linux-64 dependencies: - xorg-libxmu: 1.1.* - xorg-libxt: '>=1.2.1,<2.0a0' - xorg-libxpm: '>=3.5.13,<4.0a0' - xorg-libx11: '>=1.7.2,<2.0a0' - libgcc-ng: '>=9.4.0' - xorg-libxext: 1.3.* - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxaw-1.0.14-h7f98852_1.tar.bz2 + mccabe: '>=0.7.0,<0.8.0' + pyflakes: '>=3.0.0,<3.1.0' + python: '>=3.8.1' + pycodestyle: '>=2.10.0,<2.11.0' + url: https://conda.anaconda.org/conda-forge/noarch/flake8-6.0.0-pyhd8ed1ab_0.conda hash: - md5: 45b68dc2fc7549c16044d533ceaf340e - sha256: e3d90674a3178999b664a1c7c8ec8729ada60d144a2aa16da474488dfc86d713 + md5: e9345ba05d71742412b8aa6992ad9457 + sha256: 4a988f1b1bb9c58b1ee58220e880aa30f346ca193e3fb0d48607f3d961bb5e20 optional: false category: main - build: h7f98852_1 - subdir: linux-64 - build_number: 1 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 license: MIT license_family: MIT - size: 382060 - timestamp: 1641502851233 -- name: xorg-libxrender - version: 0.9.10 + noarch: python + size: 109426 + timestamp: 1669396799974 +- name: mccabe + version: 0.7.0 manager: conda platform: linux-64 dependencies: - xorg-renderproto: '*' - xorg-libx11: '>=1.7.0,<2.0a0' - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: f59c1242cc1dd93e72c2ee2b360979eb - sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 + md5: 34fc335fc50eef0b5ea708f2b5f54e0c + sha256: 0466ad9490b761e9a8c57fab574fc099136b45fa19a0746ce33acdeb2a84766b optional: false category: main - build: h7f98852_1003 - subdir: linux-64 - build_number: 1003 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 license: MIT license_family: MIT - size: 32906 - timestamp: 1614866792944 -- name: xorg-libxmu - version: 1.1.3 + noarch: python + size: 10909 + timestamp: 1643049714491 +- name: pycodestyle + version: 2.10.0 manager: conda platform: linux-64 dependencies: - xorg-libxt: '>=1.2.1,<2.0a0' - xorg-libx11: '>=1.7.0,<2.0a0' - libgcc-ng: '>=9.3.0' - xorg-libxext: 1.3.* - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.10.0-pyhd8ed1ab_0.conda hash: - md5: 3cdb89236358326adfce12be820a8af3 - sha256: 3a9f9f8bbf3a6934dada98a7a224dd264c533a251d2a92be604a4b23e772e79b + md5: 89843e4cc99c6a3fe5f4c86994cc8410 + sha256: 045624129b3a1cb288527353398af14479a58bee29d42498dc23a9b047f8d042 optional: false category: main - build: h7f98852_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 license: MIT license_family: MIT - size: 92562 - timestamp: 1617482204922 -- name: xorg-libxext - version: 1.3.4 + noarch: python + size: 42519 + timestamp: 1669306964956 +- name: cppcheck + version: 2.10.3 manager: conda platform: linux-64 dependencies: - xorg-libx11: '>=1.7.2,<2.0a0' + pygments: '*' + pcre: '>=8.45,<9.0a0' + libstdcxx-ng: '>=12' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 libgcc-ng: '>=12' - xorg-xextproto: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cppcheck-2.10.3-py310he65e294_0.conda hash: - md5: 82b6df12252e6f32402b96dacc656fec - sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 + md5: 518c87ced8a6adc6d355329a0016aed4 + sha256: 996a0487b63965fc1b2f4f83ec76b388fa753296027ff4f7f1b78d937a789998 optional: false category: main - build: h0b41bf4_2 + build: py310he65e294_0 subdir: linux-64 - build_number: 2 - license: MIT - license_family: MIT - size: 50143 - timestamp: 1677036907815 -- name: pyqt-builder - version: 1.15.1 + build_number: 0 + license: GPL-3.0-or-later + license_family: GPL + size: 2368648 + timestamp: 1678899770564 +- name: pcre + version: '8.45' manager: conda platform: linux-64 dependencies: - sip: '*' - python: '>=3.6' - toml: '*' - packaging: '*' - url: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.1-pyhd8ed1ab_0.conda + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2 hash: - md5: d124f91fd155fee0bd3d56e656917622 - sha256: 15b5fcae4530c1a7ba8dd32d3b249486f60f51b2342e21aa010852923f677405 + md5: c05d1820a6d34ff07aaaab7a9b7eddaa + sha256: 8f35c244b1631a4f31fb1d66ab6e1d9bfac0ca9b679deced1112c7225b3ad138 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h9c3ff4c_0 + subdir: linux-64 build_number: 0 - license: GPL-3.0-only - license_family: GPL - noarch: python - size: 2962795 - timestamp: 1685604062805 -- name: pep517 - version: 0.13.0 + license: BSD-3-Clause + license_family: BSD + size: 259377 + timestamp: 1623788789327 +- name: importlib-metadata + version: 6.8.0 manager: conda platform: linux-64 dependencies: python: '>=3.8' - tomli: '*' - url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + zipp: '>=0.5' + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda hash: - md5: d94aa03d99d8adc9898f783eba0d84d2 - sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf optional: false category: main - build: pyhd8ed1ab_0 + build: pyha770c72_0 subdir: noarch build_number: 0 - license: MIT - license_family: MIT + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 25910 + timestamp: 1688754651944 +- name: spdlog + version: 1.11.0 + manager: conda + platform: linux-64 + dependencies: + fmt: '>=9.1.0,<10.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.11.0-h9b3ece8_1.conda + hash: + md5: d1969251268232eb33e3bf95d041a06a + sha256: 33cd2da7147a36724f64fe66784cbb5eb99be5c9b1e3c192ff4c93baec121a82 + optional: false + category: main + build: h9b3ece8_1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 221184 + timestamp: 1673570097299 +- name: fmt + version: 9.1.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/fmt-9.1.0-h924138e_0.tar.bz2 + hash: + md5: b57864c85261a0fbc7132d2cc17478c7 + sha256: bd48506faffa86e07f7b40d54f2d7e13b0fc956eda9760236750f5ea20db7129 + optional: false + category: main + build: h924138e_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 189730 + timestamp: 1661661115134 +- name: tinyxml + version: 2.6.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.3.0' + libstdcxx-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/tinyxml-2.6.2-h4bd325d_2.tar.bz2 + hash: + md5: 39dd0757ee71ccd5b120440dce126c37 + sha256: d9e3c192c535c06ec139ada7bcd1f12313ebd377208fc8149348e8534229f39e + optional: false + category: main + build: h4bd325d_2 + subdir: linux-64 + build_number: 2 + license: Zlib + size: 56535 + timestamp: 1611562094388 +- name: pybind11 + version: 2.10.4 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + libstdcxx-ng: '>=12' + python_abi: 3.10.* *_cp310 + pybind11-global: ==2.10.4 py310hdf3cbec_0 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/pybind11-2.10.4-py310hdf3cbec_0.conda + hash: + md5: baa081de91b874136e0eeebcdbd9fa3e + sha256: 765dbfaf5f0b379be15fc137c28cd834794d20ab82646b7551bf1ea939e27409 + optional: false + category: main + build: py310hdf3cbec_0 + subdir: linux-64 + build_number: 0 + constrains: + - pybind11-abi ==4 + license: BSD-3-Clause + license_family: BSD + size: 180030 + timestamp: 1679012864769 +- name: pybind11-global + version: 2.10.4 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + libstdcxx-ng: '>=12' + python_abi: 3.10.* *_cp310 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/pybind11-global-2.10.4-py310hdf3cbec_0.conda + hash: + md5: fa8a0be85e4ffd8a2035a06cad9c707f + sha256: cf8f1e63784dbd75100c331274235ca0cdfa9f0a1c1a32504e5ca4946e6da054 + optional: false + category: main + build: py310hdf3cbec_0 + subdir: linux-64 + build_number: 0 + constrains: + - pybind11-abi ==4 + license: BSD-3-Clause + license_family: BSD + size: 168201 + timestamp: 1679012721798 +- name: empy + version: 3.3.4 + manager: conda + platform: linux-64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 + hash: + md5: e4be10fd1a907b223da5be93f06709d2 + sha256: 75e04755df8d8db7a7711dddaf68963c11258b755c9c24565bfefa493ee383e3 + optional: false + category: main + build: pyh9f0ad1d_1 + subdir: noarch + build_number: 1 + license: LGPL-2.1 + license_family: GPL + noarch: python + size: 40210 + timestamp: 1586444722817 +- name: importlib_resources + version: 6.0.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.7' + zipp: '>=3.1.0' + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.0.0-pyhd8ed1ab_0.conda + hash: + md5: acf36c4210f71dbf45a83409a9b5ff4d + sha256: cfdc0bb498d6957e360181947b8f07c1128606e9fc27eb4b8aca421857d4127a + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + constrains: + - importlib-resources >=6.0.0,<6.0.1.0a0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 27488 + timestamp: 1688813652372 +- name: psutil + version: 5.9.5 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + libgcc-ng: '>=12' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.5-py310h1fa729e_0.conda + hash: + md5: b0f0a014fc04012c05f39df15fe270ce + sha256: 6864a95001b67413f7d06e35dc2ef0f13afb8c93cde8e826321453eac1bf1991 + optional: false + category: main + build: py310h1fa729e_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 362309 + timestamp: 1681775208997 +- name: rosdistro + version: 0.9.0 + manager: conda + platform: linux-64 + dependencies: + setuptools: '*' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + catkin_pkg: '*' + pyyaml: '*' + rospkg: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/rosdistro-0.9.0-py310hff52083_0.tar.bz2 + hash: + md5: c39227fbdcb634c4e9dc59230cb2df8b + sha256: a3d4fb2b0f84c5ea7b4f6d711d260060cfe7a7be494dc5eb2f0dde4e35ef6f60 + optional: false + category: main + build: py310hff52083_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 81356 + timestamp: 1666960784426 +- name: packaging + version: '23.1' + manager: conda + platform: linux-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda + hash: + md5: 91cda59e66e1e4afe9476f8ef98f5c30 + sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 46098 + timestamp: 1681337144376 +- name: argcomplete + version: 3.1.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.1.1-pyhd8ed1ab_0.conda + hash: + md5: 964bace0c38ce4733851a2a29679e3f9 + sha256: 1fe9b55d3daeb26ac404ec51f106ce8792d7d6548810ca87600cd9b9e9cfbd6e + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 39430 + timestamp: 1686587564613 +- name: netifaces + version: 0.11.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + libgcc-ng: '>=12' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/linux-64/netifaces-0.11.0-py310h5764c6d_1.tar.bz2 + hash: + md5: 7510edfd9dccb73a69d9ee103ca252b3 + sha256: 0c57f9da1e91c4c5c228074545da03ee8856bcd0350929f4d49d058e018f1085 + optional: false + category: main + build: py310h5764c6d_1 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + size: 18572 + timestamp: 1666851304014 +- name: cmake + version: 3.26.3 + manager: conda + platform: linux-64 + dependencies: + libuv: '*' + libcurl: '>=7.88.1,<9.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + expat: '*' + libexpat: '>=2.5.0,<3.0a0' + rhash: '*' + bzip2: '>=1.0.8,<2.0a0' + libstdcxx-ng: '>=12' + ncurses: '>=6.3,<7.0a0' + xz: '>=5.2.6,<6.0a0' + zlib: '*' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.26.3-h077f3f9_0.conda + hash: + md5: 6edec767268ad8451d27bb65f38c7ea4 + sha256: 3bb9d7c35d5297d85516769eb0517c83f7fc2ed7ab944a8c028871bb375bed51 + optional: false + category: main + build: h077f3f9_0 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 16285339 + timestamp: 1680747838589 +- name: foonathan-memory + version: 0.7.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/foonathan-memory-0.7.2-h27087fc_1.tar.bz2 + hash: + md5: 106ca303dbd513de03e3cce07550a7d0 + sha256: 0bb4026456bd678423fe80b478718d9609345ec727df2ee7e88106f5bccafc76 + optional: false + category: main + build: h27087fc_1 + subdir: linux-64 + build_number: 1 + license: Zlib + size: 182012 + timestamp: 1661195398612 +- name: lark-parser + version: 0.12.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 2d1f963b23792b269635b9b32bee1913 + sha256: 5a1b0fb3c9e6ba7f8c5788d0bc90aadc85f88371ba261c07edf951805988f89a + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 79371 + timestamp: 1630320889981 +- name: yaml + version: 0.2.5 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + hash: + md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae + sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 + optional: false + category: main + build: h7f98852_2 + subdir: linux-64 + build_number: 2 + license: MIT + license_family: MIT + size: 89141 + timestamp: 1641346969816 +- name: yaml-cpp + version: 0.7.0 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.7.0-h27087fc_2.tar.bz2 + hash: + md5: 0449d47d8457feaa3720d4779616dde2 + sha256: fcdffce895f84a49221720b811a6bb14ae79f7ac14f7930f3768bbb7b2470444 + optional: false + category: main + build: h27087fc_2 + subdir: linux-64 + build_number: 2 + license: MIT + license_family: MIT + size: 219830 + timestamp: 1664345837170 +- name: console_bridge + version: 1.0.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2 + hash: + md5: e891b2b856a57d2b2ddb9ed366e3f2ce + sha256: 29caeda123ea705e68de46dc3b86065ec78f5b44d7ae69b320cc57e136d2d9d7 + optional: false + category: main + build: h924138e_1 + subdir: linux-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 18460 + timestamp: 1648912649612 +- name: libcurl + version: 7.88.1 + manager: conda + platform: linux-64 + dependencies: + libssh2: '>=1.10.0,<2.0a0' + zstd: '>=1.5.2,<1.6.0a0' + libnghttp2: '>=1.52.0,<2.0a0' + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.88.1-hdc1c0ab_1.conda + hash: + md5: 3d1189864d1c0ed2a5919cb067b5903d + sha256: 500c08e61871df6dc4fc87913c99cb799f5fa8333db991201be32b657e9dcdb1 + optional: false + category: main + build: hdc1c0ab_1 + subdir: linux-64 + build_number: 1 + license: curl + license_family: MIT + size: 358872 + timestamp: 1679081875705 +- name: libnghttp2 + version: 1.52.0 + manager: conda + platform: linux-64 + dependencies: + libstdcxx-ng: '>=12' + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda + hash: + md5: 613955a50485812985c059e7b269f42e + sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a + optional: false + category: main + build: h61bc06f_0 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + size: 622366 + timestamp: 1677678076121 +- name: pkg-config + version: 0.29.2 + manager: conda + platform: linux-64 + dependencies: + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2 + hash: + md5: fbef41ff6a4c8140c30057466a1cdd47 + sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c + optional: false + category: main + build: h36c2ea0_1008 + subdir: linux-64 + build_number: 1008 + license: GPL-2.0-or-later + license_family: GPL + size: 123341 + timestamp: 1604184579935 +- name: pyqt-builder + version: 1.15.1 + manager: conda + platform: linux-64 + dependencies: + sip: '*' + python: '>=3.6' + toml: '*' + packaging: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.1-pyhd8ed1ab_0.conda + hash: + md5: d124f91fd155fee0bd3d56e656917622 + sha256: 15b5fcae4530c1a7ba8dd32d3b249486f60f51b2342e21aa010852923f677405 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: GPL-3.0-only + license_family: GPL + noarch: python + size: 2962795 + timestamp: 1685604062805 +- name: pep517 + version: 0.13.0 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.8' + tomli: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: d94aa03d99d8adc9898f783eba0d84d2 + sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT noarch: python size: 19044 timestamp: 1667916747996 @@ -11625,384 +12337,385 @@ package: license: GPLv2 OR GPLv3 OR FreeImage size: 490969 timestamp: 1660371474805 -- name: boost-cpp - version: 1.78.0 +- name: pugixml + version: 1.11.4 manager: conda platform: linux-64 dependencies: - xz: '>=5.2.6,<6.0a0' - bzip2: '>=1.0.8,<2.0a0' - icu: '>=70.1,<71.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.78.0-h5adbc97_2.conda + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.11.4-h59595ed_1.conda hash: - md5: 09be6b4c66c7881e2b24214c6f6841c9 - sha256: 7f88fff764eee5c95afa8d71864caa1a9fe862940699bceee1ec1f8e1e023174 + md5: 32835434dcf8ca46d357a76fbd1f152b + sha256: f900e3cf6fc98ac8a14fc9a313726e0f414475cc43f02edbc298cca2678fdb63 optional: false category: main - build: h5adbc97_2 + build: h59595ed_1 subdir: linux-64 - build_number: 2 - constrains: - - libboost <0 - license: BSL-1.0 - size: 15907170 - timestamp: 1680712174404 -- name: libglu - version: 9.0.0 + build_number: 1 + license: MIT + license_family: MIT + size: 113335 + timestamp: 1686045672717 +- name: zziplib + version: 0.13.69 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.3.0' - libstdcxx-ng: '>=7.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-he1b5a44_1001.tar.bz2 + libgcc-ng: '>=9.3.0' + zlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zziplib-0.13.69-h27826a3_1.tar.bz2 hash: - md5: 8208602aec4826053c116552369a394c - sha256: 5bd76151994096908231712e1539bd18372bb66fedc1d28dfd36fe086e8f58e4 + md5: d0646083f3cb1ef27049538b8043ab15 + sha256: 8ce40952fce6bb50ec74afda2f30f384ad9666add5b8a0f88927c6c2407f27f1 optional: false category: main - build: he1b5a44_1001 + build: h27826a3_1 subdir: linux-64 - build_number: 1001 - license: SGI-2 - size: 422567 - timestamp: 1585488939757 -- name: giflib - version: 5.2.1 + build_number: 1 + license: GPL-2.0 + license_family: GPL + size: 99102 + timestamp: 1617437120421 +- name: libignition-math6 + version: 6.14.0 manager: conda platform: linux-64 dependencies: + libignition-cmake2: '>=2.16.0,<3.0a0' + python: '>=3.10,<3.11.0a0' + libstdcxx-ng: '>=12' + python_abi: 3.10.* *_cp310 + pybind11-abi: ==4 libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda + eigen: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/libignition-math6-6.14.0-py310haded995_0.conda hash: - md5: 96f3b11872ef6fad973eac856cd2624f - sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b + md5: b8d3f0791a95e7724a7396bf461d43c6 + sha256: 3eae65e60f45a8f321bab8bd88ba3694c7ece41cedf4b83fb3de41b3ec7c19f4 optional: false category: main - build: h0b41bf4_3 + build: py310haded995_0 subdir: linux-64 - build_number: 3 - license: MIT - license_family: MIT - size: 77385 - timestamp: 1678717794467 -- name: freeglut - version: 3.2.2 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 1098459 + timestamp: 1682365080224 +- name: matplotlib-base + version: 3.7.1 manager: conda platform: linux-64 dependencies: - xorg-libxi: '*' - xorg-libxfixes: '*' - libgcc-ng: '>=9.4.0' - libxcb: '>=1.13,<1.14.0a0' - libstdcxx-ng: '>=9.4.0' - xorg-libxau: '*' - xorg-libx11: '*' - xorg-libxext: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-h9c3ff4c_1.tar.bz2 + cycler: '>=0.10' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + kiwisolver: '>=1.0.1' + pyparsing: '>=2.3.1' + libgcc-ng: '>=12' + python-dateutil: '>=2.7' + certifi: '>=2020.6.20' + contourpy: '>=1.0.1' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + numpy: '>=1.21.6,<2.0a0' + libstdcxx-ng: '>=12' + pillow: '>=6.2.0' + tk: '>=8.6.12,<8.7.0a0' + packaging: '>=20.0' + url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.1-py310he60537e_0.conda hash: - md5: 1192066d1296de9b492175a4cf43fe8a - sha256: 6397754681cf6981fdb8f9ffc0a8ac93c6bd2bb487dcf611ec31f2da7326b6ec + md5: 68b2dd34c69d08b05a9db5e3596fe3ee + sha256: d2be8ac0a90aa12ba808f8777d1837b5aa983fc3c7c60c600e8fe6bd9352541c optional: false category: main - build: h9c3ff4c_1 + build: py310he60537e_0 subdir: linux-64 - build_number: 1 - license: MIT - license_family: MIT - size: 165906 - timestamp: 1645054920195 -- name: xorg-libxfixes - version: 5.0.3 + build_number: 0 + license: LicenseRef-PSF-2.0 and CC0-1.0 + license_family: PSF + size: 6792612 + timestamp: 1678135808833 +- name: pillow + version: 9.2.0 manager: conda platform: linux-64 dependencies: - xorg-fixesproto: '*' - xorg-libx11: '>=1.7.0,<2.0a0' - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + openjpeg: '>=2.5.0,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + jpeg: '>=9e,<10a' + libgcc-ng: '>=12' + libtiff: '>=4.4.0,<4.5.0a0' + libxcb: '>=1.13,<1.14.0a0' + lcms2: '>=2.12,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + tk: '>=8.6.12,<8.7.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py310h454ad03_3.tar.bz2 hash: - md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a - sha256: 1e426a1abb774ef1dcf741945ed5c42ad12ea2dc7aeed7682d293879c3e1e4c3 + md5: eb354ff791f505b1d6f13f776359d88e + sha256: 202cc5b4c60e32096b67791f822699bf91670584ac3db7e86ebb1b6a4c584218 optional: false category: main - build: h7f98852_1004 + build: py310h454ad03_3 subdir: linux-64 - build_number: 1004 - license: MIT - license_family: MIT - size: 18145 - timestamp: 1617717802636 -- name: xorg-libxi - version: 1.7.10 + build_number: 3 + license: LicenseRef-PIL + size: 47452449 + timestamp: 1666920698626 +- name: pycairo + version: 1.24.0 manager: conda platform: linux-64 dependencies: - xorg-inputproto: '*' - xorg-libxfixes: 5.0.* - xorg-libx11: '>=1.7.0,<2.0a0' - libgcc-ng: '>=9.3.0' - xorg-libxext: 1.3.* - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2 + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + cairo: '>=1.16.0,<2.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/pycairo-1.24.0-py310hda9f760_0.conda hash: - md5: e77615e5141cad5a2acaa043d1cf0ca5 - sha256: 745c1284a96b4282fe6fe122b2643e1e8c26a7ff40b733a8f4b61357238c4e68 + md5: 5244c13db6282374d5589dcc5bda826f + sha256: d8196714324c180c06c27db0b666f92412e98e883e27c890f74c57178e8579ee optional: false category: main - build: h7f98852_0 + build: py310hda9f760_0 subdir: linux-64 build_number: 0 - license: MIT - license_family: MIT - size: 47287 - timestamp: 1620070911951 -- name: libuv - version: 1.44.2 + license: LGPL-2.1-only OR MPL-1.1 + size: 113481 + timestamp: 1687180341345 +- name: sdl2 + version: 2.26.5 manager: conda platform: linux-64 dependencies: + xorg-libxext: '>=1.3.4,<2.0a0' + libstdcxx-ng: '>=12' + pulseaudio-client: '>=16.1,<16.2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.44.2-h166bdaf_0.tar.bz2 + xorg-libx11: '>=1.8.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.26.5-h949db6a_0.conda hash: - md5: e5cb4fe581a18ca2185a016eb848fc00 - sha256: dc14922a6d5cf7fde55c0aa8f6661d6871c6a2e94369e7455a8a5927c3065080 + md5: 062142393e7fe4bc8e20a4eea9b639e6 + sha256: d61329f63735a871b620316b7115358a693bc856709f34cf8f9b241b37261ca4 optional: false category: main - build: h166bdaf_0 + build: h949db6a_0 subdir: linux-64 build_number: 0 - license: MIT - license_family: MIT - size: 1073002 - timestamp: 1657719428572 -- name: rhash - version: 1.4.3 + license: Zlib + size: 1334948 + timestamp: 1680735969345 +- name: attr + version: 2.5.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.3-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 hash: - md5: 0bcb0ab6faa796a22b40de3a41e3b2de - sha256: 3f7e1e46d0967f8d08026116aa84fda07bc93d11d44dc3c03a29ad9d3ffc63cc + md5: d9c69a24ad678ffce24c6543a0176b00 + sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 optional: false category: main - build: h166bdaf_0 + build: h166bdaf_1 subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 204010 - timestamp: 1655256276550 -- name: libgfortran-ng - version: 13.1.0 + build_number: 1 + license: GPL-2.0-or-later + license_family: GPL + size: 71042 + timestamp: 1660065501192 +- name: pygments + version: 2.15.1 manager: conda platform: linux-64 dependencies: - libgfortran5: ==13.1.0 h15d22d2_0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.1.0-h69a702a_0.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.15.1-pyhd8ed1ab_0.conda hash: - md5: 506dc07710dd5b0ba63cbf134897fc10 - sha256: 429e1d8a3e70b632df5b876e3fc322a56f769756693daa07114c46fa5098684e + md5: d316679235612869eba305aa7d41d9bf + sha256: 1bddeb54863c77ed5613b535a3e06a3a16b55786301a5e28c9bf011656bda686 optional: false category: main - build: h69a702a_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 23182 - timestamp: 1685816194244 -- name: libgfortran5 - version: 13.1.0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 840719 + timestamp: 1681904335148 +- name: toml + version: 0.10.2 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.1.0-h15d22d2_0.conda + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: afb656a334c409dd9805508af1c89c7a - sha256: a06235f4c4b85b463d9b8a73c9e10c1b5b4105f8a0ea8ac1f2f5f64edac3dfe7 + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 optional: false category: main - build: h15d22d2_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - constrains: - - libgfortran-ng 13.1.0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 1437388 - timestamp: 1685816112374 -- name: libsystemd0 - version: '253' + license: MIT + license_family: MIT + noarch: python + size: 18433 + timestamp: 1604308660817 +- name: sip + version: 6.7.9 manager: conda platform: linux-64 dependencies: - libgcrypt: '>=1.10.1,<2.0a0' - xz: '>=5.2.6,<6.0a0' - libcap: '>=2.67,<2.68.0a0' - __glibc: '>=2.17,<3.0.a0' - lz4-c: '>=1.9.3,<1.10.0a0' - zstd: '>=1.5.2,<1.6.0a0' + tomli: '*' + ply: '*' + libstdcxx-ng: '>=12' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + packaging: '*' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-253-h8c4010b_1.conda - hash: - md5: 9176b1e2cb8beca37a7510b0e801e38f - sha256: 13f5db46b7ded028f5b53fd5373e27a47789b9a655b52a92c4b324099602f29a - optional: false - category: main - build: h8c4010b_1 - subdir: linux-64 - build_number: 1 - license: LGPL-2.1-or-later - size: 380557 - timestamp: 1677532757148 -- name: libgcrypt - version: 1.10.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=10.3.0' - libgpg-error: '>=1.44,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.9-py310hc6cd4ac_0.conda hash: - md5: f967fc95089cd247ceed56eda31de3a9 - sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a + md5: a3217e1bff09702dfdfcb536825fc12d + sha256: 828ecab2c5b6fd6da4727d4147a856fd643b95801970e8cddc3090204e4c8f8d optional: false category: main - build: h166bdaf_0 + build: py310hc6cd4ac_0 subdir: linux-64 build_number: 0 - license: LGPL-2.1-or-later AND GPL-2.0-or-later + license: GPL-3.0-only license_family: GPL - size: 719561 - timestamp: 1649520091125 -- name: cairo - version: 1.16.0 + size: 492725 + timestamp: 1681995143720 +- name: ply + version: '3.11' manager: conda platform: linux-64 dependencies: - xorg-libxrender: '*' - libpng: '>=1.6.38,<1.7.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - libgcc-ng: '>=12' - xorg-libsm: '*' - xorg-libxext: '*' - icu: '>=70.1,<71.0a0' - libglib: '>=2.72.1,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - xorg-libice: '*' - zlib: '>=1.2.12,<1.3.0a0' - fontconfig: '>=2.13.96,<3.0a0' - libxcb: '>=1.13,<1.14.0a0' - fonts-conda-ecosystem: '*' - xorg-libx11: '*' - pixman: '>=0.40.0,<1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-ha61ee94_1014.tar.bz2 + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 hash: - md5: d1a88f3ed5b52e1024b80d4bcd26a7a0 - sha256: f062cf56e6e50d3ad4b425ebb3765ca9138c6ebc52e6a42d1377de8bc8d954f6 + md5: 7205635cd71531943440fbfe3b6b5727 + sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 optional: false category: main - build: ha61ee94_1014 - subdir: linux-64 - build_number: 1014 - license: LGPL-2.1-only or MPL-1.1 - size: 1576122 - timestamp: 1663568213559 -- name: pixman - version: 0.40.0 + build: py_1 + subdir: noarch + build_number: 1 + license: BSD 3-clause + license_family: BSD + noarch: python + size: 44837 + timestamp: 1530963184592 +- name: tomli + version: 2.0.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 hash: - md5: 660e72c82f2e75a6b3fe6a6e75c79f19 - sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f optional: false category: main - build: h36c2ea0_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 license: MIT license_family: MIT - size: 642520 - timestamp: 1604342437426 -- name: graphite2 - version: 1.3.13 + noarch: python + size: 15940 + timestamp: 1644342331069 +- name: rospkg + version: 1.5.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - libstdcxx-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2 + python: '>=3.6' + pyyaml: '*' + catkin_pkg: '*' + distro: '*' + url: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.5.0-pyhd8ed1ab_0.conda hash: - md5: 8c54672728e8ec6aa6db90cf2806d220 - sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 + md5: 15f4f2f2538f7746a9c4c9f3ba783f49 + sha256: 1ad1b4ce441a35dc86c13d8683ed2f052e4df8d8c3f5ced86d5e4735d596f940 optional: false category: main - build: h58526e2_1001 - subdir: linux-64 - build_number: 1001 - license: LGPLv2 - size: 104701 - timestamp: 1604365484436 -- name: libllvm15 - version: 15.0.7 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 31031 + timestamp: 1679367764497 +- name: pango + version: 1.50.14 manager: conda platform: linux-64 dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + fribidi: '>=1.0.10,<2.0a0' + cairo: '>=1.16.0,<2.0a0' libgcc-ng: '>=12' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hadd5161_1.conda + freetype: '>=2.12.1,<3.0a0' + libglib: '>=2.74.1,<3.0a0' + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + harfbuzz: '>=6.0.0,<7.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.14-hd33c08f_0.conda hash: - md5: 17d91085ccf5934ce652cb448d0cb65a - sha256: f649fac60cb122bf0d85c4955725d94c353fdbd768bcd44f0444979b363cc9ab + md5: a8b9e35dd7be2c945b0de4fe19a7c3a9 + sha256: 80648fb4691839a81f83fe55f4353357d198cd75e61dbb61b815e39d577e87d2 optional: false category: main - build: hadd5161_1 + build: hd33c08f_0 subdir: linux-64 - build_number: 1 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 33016652 - timestamp: 1678862492181 -- name: xkeyboard-config - version: '2.38' + build_number: 0 + license: LGPL-2.1-or-later + size: 437611 + timestamp: 1677859036944 +- name: gdk-pixbuf + version: 2.42.8 manager: conda platform: linux-64 dependencies: + zlib: '>=1.2.12,<1.3.0a0' + libtiff: '>=4.4.0,<4.5.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libglib: '>=2.72.1,<3.0a0' + jpeg: '>=9e,<10a' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.38-h0b41bf4_0.conda + libzlib: '>=1.2.12,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.8-hff1cb4f_1.tar.bz2 hash: - md5: 9ac34337e5101a87e5d91da05d84aa48 - sha256: 0518e65929deded6afc5f91f31febb15e8c93f7ee599a18b787f9fab3f79cfd6 + md5: a61c6312192e7c9de71548a6706a21e6 + sha256: b7379d19afe924b39e29e47b046f99a4a737f58a210c27d083391c0f8f012aad optional: false category: main - build: h0b41bf4_0 + build: hff1cb4f_1 subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 882013 - timestamp: 1676563054660 -- name: xorg-libxau - version: 1.0.11 + build_number: 1 + license: LGPL-2.1-or-later + license_family: LGPL + size: 612142 + timestamp: 1663606737281 +- name: c-ares + version: 1.19.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda hash: - md5: 2c80dc38fface310c9bd81b17037fee5 - sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 + md5: e8c18d865be43e2fb3f7a145b6adf1f5 + sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6 optional: false category: main build: hd590300_0 @@ -12010,722 +12723,677 @@ package: build_number: 0 license: MIT license_family: MIT - size: 14468 - timestamp: 1684637984591 -- name: xorg-libxdmcp - version: 1.1.3 + size: 113362 + timestamp: 1684782732180 +- name: libev + version: '4.33' manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2 + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 hash: - md5: be93aabceefa2fac576e971aef407908 - sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 + md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 + sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 optional: false category: main - build: h7f98852_0 + build: h516909a_1 subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 19126 - timestamp: 1610071769228 -- name: pthread-stubs - version: '0.4' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 106190 + timestamp: 1598867915 +- name: cffi + version: 1.15.1 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + pycparser: '*' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py310h255011f_3.conda hash: - md5: 22dad4df6e8630e8dff2428f6f6a7036 - sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff + md5: 800596144bb613cd7ac58b80900ce835 + sha256: f223c8782195f19dbe7cfd27e329de8b0e2205a090ee2a6891e0695d4d634854 optional: false category: main - build: h36c2ea0_1001 + build: py310h255011f_3 subdir: linux-64 - build_number: 1001 + build_number: 3 license: MIT license_family: MIT - size: 5625 - timestamp: 1606147468727 -- name: libedit - version: 3.1.20191231 + size: 237030 + timestamp: 1671179461482 +- name: gtk2 + version: 2.24.33 manager: conda platform: linux-64 dependencies: - ncurses: '>=6.2,<7.0.0a0' - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + libgcc-ng: '>=9.4.0' + gettext: '>=0.19.8.1,<1.0a0' + pango: '>=1.50.3,<1.51.0a0' + libglib: '>=2.70.2,<3.0a0' + atk-1.0: '>=2.36.0' + cairo: '>=1.16.0,<2.0.0a0' + gdk-pixbuf: '>=2.42.6,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h90689f9_2.tar.bz2 hash: - md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 - sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + md5: 957a0255ab58aaf394a91725d73ab422 + sha256: 66d189ec36d67309fa3eb52d14d77b82359c10303c400eecc14f8eaca5939b87 optional: false category: main - build: he28a2e2_2 + build: h90689f9_2 subdir: linux-64 build_number: 2 - license: BSD-2-Clause - license_family: BSD - size: 123878 - timestamp: 1597616541093 -- name: libopus - version: 1.3.1 + license: LGPL-2.1-or-later + size: 7763202 + timestamp: 1642435177770 +- name: gts + version: 0.7.6 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + libglib: '>=2.76.3,<3.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda hash: - md5: 15345e56d527b330e1cacbdf58676e8f - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + md5: 4d8df0b0db060d33c9a702ada998a8fe + sha256: b5cd16262fefb836f69dc26d879b6508d29f8a5c5948a966c47fe99e2e19c99b optional: false category: main - build: h7f98852_1 + build: h977cf35_4 subdir: linux-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 260658 - timestamp: 1606823578035 -- name: libvorbis - version: 1.3.7 + build_number: 4 + license: LGPL-2.0-or-later + license_family: LGPL + size: 318312 + timestamp: 1686545244763 +- name: atk-1.0 + version: 2.38.0 manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=9.3.0' - libgcc-ng: '>=9.3.0' - libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 + libglib: '>=2.74.1,<3.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-hd4edc92_1.tar.bz2 hash: - md5: 309dec04b70a3cc0f1e84a4013683bc0 - sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 + md5: 6c72ec3e660a51736913ef6ea68c454b + sha256: 2f9314de13c1f0b54510a2afa0cdc02c0e3f828fccfc4277734f9590b11a65f1 optional: false category: main - build: h9c3ff4c_0 + build: hd4edc92_1 subdir: linux-64 - build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 286280 - timestamp: 1610609811627 -- name: ffmpeg - version: 5.1.2 + build_number: 1 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 551928 + timestamp: 1667420962627 +- name: xorg-libice + version: 1.0.10 manager: conda platform: linux-64 dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - openh264: '>=2.3.1,<2.3.2.0a0' - svt-av1: '>=1.4.1,<1.4.2.0a0' - x265: '>=3.5,<3.6.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - x264: '>=1!164.3095,<1!165' - aom: '>=3.5.0,<3.6.0a0' - gnutls: '>=3.7.8,<3.8.0a0' - libopus: '>=1.3.1,<2.0a0' - lame: '>=3.100,<3.101.0a0' - gmp: '>=6.2.1,<7.0a0' - libvpx: '>=1.11.0,<1.12.0a0' - freetype: '>=2.12.1,<3.0a0' - libva: '>=2.17.0,<3.0a0' - fontconfig: '>=2.14.1,<3.0a0' - bzip2: '>=1.0.8,<2.0a0' - libstdcxx-ng: '>=12' - fonts-conda-ecosystem: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-5.1.2-gpl_h8dda1f0_106.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2 hash: - md5: 6845420373a9e260942bfbc5c786a4bb - sha256: be22acd41af31933f835c86998052d7a7073f9c8b267f01f5f3d8c501a2ce21f + md5: d6b0b50b49eccfe0be0373be628be0f3 + sha256: f15ce1dff16823888bcc2be1738aadcb36699be1e2dd2afa347794c7ec6c1587 optional: false category: main - build: gpl_h8dda1f0_106 + build: h7f98852_0 subdir: linux-64 - build_number: 106 - license: GPL-2.0-or-later - license_family: GPL - size: 9621299 - timestamp: 1674566990384 -- name: gnutls - version: 3.7.8 + build_number: 0 + license: MIT + license_family: MIT + size: 59395 + timestamp: 1614866249018 +- name: xorg-libsm + version: 1.2.3 manager: conda platform: linux-64 dependencies: - p11-kit: '>=0.24.1,<0.25.0a0' - libstdcxx-ng: '>=12' - libidn2: '>=2,<3.0a0' - nettle: '>=3.8.1,<3.9.0a0' - libgcc-ng: '>=12' - libtasn1: '>=4.19.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.8-hf3e180e_0.tar.bz2 + xorg-libice: 1.0.* + libgcc-ng: '>=9.3.0' + libuuid: '>=2.32.1,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2 hash: - md5: cbe8e27140d67c3f30e01cfb642a6e7c - sha256: 4a47e4558395b98fff4c1c44ad358dade62b350a03b5a784d4bc589d6eb7ac9e + md5: 9e856f78d5c80d5a78f61e72d1d473a3 + sha256: bdb350539521ddc1f30cc721b6604eced8ef72a0ec146e378bfe89e2be17ab35 optional: false category: main - build: hf3e180e_0 + build: hd9c2040_1000 subdir: linux-64 - build_number: 0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 2271927 - timestamp: 1664445361111 -- name: gmp - version: 6.2.1 + build_number: 1000 + license: MIT + license_family: MIT + size: 26362 + timestamp: 1614875106937 +- name: fribidi + version: 1.0.10 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=7.5.0' - libstdcxx-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 hash: - md5: b94cf2db16066b242ebd26db2facbd56 - sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198 + md5: ac7bc6a654f8f41b352b38f4051135f8 + sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 optional: false category: main - build: h58526e2_0 + build: h36c2ea0_0 subdir: linux-64 build_number: 0 - license: GPL-2.0-or-later AND LGPL-3.0-or-later - size: 825784 - timestamp: 1605751468661 -- name: aom - version: 3.5.0 + license: LGPL-2.1 + size: 114383 + timestamp: 1604416621168 +- name: libidn2 + version: 2.3.4 manager: conda platform: linux-64 dependencies: + libunistring: '>=0,<1.0a0' + gettext: '>=0.21.1,<1.0a0' libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.5.0-h27087fc_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.4-h166bdaf_0.tar.bz2 hash: - md5: a08150fd2298460cd1fcccf626305642 - sha256: ed05f72ffa891e3c6a507eac6f0221c85c1f0611491328cd098308060740891c + md5: 7440fbafd870b8bab68f83a064875d34 + sha256: 888848ae85be9df86f56407639c63bdce8e7651f0b2517be9bc0ac6e38b2d21d optional: false category: main - build: h27087fc_0 + build: h166bdaf_0 subdir: linux-64 build_number: 0 - license: BSD-2-Clause - license_family: BSD - size: 2859124 - timestamp: 1663808526544 -- name: svt-av1 - version: 1.4.1 + license: LGPLv2 + size: 160409 + timestamp: 1666574022481 +- name: libssh2 + version: 1.11.0 manager: conda platform: linux-64 dependencies: + libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-1.4.1-hcb278e6_0.conda + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: - md5: 2b32b8a10fa6ec9c18c897c4527720dc - sha256: 478e8362e0234c85f7b6cbd22a45fbf9a5a84b7b7c128ab7f1ef8ff887f67981 + md5: 1f5a58e686b13bcfde88b93f547d23fe + sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d optional: false category: main - build: hcb278e6_0 + build: h0841786_0 subdir: linux-64 build_number: 0 - license: BSD-2-Clause + license: BSD-3-Clause license_family: BSD - size: 2488189 - timestamp: 1670988797792 -- name: nettle - version: 3.8.1 + size: 271133 + timestamp: 1685837707056 +- name: fftw + version: 3.3.10 manager: conda platform: linux-64 dependencies: + libgfortran-ng: '*' + libgfortran5: '>=11.4.0' + libstdcxx-ng: '>=12' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.8.1-hc379101_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hc118613_108.conda hash: - md5: 3cb2c7df59990bd37c2ce27fd906de68 - sha256: 49c569a69608eee784e815179a70c6ae4d088dac42b7df999044f68058d593bb + md5: 6fa90698000b05dfe8ce6515794fe71a + sha256: 1952dbb3c40931fc4608e053e32cbebbdcd8f3ea5b6a050156df6dd66ad64912 optional: false category: main - build: hc379101_1 + build: nompi_hc118613_108 subdir: linux-64 - build_number: 1 - license: GPL 2 and LGPL3 + build_number: 108 + license: GPL-2.0-or-later license_family: GPL - size: 1195508 - timestamp: 1659085101126 -- name: libtasn1 - version: 4.19.0 + size: 2019717 + timestamp: 1686584867122 +- name: libudev1 + version: '253' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2 + libcap: '>=2.67,<2.68.0a0' + __glibc: '>=2.17,<3.0.a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libudev1-253-h0b41bf4_1.conda hash: - md5: 93840744a8552e9ebf6bb1a5dffc125a - sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8 + md5: bb38b19a41bb94e8a19dbfb062d499c7 + sha256: 1419fc6dc85f9aad95df733af4e442feb27da90ed74b9b67dbdc090151bdec24 optional: false category: main - build: h166bdaf_0 + build: h0b41bf4_1 subdir: linux-64 - build_number: 0 - license: GPL-3.0-or-later - license_family: GPL - size: 116878 - timestamp: 1661325701583 -- name: p11-kit - version: 0.24.1 + build_number: 1 + license: LGPL-2.1-or-later + size: 118700 + timestamp: 1677532765365 +- name: gstreamer-orc + version: 0.4.34 manager: conda platform: linux-64 dependencies: - libffi: '>=3.4.2,<3.5.0a0' libgcc-ng: '>=12' - libtasn1: '>=4.18.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-orc-0.4.34-hd590300_0.conda hash: - md5: 56ee94e34b71742bbdfa832c974e47a8 - sha256: aa8d3887b36557ad0c839e4876c0496e0d670afe843bf5bba4a87764b868196d + md5: 7ea223fa114cc8134b8c4d398d3e5afe + sha256: 4552b512b72a55d78cd7c76132965fa5c21472a44a0370cc6ca7042280f542c8 optional: false category: main - build: hc5aa10d_0 + build: hd590300_0 subdir: linux-64 build_number: 0 - license: MIT - license_family: MIT - size: 4702497 - timestamp: 1654868759643 -- name: pcl - version: 1.12.1 + license: BSD-2-Clause AND BSD-3-Clause + size: 258562 + timestamp: 1685465920207 +- name: libsystemd0 + version: '253' manager: conda platform: linux-64 dependencies: - flann: '>=1.9.1,<1.9.2.0a0' - glew: '>=2.1.0,<2.2.0a0' - libpng: '>=1.6.38,<1.7.0a0' - vtk: '>=9.2.2,<9.2.3.0a0' + libgcrypt: '>=1.10.1,<2.0a0' + xz: '>=5.2.6,<6.0a0' + libcap: '>=2.67,<2.68.0a0' + __glibc: '>=2.17,<3.0.a0' + lz4-c: '>=1.9.3,<1.10.0a0' + zstd: '>=1.5.2,<1.6.0a0' libgcc-ng: '>=12' - qt-main: '>=5.15.6,<5.16.0a0' - libstdcxx-ng: '>=12' - boost-cpp: '>=1.78.0,<1.78.1.0a0' - qhull: '>=2020.2,<2020.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pcl-1.12.1-he8b3650_4.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-253-h8c4010b_1.conda hash: - md5: 37d088748a75a61edef4afd956f948fd - sha256: 07a16d3807ef9af44165d534de6d2deef615de39c3c3358efafa79561c0e372b + md5: 9176b1e2cb8beca37a7510b0e801e38f + sha256: 13f5db46b7ded028f5b53fd5373e27a47789b9a655b52a92c4b324099602f29a optional: false category: main - build: he8b3650_4 + build: h8c4010b_1 subdir: linux-64 - build_number: 4 - license: BSD-3-Clause - license_family: BSD - size: 23594752 - timestamp: 1665465566612 -- name: hdf5 - version: 1.12.2 + build_number: 1 + license: LGPL-2.1-or-later + size: 380557 + timestamp: 1677532757148 +- name: libgcrypt + version: 1.10.1 manager: conda platform: linux-64 dependencies: - libgfortran-ng: '*' - libcurl: '>=7.87.0,<9.0a0' - openssl: '>=3.0.7,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - libgfortran5: '>=10.4.0' - libaec: '>=1.0.6,<2.0a0' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.12.2-nompi_h4df4325_101.conda + libgcc-ng: '>=10.3.0' + libgpg-error: '>=1.44,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2 hash: - md5: 162a25904af6586b234b2dd52ee99c61 - sha256: f83472851e0fc2834c881f6962e324cd0c7a96afe9d575f9cce599dd19436446 + md5: f967fc95089cd247ceed56eda31de3a9 + sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a optional: false category: main - build: nompi_h4df4325_101 + build: h166bdaf_0 subdir: linux-64 - build_number: 101 - license: LicenseRef-HDF5 - license_family: BSD - size: 3319523 - timestamp: 1671624959330 -- name: flann - version: 1.9.1 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-2.0-or-later + license_family: GPL + size: 719561 + timestamp: 1649520091125 +- name: lz4-c + version: 1.9.4 manager: conda platform: linux-64 dependencies: - hdf5: '>=1.12.2,<1.12.3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.1-he05ef13_1011.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda hash: - md5: f673dadfe929e565fb6bebb5f008b247 - sha256: baf512883461175edef0591220f7c5d70f86d75cfa2b8a0ee291f285ef6de18c + md5: 318b08df404f9c9be5712aaa5a6f0bb0 + sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f optional: false category: main - build: he05ef13_1011 + build: hcb278e6_0 subdir: linux-64 - build_number: 1011 - license: BSD-3-Clause + build_number: 0 + license: BSD-2-Clause license_family: BSD - size: 37096572 - timestamp: 1660524245757 -- name: xorg-xextproto - version: 7.3.0 + size: 143402 + timestamp: 1674727076728 +- name: libogg + version: 1.3.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 hash: - md5: bce9f945da8ad2ae9b1d7165a64d0f87 - sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743 + md5: 6e8cc2173440d77708196c5b93771680 + sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 optional: false category: main - build: h0b41bf4_1003 + build: h7f98852_1 subdir: linux-64 - build_number: 1003 - license: MIT - license_family: MIT - size: 30270 - timestamp: 1677036833037 -- name: xorg-kbproto - version: 1.0.7 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 210550 + timestamp: 1610382007814 +- name: lame + version: '3.100' manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 hash: - md5: 4b230e8381279d76131116660f5a241a - sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 + md5: a8832b479f93521a9e7b5b743803be51 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab optional: false category: main - build: h7f98852_1002 + build: h166bdaf_1003 subdir: linux-64 - build_number: 1002 - license: MIT - license_family: MIT - size: 27338 - timestamp: 1610027759842 -- name: xorg-xproto - version: 7.0.31 + build_number: 1003 + license: LGPL-2.0-only + license_family: LGPL + size: 508258 + timestamp: 1664996250081 +- name: libflac + version: 1.4.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2 + gettext: '>=0.21.1,<1.0a0' + libstdcxx-ng: '>=12' + libgcc-ng: '>=12' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda hash: - md5: b4a4381d54784606820704f7b5f05a15 - sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d + md5: ee48bf17cc83a00f59ca1494d5646869 + sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d optional: false category: main - build: h7f98852_1007 + build: h59595ed_0 subdir: linux-64 - build_number: 1007 - license: MIT - license_family: MIT - size: 74922 - timestamp: 1607291557628 -- name: pugixml - version: 1.11.4 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 394383 + timestamp: 1687765514062 +- name: mpg123 + version: 1.31.3 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.11.4-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.3-hcb278e6_0.conda hash: - md5: 32835434dcf8ca46d357a76fbd1f152b - sha256: f900e3cf6fc98ac8a14fc9a313726e0f414475cc43f02edbc298cca2678fdb63 + md5: 141a126675b6d1a4eabb111a4a353898 + sha256: 7e4a64329595c0cbfc770585827b72a63d224606324dff5b399467486dc68344 optional: false category: main - build: h59595ed_1 + build: hcb278e6_0 subdir: linux-64 - build_number: 1 - license: MIT - license_family: MIT - size: 113335 - timestamp: 1686045672717 -- name: zziplib - version: 0.13.69 + build_number: 0 + license: LGPL-2.1-only + license_family: LGPL + size: 485496 + timestamp: 1679317436814 +- name: libdb + version: 6.2.32 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=9.3.0' - zlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zziplib-0.13.69-h27826a3_1.tar.bz2 + libstdcxx-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2 hash: - md5: d0646083f3cb1ef27049538b8043ab15 - sha256: 8ce40952fce6bb50ec74afda2f30f384ad9666add5b8a0f88927c6c2407f27f1 + md5: 3f3258d8f841fbac63b36b75bdac1afd + sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 optional: false category: main - build: h27826a3_1 + build: h9c3ff4c_0 subdir: linux-64 - build_number: 1 - license: GPL-2.0 - license_family: GPL - size: 99102 - timestamp: 1617437120421 -- name: libignition-math6 - version: 6.14.0 + build_number: 0 + license: AGPL-3.0-only + license_family: AGPL + size: 24409456 + timestamp: 1609539093147 +- name: libgfortran-ng + version: 13.1.0 manager: conda platform: linux-64 dependencies: - libignition-cmake2: '>=2.16.0,<3.0a0' - python: '>=3.10,<3.11.0a0' - libstdcxx-ng: '>=12' - python_abi: 3.10.* *_cp310 - pybind11-abi: ==4 - libgcc-ng: '>=12' - eigen: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/libignition-math6-6.14.0-py310haded995_0.conda + libgfortran5: ==13.1.0 h15d22d2_0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.1.0-h69a702a_0.conda hash: - md5: b8d3f0791a95e7724a7396bf461d43c6 - sha256: 3eae65e60f45a8f321bab8bd88ba3694c7ece41cedf4b83fb3de41b3ec7c19f4 + md5: 506dc07710dd5b0ba63cbf134897fc10 + sha256: 429e1d8a3e70b632df5b876e3fc322a56f769756693daa07114c46fa5098684e optional: false category: main - build: py310haded995_0 + build: h69a702a_0 subdir: linux-64 build_number: 0 - license: Apache-2.0 - license_family: APACHE - size: 1098459 - timestamp: 1682365080224 -- name: matplotlib-base - version: 3.7.1 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 23182 + timestamp: 1685816194244 +- name: libgfortran5 + version: 13.1.0 manager: conda platform: linux-64 - dependencies: - cycler: '>=0.10' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - kiwisolver: '>=1.0.1' - pyparsing: '>=2.3.1' - libgcc-ng: '>=12' - python-dateutil: '>=2.7' - certifi: '>=2020.06.20' - contourpy: '>=1.0.1' - fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' - numpy: '>=1.21.6,<2.0a0' - libstdcxx-ng: '>=12' - pillow: '>=6.2.0' - tk: '>=8.6.12,<8.7.0a0' - packaging: '>=20.0' - url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.1-py310he60537e_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.1.0-h15d22d2_0.conda hash: - md5: 68b2dd34c69d08b05a9db5e3596fe3ee - sha256: d2be8ac0a90aa12ba808f8777d1837b5aa983fc3c7c60c600e8fe6bd9352541c + md5: afb656a334c409dd9805508af1c89c7a + sha256: a06235f4c4b85b463d9b8a73c9e10c1b5b4105f8a0ea8ac1f2f5f64edac3dfe7 optional: false category: main - build: py310he60537e_0 + build: h15d22d2_0 subdir: linux-64 build_number: 0 - license: LicenseRef-PSF-2.0 and CC0-1.0 - license_family: PSF - size: 6792612 - timestamp: 1678135808833 -- name: pillow - version: 9.2.0 + constrains: + - libgfortran-ng 13.1.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1437388 + timestamp: 1685816112374 +- name: xorg-renderproto + version: 0.11.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - openjpeg: '>=2.5.0,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - libwebp-base: '>=1.2.4,<2.0a0' - jpeg: '>=9e,<10a' - libgcc-ng: '>=12' - libtiff: '>=4.4.0,<4.5.0a0' - libxcb: '>=1.13,<1.14.0a0' - lcms2: '>=2.12,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - tk: '>=8.6.12,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pillow-9.2.0-py310h454ad03_3.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2 hash: - md5: eb354ff791f505b1d6f13f776359d88e - sha256: 202cc5b4c60e32096b67791f822699bf91670584ac3db7e86ebb1b6a4c584218 + md5: 06feff3d2634e3097ce2fe681474b534 + sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 optional: false category: main - build: py310h454ad03_3 + build: h7f98852_1002 subdir: linux-64 - build_number: 3 - license: LicenseRef-PIL - size: 47452449 - timestamp: 1666920698626 -- name: pycairo - version: 1.24.0 + build_number: 1002 + license: MIT + license_family: MIT + size: 9621 + timestamp: 1614866326326 +- name: xorg-randrproto + version: 1.5.0 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - cairo: '>=1.16.0,<2.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/pycairo-1.24.0-py310hda9f760_0.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-randrproto-1.5.0-h7f98852_1001.tar.bz2 hash: - md5: 5244c13db6282374d5589dcc5bda826f - sha256: d8196714324c180c06c27db0b666f92412e98e883e27c890f74c57178e8579ee + md5: 68cce654461713977dac6f9ac1bce89a + sha256: f5c7c2de3655a95153e900118959df6a50b6c104a3d7afaee3eadbf86b85fa2e optional: false category: main - build: py310hda9f760_0 + build: h7f98852_1001 subdir: linux-64 - build_number: 0 - license: LGPL-2.1-only OR MPL-1.1 - size: 113481 - timestamp: 1687180341345 -- name: sdl2 - version: 2.26.5 + build_number: 1001 + license: MIT + license_family: MIT + size: 32984 + timestamp: 1621340029170 +- name: openjpeg + version: 2.5.0 manager: conda platform: linux-64 dependencies: - xorg-libxext: '>=1.3.4,<2.0a0' + libtiff: '>=4.4.0,<4.5.0a0' libstdcxx-ng: '>=12' - pulseaudio-client: '>=16.1,<16.2.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' libgcc-ng: '>=12' - xorg-libx11: '>=1.8.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.26.5-h949db6a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-h7d73246_1.tar.bz2 hash: - md5: 062142393e7fe4bc8e20a4eea9b639e6 - sha256: d61329f63735a871b620316b7115358a693bc856709f34cf8f9b241b37261ca4 + md5: a11b4df9271a8d7917686725aa04c8f2 + sha256: a715cba5649f12a1dca53dfd72fc49577152041f033d7595cf4b6a655a5b93b6 optional: false category: main - build: h949db6a_0 + build: h7d73246_1 subdir: linux-64 - build_number: 0 - license: Zlib - size: 1334948 - timestamp: 1680735969345 -- name: tomli - version: 2.0.1 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 546164 + timestamp: 1660347757945 +- name: jxrlib + version: '1.1' manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-h7f98852_2.tar.bz2 hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + md5: 8e787b08fe19986d99d034b839df2961 + sha256: 3ffc19c2ca272e6d5b8edc7cfc5bb71763dfdfa1810dd4b8820cc6b212ecbd95 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 15940 - timestamp: 1644342331069 -- name: pyflakes - version: 3.0.1 + build: h7f98852_2 + subdir: linux-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 240904 + timestamp: 1607309174409 +- name: libraw + version: 0.20.2 manager: conda platform: linux-64 dependencies: - python: 2.7.*|>=3.5 - url: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.0.1-pyhd8ed1ab_0.conda + libstdcxx-ng: '>=12' + lcms2: '>=2.14,<3.0a0' + _openmp_mutex: '>=4.5' + jpeg: '>=9e,<10a' + libgcc-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.20.2-h9772cbc_2.conda hash: - md5: 44b7d77d96560c93e0e11437a3c35254 - sha256: 1a6fd59626b360ef498d8cd61b4a8a3ef771a385f97c6f574fccaa100a8bb99e + md5: a2b47cf8d655a1e58872a5aea7a4ab99 + sha256: 2ac22576c70b49e20cd7ade8cdc9711b3a27e7440fbe3a32f936198e60253e6d optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 57427 - timestamp: 1669320032089 -- name: toml - version: 0.10.2 + build: h9772cbc_2 + subdir: linux-64 + build_number: 2 + license: LGPL-2.1-only + license_family: LGPL + size: 584331 + timestamp: 1668873741779 +- name: lcms2 + version: '2.14' manager: conda platform: linux-64 dependencies: - python: '>=2.7' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + jpeg: '>=9e,<10a' + libgcc-ng: '>=12' + libtiff: '>=4.4.0,<4.5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-h6ed2654_0.tar.bz2 hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + md5: dcc588839de1445d90995a0a2c4f3a39 + sha256: cbadb4150850941bf0518ba948effbbdd89b2c28dfdfed54eae196037e015b43 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h6ed2654_0 + subdir: linux-64 build_number: 0 license: MIT license_family: MIT - noarch: python - size: 18433 - timestamp: 1604308660817 -- name: sip - version: 6.7.9 + size: 262144 + timestamp: 1667332608997 +- name: openexr + version: 3.1.5 manager: conda platform: linux-64 dependencies: - tomli: '*' - ply: '*' libstdcxx-ng: '>=12' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - packaging: '*' + libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.9-py310hc6cd4ac_0.conda + imath: '>=3.1.5,<3.1.7.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.1.5-h0cdce71_2.conda hash: - md5: a3217e1bff09702dfdfcb536825fc12d - sha256: 828ecab2c5b6fd6da4727d4147a856fd643b95801970e8cddc3090204e4c8f8d + md5: 81da9b5c5aab30123e70d093bb4b3bdb + sha256: 0a8370a2a610c942b9590e7448e1e75e15d64bee616ec11bc1560b6b7b4e6edc optional: false category: main - build: py310hc6cd4ac_0 + build: h0cdce71_2 subdir: linux-64 - build_number: 0 - license: GPL-3.0-only - license_family: GPL - size: 492725 - timestamp: 1681995143720 -- name: ply - version: '3.11' + build_number: 2 + license: BSD-3-Clause + license_family: BSD + size: 1354829 + timestamp: 1678282091673 +- name: imath + version: 3.1.6 manager: conda platform: linux-64 dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.6-h6239696_1.conda hash: - md5: 7205635cd71531943440fbfe3b6b5727 - sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 + md5: ccd8714dc2b97f582ed0f8d7092c0ad5 + sha256: f254fb7f5cf9f31602eefe0a2bbca5d56fe5e0fa240d6cd9e5632379f86b23a5 optional: false category: main - build: py_1 - subdir: noarch + build: h6239696_1 + subdir: linux-64 build_number: 1 - license: BSD 3-clause + license: BSD-3-Clause license_family: BSD - noarch: python - size: 44837 - timestamp: 1530963184592 -- name: zipp - version: 3.15.0 + size: 158444 + timestamp: 1668913559334 +- name: pybind11-abi + version: '4' manager: conda platform: linux-64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 hash: - md5: 13018819ca8f5b7cc675a8faf1f5fedf - sha256: 241de30545299be9bcea3addf8a2c22a3b3d4ba6730890e150ab690ac937a3d2 + md5: 878f923dd6acc8aeb47a75da6c4098be + sha256: d4fb485b79b11042a16dc6abfb0c44c4f557707c2653ac47c81e5d32b24a3bb0 optional: false category: main - build: pyhd8ed1ab_0 + build: hd8ed1ab_3 subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 17197 - timestamp: 1677313561776 -- name: colorama - version: 0.4.6 + build_number: 3 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 9906 + timestamp: 1610372835205 +- name: cycler + version: 0.11.0 manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: 3faab06a954c2a04039983f2c4a50d99 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + md5: a50559fad0affdbb33729a68669ca1cb + sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 optional: false category: main build: pyhd8ed1ab_0 @@ -12734,1601 +13402,1449 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 25170 - timestamp: 1666700778190 -- name: exceptiongroup - version: 1.1.1 + size: 10307 + timestamp: 1635519555262 +- name: certifi + version: 2023.5.7 manager: conda platform: linux-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda hash: - md5: 7312299d7a0ea4993159229b7d2dceb2 - sha256: f073c3ba993912f1c0027bc34a54975642885f0a4cd5f9dc42a17ca945df2c18 + md5: 5d1b71c942b8421285934dad1d891ebc + sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD + license: ISC noarch: python - size: 18929 - timestamp: 1678703786698 -- name: iniconfig - version: 2.0.0 + size: 152383 + timestamp: 1683450391501 +- name: kiwisolver + version: 1.4.4 manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + python: '>=3.10,<3.11.0a0' + libstdcxx-ng: '>=12' + python_abi: 3.10.* *_cp310 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py310hbf28c38_1.tar.bz2 hash: - md5: f800d2da156d08e289b14e87e43c1ae5 - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + md5: ad5647e517ba68e2868ef2e6e6ff7723 + sha256: f56d1772472b90ddda6fd0963a80dcf1960f1277b9653667a9bde62ae125f972 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 11101 - timestamp: 1673103208955 -- name: pluggy - version: 1.2.0 + build: py310hbf28c38_1 + subdir: linux-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 77416 + timestamp: 1666805829361 +- name: fonttools + version: 4.40.0 manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.2.0-pyhd8ed1ab_0.conda + brotli: '*' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + unicodedata2: '>=14.0.0' + libgcc-ng: '>=12' + munkres: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.40.0-py310h2372a71_0.conda hash: - md5: 7263924c642d22e311d9e59b839f1b33 - sha256: ff1f70e0bd50693be7e2bad0efb2539f5dcc5ec4d638e787e703f28098e72de4 + md5: d3d83b419c81ac718a9221442707882b + sha256: e5d22bcf75a4414d84000a3d905c70d4d2a1db96c0dfbf5a89169817351b2bb7 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: py310h2372a71_0 + subdir: linux-64 build_number: 0 license: MIT license_family: MIT - noarch: python - size: 21528 - timestamp: 1687776483210 -- name: font-ttf-inconsolata - version: '3.000' + size: 2142035 + timestamp: 1686578623991 +- name: contourpy + version: 1.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + dependencies: + numpy: '>=1.16' + libstdcxx-ng: '>=12' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.1.0-py310hd41b1e2_0.conda hash: - md5: 34893075a5c9e55cdafac56607368fc6 - sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + md5: 684399f9ddc0b9d6f3b6164f6107098e + sha256: 709dae7fbfdb1ab7aeeb060bae9095e5a18bd3849fd3afbf618a7be3a4117e76 optional: false category: main - build: h77eed37_0 - subdir: noarch + build: py310hd41b1e2_0 + subdir: linux-64 build_number: 0 - license: OFL-1.1 - license_family: Other - noarch: generic - size: 96530 - timestamp: 1620479909603 -- name: font-ttf-source-code-pro - version: '2.038' + license: BSD-3-Clause + license_family: BSD + size: 220900 + timestamp: 1686734068424 +- name: libglu + version: 9.0.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + dependencies: + libgcc-ng: '>=7.3.0' + libstdcxx-ng: '>=7.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-he1b5a44_1001.tar.bz2 hash: - md5: 4d59c254e01d9cde7957100457e2d5fb - sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + md5: 8208602aec4826053c116552369a394c + sha256: 5bd76151994096908231712e1539bd18372bb66fedc1d28dfd36fe086e8f58e4 optional: false category: main - build: h77eed37_0 - subdir: noarch - build_number: 0 - license: OFL-1.1 - license_family: Other - noarch: generic - size: 700814 - timestamp: 1620479612257 -- name: pyparsing - version: 3.1.0 + build: he1b5a44_1001 + subdir: linux-64 + build_number: 1001 + license: SGI-2 + size: 422567 + timestamp: 1585488939757 +- name: giflib + version: 5.2.1 manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.0-pyhd8ed1ab_0.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda hash: - md5: d3ed087d1f7f8f5590e8e87b57a8ce64 - sha256: 18e3bd52c64f23bbc7c200fd2fc4152dd29423936dc43e8f129cb43f1af0136c + md5: 96f3b11872ef6fad973eac856cd2624f + sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build: h0b41bf4_3 + subdir: linux-64 + build_number: 3 license: MIT license_family: MIT - noarch: python - size: 88865 - timestamp: 1687132145260 -- name: python-dateutil - version: 2.8.2 + size: 77385 + timestamp: 1678717794467 +- name: freeglut + version: 3.2.2 manager: conda platform: linux-64 dependencies: - python: '>=3.6' - six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + xorg-libxi: '*' + xorg-libxfixes: '*' + libgcc-ng: '>=9.4.0' + libxcb: '>=1.13,<1.14.0a0' + libstdcxx-ng: '>=9.4.0' + xorg-libxau: '*' + xorg-libx11: '*' + xorg-libxext: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-h9c3ff4c_1.tar.bz2 hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + md5: 1192066d1296de9b492175a4cf43fe8a + sha256: 6397754681cf6981fdb8f9ffc0a8ac93c6bd2bb487dcf611ec31f2da7326b6ec optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 245987 - timestamp: 1626286448716 -- name: docutils - version: 0.20.1 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.20.1-py310hff52083_0.conda - hash: - md5: 741a0de9f26de79576d681d950910781 - sha256: c6bc09969813b2a2ee0694f6e34b077bbfacf20fd2bf07c8826b22cf2377b7b1 - optional: false - category: main - build: py310hff52083_0 + build: h9c3ff4c_1 subdir: linux-64 - build_number: 0 - license: LicenseRef-Public-Domain-Dedictation and BSD-2-Clause and LicenseRef-PSF-2.1.1 and GPL-3.0-or-later - size: 721160 - timestamp: 1684324293006 -- name: attr - version: 2.5.1 + build_number: 1 + license: MIT + license_family: MIT + size: 165906 + timestamp: 1645054920195 +- name: xorg-libxfixes + version: 5.0.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + xorg-fixesproto: '*' + xorg-libx11: '>=1.7.0,<2.0a0' + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 hash: - md5: d9c69a24ad678ffce24c6543a0176b00 - sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 + md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a + sha256: 1e426a1abb774ef1dcf741945ed5c42ad12ea2dc7aeed7682d293879c3e1e4c3 optional: false category: main - build: h166bdaf_1 + build: h7f98852_1004 subdir: linux-64 - build_number: 1 - license: GPL-2.0-or-later - license_family: GPL - size: 71042 - timestamp: 1660065501192 -- name: pygments - version: 2.15.1 + build_number: 1004 + license: MIT + license_family: MIT + size: 18145 + timestamp: 1617717802636 +- name: xorg-libxi + version: 1.7.10 manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.15.1-pyhd8ed1ab_0.conda + xorg-inputproto: '*' + xorg-libxfixes: 5.0.* + xorg-libx11: '>=1.7.0,<2.0a0' + libgcc-ng: '>=9.3.0' + xorg-libxext: 1.3.* + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2 hash: - md5: d316679235612869eba305aa7d41d9bf - sha256: 1bddeb54863c77ed5613b535a3e06a3a16b55786301a5e28c9bf011656bda686 + md5: e77615e5141cad5a2acaa043d1cf0ca5 + sha256: 745c1284a96b4282fe6fe122b2643e1e8c26a7ff40b733a8f4b61357238c4e68 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h7f98852_0 + subdir: linux-64 build_number: 0 - license: BSD-2-Clause - license_family: BSD - noarch: python - size: 840719 - timestamp: 1681904335148 -- name: rospkg - version: 1.5.0 + license: MIT + license_family: MIT + size: 47287 + timestamp: 1620070911951 +- name: libaec + version: 1.0.6 manager: conda platform: linux-64 dependencies: - python: '>=3.6' - pyyaml: '*' - catkin_pkg: '*' - distro: '*' - url: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.5.0-pyhd8ed1ab_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda hash: - md5: 15f4f2f2538f7746a9c4c9f3ba783f49 - sha256: 1ad1b4ce441a35dc86c13d8683ed2f052e4df8d8c3f5ced86d5e4735d596f940 + md5: 0f683578378cddb223e7fd24f785ab2a + sha256: 4df6a29b71264fb25462065e8cddcf5bca60776b1801974af8cbd26b7425fcda optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: BSD-3-Clause + build: hcb278e6_1 + subdir: linux-64 + build_number: 1 + license: BSD-2-Clause license_family: BSD - noarch: python - size: 31031 - timestamp: 1679367764497 -- name: pango - version: 1.50.14 + size: 34438 + timestamp: 1673799481016 +- name: x264 + version: 1!164.3095 manager: conda platform: linux-64 dependencies: - libpng: '>=1.6.39,<1.7.0a0' - fribidi: '>=1.0.10,<2.0a0' - cairo: '>=1.16.0,<2.0a0' libgcc-ng: '>=12' - freetype: '>=2.12.1,<3.0a0' - libglib: '>=2.74.1,<3.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '*' - harfbuzz: '>=6.0.0,<7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pango-1.50.14-hd33c08f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 hash: - md5: a8b9e35dd7be2c945b0de4fe19a7c3a9 - sha256: 80648fb4691839a81f83fe55f4353357d198cd75e61dbb61b815e39d577e87d2 + md5: 6c99772d483f566d59e25037fea2c4b1 + sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 optional: false category: main - build: hd33c08f_0 + build: h166bdaf_2 subdir: linux-64 - build_number: 0 - license: LGPL-2.1-or-later - size: 437611 - timestamp: 1677859036944 -- name: gdk-pixbuf - version: 2.42.8 + build_number: 2 + license: GPL-2.0-or-later + license_family: GPL + size: 897548 + timestamp: 1660323080555 +- name: openh264 + version: 2.3.1 manager: conda platform: linux-64 dependencies: - zlib: '>=1.2.12,<1.3.0a0' - libtiff: '>=4.4.0,<4.5.0a0' - libpng: '>=1.6.38,<1.7.0a0' - libglib: '>=2.72.1,<3.0a0' - jpeg: '>=9e,<10a' libgcc-ng: '>=12' - libzlib: '>=1.2.12,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.8-hff1cb4f_1.tar.bz2 + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-hcb278e6_2.conda hash: - md5: a61c6312192e7c9de71548a6706a21e6 - sha256: b7379d19afe924b39e29e47b046f99a4a737f58a210c27d083391c0f8f012aad + md5: 37d01894f256b2a6921c5a218f42f8a2 + sha256: 3be6de15d40f02c9bb34d5095c65b6b3f07e04fc21a0fb63d1885f1a31de5ae2 optional: false category: main - build: hff1cb4f_1 + build: hcb278e6_2 subdir: linux-64 - build_number: 1 - license: LGPL-2.1-or-later - license_family: LGPL - size: 612142 - timestamp: 1663606737281 -- name: xorg-inputproto - version: 2.3.2 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 718775 + timestamp: 1675880590512 +- name: libvpx + version: 1.11.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2 + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.11.0-h9c3ff4c_3.tar.bz2 hash: - md5: bcd1b3396ec6960cbc1d2855a9e60b2b - sha256: 6c8c2803de0f643f8bad16ece3f9a7259e4a49247543239c182d66d5e3a129a7 + md5: ebe18273eebadbb4dfb13f1062e054e9 + sha256: e2c2a0bb21db1724af90cab5aa1fb3096db4c11df1ab85178571dcb8395e7a15 optional: false category: main - build: h7f98852_1002 + build: h9c3ff4c_3 subdir: linux-64 - build_number: 1002 - license: MIT - license_family: MIT - size: 19602 - timestamp: 1610027678228 -- name: xorg-fixesproto - version: '5.0' + build_number: 3 + license: BSD-3-Clause + license_family: BSD + size: 1146818 + timestamp: 1635005051234 +- name: x265 + version: '3.5' manager: conda platform: linux-64 dependencies: - xorg-xextproto: '*' - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2 + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 hash: - md5: 65ad6e1eb4aed2b0611855aff05e04f6 - sha256: 5d2af1b40f82128221bace9466565eca87c97726bb80bbfcd03871813f3e1876 + md5: e7f6ed84d4623d52ee581325c1587a6b + sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 optional: false category: main - build: h7f98852_1002 + build: h924138e_3 subdir: linux-64 - build_number: 1002 - license: MIT - license_family: MIT - size: 9122 - timestamp: 1617479697350 -- name: c-ares - version: 1.19.1 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 3357188 + timestamp: 1646609687141 +- name: libva + version: 2.18.0 manager: conda platform: linux-64 dependencies: + libdrm: '>=2.4.114,<2.5.0a0' + xorg-libxfixes: '*' + xorg-libx11: '>=1.8.4,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda + xorg-libxext: '>=1.3.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.18.0-h0b41bf4_0.conda hash: - md5: e8c18d865be43e2fb3f7a145b6adf1f5 - sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6 + md5: 56e049224de34bbe0478aad422227942 + sha256: e7254d0111a403ffe707e2ad39b6ce49a2be733e751d14a7255b0cb20da2a16b optional: false category: main - build: hd590300_0 + build: h0b41bf4_0 subdir: linux-64 build_number: 0 license: MIT license_family: MIT - size: 113362 - timestamp: 1684782732180 -- name: libev - version: '4.33' + size: 186715 + timestamp: 1679400122269 +- name: libdrm + version: 2.4.114 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 + libpciaccess: '>=0.17,<0.18.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.114-h166bdaf_0.tar.bz2 hash: - md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 - sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 + md5: efb58e80f5d0179a783c4e76c3df3b9c + sha256: 9316075084ad66f9f96d31836e83303a8199eec93c12d68661e41c44eed101e3 optional: false category: main - build: h516909a_1 + build: h166bdaf_0 subdir: linux-64 - build_number: 1 - license: BSD-2-Clause - license_family: BSD - size: 106190 - timestamp: 1598867915 -- name: libgpg-error - version: '1.47' + build_number: 0 + license: MIT + license_family: MIT + size: 305197 + timestamp: 1667566354412 +- name: libpciaccess + version: '0.17' manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=12' - gettext: '>=0.21.1,<1.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.47-h71f35ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.17-h166bdaf_0.tar.bz2 hash: - md5: c2097d0b46367996f09b4e8e4920384a - sha256: 0306b3c2d65863048983a50bd8b86f6f26e457ef55d1da745a5796af25093f5a + md5: b7463391cf284065294e2941dd41ab95 + sha256: 9fe4aaf5629b4848d9407b9ed4da941ba7e5cebada63ee0becb9aa82259dc6e2 optional: false category: main - build: h71f35ed_0 + build: h166bdaf_0 subdir: linux-64 build_number: 0 - license: GPL-2.0-only - license_family: GPL - size: 260794 - timestamp: 1686979818648 -- name: xorg-libxt - version: 1.3.0 + license: MIT + license_family: MIT + size: 39750 + timestamp: 1666091838440 +- name: libuv + version: 1.44.2 manager: conda platform: linux-64 dependencies: - xorg-libx11: '>=1.8.4,<2.0a0' - xorg-xproto: '*' - xorg-kbproto: '*' - xorg-libice: 1.0.* libgcc-ng: '>=12' - xorg-libsm: 1.2.* - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.44.2-h166bdaf_0.tar.bz2 hash: - md5: ab2044e8d87dda9f74652e8e084a5569 - sha256: fbceccea26f81d557ac93ca08afa95b3638f713c43deb468488013218be11fed + md5: e5cb4fe581a18ca2185a016eb848fc00 + sha256: dc14922a6d5cf7fde55c0aa8f6661d6871c6a2e94369e7455a8a5927c3065080 optional: false category: main - build: hd590300_0 + build: h166bdaf_0 subdir: linux-64 build_number: 0 license: MIT license_family: MIT - size: 380077 - timestamp: 1685496527581 -- name: cffi - version: 1.15.1 + size: 1073002 + timestamp: 1657719428572 +- name: rhash + version: 1.4.3 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - pycparser: '*' - libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py310h255011f_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.3-h166bdaf_0.tar.bz2 hash: - md5: 800596144bb613cd7ac58b80900ce835 - sha256: f223c8782195f19dbe7cfd27e329de8b0e2205a090ee2a6891e0695d4d634854 + md5: 0bcb0ab6faa796a22b40de3a41e3b2de + sha256: 3f7e1e46d0967f8d08026116aa84fda07bc93d11d44dc3c03a29ad9d3ffc63cc optional: false category: main - build: py310h255011f_3 + build: h166bdaf_0 subdir: linux-64 - build_number: 3 + build_number: 0 license: MIT license_family: MIT - size: 237030 - timestamp: 1671179461482 -- name: gtk2 - version: 2.24.33 + size: 204010 + timestamp: 1655256276550 +- name: qhull + version: '2020.2' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=9.4.0' - gettext: '>=0.19.8.1,<1.0a0' - pango: '>=1.50.3,<1.51.0a0' - libglib: '>=2.70.2,<3.0a0' - atk-1.0: '>=2.36.0' - cairo: '>=1.16.0,<2.0.0a0' - gdk-pixbuf: '>=2.42.6,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h90689f9_2.tar.bz2 + libstdcxx-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h4bd325d_2.tar.bz2 hash: - md5: 957a0255ab58aaf394a91725d73ab422 - sha256: 66d189ec36d67309fa3eb52d14d77b82359c10303c400eecc14f8eaca5939b87 + md5: 5acb8407fefa1c1929c11c167237e776 + sha256: e1d6e4e74486ce4844c4bbdc7198bb4d8191b70881f6415d1f4b5fd8d98f18d7 optional: false category: main - build: h90689f9_2 + build: h4bd325d_2 subdir: linux-64 build_number: 2 - license: LGPL-2.1-or-later - size: 7763202 - timestamp: 1642435177770 -- name: gts - version: 0.7.6 + license: Qhull + size: 1971736 + timestamp: 1631546549823 +- name: vtk + version: 9.2.2 manager: conda platform: linux-64 dependencies: - libglib: '>=2.76.3,<3.0a0' - libgcc-ng: '>=12' + glew: '>=2.1.0,<2.2.0a0' + libxml2: '>=2.10.3,<2.11.0a0' + python: '>=3.10,<3.11.0a0' + jpeg: '>=9e,<10a' + libsqlite: '>=3.40.0,<4.0a0' + expat: '>=2.5.0,<3.0a0' + double-conversion: '>=3.2.0,<3.3.0a0' + jsoncpp: '>=1.9.5,<1.9.6.0a0' + nlohmann_json: '*' + tbb: '>=2021.7.0' + xorg-libxt: '*' + loguru: '*' + pugixml: '>=1.11.4,<1.12.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + tbb-devel: '*' + proj: '>=9.1.0,<9.1.1.0a0' + sqlite: '*' + zlib: '*' + tk: '>=8.6.12,<8.7.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda + ffmpeg: '>=5.1.2,<6.0a0' + eigen: '*' + python_abi: 3.10.* *_cp310 + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + libtheora: '>=1.1.1,<1.2.0a0' + qt-main: '>=5.15.6,<5.16.0a0' + utfcpp: '*' + wslink: '*' + freetype: '>=2.12.1,<3.0a0' + gl2ps: '>=1.4.2,<1.4.3.0a0' + hdf5: '>=1.12.2,<1.12.3.0a0' + libtiff: '>=4.4.0,<4.5.0a0' + numpy: '*' + libnetcdf: '>=4.8.1,<4.8.2.0a0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.2.2-qt_py310hc895abb_205.conda hash: - md5: 4d8df0b0db060d33c9a702ada998a8fe - sha256: b5cd16262fefb836f69dc26d879b6508d29f8a5c5948a966c47fe99e2e19c99b + md5: 2f0ceda9bc754049fd762a32c9495947 + sha256: 16186720463bf1b1c76fa614f19df5c50907c83e1c37ca75793c174ad5d95f5d optional: false category: main - build: h977cf35_4 + build: qt_py310hc895abb_205 subdir: linux-64 - build_number: 4 - license: LGPL-2.0-or-later - license_family: LGPL - size: 318312 - timestamp: 1686545244763 -- name: atk-1.0 - version: 2.38.0 + build_number: 205 + constrains: + - paraview ==9999999999 + license: BSD-3-Clause + license_family: BSD + size: 41826631 + timestamp: 1673221017134 +- name: proj + version: 9.1.0 manager: conda platform: linux-64 dependencies: - libglib: '>=2.74.1,<3.0a0' - libgcc-ng: '>=12' + sqlite: '>=3.39.3,<4.0a0' + libtiff: '>=4.4.0,<4.5.0a0' + libcurl: '>=7.83.1,<9.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-hd4edc92_1.tar.bz2 + libsqlite: '>=3.39.3,<4.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.0-h93bde94_0.tar.bz2 hash: - md5: 6c72ec3e660a51736913ef6ea68c454b - sha256: 2f9314de13c1f0b54510a2afa0cdc02c0e3f828fccfc4277734f9590b11a65f1 + md5: 255c7204dda39747c3ba380d28b026d7 + sha256: a381d3db5e344e101cd88304ec9eceaaa7a320ee35cc68fb10b247a7b46bcc3d optional: false category: main - build: hd4edc92_1 + build: h93bde94_0 subdir: linux-64 - build_number: 1 + build_number: 0 constrains: - - atk-1.0 2.38.0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 551928 - timestamp: 1667420962627 -- name: xorg-libice - version: 1.0.10 + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 3262163 + timestamp: 1662423671500 +- name: distro + version: 1.8.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.0.10-h7f98852_0.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/distro-1.8.0-pyhd8ed1ab_0.conda hash: - md5: d6b0b50b49eccfe0be0373be628be0f3 - sha256: f15ce1dff16823888bcc2be1738aadcb36699be1e2dd2afa347794c7ec6c1587 + md5: 67999c5465064480fa8016d00ac768f6 + sha256: 0d01c4da6d4f0a935599210f82ac0630fa9aeb4fc37cbbc78043a932a39ec4f3 optional: false category: main - build: h7f98852_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: MIT - license_family: MIT - size: 59395 - timestamp: 1614866249018 -- name: xorg-libsm - version: 1.2.3 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 40854 + timestamp: 1675116355989 +- name: pyflakes + version: 3.0.1 manager: conda platform: linux-64 dependencies: - xorg-libice: 1.0.* - libgcc-ng: '>=9.3.0' - libuuid: '>=2.32.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.3-hd9c2040_1000.tar.bz2 + python: 2.7.*|>=3.5 + url: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 9e856f78d5c80d5a78f61e72d1d473a3 - sha256: bdb350539521ddc1f30cc721b6604eced8ef72a0ec146e378bfe89e2be17ab35 + md5: 44b7d77d96560c93e0e11437a3c35254 + sha256: 1a6fd59626b360ef498d8cd61b4a8a3ef771a385f97c6f574fccaa100a8bb99e optional: false category: main - build: hd9c2040_1000 - subdir: linux-64 - build_number: 1000 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 license: MIT license_family: MIT - size: 26362 - timestamp: 1614875106937 -- name: xorg-renderproto - version: 0.11.1 + noarch: python + size: 57427 + timestamp: 1669320032089 +- name: six + version: 1.16.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2 + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 hash: - md5: 06feff3d2634e3097ce2fe681474b534 - sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 optional: false category: main - build: h7f98852_1002 - subdir: linux-64 - build_number: 1002 + build: pyh6c4a22f_0 + subdir: noarch + build_number: 0 license: MIT license_family: MIT - size: 9621 - timestamp: 1614866326326 -- name: fribidi - version: 1.0.10 + noarch: python + size: 14259 + timestamp: 1620240338595 +- name: zipp + version: 3.16.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.0-pyhd8ed1ab_0.conda hash: - md5: ac7bc6a654f8f41b352b38f4051135f8 - sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 + md5: 8be65b18d05ecd2801964e69c42f4fca + sha256: de563512a84818e5b367414e68985196dfb40964c12147fc731a6645f2e029e5 optional: false category: main - build: h36c2ea0_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: LGPL-2.1 - size: 114383 - timestamp: 1604416621168 -- name: libidn2 - version: 2.3.4 + license: MIT + license_family: MIT + noarch: python + size: 17482 + timestamp: 1688903060076 +- name: colorama + version: 0.4.6 manager: conda platform: linux-64 dependencies: - libunistring: '>=0,<1.0a0' - gettext: '>=0.21.1,<1.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.4-h166bdaf_0.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 hash: - md5: 7440fbafd870b8bab68f83a064875d34 - sha256: 888848ae85be9df86f56407639c63bdce8e7651f0b2517be9bc0ac6e38b2d21d + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 optional: false category: main - build: h166bdaf_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: LGPLv2 - size: 160409 - timestamp: 1666574022481 -- name: libssh2 - version: 1.11.0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 25170 + timestamp: 1666700778190 +- name: exceptiongroup + version: 1.1.2 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.2-pyhd8ed1ab_0.conda hash: - md5: 1f5a58e686b13bcfde88b93f547d23fe - sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d + md5: de4cb3384374e1411f0454edcf546cdb + sha256: 7b23ea0169fa6e7c3a0867d96d9eacd312759f83e5d83ad0fcc93e85379c16ae optional: false category: main - build: h0841786_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 license: BSD-3-Clause license_family: BSD - size: 271133 - timestamp: 1685837707056 -- name: fftw - version: 3.3.10 + noarch: python + size: 19043 + timestamp: 1688381208754 +- name: iniconfig + version: 2.0.0 manager: conda platform: linux-64 dependencies: - libgfortran-ng: '*' - libgfortran5: '>=11.4.0' - libstdcxx-ng: '>=12' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hc118613_108.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 6fa90698000b05dfe8ce6515794fe71a - sha256: 1952dbb3c40931fc4608e053e32cbebbdcd8f3ea5b6a050156df6dd66ad64912 + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 optional: false category: main - build: nompi_hc118613_108 - subdir: linux-64 - build_number: 108 - license: GPL-2.0-or-later - license_family: GPL - size: 2019717 - timestamp: 1686584867122 -- name: libudev1 - version: '253' + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11101 + timestamp: 1673103208955 +- name: pluggy + version: 1.2.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libcap: '>=2.67,<2.68.0a0' - __glibc: '>=2.17,<3.0.a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libudev1-253-h0b41bf4_1.conda + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.2.0-pyhd8ed1ab_0.conda hash: - md5: bb38b19a41bb94e8a19dbfb062d499c7 - sha256: 1419fc6dc85f9aad95df733af4e442feb27da90ed74b9b67dbdc090151bdec24 + md5: 7263924c642d22e311d9e59b839f1b33 + sha256: ff1f70e0bd50693be7e2bad0efb2539f5dcc5ec4d638e787e703f28098e72de4 optional: false category: main - build: h0b41bf4_1 - subdir: linux-64 - build_number: 1 - license: LGPL-2.1-or-later - size: 118700 - timestamp: 1677532765365 -- name: gstreamer-orc - version: 0.4.34 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 21528 + timestamp: 1687776483210 +- name: pycparser + version: '2.21' manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-orc-0.4.34-hd590300_0.conda + python: 2.7.*|>=3.4 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 hash: - md5: 7ea223fa114cc8134b8c4d398d3e5afe - sha256: 4552b512b72a55d78cd7c76132965fa5c21472a44a0370cc6ca7042280f542c8 + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc optional: false category: main - build: hd590300_0 - subdir: linux-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: BSD-2-Clause AND BSD-3-Clause - size: 258562 - timestamp: 1685465920207 -- name: lz4-c - version: 1.9.4 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 102747 + timestamp: 1636257201998 +- name: xorg-inputproto + version: 2.3.2 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2 hash: - md5: 318b08df404f9c9be5712aaa5a6f0bb0 - sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f + md5: bcd1b3396ec6960cbc1d2855a9e60b2b + sha256: 6c8c2803de0f643f8bad16ece3f9a7259e4a49247543239c182d66d5e3a129a7 optional: false category: main - build: hcb278e6_0 + build: h7f98852_1002 subdir: linux-64 - build_number: 0 - license: BSD-2-Clause - license_family: BSD - size: 143402 - timestamp: 1674727076728 -- name: libogg - version: 1.3.4 + build_number: 1002 + license: MIT + license_family: MIT + size: 19602 + timestamp: 1610027678228 +- name: xorg-fixesproto + version: '5.0' manager: conda platform: linux-64 dependencies: + xorg-xextproto: '*' libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2 hash: - md5: 6e8cc2173440d77708196c5b93771680 - sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + md5: 65ad6e1eb4aed2b0611855aff05e04f6 + sha256: 5d2af1b40f82128221bace9466565eca87c97726bb80bbfcd03871813f3e1876 optional: false category: main - build: h7f98852_1 + build: h7f98852_1002 subdir: linux-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 210550 - timestamp: 1610382007814 -- name: lame - version: '3.100' + build_number: 1002 + license: MIT + license_family: MIT + size: 9122 + timestamp: 1617479697350 +- name: libunistring + version: 0.9.10 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2 hash: - md5: a8832b479f93521a9e7b5b743803be51 - sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + md5: 7245a044b4a1980ed83196176b78b73a + sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d optional: false category: main - build: h166bdaf_1003 + build: h7f98852_0 subdir: linux-64 - build_number: 1003 - license: LGPL-2.0-only - license_family: LGPL - size: 508258 - timestamp: 1664996250081 -- name: libflac - version: 1.4.3 + build_number: 0 + license: GPL-3.0-only OR LGPL-3.0-only + size: 1433436 + timestamp: 1626955018689 +- name: libgpg-error + version: '1.47' manager: conda platform: linux-64 dependencies: - gettext: '>=0.21.1,<1.0a0' libstdcxx-ng: '>=12' + gettext: '>=0.21.1,<1.0a0' libgcc-ng: '>=12' - libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.47-h71f35ed_0.conda hash: - md5: ee48bf17cc83a00f59ca1494d5646869 - sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d + md5: c2097d0b46367996f09b4e8e4920384a + sha256: 0306b3c2d65863048983a50bd8b86f6f26e457ef55d1da745a5796af25093f5a optional: false category: main - build: h59595ed_0 + build: h71f35ed_0 subdir: linux-64 build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 394383 - timestamp: 1687765514062 -- name: mpg123 - version: 1.31.3 + license: GPL-2.0-only + license_family: GPL + size: 260794 + timestamp: 1686979818648 +- name: munkres + version: 1.1.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.3-hcb278e6_0.conda + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 hash: - md5: 141a126675b6d1a4eabb111a4a353898 - sha256: 7e4a64329595c0cbfc770585827b72a63d224606324dff5b399467486dc68344 + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 optional: false category: main - build: hcb278e6_0 - subdir: linux-64 + build: pyh9f0ad1d_0 + subdir: noarch build_number: 0 - license: LGPL-2.1-only - license_family: LGPL - size: 485496 - timestamp: 1679317436814 -- name: libdb - version: 6.2.32 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 12452 + timestamp: 1600387789153 +- name: brotli + version: 1.0.9 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - libstdcxx-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2 + libbrotlienc: ==1.0.9 h166bdaf_9 + brotli-bin: ==1.0.9 h166bdaf_9 + libgcc-ng: '>=12' + libbrotlidec: ==1.0.9 h166bdaf_9 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_9.conda hash: - md5: 3f3258d8f841fbac63b36b75bdac1afd - sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 + md5: 4601544b4982ba1861fa9b9c607b2c06 + sha256: 2357d205931912def55df0dc53573361156b27856f9bf359d464da162812ec1f optional: false category: main - build: h9c3ff4c_0 + build: h166bdaf_9 subdir: linux-64 - build_number: 0 - license: AGPL-3.0-only - license_family: AGPL - size: 24409456 - timestamp: 1609539093147 -- name: xorg-randrproto - version: 1.5.0 + build_number: 9 + license: MIT + license_family: MIT + size: 20065 + timestamp: 1687884291946 +- name: brotli-bin + version: 1.0.9 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-randrproto-1.5.0-h7f98852_1001.tar.bz2 + libgcc-ng: '>=12' + libbrotlienc: ==1.0.9 h166bdaf_9 + libbrotlidec: ==1.0.9 h166bdaf_9 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_9.conda hash: - md5: 68cce654461713977dac6f9ac1bce89a - sha256: f5c7c2de3655a95153e900118959df6a50b6c104a3d7afaee3eadbf86b85fa2e + md5: d47dee1856d9cb955b8076eeff304a5b + sha256: 1c128f136a59ee2fa47d7fbd9b6fc8afa8460d340e4ae0e6f5419ebbd7539a10 optional: false category: main - build: h7f98852_1001 + build: h166bdaf_9 subdir: linux-64 - build_number: 1001 + build_number: 9 license: MIT license_family: MIT - size: 32984 - timestamp: 1621340029170 -- name: xorg-libxpm - version: 3.5.16 + size: 20361 + timestamp: 1687884277426 +- name: libbrotlidec + version: 1.0.9 manager: conda platform: linux-64 dependencies: - xorg-libxt: '>=1.2.1,<2.0a0' - xorg-xextproto: '>=7.3.0,<8.0a0' - gettext: '>=0.21.1,<1.0a0' - xorg-xproto: '*' - xorg-libx11: '>=1.8.4,<2.0a0' + libbrotlicommon: ==1.0.9 h166bdaf_9 libgcc-ng: '>=12' - xorg-libxext: '>=1.3.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxpm-3.5.16-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_9.conda hash: - md5: 7a2672267d49208afe2df6cbef8a6a79 - sha256: 6f30264e570a7c8b0cdc5f20489f07d9cdb7f8e0929d84d6e4847c6da4a81b78 + md5: 081aa22f4581c08e4372b0b6c2f8478e + sha256: 564f301430c3c61bc5e149e74157ec181ed2a758befc89f7c38466d515a0f614 optional: false category: main - build: hd590300_0 + build: h166bdaf_9 subdir: linux-64 - build_number: 0 + build_number: 9 license: MIT license_family: MIT - size: 65076 - timestamp: 1685307554451 -- name: openjpeg - version: 2.5.0 + size: 32567 + timestamp: 1687884247423 +- name: libbrotlienc + version: 1.0.9 manager: conda platform: linux-64 dependencies: - libtiff: '>=4.4.0,<4.5.0a0' - libstdcxx-ng: '>=12' - libpng: '>=1.6.37,<1.7.0a0' - libzlib: '>=1.2.12,<1.3.0a0' + libbrotlicommon: ==1.0.9 h166bdaf_9 libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-h7d73246_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_9.conda hash: - md5: a11b4df9271a8d7917686725aa04c8f2 - sha256: a715cba5649f12a1dca53dfd72fc49577152041f033d7595cf4b6a655a5b93b6 + md5: 1f0a03af852a9659ed2bf08f2f1704fd + sha256: d27bc2562ea3f3b2bfd777f074f1cac6bfa4a737233dad288cd87c4634a9bb3a optional: false category: main - build: h7d73246_1 + build: h166bdaf_9 subdir: linux-64 - build_number: 1 - license: BSD-2-Clause - license_family: BSD - size: 546164 - timestamp: 1660347757945 -- name: jxrlib - version: '1.1' + build_number: 9 + license: MIT + license_family: MIT + size: 265202 + timestamp: 1687884262352 +- name: libbrotlicommon + version: 1.0.9 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-h7f98852_2.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_9.conda hash: - md5: 8e787b08fe19986d99d034b839df2961 - sha256: 3ffc19c2ca272e6d5b8edc7cfc5bb71763dfdfa1810dd4b8820cc6b212ecbd95 + md5: 61641e239f96eae2b8492dc7e755828c + sha256: fc57c0876695c5b4ab7173438580c1d7eaa7dccaf14cb6467ca9e0e97abe0cf0 optional: false category: main - build: h7f98852_2 + build: h166bdaf_9 subdir: linux-64 - build_number: 2 - license: BSD-2-Clause - license_family: BSD - size: 240904 - timestamp: 1607309174409 -- name: libraw - version: 0.20.2 + build_number: 9 + license: MIT + license_family: MIT + size: 71065 + timestamp: 1687884232329 +- name: unicodedata2 + version: 15.0.0 manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=12' - lcms2: '>=2.14,<3.0a0' - _openmp_mutex: '>=4.5' - jpeg: '>=9e,<10a' + python: '>=3.10,<3.11.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.20.2-h9772cbc_2.conda + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py310h5764c6d_0.tar.bz2 hash: - md5: a2b47cf8d655a1e58872a5aea7a4ab99 - sha256: 2ac22576c70b49e20cd7ade8cdc9711b3a27e7440fbe3a32f936198e60253e6d + md5: e972c5a1f472561cf4a91962cb01f4b4 + sha256: 332732c2b87445c3e071c86cacfbc72a99ba4ea55d0b9d65416894253782ca02 optional: false category: main - build: h9772cbc_2 + build: py310h5764c6d_0 subdir: linux-64 - build_number: 2 - license: LGPL-2.1-only - license_family: LGPL - size: 584331 - timestamp: 1668873741779 -- name: lcms2 - version: '2.14' + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 512210 + timestamp: 1667239999991 +- name: loguru + version: 0.7.0 manager: conda platform: linux-64 dependencies: - jpeg: '>=9e,<10a' - libgcc-ng: '>=12' - libtiff: '>=4.4.0,<4.5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.14-h6ed2654_0.tar.bz2 + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.7.0-py310hff52083_0.conda hash: - md5: dcc588839de1445d90995a0a2c4f3a39 - sha256: cbadb4150850941bf0518ba948effbbdd89b2c28dfdfed54eae196037e015b43 + md5: 9e0d689557f3fdcb521c1239c13d29ec + sha256: 287c1968e9d5b5b25adb43f9a72a8b249ef5c80fc35fd6e182fdd04d9366ab8b optional: false category: main - build: h6ed2654_0 + build: py310hff52083_0 subdir: linux-64 build_number: 0 license: MIT license_family: MIT - size: 262144 - timestamp: 1667332608997 -- name: openexr - version: 3.1.5 + size: 94490 + timestamp: 1681126338750 +- name: wslink + version: 1.11.1 manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - imath: '>=3.1.5,<3.1.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.1.5-h0cdce71_2.conda + python: '>=3.6' + aiohttp: <4 + url: https://conda.anaconda.org/conda-forge/noarch/wslink-1.11.1-pyhd8ed1ab_0.conda hash: - md5: 81da9b5c5aab30123e70d093bb4b3bdb - sha256: 0a8370a2a610c942b9590e7448e1e75e15d64bee616ec11bc1560b6b7b4e6edc + md5: 0d0113b67472cea3da288838ebc80acb + sha256: 656947c8457d5ac06f11dc1da904ac7ac8ac8edf81323ee9794a3d51ace79ff3 optional: false category: main - build: h0cdce71_2 - subdir: linux-64 - build_number: 2 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 license: BSD-3-Clause license_family: BSD - size: 1354829 - timestamp: 1678282091673 -- name: imath - version: 3.1.6 + noarch: python + size: 31753 + timestamp: 1688102076761 +- name: tbb + version: 2021.9.0 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libhwloc: '>=2.9.1,<2.9.2.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.6-h6239696_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.9.0-hf52228f_0.conda hash: - md5: ccd8714dc2b97f582ed0f8d7092c0ad5 - sha256: f254fb7f5cf9f31602eefe0a2bbca5d56fe5e0fa240d6cd9e5632379f86b23a5 + md5: f495e42d3d2020b025705625edf35490 + sha256: 86352f4361e8dc2374a95d9d1dfee742beecaa59dcb0e76ca36ca06a4efe1df2 optional: false category: main - build: h6239696_1 + build: hf52228f_0 subdir: linux-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 158444 - timestamp: 1668913559334 -- name: pybind11-abi - version: '4' + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 1527865 + timestamp: 1681486787952 +- name: libhwloc + version: 2.9.1 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2 + dependencies: + libxml2: '>=2.10.3,<2.11.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.1-hd6dc26d_0.conda hash: - md5: 878f923dd6acc8aeb47a75da6c4098be - sha256: d4fb485b79b11042a16dc6abfb0c44c4f557707c2653ac47c81e5d32b24a3bb0 + md5: a3ede1b8e47f993ff1fe3908b23bb307 + sha256: 39bb53aa6ae0cab734568a58ad31ffe82ea244a82f575cd5c67abba785e442ee optional: false category: main - build: hd8ed1ab_3 - subdir: noarch - build_number: 3 - license: BSD-3-Clause - license_family: BSD - noarch: generic - size: 9906 - timestamp: 1610372835205 -- name: cycler - version: 0.11.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2 - hash: - md5: a50559fad0affdbb33729a68669ca1cb - sha256: 3b594bc8aa0b9a51269d54c7a4ef6af777d7fad4bee16b05695e1124de6563f6 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: hd6dc26d_0 + subdir: linux-64 build_number: 0 license: BSD-3-Clause license_family: BSD - noarch: python - size: 10307 - timestamp: 1635519555262 -- name: certifi - version: 2023.5.7 + size: 2569104 + timestamp: 1680713440274 +- name: tbb-devel + version: 2021.9.0 manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda + tbb: ==2021.9.0 hf52228f_0 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2021.9.0-hf52228f_0.conda hash: - md5: 5d1b71c942b8421285934dad1d891ebc - sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 + md5: b44ecd26bd0318a9eef65705483c70bc + sha256: 928d48869b79705e63dff79e7fad7241053eec98adf9a69a1540871869d16487 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: hf52228f_0 + subdir: linux-64 build_number: 0 - license: ISC - noarch: python - size: 152383 - timestamp: 1683450391501 -- name: kiwisolver - version: 1.4.4 + size: 1021902 + timestamp: 1681486811209 +- name: jsoncpp + version: 1.9.5 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - libstdcxx-ng: '>=12' - python_abi: 3.10.* *_cp310 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py310hbf28c38_1.tar.bz2 + libgcc-ng: '>=9.4.0' + libstdcxx-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.5-h4bd325d_1.tar.bz2 hash: - md5: ad5647e517ba68e2868ef2e6e6ff7723 - sha256: f56d1772472b90ddda6fd0963a80dcf1960f1277b9653667a9bde62ae125f972 + md5: ae7f50dd1e78c7e78b5d2cf7062e559d + sha256: 7a5a6cdfc17849bb8000cc31b91c22f1fe0e087dfc3fd59ecc4d3b64cf0ad772 optional: false category: main - build: py310hbf28c38_1 + build: h4bd325d_1 subdir: linux-64 build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 77416 - timestamp: 1666805829361 -- name: fonttools - version: 4.40.0 + license: LicenseRef-Public-Domain OR MIT + size: 194553 + timestamp: 1640883128046 +- name: libnetcdf + version: 4.8.1 manager: conda platform: linux-64 dependencies: - brotli: '*' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - unicodedata2: '>=14.0.0' + libxml2: '>=2.10.3,<2.11.0a0' + libzip: '>=1.9.2,<2.0a0' + hdf5: '>=1.12.2,<1.12.3.0a0' libgcc-ng: '>=12' - munkres: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.40.0-py310h2372a71_0.conda + curl: '*' + hdf4: '>=4.2.15,<4.2.16.0a0' + jpeg: '>=9e,<10a' + bzip2: '>=1.0.8,<2.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.8.1-nompi_h261ec11_106.tar.bz2 hash: - md5: d3d83b419c81ac718a9221442707882b - sha256: e5d22bcf75a4414d84000a3d905c70d4d2a1db96c0dfbf5a89169817351b2bb7 + md5: 9b25de670ce5753a33c18b1090d1d3bf + sha256: 2ccb50f85e11c19479c9986065673bbf86d3e9c5d451c16507da9488e41800fa optional: false category: main - build: py310h2372a71_0 + build: nompi_h261ec11_106 subdir: linux-64 - build_number: 0 + build_number: 106 license: MIT license_family: MIT - size: 2142035 - timestamp: 1686578623991 -- name: contourpy - version: 1.1.0 - manager: conda - platform: linux-64 - dependencies: - numpy: '>=1.16' - libstdcxx-ng: '>=12' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.1.0-py310hd41b1e2_0.conda - hash: - md5: 684399f9ddc0b9d6f3b6164f6107098e - sha256: 709dae7fbfdb1ab7aeeb060bae9095e5a18bd3849fd3afbf618a7be3a4117e76 - optional: false - category: main - build: py310hd41b1e2_0 - subdir: linux-64 - build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 220900 - timestamp: 1686734068424 -- name: libaec - version: 1.0.6 + size: 1562186 + timestamp: 1667254733898 +- name: curl + version: 7.88.1 manager: conda platform: linux-64 dependencies: + libssh2: '>=1.10.0,<2.0a0' + zstd: '>=1.5.2,<1.6.0a0' + libcurl: ==7.88.1 hdc1c0ab_1 + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/curl-7.88.1-hdc1c0ab_1.conda hash: - md5: 0f683578378cddb223e7fd24f785ab2a - sha256: 4df6a29b71264fb25462065e8cddcf5bca60776b1801974af8cbd26b7425fcda + md5: 2016c398f234cfa354ea704c6731b5d5 + sha256: b52a3b97e4c3d2acca8380d405da49c2fdc2f770fcbb9dd842eb6058f8476def optional: false category: main - build: hcb278e6_1 + build: hdc1c0ab_1 subdir: linux-64 build_number: 1 - license: BSD-2-Clause - license_family: BSD - size: 34438 - timestamp: 1673799481016 -- name: x264 - version: 1!164.3095 + license: curl + license_family: MIT + size: 88125 + timestamp: 1679081887857 +- name: libtheora + version: 1.1.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 + zlib: '>=1.2.11,<1.3.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + libgcc-ng: '>=9.3.0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h7f98852_1005.tar.bz2 hash: - md5: 6c99772d483f566d59e25037fea2c4b1 - sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 + md5: 1a7c35f56343b7e9e8db20b296c7566c + sha256: 048ce34ba5b143f099cca3d388dfc41acf24d634dd00c5b1c463fb81bf804070 optional: false category: main - build: h166bdaf_2 + build: h7f98852_1005 subdir: linux-64 - build_number: 2 - license: GPL-2.0-or-later - license_family: GPL - size: 897548 - timestamp: 1660323080555 -- name: openh264 - version: 2.3.1 + build_number: 1005 + license: BSD-3-Clause + license_family: BSD + size: 667135 + timestamp: 1618477815734 +- name: double-conversion + version: 3.2.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-hcb278e6_2.conda - hash: - md5: 37d01894f256b2a6921c5a218f42f8a2 - sha256: 3be6de15d40f02c9bb34d5095c65b6b3f07e04fc21a0fb63d1885f1a31de5ae2 - optional: false - category: main - build: hcb278e6_2 - subdir: linux-64 - build_number: 2 - license: BSD-2-Clause - license_family: BSD - size: 718775 - timestamp: 1675880590512 -- name: libvpx - version: 1.11.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.4.0' - libstdcxx-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.11.0-h9c3ff4c_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.2.0-h27087fc_1.tar.bz2 hash: - md5: ebe18273eebadbb4dfb13f1062e054e9 - sha256: e2c2a0bb21db1724af90cab5aa1fb3096db4c11df1ab85178571dcb8395e7a15 + md5: 5a7e0df95874e7ffe8b7840907058563 + sha256: 5c9002ce3eed2b8f5023287e4a1be733b413a2f3d8e6495ac2fd2cdcc6f1677a optional: false category: main - build: h9c3ff4c_3 + build: h27087fc_1 subdir: linux-64 - build_number: 3 + build_number: 1 license: BSD-3-Clause license_family: BSD - size: 1146818 - timestamp: 1635005051234 -- name: x265 - version: '3.5' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=10.3.0' - libstdcxx-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 - hash: - md5: e7f6ed84d4623d52ee581325c1587a6b - sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 - optional: false - category: main - build: h924138e_3 - subdir: linux-64 - build_number: 3 - license: GPL-2.0-or-later - license_family: GPL - size: 3357188 - timestamp: 1646609687141 -- name: libva - version: 2.18.0 + size: 87950 + timestamp: 1664549129525 +- name: gl2ps + version: 1.4.2 manager: conda platform: linux-64 dependencies: - libdrm: '>=2.4.114,<2.5.0a0' - xorg-libxfixes: '*' - xorg-libx11: '>=1.8.4,<2.0a0' - libgcc-ng: '>=12' - xorg-libxext: '>=1.3.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.18.0-h0b41bf4_0.conda + zlib: '>=1.2.11,<1.3.0a0' + libgcc-ng: '>=9.3.0' + libpng: '>=1.6.37,<1.7.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-h0708190_0.tar.bz2 hash: - md5: 56e049224de34bbe0478aad422227942 - sha256: e7254d0111a403ffe707e2ad39b6ce49a2be733e751d14a7255b0cb20da2a16b + md5: 438718bf8921ac70956d919d0e2cc487 + sha256: feaf757731cfb8231d8a6c5b3446bbc428aa1cca126f09628ccafaa98a80f022 optional: false category: main - build: h0b41bf4_0 + build: h0708190_0 subdir: linux-64 build_number: 0 - license: MIT - license_family: MIT - size: 186715 - timestamp: 1679400122269 -- name: libdrm - version: 2.4.114 + license: LGPL-2.0-or-later + license_family: LGPL + size: 150419 + timestamp: 1607158896675 +- name: utfcpp + version: 3.2.3 manager: conda platform: linux-64 - dependencies: - libpciaccess: '>=0.17,<0.18.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.114-h166bdaf_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-3.2.3-ha770c72_0.conda hash: - md5: efb58e80f5d0179a783c4e76c3df3b9c - sha256: 9316075084ad66f9f96d31836e83303a8199eec93c12d68661e41c44eed101e3 + md5: 36d3ff49544fcda12a732da94b1bde64 + sha256: 1f416ff96d9116a1c95ca0d965b8133c44d0794c38bb7a1d10500bb097bdd2e9 optional: false category: main - build: h166bdaf_0 + build: ha770c72_0 subdir: linux-64 build_number: 0 - license: MIT - license_family: MIT - size: 305197 - timestamp: 1667566354412 -- name: libpciaccess - version: '0.17' + license: BSL-1.0 + size: 12280 + timestamp: 1672414673271 +- name: nlohmann_json + version: 3.11.2 manager: conda platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.17-h166bdaf_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.11.2-h27087fc_0.tar.bz2 hash: - md5: b7463391cf284065294e2941dd41ab95 - sha256: 9fe4aaf5629b4848d9407b9ed4da941ba7e5cebada63ee0becb9aa82259dc6e2 + md5: b7743cf3f8da023abe95afc215111555 + sha256: 55ac71e0431267b30b3bc9ea0238d1b9dc69644938d213511749c71b91506a7b optional: false category: main - build: h166bdaf_0 + build: h27087fc_0 subdir: linux-64 build_number: 0 license: MIT license_family: MIT - size: 39750 - timestamp: 1666091838440 -- name: qhull - version: '2020.2' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.4.0' - libstdcxx-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h4bd325d_2.tar.bz2 - hash: - md5: 5acb8407fefa1c1929c11c167237e776 - sha256: e1d6e4e74486ce4844c4bbdc7198bb4d8191b70881f6415d1f4b5fd8d98f18d7 - optional: false - category: main - build: h4bd325d_2 - subdir: linux-64 - build_number: 2 - license: Qhull - size: 1971736 - timestamp: 1631546549823 -- name: vtk - version: 9.2.2 + size: 114893 + timestamp: 1661171580403 +- name: aiohttp + version: 3.8.4 manager: conda platform: linux-64 dependencies: - glew: '>=2.1.0,<2.2.0a0' - libxml2: '>=2.10.3,<2.11.0a0' python: '>=3.10,<3.11.0a0' - jpeg: '>=9e,<10a' - libsqlite: '>=3.40.0,<4.0a0' - expat: '>=2.5.0,<3.0a0' - double-conversion: '>=3.2.0,<3.3.0a0' - jsoncpp: '>=1.9.5,<1.9.6.0a0' - nlohmann_json: '*' - tbb: '>=2021.7.0' - xorg-libxt: '*' - loguru: '*' - pugixml: '>=1.11.4,<1.12.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - tbb-devel: '*' - proj: '>=9.1.0,<9.1.1.0a0' - sqlite: '*' - zlib: '*' - tk: '>=8.6.12,<8.7.0a0' - libstdcxx-ng: '>=12' - ffmpeg: '>=5.1.2,<6.0a0' - eigen: '*' python_abi: 3.10.* *_cp310 - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + charset-normalizer: '>=2.0,<4.0' + async-timeout: <5.0,>=4.0.0a3 + frozenlist: '>=1.1.1' libgcc-ng: '>=12' - libtheora: '>=1.1.1,<1.2.0a0' - qt-main: '>=5.15.6,<5.16.0a0' - utfcpp: '*' - wslink: '*' - freetype: '>=2.12.1,<3.0a0' - gl2ps: '>=1.4.2,<1.4.3.0a0' - hdf5: '>=1.12.2,<1.12.3.0a0' - libtiff: '>=4.4.0,<4.5.0a0' - numpy: '*' - libnetcdf: '>=4.8.1,<4.8.2.0a0' - libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.2.2-qt_py310hc895abb_205.conda + yarl: '>=1.0,<2.0' + attrs: '>=17.3.0' + multidict: '>=4.5,<7.0' + aiosignal: '>=1.1.2' + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.8.4-py310h2372a71_1.conda hash: - md5: 2f0ceda9bc754049fd762a32c9495947 - sha256: 16186720463bf1b1c76fa614f19df5c50907c83e1c37ca75793c174ad5d95f5d + md5: 05d01d95b7838f86796b18a80fd42584 + sha256: 475f5618a9b6228bd1b5ac37c1866ff01d52c39d04fe2c53ddd3ae888f6d19a1 optional: false category: main - build: qt_py310hc895abb_205 + build: py310h2372a71_1 subdir: linux-64 - build_number: 205 - constrains: - - paraview ==9999999999 - license: BSD-3-Clause - license_family: BSD - size: 41826631 - timestamp: 1673221017134 -- name: proj - version: 9.1.0 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 445817 + timestamp: 1686376013669 +- name: attrs + version: 23.1.0 manager: conda platform: linux-64 dependencies: - sqlite: '>=3.39.3,<4.0a0' - libtiff: '>=4.4.0,<4.5.0a0' - libcurl: '>=7.83.1,<9.0a0' - libstdcxx-ng: '>=12' - libsqlite: '>=3.39.3,<4.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.1.0-h93bde94_0.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda hash: - md5: 255c7204dda39747c3ba380d28b026d7 - sha256: a381d3db5e344e101cd88304ec9eceaaa7a320ee35cc68fb10b247a7b46bcc3d + md5: 3edfead7cedd1ab4400a6c588f3e75f8 + sha256: 063639cd568f5c7a557b0fb1cc27f098598c0d8ff869088bfeb82934674f8821 optional: false category: main - build: h93bde94_0 - subdir: linux-64 - build_number: 0 - constrains: - - proj4 ==999999999999 + build: pyh71513ae_1 + subdir: noarch + build_number: 1 license: MIT license_family: MIT - size: 3262163 - timestamp: 1662423671500 -- name: distro - version: 1.8.0 + noarch: python + size: 55022 + timestamp: 1683424195402 +- name: async-timeout + version: 4.0.2 manager: conda platform: linux-64 dependencies: + typing-extensions: '>=3.6.5' python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/distro-1.8.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: 67999c5465064480fa8016d00ac768f6 - sha256: 0d01c4da6d4f0a935599210f82ac0630fa9aeb4fc37cbbc78043a932a39ec4f3 + md5: 25e79f9a1133556671becbd65a170c78 + sha256: a08b78e6fadee1ffac0f255363d2a08a0c589c7403fd2a71c1c0b6aafd5e0737 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 license: Apache-2.0 - license_family: APACHE + license_family: Apache noarch: python - size: 40854 - timestamp: 1675116355989 -- name: six - version: 1.16.0 + size: 9300 + timestamp: 1640026786670 +- name: aiosignal + version: 1.3.1 manager: conda platform: linux-64 dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + frozenlist: '>=1.1.0' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + md5: d1e1eb7e21a9e2c74279d87dafb68156 + sha256: 575c742e14c86575986dc867463582a970463da50b77264cdf54df74f5563783 optional: false category: main - build: pyh6c4a22f_0 + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: MIT - license_family: MIT + license: Apache-2.0 + license_family: APACHE noarch: python - size: 14259 - timestamp: 1620240338595 -- name: pycparser - version: '2.21' + size: 12730 + timestamp: 1667935912504 +- name: charset-normalizer + version: 3.2.0 manager: conda platform: linux-64 dependencies: - python: 2.7.*|>=3.4 - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD + license: MIT + license_family: MIT noarch: python - size: 102747 - timestamp: 1636257201998 -- name: libunistring - version: 0.9.10 + size: 45686 + timestamp: 1688813585878 +- name: multidict + version: 6.0.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2 + python: '>=3.10,<3.11.0a0' + libgcc-ng: '>=12' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.4-py310h1fa729e_0.conda hash: - md5: 7245a044b4a1980ed83196176b78b73a - sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d + md5: b33287be963a70f8fb4b143b4561ba62 + sha256: 14312ac727a741224d45ab07f75253ca99235ec0534ba9603e627818666ff49a optional: false category: main - build: h7f98852_0 + build: py310h1fa729e_0 subdir: linux-64 build_number: 0 - license: GPL-3.0-only OR LGPL-3.0-only - size: 1433436 - timestamp: 1626955018689 -- name: munkres - version: 1.1.4 + license: Apache-2.0 + license_family: APACHE + size: 52815 + timestamp: 1672339511961 +- name: yarl + version: 1.9.2 manager: conda platform: linux-64 dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + multidict: '>=4.0' + idna: '>=2.0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.9.2-py310h2372a71_0.conda hash: - md5: 2ba8498c1018c1e9c61eb99b973dfe19 - sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 73deaf595eb21f3e76a02ba1ae2edee6 + sha256: 943c644a13a517d5ca9761e2c3f8697db85ea0c05a44e13697d826f7f5e1d351 optional: false category: main - build: pyh9f0ad1d_0 - subdir: noarch + build: py310h2372a71_0 + subdir: linux-64 build_number: 0 license: Apache-2.0 license_family: Apache - noarch: python - size: 12452 - timestamp: 1600387789153 -- name: brotli - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libbrotlienc: ==1.0.9 h166bdaf_9 - brotli-bin: ==1.0.9 h166bdaf_9 - libgcc-ng: '>=12' - libbrotlidec: ==1.0.9 h166bdaf_9 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_9.conda - hash: - md5: 4601544b4982ba1861fa9b9c607b2c06 - sha256: 2357d205931912def55df0dc53573361156b27856f9bf359d464da162812ec1f - optional: false - category: main - build: h166bdaf_9 - subdir: linux-64 - build_number: 9 - license: MIT - size: 20065 - timestamp: 1687884291946 -- name: brotli-bin - version: 1.0.9 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libbrotlienc: ==1.0.9 h166bdaf_9 - libbrotlidec: ==1.0.9 h166bdaf_9 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_9.conda - hash: - md5: d47dee1856d9cb955b8076eeff304a5b - sha256: 1c128f136a59ee2fa47d7fbd9b6fc8afa8460d340e4ae0e6f5419ebbd7539a10 - optional: false - category: main - build: h166bdaf_9 - subdir: linux-64 - build_number: 9 - license: MIT - size: 20361 - timestamp: 1687884277426 -- name: libbrotlidec - version: 1.0.9 + size: 97007 + timestamp: 1685191885122 +- name: frozenlist + version: 1.3.3 manager: conda platform: linux-64 dependencies: - libbrotlicommon: ==1.0.9 h166bdaf_9 + python: '>=3.10,<3.11.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_9.conda + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.3.3-py310h5764c6d_0.tar.bz2 hash: - md5: 081aa22f4581c08e4372b0b6c2f8478e - sha256: 564f301430c3c61bc5e149e74157ec181ed2a758befc89f7c38466d515a0f614 + md5: 25e1626333f9a0646579a162e7b174ee + sha256: 1a213bfa274e847d08cf0d8b068dc94be002c9f17acd040b5c9f2ead80c3c7c0 optional: false category: main - build: h166bdaf_9 + build: py310h5764c6d_0 subdir: linux-64 - build_number: 9 - license: MIT - size: 32567 - timestamp: 1687884247423 -- name: libbrotlienc - version: 1.0.9 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 45302 + timestamp: 1667935592689 +- name: hdf4 + version: 4.2.15 manager: conda platform: linux-64 dependencies: - libbrotlicommon: ==1.0.9 h166bdaf_9 + zlib: '*' + libstdcxx-ng: '>=12' + jpeg: '>=9e,<10a' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_9.conda + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h9772cbc_5.tar.bz2 hash: - md5: 1f0a03af852a9659ed2bf08f2f1704fd - sha256: d27bc2562ea3f3b2bfd777f074f1cac6bfa4a737233dad288cd87c4634a9bb3a + md5: ee08782aff2ff9b3291c967fa6bc7336 + sha256: c343a211880a86abf99a8f117a53e251317f99faac761fc0b758f6ad737d13ff optional: false category: main - build: h166bdaf_9 + build: h9772cbc_5 subdir: linux-64 - build_number: 9 - license: MIT - size: 265202 - timestamp: 1687884262352 -- name: libbrotlicommon - version: 1.0.9 + build_number: 5 + license: BSD-3-Clause + license_family: BSD + size: 973792 + timestamp: 1667222658023 +- name: libzip + version: 1.9.2 manager: conda platform: linux-64 dependencies: + bzip2: '>=1.0.8,<2.0a0' + openssl: '>=3.0.5,<4.0a0' + libzlib: '>=1.2.12,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_9.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc929e4a_1.tar.bz2 hash: - md5: 61641e239f96eae2b8492dc7e755828c - sha256: fc57c0876695c5b4ab7173438580c1d7eaa7dccaf14cb6467ca9e0e97abe0cf0 + md5: 5b122b50e738c4be5c3f2899f010d7cf + sha256: e2dbd5239f62fbac4f00f828b1de0ea5898d6ed5c1f3049baaf4dfcc4ebdbe7c optional: false category: main - build: h166bdaf_9 + build: hc929e4a_1 subdir: linux-64 - build_number: 9 - license: MIT - size: 71065 - timestamp: 1687884232329 -- name: unicodedata2 - version: 15.0.0 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 99380 + timestamp: 1660347211234 +- name: typing-extensions + version: 4.7.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - libgcc-ng: '>=12' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.0.0-py310h5764c6d_0.tar.bz2 + typing_extensions: ==4.7.1 pyha770c72_0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda hash: - md5: e972c5a1f472561cf4a91962cb01f4b4 - sha256: 332732c2b87445c3e071c86cacfbc72a99ba4ea55d0b9d65416894253782ca02 + md5: f96688577f1faa58096d06a45136afa2 + sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d optional: false category: main - build: py310h5764c6d_0 - subdir: linux-64 + build: hd8ed1ab_0 + subdir: noarch build_number: 0 - license: Apache-2.0 - license_family: Apache - size: 512210 - timestamp: 1667239999991 -- name: loguru - version: 0.7.0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 10080 + timestamp: 1688315729011 +- name: typing_extensions + version: 4.7.1 manager: conda platform: linux-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.7.0-py310hff52083_0.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda hash: - md5: 9e0d689557f3fdcb521c1239c13d29ec - sha256: 287c1968e9d5b5b25adb43f9a72a8b249ef5c80fc35fd6e182fdd04d9366ab8b + md5: c39d6a09fe819de4951c2642629d9115 + sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1 optional: false category: main - build: py310hff52083_0 - subdir: linux-64 + build: pyha770c72_0 + subdir: noarch build_number: 0 - license: MIT - license_family: MIT - size: 94490 - timestamp: 1681126338750 -- name: wslink - version: 1.11.0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 36321 + timestamp: 1688315719627 +- name: idna + version: '3.4' manager: conda platform: linux-64 dependencies: python: '>=3.6' - aiohttp: <4 - url: https://conda.anaconda.org/conda-forge/noarch/wslink-1.11.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 hash: - md5: 70f4b52c0e703936aa1812d8b14a5bb2 - sha256: 11dd5e6c5062e788160167e2a64fcbbb2c7ec825e28d628a9e7771172e039de7 + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 optional: false category: main build: pyhd8ed1ab_0 @@ -14337,1286 +14853,293 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 31744 - timestamp: 1686354338531 -- name: tbb - version: 2021.9.0 + size: 56742 + timestamp: 1663625484114 +- name: ros-humble-desktop + version: 0.10.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libhwloc: '>=2.9.1,<2.9.2.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.9.0-hf52228f_0.conda + ros-humble-examples-rclpy-minimal-action-client: '*' + python: 3.10.* *_cpython + ros-humble-dummy-sensors: '*' + ros-humble-examples-rclcpp-minimal-action-server: '*' + ros-humble-examples-rclpy-minimal-subscriber: '*' + ros-humble-intra-process-demo: '*' + ros-humble-rqt-common-plugins: '*' + ros-humble-teleop-twist-joy: '*' + ros-humble-examples-rclpy-minimal-action-server: '*' + ros-humble-examples-rclcpp-minimal-client: '*' + ros-humble-turtlesim: '*' + ros-humble-ros-workspace: '*' + ros-humble-teleop-twist-keyboard: '*' + ros-humble-composition: '*' + ros-humble-examples-rclcpp-minimal-subscriber: '*' + ros-humble-dummy-map-server: '*' + ros-humble-examples-rclcpp-minimal-timer: '*' + ros-humble-examples-rclpy-minimal-publisher: '*' + ros-humble-rviz-default-plugins: '*' + ros-humble-rviz2: '*' + ros-humble-examples-rclcpp-minimal-action-client: '*' + ros-humble-quality-of-service-demo-py: '*' + ros-humble-angles: '*' + ros-humble-lifecycle: '*' + ros-humble-demo-nodes-cpp: '*' + ros-humble-image-tools: '*' + ros-humble-action-tutorials-cpp: '*' + ros-humble-demo-nodes-cpp-native: '*' + python_abi: 3.10.* *_cp310 + ros-humble-logging-demo: '*' + ros-humble-quality-of-service-demo-cpp: '*' + ros-humble-joy: '*' + ros-humble-examples-rclcpp-minimal-composition: '*' + ros-humble-ros-base: '*' + ros-humble-action-tutorials-py: '*' + ros-humble-topic-monitor: '*' + ros-humble-examples-rclcpp-minimal-service: '*' + ros-humble-depthimage-to-laserscan: '*' + ros-humble-examples-rclpy-minimal-client: '*' + ros-humble-pendulum-msgs: '*' + ros-humble-examples-rclcpp-minimal-publisher: '*' + ros-humble-examples-rclpy-minimal-service: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-examples-rclpy-executors: '*' + ros-humble-examples-rclcpp-multithreaded-executor: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-action-tutorials-interfaces: '*' + ros-humble-demo-nodes-py: '*' + ros-humble-dummy-robot-bringup: '*' + ros-humble-pcl-conversions: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-desktop-0.10.0-py310h927cc32_3.tar.bz2 hash: - md5: f495e42d3d2020b025705625edf35490 - sha256: 86352f4361e8dc2374a95d9d1dfee742beecaa59dcb0e76ca36ca06a4efe1df2 + md5: 01b6f255be62efbd93e883c2c5bc7813 + sha256: eaa9a6b0c972472c3ebc48566f61e086a28928a5037ce54c166021fb55967a71 optional: false category: main - build: hf52228f_0 - subdir: linux-64 - build_number: 0 - license: Apache-2.0 - license_family: APACHE - size: 1527865 - timestamp: 1681486787952 -- name: libhwloc - version: 2.9.1 + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 15735 + timestamp: 1675889259823 +- name: ros2-distro-mutex + version: 0.3.0 manager: conda - platform: linux-64 - dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.1-hd6dc26d_0.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros2-distro-mutex-0.3.0-humble.tar.bz2 hash: - md5: a3ede1b8e47f993ff1fe3908b23bb307 - sha256: 39bb53aa6ae0cab734568a58ad31ffe82ea244a82f575cd5c67abba785e442ee + md5: 5bdb8f182b40aa6448d77864ec16eef5 + sha256: 34bfb3e676bdfe22fd682ed19ee8a9f03953483d07a211f4d37cdd4bb2aeb30d optional: false category: main - build: hd6dc26d_0 - subdir: linux-64 + build: humble + arch: arm64 + subdir: osx-arm64 build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 2569104 - timestamp: 1680713440274 -- name: tbb-devel - version: 2021.9.0 + constrains: + - boost-cpp 1.78.* + - pcl 1.12.* + - gazebo 11.* + - libpqxx 6.* + - setuptools 61.0.0* + size: 3635 + timestamp: 1675631069515 +- name: ros-humble-topic-monitor + version: 0.20.3 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - tbb: ==2021.9.0 hf52228f_0 - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2021.9.0-hf52228f_0.conda + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' + ros-humble-std-msgs: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-launch: '*' + ros-humble-launch-ros: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-topic-monitor-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: b44ecd26bd0318a9eef65705483c70bc - sha256: 928d48869b79705e63dff79e7fad7241053eec98adf9a69a1540871869d16487 + md5: a1e53d2d97c60133ac1913355e49299f + sha256: 6de3a408cf8638e5f865bb19d503813fe1a9baa76bf07d93cb61ace864af1cbc optional: false category: main - build: hf52228f_0 - subdir: linux-64 - build_number: 0 - size: 1021902 - timestamp: 1681486811209 -- name: jsoncpp - version: 1.9.5 + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 23563 + timestamp: 1675756841406 +- name: ros-humble-teleop-twist-keyboard + version: 2.3.2 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.4.0' - libstdcxx-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.5-h4bd325d_1.tar.bz2 + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-geometry-msgs: '*' + ros-humble-rclpy: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-teleop-twist-keyboard-2.3.2-py310h927cc32_3.tar.bz2 hash: - md5: ae7f50dd1e78c7e78b5d2cf7062e559d - sha256: 7a5a6cdfc17849bb8000cc31b91c22f1fe0e087dfc3fd59ecc4d3b64cf0ad772 + md5: f459d986a6a1f874c3a9d0e238f50e40 + sha256: 0a11fb4f2e28fdd3ac5d831453891dbf360548480d8cbd9ffdeb1cac20e22cec optional: false category: main - build: h4bd325d_1 - subdir: linux-64 - build_number: 1 - license: LicenseRef-Public-Domain OR MIT - size: 194553 - timestamp: 1640883128046 -- name: libnetcdf - version: 4.8.1 + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 12901 + timestamp: 1675748077504 +- name: ros-humble-teleop-twist-joy + version: 2.4.3 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - libzip: '>=1.9.2,<2.0a0' - hdf5: '>=1.12.2,<1.12.3.0a0' - libgcc-ng: '>=12' - curl: '*' - hdf4: '>=4.2.15,<4.2.16.0a0' - jpeg: '>=9e,<10a' - bzip2: '>=1.0.8,<2.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.8.1-nompi_h261ec11_106.tar.bz2 + ros-humble-rclcpp: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-geometry-msgs: '*' + ros-humble-sensor-msgs: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-joy: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rclcpp-components: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-teleop-twist-joy-2.4.3-py310h927cc32_3.tar.bz2 hash: - md5: 9b25de670ce5753a33c18b1090d1d3bf - sha256: 2ccb50f85e11c19479c9986065673bbf86d3e9c5d451c16507da9488e41800fa + md5: f541fa5453d1cac9a36a07ba77f73631 + sha256: d708bcf4b112af6c508115df20910c4a7655a40b3c8124dc5fce11dcd4b02d62 optional: false category: main - build: nompi_h261ec11_106 - subdir: linux-64 - build_number: 106 - license: MIT - license_family: MIT - size: 1562186 - timestamp: 1667254733898 -- name: curl - version: 7.88.1 + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 158214 + timestamp: 1675772525139 +- name: ros-humble-rviz2 + version: 11.2.5 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libssh2: '>=1.10.0,<2.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libcurl: ==7.88.1 hdc1c0ab_1 - openssl: '>=3.1.0,<4.0a0' - krb5: '>=1.20.1,<1.21.0a0' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/curl-7.88.1-hdc1c0ab_1.conda + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rviz-default-plugins: '*' + ros2-distro-mutex: 0.3.* humble + qt-main: '>=5.15.8,<5.16.0a0' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rviz-common: '*' + ros-humble-ros-workspace: '*' + ros-humble-rviz-ogre-vendor: '*' + xorg-libx11: '*' + xorg-libxext: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz2-11.2.5-py310h927cc32_3.tar.bz2 hash: - md5: 2016c398f234cfa354ea704c6731b5d5 - sha256: b52a3b97e4c3d2acca8380d405da49c2fdc2f770fcbb9dd842eb6058f8476def + md5: 1b8fdf5405eb2609f75f74288e127aa2 + sha256: 8037332f8ada8904e90f8895b643453a70a08c64e04ad7f27530dd642ecffbfa optional: false category: main - build: hdc1c0ab_1 - subdir: linux-64 - build_number: 1 - license: curl - license_family: MIT - size: 88125 - timestamp: 1679081887857 -- name: libtheora - version: 1.1.1 + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 24288 + timestamp: 1675847514451 +- name: ros-humble-rviz-default-plugins + version: 11.2.5 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - zlib: '>=1.2.11,<1.3.0a0' - libpng: '>=1.6.37,<1.7.0a0' - libvorbis: '>=1.3.7,<1.4.0a0' - libgcc-ng: '>=9.3.0' - libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h7f98852_1005.tar.bz2 + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-tf2: '*' + ros-humble-tf2-ros: '*' + ros-humble-urdf: '*' + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-ignition-math6-vendor: '*' + xorg-libxext: '*' + ros-humble-interactive-markers: '*' + ros-humble-pluginlib: '*' + ros-humble-image-transport: '*' + ros-humble-resource-retriever: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' + ros-humble-nav-msgs: '*' + ros-humble-ros-workspace: '*' + ros-humble-laser-geometry: '*' + ros-humble-rviz-rendering: '*' + ros-humble-tf2-geometry-msgs: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-map-msgs: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rviz-common: '*' + ros-humble-rviz-ogre-vendor: '*' + ros-humble-visualization-msgs: '*' + xorg-libx11: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-default-plugins-11.2.5-py310h927cc32_3.tar.bz2 hash: - md5: 1a7c35f56343b7e9e8db20b296c7566c - sha256: 048ce34ba5b143f099cca3d388dfc41acf24d634dd00c5b1c463fb81bf804070 - optional: false - category: main - build: h7f98852_1005 - subdir: linux-64 - build_number: 1005 - license: BSD-3-Clause - license_family: BSD - size: 667135 - timestamp: 1618477815734 -- name: double-conversion - version: 3.2.0 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.2.0-h27087fc_1.tar.bz2 - hash: - md5: 5a7e0df95874e7ffe8b7840907058563 - sha256: 5c9002ce3eed2b8f5023287e4a1be733b413a2f3d8e6495ac2fd2cdcc6f1677a - optional: false - category: main - build: h27087fc_1 - subdir: linux-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 87950 - timestamp: 1664549129525 -- name: gl2ps - version: 1.4.2 - manager: conda - platform: linux-64 - dependencies: - zlib: '>=1.2.11,<1.3.0a0' - libgcc-ng: '>=9.3.0' - libpng: '>=1.6.37,<1.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-h0708190_0.tar.bz2 - hash: - md5: 438718bf8921ac70956d919d0e2cc487 - sha256: feaf757731cfb8231d8a6c5b3446bbc428aa1cca126f09628ccafaa98a80f022 - optional: false - category: main - build: h0708190_0 - subdir: linux-64 - build_number: 0 - license: LGPL-2.0-or-later - license_family: LGPL - size: 150419 - timestamp: 1607158896675 -- name: utfcpp - version: 3.2.3 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-3.2.3-ha770c72_0.conda - hash: - md5: 36d3ff49544fcda12a732da94b1bde64 - sha256: 1f416ff96d9116a1c95ca0d965b8133c44d0794c38bb7a1d10500bb097bdd2e9 - optional: false - category: main - build: ha770c72_0 - subdir: linux-64 - build_number: 0 - license: BSL-1.0 - size: 12280 - timestamp: 1672414673271 -- name: nlohmann_json - version: 3.11.2 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.11.2-h27087fc_0.tar.bz2 - hash: - md5: b7743cf3f8da023abe95afc215111555 - sha256: 55ac71e0431267b30b3bc9ea0238d1b9dc69644938d213511749c71b91506a7b - optional: false - category: main - build: h27087fc_0 - subdir: linux-64 - build_number: 0 - license: MIT - license_family: MIT - size: 114893 - timestamp: 1661171580403 -- name: aiohttp - version: 3.8.4 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - charset-normalizer: '>=2.0,<4.0' - async-timeout: <5.0,>=4.0.0a3 - frozenlist: '>=1.1.1' - libgcc-ng: '>=12' - yarl: '>=1.0,<2.0' - attrs: '>=17.3.0' - multidict: '>=4.5,<7.0' - aiosignal: '>=1.1.2' - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.8.4-py310h2372a71_1.conda - hash: - md5: 05d01d95b7838f86796b18a80fd42584 - sha256: 475f5618a9b6228bd1b5ac37c1866ff01d52c39d04fe2c53ddd3ae888f6d19a1 - optional: false - category: main - build: py310h2372a71_1 - subdir: linux-64 - build_number: 1 - license: Apache-2.0 - license_family: Apache - size: 445817 - timestamp: 1686376013669 -- name: attrs - version: 23.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda - hash: - md5: 3edfead7cedd1ab4400a6c588f3e75f8 - sha256: 063639cd568f5c7a557b0fb1cc27f098598c0d8ff869088bfeb82934674f8821 - optional: false - category: main - build: pyh71513ae_1 - subdir: noarch - build_number: 1 - license: MIT - license_family: MIT - noarch: python - size: 55022 - timestamp: 1683424195402 -- name: async-timeout - version: 4.0.2 - manager: conda - platform: linux-64 - dependencies: - typing-extensions: '>=3.6.5' - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 25e79f9a1133556671becbd65a170c78 - sha256: a08b78e6fadee1ffac0f255363d2a08a0c589c7403fd2a71c1c0b6aafd5e0737 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: Apache-2.0 - license_family: Apache - noarch: python - size: 9300 - timestamp: 1640026786670 -- name: aiosignal - version: 1.3.1 - manager: conda - platform: linux-64 - dependencies: - frozenlist: '>=1.1.0' - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - hash: - md5: d1e1eb7e21a9e2c74279d87dafb68156 - sha256: 575c742e14c86575986dc867463582a970463da50b77264cdf54df74f5563783 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 12730 - timestamp: 1667935912504 -- name: charset-normalizer - version: 3.1.0 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda - hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 44914 - timestamp: 1678108997608 -- name: multidict - version: 6.0.4 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10,<3.11.0a0' - libgcc-ng: '>=12' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.4-py310h1fa729e_0.conda - hash: - md5: b33287be963a70f8fb4b143b4561ba62 - sha256: 14312ac727a741224d45ab07f75253ca99235ec0534ba9603e627818666ff49a - optional: false - category: main - build: py310h1fa729e_0 - subdir: linux-64 - build_number: 0 - license: Apache-2.0 - license_family: APACHE - size: 52815 - timestamp: 1672339511961 -- name: yarl - version: 1.9.2 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - multidict: '>=4.0' - idna: '>=2.0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.9.2-py310h2372a71_0.conda - hash: - md5: 73deaf595eb21f3e76a02ba1ae2edee6 - sha256: 943c644a13a517d5ca9761e2c3f8697db85ea0c05a44e13697d826f7f5e1d351 - optional: false - category: main - build: py310h2372a71_0 - subdir: linux-64 - build_number: 0 - license: Apache-2.0 - license_family: Apache - size: 97007 - timestamp: 1685191885122 -- name: frozenlist - version: 1.3.3 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.10,<3.11.0a0' - libgcc-ng: '>=12' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.3.3-py310h5764c6d_0.tar.bz2 - hash: - md5: 25e1626333f9a0646579a162e7b174ee - sha256: 1a213bfa274e847d08cf0d8b068dc94be002c9f17acd040b5c9f2ead80c3c7c0 - optional: false - category: main - build: py310h5764c6d_0 - subdir: linux-64 - build_number: 0 - license: Apache-2.0 - license_family: APACHE - size: 45302 - timestamp: 1667935592689 -- name: hdf4 - version: 4.2.15 - manager: conda - platform: linux-64 - dependencies: - zlib: '*' - libstdcxx-ng: '>=12' - jpeg: '>=9e,<10a' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h9772cbc_5.tar.bz2 - hash: - md5: ee08782aff2ff9b3291c967fa6bc7336 - sha256: c343a211880a86abf99a8f117a53e251317f99faac761fc0b758f6ad737d13ff - optional: false - category: main - build: h9772cbc_5 - subdir: linux-64 - build_number: 5 - license: BSD-3-Clause - license_family: BSD - size: 973792 - timestamp: 1667222658023 -- name: libzip - version: 1.9.2 - manager: conda - platform: linux-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - openssl: '>=3.0.5,<4.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc929e4a_1.tar.bz2 - hash: - md5: 5b122b50e738c4be5c3f2899f010d7cf - sha256: e2dbd5239f62fbac4f00f828b1de0ea5898d6ed5c1f3049baaf4dfcc4ebdbe7c - optional: false - category: main - build: hc929e4a_1 - subdir: linux-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 99380 - timestamp: 1660347211234 -- name: typing-extensions - version: 4.6.3 - manager: conda - platform: linux-64 - dependencies: - typing_extensions: ==4.6.3 pyha770c72_0 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.6.3-hd8ed1ab_0.conda - hash: - md5: 3876f650ed7d0f95d70fa4b647621909 - sha256: d2334dab270e13182403cc3a394e3da8e7acb409e94059a6d9223d2ac053f90a - optional: false - category: main - build: hd8ed1ab_0 - subdir: noarch - build_number: 0 - license: PSF-2.0 - license_family: PSF - noarch: python - size: 10040 - timestamp: 1685705090608 -- name: typing_extensions - version: 4.6.3 - manager: conda - platform: linux-64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.6.3-pyha770c72_0.conda - hash: - md5: 4a3014a4d107d15475d106b751c4e352 - sha256: 90a8d56c8015af1575d504d5f77d95a806cd999fc178a06ab51a349f1f744672 - optional: false - category: main - build: pyha770c72_0 - subdir: noarch - build_number: 0 - license: PSF-2.0 - license_family: PSF - noarch: python - size: 34905 - timestamp: 1685705083612 -- name: idna - version: '3.4' - manager: conda - platform: linux-64 - dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 56742 - timestamp: 1663625484114 -- name: ros-humble-turtlesim - version: 1.4.2 - manager: conda - platform: osx-arm64 - dependencies: - ros-humble-rclcpp-action: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-ros-workspace: '*' - ros-humble-std-srvs: '*' - xorg-libxext: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - xorg-libx11: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-turtlesim-1.4.2-py310h927cc32_3.tar.bz2 - hash: - md5: a9c2ea12df6850e6b145db84cfb7fe0a - sha256: 399767171456dec468d04cec10b80219d81d2f5912db0c573e8d05e77641e7e2 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 702233 - timestamp: 1675756730498 -- name: ros2-distro-mutex - version: 0.3.0 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros2-distro-mutex-0.3.0-humble.tar.bz2 - hash: - md5: 5bdb8f182b40aa6448d77864ec16eef5 - sha256: 34bfb3e676bdfe22fd682ed19ee8a9f03953483d07a211f4d37cdd4bb2aeb30d - optional: false - category: main - build: humble - arch: arm64 - subdir: osx-arm64 - build_number: 0 - constrains: - - boost-cpp 1.78.* - - pcl 1.12.* - - gazebo 11.* - - libpqxx 6.* - - setuptools 61.0.0* - size: 3635 - timestamp: 1675631069515 -- name: ros-humble-std-srvs - version: 4.2.3 - manager: conda - platform: osx-arm64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-std-srvs-4.2.3-py310h927cc32_3.tar.bz2 - hash: - md5: 03eaea5fa0261017df86807cb88de1ac - sha256: 84f19ec78e08214a28a34af1f32e308d2fd5a097a2a63c1ea123a5aa088cb6ff - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 76961 - timestamp: 1675736710584 -- name: ros-humble-std-msgs - version: 4.2.3 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-std-msgs-4.2.3-py310h927cc32_3.tar.bz2 - hash: - md5: aa7ce44fd22829455a5741de4499d69d - sha256: e33fc2936877f65b030d402e66175fdb84e3e9d03efdfeb105227416ec479f8d - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 239359 - timestamp: 1675737246955 -- name: ros-humble-rosidl-default-runtime - version: 1.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros-humble-rosidl-generator-py: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rosidl-typesupport-c: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rosidl-typesupport-introspection-c: '*' - ros-humble-rosidl-typesupport-cpp: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-default-runtime-1.2.0-py310h927cc32_3.tar.bz2 - hash: - md5: 387f09dad0e715e7481c06417010cda6 - sha256: 51a02b5b8adf2ab93ce1e97400a4bc14ace3cbc2965d33fac49166abda6758c3 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 11911 - timestamp: 1675735303231 -- name: ros-humble-rclcpp-action - version: 16.0.3 - manager: conda - platform: osx-arm64 - dependencies: - ros-humble-rclcpp: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rcl-action: '*' - ros-humble-ament-cmake: '*' - ros-humble-rcpputils: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-action-msgs: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclcpp-action-16.0.3-py310h927cc32_3.tar.bz2 - hash: - md5: 197578ec0c6e9ea7fa7e75094dc3bd6f - sha256: 626f8b30792d5fcf1c3b194b4e929a8630032bafd3bb9c0e6d9f9ef259476d3f - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 76186 - timestamp: 1675749181323 -- name: ros-humble-rclcpp - version: 16.0.3 - manager: conda - platform: osx-arm64 - dependencies: - ros-humble-statistics-msgs: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-rcl-interfaces: '*' - ros-humble-rcpputils: '*' - ros-humble-rosgraph-msgs: '*' - ros-humble-tracetools: '*' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-rosidl-typesupport-c: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rcl: '*' - ros-humble-rcl-yaml-param-parser: '*' - ros-humble-rosidl-typesupport-cpp: '*' - ros-humble-libstatistics-collector: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclcpp-16.0.3-py310h927cc32_3.tar.bz2 - hash: - md5: 289d402d810afc0e1e7e394b24cbe500 - sha256: 99551ea63530abd0d8a90a01b2841d9876f18b20222c3576b68196488cc3eed5 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 660797 - timestamp: 1675747433833 -- name: ros-humble-geometry-msgs - version: 4.2.3 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-geometry-msgs-4.2.3-py310h927cc32_3.tar.bz2 - hash: - md5: eb0f0578adf4dfc003aed7b15e2ad941 - sha256: d238099739921d2e5001ca89b2af511940dfa99734770230024f2746697d8d9e - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 233285 - timestamp: 1675739115452 -- name: ros-humble-ament-index-cpp - version: 1.4.0 - manager: conda - platform: osx-arm64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-index-cpp-1.4.0-py310h927cc32_3.tar.bz2 - hash: - md5: 2a3b9649127f31cfcf498c4f552fb029 - sha256: e8e524b5a96d3a9cd0259a71565bc0406c730b141b67b1acb7606645665318f4 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 32960 - timestamp: 1675721435171 -- name: ros-humble-ros-workspace - version: 1.0.2 - manager: conda - platform: osx-arm64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ros-workspace-1.0.2-py310h927cc32_3.tar.bz2 - hash: - md5: 09e9fab934e62d76972aa602b0429102 - sha256: e31d71913b4bffecd456ee6dcc340a07b7dc259ba7cede75afde70ba66522146 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 23499 - timestamp: 1675631912192 -- name: ros-humble-desktop - version: 0.10.0 - manager: conda - platform: osx-arm64 - dependencies: - ros-humble-examples-rclpy-minimal-action-client: '*' - python: 3.10.* *_cpython - ros-humble-dummy-sensors: '*' - ros-humble-examples-rclcpp-minimal-action-server: '*' - ros-humble-examples-rclpy-minimal-subscriber: '*' - ros-humble-intra-process-demo: '*' - ros-humble-rqt-common-plugins: '*' - ros-humble-teleop-twist-joy: '*' - ros-humble-examples-rclpy-minimal-action-server: '*' - ros-humble-examples-rclcpp-minimal-client: '*' - ros-humble-turtlesim: '*' - ros-humble-ros-workspace: '*' - ros-humble-teleop-twist-keyboard: '*' - ros-humble-composition: '*' - ros-humble-examples-rclcpp-minimal-subscriber: '*' - ros-humble-dummy-map-server: '*' - ros-humble-examples-rclcpp-minimal-timer: '*' - ros-humble-examples-rclpy-minimal-publisher: '*' - ros-humble-rviz-default-plugins: '*' - ros-humble-rviz2: '*' - ros-humble-examples-rclcpp-minimal-action-client: '*' - ros-humble-quality-of-service-demo-py: '*' - ros-humble-angles: '*' - ros-humble-lifecycle: '*' - ros-humble-demo-nodes-cpp: '*' - ros-humble-image-tools: '*' - ros-humble-action-tutorials-cpp: '*' - ros-humble-demo-nodes-cpp-native: '*' - python_abi: 3.10.* *_cp310 - ros-humble-logging-demo: '*' - ros-humble-quality-of-service-demo-cpp: '*' - ros-humble-joy: '*' - ros-humble-examples-rclcpp-minimal-composition: '*' - ros-humble-ros-base: '*' - ros-humble-action-tutorials-py: '*' - ros-humble-topic-monitor: '*' - ros-humble-examples-rclcpp-minimal-service: '*' - ros-humble-depthimage-to-laserscan: '*' - ros-humble-examples-rclpy-minimal-client: '*' - ros-humble-pendulum-msgs: '*' - ros-humble-examples-rclcpp-minimal-publisher: '*' - ros-humble-examples-rclpy-minimal-service: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-examples-rclpy-executors: '*' - ros-humble-examples-rclcpp-multithreaded-executor: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-action-tutorials-interfaces: '*' - ros-humble-demo-nodes-py: '*' - ros-humble-dummy-robot-bringup: '*' - ros-humble-pcl-conversions: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-desktop-0.10.0-py310h927cc32_3.tar.bz2 - hash: - md5: 01b6f255be62efbd93e883c2c5bc7813 - sha256: eaa9a6b0c972472c3ebc48566f61e086a28928a5037ce54c166021fb55967a71 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 15735 - timestamp: 1675889259823 -- name: ros-humble-builtin-interfaces - version: 1.2.1 - manager: conda - platform: osx-arm64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-builtin-interfaces-1.2.1-py310h927cc32_3.tar.bz2 - hash: - md5: 12fa7949bd961b7ff076c1b1452957ef - sha256: b90d1b7f6010d584f4283ff7b171cbd1c8234d938e76d0fda09988583af8ad06 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 53249 - timestamp: 1675736170368 -- name: ros-humble-rosidl-runtime-cpp - version: 3.1.4 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-cpp-3.1.4-py310h927cc32_3.tar.bz2 - hash: - md5: f295316439fc35f0c9e99190dd1a494e - sha256: 4f026bfd697c5a7ff091fad10f58d84e25cbe780bb232ab92ee6818c1963f7b1 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 20540 - timestamp: 1675726124566 -- name: ros-humble-rosidl-typesupport-c - version: 2.0.0 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rosidl-typesupport-interface: '*' - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' - ros-humble-rcutils: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rosidl-typesupport-introspection-c: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-c-2.0.0-py310h927cc32_3.tar.bz2 - hash: - md5: cf18272d156237e39c8c73bc43023405 - sha256: 020e36c899d198e218d3b1af4a75733e6a71c56c4bea98478ee9e89cdb282ae7 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 30519 - timestamp: 1675734640965 -- name: ros-humble-rosidl-typesupport-cpp - version: 2.0.0 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' - ros-humble-rcutils: '*' - ros-humble-rosidl-typesupport-interface: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rosidl-typesupport-c: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-cpp-2.0.0-py310h927cc32_3.tar.bz2 - hash: - md5: 63cae3439b7fe5e66d9c21352384e611 - sha256: 8166500ab9a69b394c8d3fe0cf9a0c68040c9219b54e0876ce43e326e3095298 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 29927 - timestamp: 1675735096089 -- name: ros-humble-rosidl-runtime-c - version: 3.1.4 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-typesupport-interface: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rcutils: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-c-3.1.4-py310h927cc32_3.tar.bz2 - hash: - md5: 6a0648dd7f16b25ad3cf65cbc2a5b757 - sha256: 81cee367699c36969b39ffe8b4d5379c0fb66784b892a254aa1797e8160f9e73 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 29689 - timestamp: 1675725441336 -- name: ros-humble-rosidl-generator-py - version: 0.14.4 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rpyutils: '*' - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-parser: '*' - ros-humble-rosidl-typesupport-interface: '*' - ros-humble-ament-index-python: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-generator-c: '*' - ros-humble-rosidl-typesupport-c: '*' - ros-humble-ament-cmake: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-python-cmake-module: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-generator-py-0.14.4-py310h927cc32_3.tar.bz2 - hash: - md5: f873127109f11a70da249566f527397a - sha256: ac2a7177a32b37e394ebaad6ee93785a7977259f645220eff4af159f0133a714 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 38628 - timestamp: 1675735200297 -- name: ros-humble-rosidl-typesupport-fastrtps-c - version: 2.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-typesupport-interface: '*' - ros-humble-fastcdr: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ros-workspace: '*' - ros-humble-ament-index-python: '*' - ros-humble-ament-cmake-ros: '*' - ros-humble-rmw: '*' - ros-humble-rosidl-generator-c: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-fastrtps-cmake-module: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.0-py310h927cc32_3.tar.bz2 - hash: - md5: 73e58cc4465b5ad49c09e01cb572cb98 - sha256: bfe0ac40f318b6ab654e43512b477c798ac9c21a20ecdfe41f57207c0132cdc0 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 29596 - timestamp: 1675734138569 -- name: ros-humble-rosidl-typesupport-fastrtps-cpp - version: 2.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-typesupport-interface: '*' - ros-humble-fastcdr: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ros-workspace: '*' - ros-humble-ament-index-python: '*' - ros-humble-rosidl-generator-cpp: '*' - ros-humble-ament-cmake-ros: '*' - ros-humble-rmw: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-fastrtps-cmake-module: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.0-py310h927cc32_3.tar.bz2 - hash: - md5: df876776f17d0065eda9ceb1bdc26850 - sha256: 8c21be2cdc6c76afe70749ddf128fe374d3205b3459ee02e6e96220c88db8f75 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 32027 - timestamp: 1675733615373 -- name: ros-humble-rosidl-typesupport-introspection-c - version: 3.1.4 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-parser: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-introspection-c-3.1.4-py310h927cc32_3.tar.bz2 - hash: - md5: 6eab0ce21dab1c88ca8af926071b6d45 - sha256: dd487afcaf1e27e4137ff21704e54207d683ecf2924514dd2b6d4bc8073786ef - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 28527 - timestamp: 1675726494382 -- name: ros-humble-rosidl-typesupport-introspection-cpp - version: 3.1.4 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-parser: '*' - ros-humble-rosidl-typesupport-interface: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ament-cmake: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rosidl-typesupport-introspection-c: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.4-py310h927cc32_3.tar.bz2 - hash: - md5: 6e676104da579df9908bd74898251743 - sha256: 01d5b0873dcfa202bf04eb6c6d48179ece5a16baa81248423ff24938d161015e - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 28665 - timestamp: 1675727255446 -- name: ros-humble-action-msgs - version: 1.2.1 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - ros-humble-unique-identifier-msgs: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-action-msgs-1.2.1-py310h927cc32_3.tar.bz2 - hash: - md5: d506b7122bd435ca9833245117bf8306 - sha256: afada21b3cd93d9802c922c95c6957993c0bf2a2f3573dfd01fed4c264527927 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 86911 - timestamp: 1675737167439 -- name: ros-humble-ament-cmake - version: 1.3.3 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake-gen-version-h: '*' - ros-humble-ament-cmake-python: '*' - ros-humble-ament-cmake-export-link-flags: '*' - ros-humble-ament-cmake-core: '*' - ros-humble-ament-cmake-export-dependencies: '*' - ros-humble-ros-workspace: '*' - ros-humble-ament-cmake-export-include-directories: '*' - ros-humble-ament-cmake-test: '*' - ros-humble-ament-cmake-export-definitions: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-export-libraries: '*' - ros-humble-ament-cmake-export-targets: '*' - cmake: '*' - libcxx: '>=14.0.6' - numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-cmake-libraries: '*' - ros-humble-ament-cmake-target-dependencies: '*' - ros-humble-ament-cmake-version: '*' - ros-humble-ament-cmake-export-interfaces: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-1.3.3-py310h927cc32_3.tar.bz2 - hash: - md5: 2649cb41b692e3e575d5bf8eb6f29886 - sha256: 1ce8efc5d2499722280d0f0774fcff37013131f913b8b221f1ef081465aff177 + md5: 2bba7a538c50ac017804443dd56a1ece + sha256: f20f5cbcc861e4d6cd6f589c658f671cfe843293941fdd0e7ad6167d83b54a06 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11810 - timestamp: 1675639727580 -- name: ros-humble-rcpputils - version: 2.4.0 + size: 1586463 + timestamp: 1675845941128 +- name: ros-humble-rqt-common-plugins + version: 1.2.0 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcutils: '*' + ros-humble-rqt-plot: '*' + ros-humble-rqt-console: '*' + ros-humble-rqt-graph: '*' + ros-humble-rqt-image-view: '*' + ros-humble-rqt-msg: '*' + ros-humble-rqt-publisher: '*' + ros-humble-rqt-service-caller: '*' + ros-humble-rqt-shell: '*' ros-humble-ros-workspace: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcpputils-2.4.0-py310h927cc32_3.tar.bz2 - hash: - md5: 6537548ba99b7ebd824f79bcbb1eed6d - sha256: 38157b3e2fc219a3404380310d22015441515c0b1cbec34478ea8fb8e0b6cd7f - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 50010 - timestamp: 1675725567788 -- name: ros-humble-rcl-action - version: 5.3.2 - manager: conda - platform: osx-arm64 - dependencies: - ros-humble-rosidl-runtime-c: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 + ros-humble-rqt-srv: '*' + ros-humble-rqt-bag: '*' + ros-humble-rqt-topic: '*' + ros-humble-rqt-action: '*' + ros-humble-rqt-reconfigure: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-action-msgs: '*' - ros-humble-rcl: '*' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-action-5.3.2-py310h927cc32_3.tar.bz2 + ros-humble-rqt-bag-plugins: '*' + ros-humble-rqt-py-common: '*' + ros-humble-rqt-py-console: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-common-plugins-1.2.0-py310h927cc32_3.tar.bz2 hash: - md5: 4880406ed176c4e949083c73c1ee625a - sha256: 91e80dfe25b6dee59928f311e9e83a9af9919350e1439b73a8a2cc82e7e13e23 + md5: a5d4a439023a06accd6ff3d47d10e8b7 + sha256: 48c2929168b4e812ed094d3df280cf2e9436c4402357ed29e176a54f58bc93f8 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 50561 - timestamp: 1675746860008 -- name: ros-humble-rcutils - version: 5.1.2 + size: 13832 + timestamp: 1675858190148 +- name: ros-humble-ros-workspace + version: 1.0.2 manager: conda platform: osx-arm64 dependencies: @@ -15624,107 +15147,106 @@ package: libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcutils-5.1.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ros-workspace-1.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 7f6185564190d7a11a92abb5396691b9 - sha256: 045096ee53e23e3529ab4f1d5cb0ec2c9fd4d91294486c971c2b075d7d3828de + md5: 09e9fab934e62d76972aa602b0429102 + sha256: e31d71913b4bffecd456ee6dcc340a07b7dc259ba7cede75afde70ba66522146 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 87842 - timestamp: 1675724272091 -- name: ros-humble-rmw - version: 6.1.1 + size: 23499 + timestamp: 1675631912192 +- name: ros-humble-ros-base + version: 0.10.0 manager: conda platform: osx-arm64 dependencies: + ros-humble-robot-state-publisher: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-kdl-parser: '*' + ros-humble-urdf: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcutils: '*' + ros-humble-geometry2: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-6.1.1-py310h927cc32_3.tar.bz2 + ros-humble-ros-core: '*' + ros-humble-rosbag2: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ros-base-0.10.0-py310h927cc32_3.tar.bz2 hash: - md5: 4c6d1fb1485c2cb5cbe4f990c07efc6f - sha256: bf9dd88c07ab663efeee2558e5dff34a933361c3870d99e046bbd2c8776bcc9e + md5: 9cc7da6640b9d0a7059f0b7aa3381acf + sha256: 2cfb6cf59410407cdacc18453a9af4addefa12ff200acdcfa7b532815bb889c8 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 69496 - timestamp: 1675726359439 -- name: ros-humble-libstatistics-collector - version: 1.3.0 + size: 13151 + timestamp: 1675856733793 +- name: ros-humble-quality-of-service-demo-py + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rosidl-default-runtime: '*' + ros-humble-rclpy: '*' ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcl: '*' ros-humble-ros-workspace: '*' - ros-humble-statistics-msgs: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-libstatistics-collector-1.3.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-quality-of-service-demo-py-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: ae7de02a14f6a69674fb611f46a07e54 - sha256: c32d08a17a0e941656096b43512376cfd150710563ed2dd543979b3bfea5ffa4 + md5: dbe4ad7926899a520afe44993f46dbf8 + sha256: 2cec2c0fe0433af292e7238904f89f6dae529c3359c6465178c4cdd7e1fd7595 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 33097 - timestamp: 1675746573620 -- name: ros-humble-rcl - version: 5.3.2 + size: 22589 + timestamp: 1675748558207 +- name: ros-humble-quality-of-service-demo-cpp + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-tracetools: '*' - ros-humble-rcutils: '*' - ros-humble-rcl-logging-interface: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ros-workspace: '*' - ros-humble-rmw: '*' - ros-humble-rcl-logging-spdlog: '*' + ros-humble-sensor-msgs: '*' + ros-humble-std-msgs: '*' + ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcl-yaml-param-parser: '*' - ros-humble-rmw-implementation: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-5.3.2-py310h927cc32_3.tar.bz2 + ros-humble-launch-ros: '*' + ros-humble-rclcpp-components: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-quality-of-service-demo-cpp-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: f62aa0bd679f29aeda48ba92cc788300 - sha256: 7e9f0222103f8e9925559dc1a541c9fdb84a6c92fd229a58ddb6c2005e375e06 + md5: fc1a850c5473f6a5cf5f667a296bf253 + sha256: 983a1e4e892b4401833f23bba712ce8249e361cb3757acd4348e4b0fa020fe81 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 131749 - timestamp: 1675745323753 -- name: ros-humble-rcl-interfaces - version: 1.2.1 + size: 1000931 + timestamp: 1675757189604 +- name: ros-humble-pendulum-msgs + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: @@ -15736,443 +15258,418 @@ package: libcxx: '>=14.0.6' ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-interfaces-1.2.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pendulum-msgs-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 7ec7c2c1a9e882bcfd50b5e6489b944a - sha256: 130c456de05184ad0f478d73908890da907dbe08f5b92890e2233d2bd792d52c + md5: d48bb43ff551b8c015f57c8dc4c8bc4e + sha256: 25affd4906d1db05835076626f3bbf4cb666db7cd098f72022fd716f33933ad1 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 263286 - timestamp: 1675737880216 -- name: ros-humble-rcl-yaml-param-parser - version: 5.3.2 + size: 66515 + timestamp: 1675737209576 +- name: ros-humble-pcl-conversions + version: 2.4.0 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-std-msgs: '*' + ros-humble-ros-workspace: '*' + xorg-libxext: '*' + ros-humble-rclcpp: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble - yaml: '>=0.2.5,<0.3.0a0' - ros-humble-libyaml-vendor: '*' + ros-humble-message-filters: '*' + pcl: '>=1.12.1,<1.12.2.0a0' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - yaml-cpp: '>=0.7.0,<0.8.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-yaml-param-parser-5.3.2-py310h927cc32_3.tar.bz2 + ros-humble-pcl-msgs: '*' + xorg-libx11: '*' + eigen: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pcl-conversions-2.4.0-py310h9401cb5_3.tar.bz2 hash: - md5: 83627810d6ae37d8a7db05c0035432a8 - sha256: c3d9a1a1bcab2c81afdcaa616f7d903b9abb0d1ae56de63474040947b18dc9c1 + md5: 0f9068166afc2483ba49352728696272 + sha256: b5b216095034bdfa82b69715364a1c0035b72827a40fb4c85e2abcbc1f5610c0 optional: false category: main - build: py310h927cc32_3 + build: py310h9401cb5_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 31728 - timestamp: 1675727383196 -- name: ros-humble-rosgraph-msgs - version: 1.2.1 + size: 20544 + timestamp: 1675772191617 +- name: ros-humble-logging-demo + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-builtin-interfaces: '*' + ros-humble-rclcpp-components: '*' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosgraph-msgs-1.2.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-logging-demo-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 16d24568628a70afda2784a626eee158 - sha256: eb2ce795b20464095ce3742cd59ce17abe29b305b1b03ba0039fdaef3d31bfaa + md5: a0230ad4b23367e960a7f3a774007ce0 + sha256: 71f8c914c5a85750429405c49850d4bcf094ffbd7f949fa7f8af7e07bf27332e optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 46184 - timestamp: 1675737548908 -- name: ros-humble-statistics-msgs - version: 1.2.1 + size: 138786 + timestamp: 1675772510534 +- name: ros-humble-lifecycle + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' + ros-humble-rclcpp-lifecycle: '*' + ros-humble-std-msgs: '*' + ros-humble-lifecycle-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-statistics-msgs-1.2.1-py310h927cc32_3.tar.bz2 - hash: - md5: 5716a3c6d08338f35e488cc9b26c58d3 - sha256: cc2f8a6a793185f1389b1ccfe957912a72b37d4f02fb5cc520ba64c6c4c8dc0b - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 74014 - timestamp: 1675737407331 -- name: ros-humble-tracetools - version: 4.1.1 - manager: conda - platform: osx-arm64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tracetools-4.1.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-lifecycle-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: c0c971dc6112d5c221875ac8560ce818 - sha256: fcea962129890251d74a55cb07763df86ef271964dbbf9295c079dec1d149eb5 + md5: 359259d3bb5e4a35de352f796131bd87 + sha256: aabf57128a259cecf554e3a891d833be307f06eae5e642234bd1d8134149eaf2 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 22253 - timestamp: 1675723412934 -- name: ros-humble-action-tutorials-cpp - version: 0.20.3 + size: 217132 + timestamp: 1675844651839 +- name: ros-humble-joy + version: 3.1.0 manager: conda platform: osx-arm64 dependencies: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclcpp-action: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-sdl2-vendor: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-action-tutorials-interfaces: '*' ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-action-tutorials-cpp-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-joy-3.1.0-py310h927cc32_3.tar.bz2 hash: - md5: 8d23b90504fb65fdd5c3ac66654b4d4e - sha256: 744091dfae908637336c1a2e28967116d0ca5dab93241399d5e1caefd0275ba1 + md5: 603552f53fbc48f0fc82b626bdab0e86 + sha256: 40855bcad3770ef11775e5f8310f2a79782f9df0eeaace5ad9df3ba828d3fb53 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 88136 - timestamp: 1675755968992 -- name: ros-humble-action-tutorials-interfaces + size: 166034 + timestamp: 1675755940097 +- name: ros-humble-intra-process-demo version: 0.20.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' + ros-humble-sensor-msgs: '*' + xorg-libxext: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-action-msgs: '*' + py-opencv: '>=4.6.0,<5.0a0' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-action-tutorials-interfaces-0.20.3-py310h927cc32_3.tar.bz2 + xorg-libx11: '*' + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-intra-process-demo-0.20.3-py310hdd2ad31_3.tar.bz2 hash: - md5: f7571ec3c46ee42a2748cce55965d2ee - sha256: 2994e83f7f3ebaad4be1770b863daea63f88962178cbc937568379bfafdf459f + md5: 47c838a9d0e07bed246871c0e079cd97 + sha256: 86db7060cf4baa591a2332a1f2435a542f80a5c2ae4223e8abf45f693ca84a3d optional: false category: main - build: py310h927cc32_3 + build: py310hdd2ad31_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 98099 - timestamp: 1675739051817 -- name: ros-humble-action-tutorials-py + size: 722209 + timestamp: 1675749035457 +- name: ros-humble-image-tools version: 0.20.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' + ros-humble-sensor-msgs: '*' + xorg-libxext: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-action-tutorials-interfaces: '*' + py-opencv: '>=4.6.0,<5.0a0' + ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-action-tutorials-py-0.20.3-py310h927cc32_3.tar.bz2 + xorg-libx11: '*' + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-image-tools-0.20.3-py310hdd2ad31_3.tar.bz2 hash: - md5: 07f066c8dc83396712ae1213cce412ac - sha256: 54a25f817cc7f1a9d1cd6cb743edf9887f6c8c0ade97bfec6481965d0c05f687 + md5: 8acbd8ec00108ce2af67fdf64d032201 + sha256: 987b3b67d7f349724a309bd2ce2b44ed72f79ed024370a40e60c26dec7a94a48 optional: false category: main - build: py310h927cc32_3 + build: py310hdd2ad31_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12719 - timestamp: 1675749546810 -- name: ros-humble-angles - version: 1.15.0 + size: 235313 + timestamp: 1675772779086 +- name: ros-humble-examples-rclpy-minimal-subscriber + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros-humble-ros-workspace: '*' + ros-humble-rclpy: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-angles-1.15.0-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-subscriber-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 98f0b019d0e5ad3bdecb8c3eca0daa24 - sha256: 1481e68e9b4d30e30c0368d05356b777eb7fbed86e03dce9be1c4f6ffb3b06b1 + md5: 8d40e5cf07fb5f7a4ff15b9e6d262c25 + sha256: 1d4ef1f316f1638e1590fc0af329d34a2dc26395ca698b0120a1c6d32c79654a optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 20848 - timestamp: 1675640841640 -- name: ros-humble-composition - version: 0.20.3 + size: 12314 + timestamp: 1675749133699 +- name: ros-humble-examples-rclpy-minimal-service + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' ros-humble-std-msgs: '*' ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-launch-ros: '*' - ros-humble-rclcpp-components: '*' - ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-composition-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-service-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 9969e3074c88df5ccc985f3a176dccd2 - sha256: 190472413f4d8ba6e9e7accf8ae7b9fcd18aa656aace77b3e19ee5e50e73d617 + md5: a4ec27fc4bff6c0fafbdd37caa93536b + sha256: fcfaad16ebc49f3a03a8f4d16c009f4ba8f9ec837c07f1c6a16a7a47898cb526 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 321430 - timestamp: 1675773099752 -- name: ros-humble-demo-nodes-cpp - version: 0.20.3 + size: 11686 + timestamp: 1675749220803 +- name: ros-humble-examples-rclpy-minimal-publisher + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rclpy: '*' ros-humble-std-msgs: '*' - ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-launch-ros: '*' - ros-humble-launch-xml: '*' - ros-humble-rclcpp-components: '*' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-demo-nodes-cpp-0.20.3-py310h927cc32_3.tar.bz2 + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-publisher-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 414649263d7f1d5719a5aab49ce99023 - sha256: d40408804c24bed784e166e952e7b8f452d6d8a538f0bb1ff53232197b464862 + md5: 092a19722a5ae483692a728bd4529c9a + sha256: 3d817ef4ace10bdccb63accf29c8df852a119ad952ff25f436c1df5dcf55a44c optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 864324 - timestamp: 1675772899153 -- name: ros-humble-demo-nodes-cpp-native - version: 0.20.3 + size: 12682 + timestamp: 1675749305710 +- name: ros-humble-examples-rclpy-minimal-client + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rmw-fastrtps-cpp: '*' + ros-humble-rclpy: '*' ros-humble-std-msgs: '*' + ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-demo-nodes-cpp-native-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-client-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 1ffdb9668993329f6452120fca1388a5 - sha256: 48b2cce9ee71ac84a8df747cafd0a561f676be5d928a6fd98b5b5bdd5cd85ba3 + md5: 8446c6a2b120eddccc5af1e3477c35b5 + sha256: 2886d78082f5476fd6efd09671fdc75f8ebf1474df96e89af62513f675911941 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 84156 - timestamp: 1675772960137 -- name: ros-humble-demo-nodes-py - version: 0.20.3 + size: 13969 + timestamp: 1675749398010 +- name: ros-humble-examples-rclpy-minimal-action-server + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' - ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-demo-nodes-py-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-action-server-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 9a11425945aec39bc91ec7ea7587ada5 - sha256: 89b7be8c37cb2192e07079deb2da44ea5fadbf457d9a9560bc8822896c01798f + md5: 1898742134ee35856ce91698f880c60a + sha256: 8c95415978a60324b9a746f4929981fb2585b4c17f114c0eced172b0f1b28b73 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 17830 - timestamp: 1675748480094 -- name: ros-humble-depthimage-to-laserscan - version: 2.5.0 + size: 17219 + timestamp: 1675749028109 +- name: ros-humble-examples-rclpy-minimal-action-client + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' - xorg-libx11: '*' - xorg-libxext: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - py-opencv: '>=4.6.0,<5.0a0' - ros-humble-image-geometry: '*' - ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-depthimage-to-laserscan-2.5.0-py310hdd2ad31_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-action-client-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 1a1b91ffe7d300af9fa7ddcaf2a6a1f4 - sha256: c4c8ed8bccb157f0ac2a8eedc68b6d59a6626df6d0ae55149e0d04aa7b26ad87 + md5: 84e8b8cd5442af2bf13507664adb5bb9 + sha256: e4baba906b1924eb37974d8d3ad52c74cb7afae880d2476ad7c6fb79e93330f4 optional: false category: main - build: py310hdd2ad31_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 192141 - timestamp: 1675756732923 -- name: ros-humble-dummy-map-server - version: 0.20.3 + size: 16015 + timestamp: 1675749138557 +- name: ros-humble-examples-rclpy-executors + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-nav-msgs: '*' + ros-humble-rclpy: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-dummy-map-server-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-executors-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: bcc872325c9c41937ef34fa71148c853 - sha256: 25456868f3f65328dc5f8191981f4e010bc987c7f9fbff096b4f18b0fe998f09 + md5: dabc0d4e779163806fd43cf663c2b0fa + sha256: fe22a53d57f7a2a837e38c0f701ddb47ae6a6f363944fc82006142a734d11963 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 64412 - timestamp: 1675748397749 -- name: ros-humble-dummy-robot-bringup - version: 0.20.3 + size: 18024 + timestamp: 1675749250667 +- name: ros-humble-examples-rclcpp-multithreaded-executor + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-robot-state-publisher: '*' + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-dummy-map-server: '*' - ros-humble-dummy-sensors: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' - ros-humble-launch: '*' - ros-humble-launch-ros: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-dummy-robot-bringup-0.20.3-py310h927cc32_3.tar.bz2 - hash: - md5: fb4981b67569454fc2ee184bf87bfe16 - sha256: dacef08f587869796672ac50bae79b54e69c9f98ad919084551e7aa3a13f7979 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.1-py310h927cc32_3.tar.bz2 + hash: + md5: 42aa4e954dcbde64bd72b7ad0ea13ded + sha256: 04dc8ad24386981a61fc50583203919caf49222cea405212111b438995af73e6 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 16032 - timestamp: 1675832252036 -- name: ros-humble-dummy-sensors - version: 0.20.3 + size: 129959 + timestamp: 1675749476497 +- name: ros-humble-examples-rclcpp-minimal-timer + version: 0.15.1 manager: conda platform: osx-arm64 dependencies: ros-humble-rclcpp: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-dummy-sensors-0.20.3-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-timer-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 7a7787cb3cfc2442b48a5cb8021b1e75 - sha256: 3e1804486ee74a0929b9e8b0dd9ba74c992cc00a41c5ed5e67caacb6bdc98e7b + md5: ca0b47998ae1ea534f97fca9be0f8b53 + sha256: dad785ef20d694a3489f77de5889e0fa55b299a98c657be51a2d0769f7d06814 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 91393 - timestamp: 1675748241882 -- name: ros-humble-examples-rclcpp-minimal-action-client + size: 25538 + timestamp: 1675749680155 +- name: ros-humble-examples-rclcpp-minimal-subscriber version: 0.15.1 manager: conda platform: osx-arm64 @@ -16180,25 +15677,25 @@ package: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclcpp-action: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-action-client-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: a766266deed6555afe2a871fab77f81f - sha256: d5d6ddcf693999cac803877d5384bb3a03fbf284b7435db898b290972545cc0b + md5: 3208f6a79d390726ddf86ab89148586a + sha256: 686b4b188036250657597dc084319be4c6386d280c96f22726d4811c4ff754b2 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 101455 - timestamp: 1675756475559 -- name: ros-humble-examples-rclcpp-minimal-action-server + size: 896058 + timestamp: 1675755939451 +- name: ros-humble-examples-rclcpp-minimal-service version: 0.15.1 manager: conda platform: osx-arm64 @@ -16206,25 +15703,24 @@ package: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclcpp-action: '*' ros2-distro-mutex: 0.3.* humble ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-action-server-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-service-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: e7bf7924b80ea1ca812520b8e3af75b3 - sha256: 3770a071b4e2c7af782c42a7a71a9e3d29461aecfd7ed223045a9dab8543e400 + md5: 50b147b4e3051cd8d73c29318c6916fa + sha256: 9f83362c1ddf395e9b9ebefa5e73dd1ba1aa7a60a60c56981cf6a53eb6c00df3 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 55461 - timestamp: 1675756299349 -- name: ros-humble-examples-rclcpp-minimal-client + size: 30986 + timestamp: 1675749108574 +- name: ros-humble-examples-rclcpp-minimal-publisher version: 0.15.1 manager: conda platform: osx-arm64 @@ -16232,23 +15728,23 @@ package: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-client-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-publisher-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 2aa68e009eeaac15a062110bfda1a6e6 - sha256: 2195e743ad534e6ba86a3c9b2716b092b22123b74acedfcfb9ab04b6cacb51a7 + md5: 131e23452dd77d9d805ddbc5f8a7cfef + sha256: b6567dba5d2fbd703aded7cb96090f172943a1c1f07b655a2659739b840092c0 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 33422 - timestamp: 1675749440354 + size: 215247 + timestamp: 1675749290577 - name: ros-humble-examples-rclcpp-minimal-composition version: 0.15.1 manager: conda @@ -16275,7 +15771,7 @@ package: build_number: 3 size: 140267 timestamp: 1675756131702 -- name: ros-humble-examples-rclcpp-minimal-publisher +- name: ros-humble-examples-rclcpp-minimal-client version: 0.15.1 manager: conda platform: osx-arm64 @@ -16283,24 +15779,24 @@ package: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-publisher-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-client-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 131e23452dd77d9d805ddbc5f8a7cfef - sha256: b6567dba5d2fbd703aded7cb96090f172943a1c1f07b655a2659739b840092c0 + md5: 2aa68e009eeaac15a062110bfda1a6e6 + sha256: 2195e743ad534e6ba86a3c9b2716b092b22123b74acedfcfb9ab04b6cacb51a7 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 215247 - timestamp: 1675749290577 -- name: ros-humble-examples-rclcpp-minimal-service + size: 33422 + timestamp: 1675749440354 +- name: ros-humble-examples-rclcpp-minimal-action-server version: 0.15.1 manager: conda platform: osx-arm64 @@ -16308,24 +15804,25 @@ package: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rclcpp-action: '*' ros2-distro-mutex: 0.3.* humble ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-service-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-action-server-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 50b147b4e3051cd8d73c29318c6916fa - sha256: 9f83362c1ddf395e9b9ebefa5e73dd1ba1aa7a60a60c56981cf6a53eb6c00df3 + md5: e7bf7924b80ea1ca812520b8e3af75b3 + sha256: 3770a071b4e2c7af782c42a7a71a9e3d29461aecfd7ed223045a9dab8543e400 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 30986 - timestamp: 1675749108574 -- name: ros-humble-examples-rclcpp-minimal-subscriber + size: 55461 + timestamp: 1675756299349 +- name: ros-humble-examples-rclcpp-minimal-action-client version: 0.15.1 manager: conda platform: osx-arm64 @@ -16333,573 +15830,620 @@ package: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-std-msgs: '*' + ros-humble-rclcpp-action: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-action-client-0.15.1-py310h927cc32_3.tar.bz2 hash: - md5: 3208f6a79d390726ddf86ab89148586a - sha256: 686b4b188036250657597dc084319be4c6386d280c96f22726d4811c4ff754b2 + md5: a766266deed6555afe2a871fab77f81f + sha256: d5d6ddcf693999cac803877d5384bb3a03fbf284b7435db898b290972545cc0b optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 896058 - timestamp: 1675755939451 -- name: ros-humble-examples-rclcpp-minimal-timer - version: 0.15.1 + size: 101455 + timestamp: 1675756475559 +- name: ros-humble-dummy-sensors + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: ros-humble-rclcpp: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-timer-0.15.1-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-dummy-sensors-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: ca0b47998ae1ea534f97fca9be0f8b53 - sha256: dad785ef20d694a3489f77de5889e0fa55b299a98c657be51a2d0769f7d06814 + md5: 7a7787cb3cfc2442b48a5cb8021b1e75 + sha256: 3e1804486ee74a0929b9e8b0dd9ba74c992cc00a41c5ed5e67caacb6bdc98e7b optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 25538 - timestamp: 1675749680155 -- name: ros-humble-examples-rclcpp-multithreaded-executor - version: 0.15.1 + size: 91393 + timestamp: 1675748241882 +- name: ros-humble-dummy-robot-bringup + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' + ros-humble-robot-state-publisher: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-std-msgs: '*' + ros-humble-dummy-map-server: '*' + ros-humble-dummy-sensors: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-ament-index-python: '*' + ros-humble-launch: '*' + ros-humble-launch-ros: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-dummy-robot-bringup-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 42aa4e954dcbde64bd72b7ad0ea13ded - sha256: 04dc8ad24386981a61fc50583203919caf49222cea405212111b438995af73e6 + md5: fb4981b67569454fc2ee184bf87bfe16 + sha256: dacef08f587869796672ac50bae79b54e69c9f98ad919084551e7aa3a13f7979 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 129959 - timestamp: 1675749476497 -- name: ros-humble-examples-rclpy-executors - version: 0.15.1 + size: 16032 + timestamp: 1675832252036 +- name: ros-humble-dummy-map-server + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' + ros-humble-nav-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-executors-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-dummy-map-server-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: dabc0d4e779163806fd43cf663c2b0fa - sha256: fe22a53d57f7a2a837e38c0f701ddb47ae6a6f363944fc82006142a734d11963 + md5: bcc872325c9c41937ef34fa71148c853 + sha256: 25456868f3f65328dc5f8191981f4e010bc987c7f9fbff096b4f18b0fe998f09 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 18024 - timestamp: 1675749250667 -- name: ros-humble-examples-rclpy-minimal-action-client - version: 0.15.1 + size: 64412 + timestamp: 1675748397749 +- name: ros-humble-depthimage-to-laserscan + version: 2.5.0 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' + ros-humble-sensor-msgs: '*' + xorg-libx11: '*' + xorg-libxext: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + py-opencv: '>=4.6.0,<5.0a0' + ros-humble-image-geometry: '*' + ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-action-client-0.15.1-py310h927cc32_3.tar.bz2 + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-depthimage-to-laserscan-2.5.0-py310hdd2ad31_3.tar.bz2 hash: - md5: 84e8b8cd5442af2bf13507664adb5bb9 - sha256: e4baba906b1924eb37974d8d3ad52c74cb7afae880d2476ad7c6fb79e93330f4 + md5: 1a1b91ffe7d300af9fa7ddcaf2a6a1f4 + sha256: c4c8ed8bccb157f0ac2a8eedc68b6d59a6626df6d0ae55149e0d04aa7b26ad87 optional: false category: main - build: py310h927cc32_3 + build: py310hdd2ad31_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 16015 - timestamp: 1675749138557 -- name: ros-humble-examples-rclpy-minimal-action-server - version: 0.15.1 + size: 192141 + timestamp: 1675756732923 +- name: ros-humble-demo-nodes-py + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-rclpy: '*' - ros2-distro-mutex: 0.3.* humble + ros-humble-std-msgs: '*' ros-humble-example-interfaces: '*' + ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-action-server-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-demo-nodes-py-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 1898742134ee35856ce91698f880c60a - sha256: 8c95415978a60324b9a746f4929981fb2585b4c17f114c0eced172b0f1b28b73 + md5: 9a11425945aec39bc91ec7ea7587ada5 + sha256: 89b7be8c37cb2192e07079deb2da44ea5fadbf457d9a9560bc8822896c01798f optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 17219 - timestamp: 1675749028109 -- name: ros-humble-examples-rclpy-minimal-client - version: 0.15.1 + size: 17830 + timestamp: 1675748480094 +- name: ros-humble-demo-nodes-cpp-native + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' + ros-humble-rmw-fastrtps-cpp: '*' ros-humble-std-msgs: '*' - ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-client-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-demo-nodes-cpp-native-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 8446c6a2b120eddccc5af1e3477c35b5 - sha256: 2886d78082f5476fd6efd09671fdc75f8ebf1474df96e89af62513f675911941 + md5: 1ffdb9668993329f6452120fca1388a5 + sha256: 48b2cce9ee71ac84a8df747cafd0a561f676be5d928a6fd98b5b5bdd5cd85ba3 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13969 - timestamp: 1675749398010 -- name: ros-humble-examples-rclpy-minimal-publisher - version: 0.15.1 + size: 84156 + timestamp: 1675772960137 +- name: ros-humble-demo-nodes-cpp + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' + ros-humble-ros-workspace: '*' ros-humble-std-msgs: '*' + ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-publisher-0.15.1-py310h927cc32_3.tar.bz2 + ros-humble-launch-ros: '*' + ros-humble-launch-xml: '*' + ros-humble-rclcpp-components: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-demo-nodes-cpp-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 092a19722a5ae483692a728bd4529c9a - sha256: 3d817ef4ace10bdccb63accf29c8df852a119ad952ff25f436c1df5dcf55a44c + md5: 414649263d7f1d5719a5aab49ce99023 + sha256: d40408804c24bed784e166e952e7b8f452d6d8a538f0bb1ff53232197b464862 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12682 - timestamp: 1675749305710 -- name: ros-humble-examples-rclpy-minimal-service - version: 0.15.1 + size: 864324 + timestamp: 1675772899153 +- name: ros-humble-composition + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' ros-humble-std-msgs: '*' ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-launch-ros: '*' + ros-humble-rclcpp-components: '*' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-service-0.15.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-composition-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: a4ec27fc4bff6c0fafbdd37caa93536b - sha256: fcfaad16ebc49f3a03a8f4d16c009f4ba8f9ec837c07f1c6a16a7a47898cb526 + md5: 9969e3074c88df5ccc985f3a176dccd2 + sha256: 190472413f4d8ba6e9e7accf8ae7b9fcd18aa656aace77b3e19ee5e50e73d617 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11686 - timestamp: 1675749220803 -- name: ros-humble-examples-rclpy-minimal-subscriber - version: 0.15.1 + size: 321430 + timestamp: 1675773099752 +- name: ros-humble-angles + version: 1.15.0 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-subscriber-0.15.1-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-angles-1.15.0-py310h927cc32_3.tar.bz2 hash: - md5: 8d40e5cf07fb5f7a4ff15b9e6d262c25 - sha256: 1d4ef1f316f1638e1590fc0af329d34a2dc26395ca698b0120a1c6d32c79654a + md5: 98f0b019d0e5ad3bdecb8c3eca0daa24 + sha256: 1481e68e9b4d30e30c0368d05356b777eb7fbed86e03dce9be1c4f6ffb3b06b1 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12314 - timestamp: 1675749133699 -- name: ros-humble-image-tools + size: 20848 + timestamp: 1675640841640 +- name: ros-humble-action-tutorials-py version: 0.20.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' - xorg-libxext: '*' - ros-humble-std-msgs: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - py-opencv: '>=4.6.0,<5.0a0' - ros-humble-rclcpp-components: '*' + ros-humble-action-tutorials-interfaces: '*' ros-humble-ros-workspace: '*' - xorg-libx11: '*' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-image-tools-0.20.3-py310hdd2ad31_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-action-tutorials-py-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 8acbd8ec00108ce2af67fdf64d032201 - sha256: 987b3b67d7f349724a309bd2ce2b44ed72f79ed024370a40e60c26dec7a94a48 + md5: 07f066c8dc83396712ae1213cce412ac + sha256: 54a25f817cc7f1a9d1cd6cb743edf9887f6c8c0ade97bfec6481965d0c05f687 optional: false category: main - build: py310hdd2ad31_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 235313 - timestamp: 1675772779086 -- name: ros-humble-intra-process-demo + size: 12719 + timestamp: 1675749546810 +- name: ros-humble-action-tutorials-interfaces version: 0.20.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' - xorg-libxext: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - py-opencv: '>=4.6.0,<5.0a0' + ros-humble-action-msgs: '*' ros-humble-ros-workspace: '*' - xorg-libx11: '*' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-intra-process-demo-0.20.3-py310hdd2ad31_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-action-tutorials-interfaces-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 47c838a9d0e07bed246871c0e079cd97 - sha256: 86db7060cf4baa591a2332a1f2435a542f80a5c2ae4223e8abf45f693ca84a3d + md5: f7571ec3c46ee42a2748cce55965d2ee + sha256: 2994e83f7f3ebaad4be1770b863daea63f88962178cbc937568379bfafdf459f optional: false category: main - build: py310hdd2ad31_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 722209 - timestamp: 1675749035457 -- name: ros-humble-joy - version: 3.1.0 + size: 98099 + timestamp: 1675739051817 +- name: ros-humble-action-tutorials-cpp + version: 0.20.3 manager: conda platform: osx-arm64 dependencies: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' + ros-humble-rclcpp-action: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-sdl2-vendor: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-action-tutorials-interfaces: '*' ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-joy-3.1.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-action-tutorials-cpp-0.20.3-py310h927cc32_3.tar.bz2 hash: - md5: 603552f53fbc48f0fc82b626bdab0e86 - sha256: 40855bcad3770ef11775e5f8310f2a79782f9df0eeaace5ad9df3ba828d3fb53 + md5: 8d23b90504fb65fdd5c3ac66654b4d4e + sha256: 744091dfae908637336c1a2e28967116d0ca5dab93241399d5e1caefd0275ba1 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 166034 - timestamp: 1675755940097 -- name: ros-humble-lifecycle - version: 0.20.3 + size: 88136 + timestamp: 1675755968992 +- name: ros-humble-turtlesim + version: 1.4.2 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp-action: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclcpp-lifecycle: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-rosidl-default-runtime: '*' ros-humble-std-msgs: '*' - ros-humble-lifecycle-msgs: '*' + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-ros-workspace: '*' + ros-humble-std-srvs: '*' + xorg-libxext: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-lifecycle-0.20.3-py310h927cc32_3.tar.bz2 + xorg-libx11: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-turtlesim-1.4.2-py310h927cc32_3.tar.bz2 hash: - md5: 359259d3bb5e4a35de352f796131bd87 - sha256: aabf57128a259cecf554e3a891d833be307f06eae5e642234bd1d8134149eaf2 + md5: a9c2ea12df6850e6b145db84cfb7fe0a + sha256: 399767171456dec468d04cec10b80219d81d2f5912db0c573e8d05e77641e7e2 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 217132 - timestamp: 1675844651839 -- name: ros-humble-logging-demo - version: 0.20.3 + size: 702233 + timestamp: 1675756730498 +- name: ros-humble-std-msgs + version: 4.2.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rclcpp-components: '*' - ros-humble-rcutils: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-logging-demo-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-std-msgs-4.2.3-py310h927cc32_3.tar.bz2 hash: - md5: a0230ad4b23367e960a7f3a774007ce0 - sha256: 71f8c914c5a85750429405c49850d4bcf094ffbd7f949fa7f8af7e07bf27332e + md5: aa7ce44fd22829455a5741de4499d69d + sha256: e33fc2936877f65b030d402e66175fdb84e3e9d03efdfeb105227416ec479f8d optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 138786 - timestamp: 1675772510534 -- name: ros-humble-pcl-conversions - version: 2.4.0 + size: 239359 + timestamp: 1675737246955 +- name: ros-humble-rclpy + version: 3.3.7 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-std-msgs: '*' + ros-humble-rcl-action: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-rosgraph-msgs: '*' + ros-humble-rpyutils: '*' + ros-humble-rcl-lifecycle: '*' + ros-humble-rcl-logging-interface: '*' + ros-humble-rmw: '*' + ros-humble-ament-index-python: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - xorg-libxext: '*' - ros-humble-rclcpp: '*' - ros-humble-sensor-msgs: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-unique-identifier-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-message-filters: '*' - pcl: '>=1.12.1,<1.12.2.0a0' + ros-humble-rcl-yaml-param-parser: '*' + ros-humble-rmw-implementation: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-pcl-msgs: '*' - xorg-libx11: '*' - eigen: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pcl-conversions-2.4.0-py310h9401cb5_3.tar.bz2 + ros-humble-rcl: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclpy-3.3.7-py310h927cc32_3.tar.bz2 hash: - md5: 0f9068166afc2483ba49352728696272 - sha256: b5b216095034bdfa82b69715364a1c0035b72827a40fb4c85e2abcbc1f5610c0 + md5: 2e552866147251212cc944c012136ffd + sha256: 5cc3cc6241d2a50ee18ae8f533e0eeeb6186ca4410e9a8ccc9a03738701737ec optional: false category: main - build: py310h9401cb5_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 20544 - timestamp: 1675772191617 -- name: ros-humble-pendulum-msgs - version: 0.20.3 + size: 497091 + timestamp: 1675747761291 +- name: ros-humble-launch-ros + version: 0.19.4 manager: conda platform: osx-arm64 dependencies: + importlib-metadata: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' + ros-humble-composition-interfaces: '*' + ros-humble-osrf-pycommon: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-lifecycle-msgs: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-builtin-interfaces: '*' + pyyaml: '*' + ros-humble-ament-index-python: '*' + ros-humble-launch: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pendulum-msgs-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-launch-ros-0.19.4-py310h927cc32_3.tar.bz2 hash: - md5: d48bb43ff551b8c015f57c8dc4c8bc4e - sha256: 25affd4906d1db05835076626f3bbf4cb666db7cd098f72022fd716f33933ad1 + md5: 072fd70334526393f8ae19e64970113d + sha256: a0658e08e78cbbb5bb864bc28971fdd18e8a943bbb0d1524a13d457d0b16879f optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 66515 - timestamp: 1675737209576 -- name: ros-humble-quality-of-service-demo-cpp - version: 0.20.3 + size: 65502 + timestamp: 1675748554673 +- name: ros-humble-launch + version: 1.0.4 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' + importlib-metadata: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' + ros-humble-osrf-pycommon: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + lark-parser: '*' + libcxx: '>=14.0.6' + pyyaml: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-launch-1.0.4-py310h927cc32_3.tar.bz2 + hash: + md5: b9a5e6e30f46a38a0f856865a093ec14 + sha256: 2fd12f52df69e300bc5a47e6c585a40e444c400d59a2d4e2c302e2d3fc0955eb + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 143014 + timestamp: 1675640631166 +- name: ros-humble-geometry-msgs + version: 4.2.3 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-default-runtime: '*' ros-humble-std-msgs: '*' - ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-launch-ros: '*' - ros-humble-rclcpp-components: '*' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-quality-of-service-demo-cpp-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-geometry-msgs-4.2.3-py310h927cc32_3.tar.bz2 hash: - md5: fc1a850c5473f6a5cf5f667a296bf253 - sha256: 983a1e4e892b4401833f23bba712ce8249e361cb3757acd4348e4b0fa020fe81 + md5: eb0f0578adf4dfc003aed7b15e2ad941 + sha256: d238099739921d2e5001ca89b2af511940dfa99734770230024f2746697d8d9e optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 1000931 - timestamp: 1675757189604 -- name: ros-humble-quality-of-service-demo-py - version: 0.20.3 + size: 233285 + timestamp: 1675739115452 +- name: ros-humble-rclcpp + version: 16.0.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-statistics-msgs: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-rcpputils: '*' + ros-humble-rosgraph-msgs: '*' + ros-humble-tracetools: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-rosidl-typesupport-c: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-quality-of-service-demo-py-0.20.3-py310h927cc32_3.tar.bz2 + ros-humble-rcl: '*' + ros-humble-rcl-yaml-param-parser: '*' + ros-humble-rosidl-typesupport-cpp: '*' + ros-humble-libstatistics-collector: '*' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclcpp-16.0.3-py310h927cc32_3.tar.bz2 hash: - md5: dbe4ad7926899a520afe44993f46dbf8 - sha256: 2cec2c0fe0433af292e7238904f89f6dae529c3359c6465178c4cdd7e1fd7595 + md5: 289d402d810afc0e1e7e394b24cbe500 + sha256: 99551ea63530abd0d8a90a01b2841d9876f18b20222c3576b68196488cc3eed5 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 22589 - timestamp: 1675748558207 -- name: ros-humble-ros-base - version: 0.10.0 + size: 660797 + timestamp: 1675747433833 +- name: ros-humble-rclcpp-components + version: 16.0.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-robot-state-publisher: '*' + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-kdl-parser: '*' - ros-humble-urdf: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-composition-interfaces: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-geometry2: '*' ros-humble-ros-workspace: '*' - ros-humble-ros-core: '*' - ros-humble-rosbag2: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ros-base-0.10.0-py310h927cc32_3.tar.bz2 + ros-humble-class-loader: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclcpp-components-16.0.3-py310h927cc32_3.tar.bz2 hash: - md5: 9cc7da6640b9d0a7059f0b7aa3381acf - sha256: 2cfb6cf59410407cdacc18453a9af4addefa12ff200acdcfa7b532815bb889c8 + md5: 0e45b3185e4df84c4a294f5a58d168d7 + sha256: e8e20141b09d4c5edaf877831dd3d5f4646a8f40410efdd6bdf078e332e4d27e optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13151 - timestamp: 1675856733793 -- name: ros-humble-rqt-common-plugins - version: 1.2.0 + size: 95567 + timestamp: 1675748966795 +- name: ros-humble-sensor-msgs + version: 4.2.3 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rqt-plot: '*' - ros-humble-rqt-console: '*' - ros-humble-rqt-graph: '*' - ros-humble-rqt-image-view: '*' - ros-humble-rqt-msg: '*' - ros-humble-rqt-publisher: '*' - ros-humble-rqt-service-caller: '*' - ros-humble-rqt-shell: '*' - ros-humble-ros-workspace: '*' - ros-humble-rqt-srv: '*' - ros-humble-rqt-bag: '*' - ros-humble-rqt-topic: '*' - ros-humble-rqt-action: '*' - ros-humble-rqt-reconfigure: '*' + ros-humble-geometry-msgs: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rqt-bag-plugins: '*' - ros-humble-rqt-py-common: '*' - ros-humble-rqt-py-console: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-common-plugins-1.2.0-py310h927cc32_3.tar.bz2 + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-sensor-msgs-4.2.3-py310h927cc32_3.tar.bz2 hash: - md5: a5d4a439023a06accd6ff3d47d10e8b7 - sha256: 48c2929168b4e812ed094d3df280cf2e9436c4402357ed29e176a54f58bc93f8 + md5: 543dbf46a42580047dee286de42623fa + sha256: 212526768b2aee28bdaeef0a1e3728cf88bd4e99f975af62ed840a9f52bec300 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13832 - timestamp: 1675858190148 -- name: ros-humble-rviz-default-plugins + size: 354426 + timestamp: 1675740645531 +- name: ros-humble-rviz-common version: 11.2.5 manager: conda platform: osx-arm64 @@ -16908,991 +16452,1123 @@ package: python_abi: 3.10.* *_cp310 ros-humble-tf2: '*' ros-humble-tf2-ros: '*' - ros-humble-urdf: '*' + ros-humble-std-msgs: '*' qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-ignition-math6-vendor: '*' - ros-humble-interactive-markers: '*' + ros-humble-urdf: '*' + ros-humble-rviz-rendering: '*' ros-humble-pluginlib: '*' - ros-humble-image-transport: '*' ros-humble-resource-retriever: '*' + ros-humble-ros-workspace: '*' ros-humble-rclcpp: '*' ros-humble-geometry-msgs: '*' - ros-humble-nav-msgs: '*' - ros-humble-ros-workspace: '*' - ros-humble-laser-geometry: '*' - ros-humble-rviz-rendering: '*' + ros-humble-sensor-msgs: '*' ros-humble-tf2-geometry-msgs: '*' + ros-humble-yaml-cpp-vendor: '*' + xorg-libxext: '*' + ros-humble-tinyxml2-vendor: '*' + ros-humble-message-filters: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-map-msgs: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rviz-common: '*' ros-humble-rviz-ogre-vendor: '*' - ros-humble-visualization-msgs: '*' xorg-libx11: '*' - xorg-libxext: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-default-plugins-11.2.5-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-common-11.2.5-py310h927cc32_3.tar.bz2 hash: - md5: 2bba7a538c50ac017804443dd56a1ece - sha256: f20f5cbcc861e4d6cd6f589c658f671cfe843293941fdd0e7ad6167d83b54a06 + md5: 603ed5b105b4f9d6e63bf698c8d258c7 + sha256: 0d24033b37d79c9372c269b34d9d4c94d3efdf5bb428490af01b171976aa3a20 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 1586463 - timestamp: 1675845941128 -- name: ros-humble-rviz2 + size: 621012 + timestamp: 1675832688484 +- name: ros-humble-rviz-ogre-vendor version: 11.2.5 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython + python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rviz-default-plugins: '*' + libzlib: '>=1.2.13,<1.3.0a0' + xorg-libxaw: '*' + freeimage: '>=3.18.0,<3.19.0a0' + ros-humble-ros-workspace: '*' + xorg-libxext: '*' + pugixml: '>=1.11.4,<1.12.0a0' + assimp: '>=5.2.5,<5.2.6.0a0' + xorg-libxrandr: '*' + freetype: '>=2.12.1,<3.0a0' ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.8,<5.16.0a0' - numpy: '>=1.21.6,<2.0a0' + zziplib: '>=0.13.69,<0.14.0a0' libcxx: '>=14.0.6' - ros-humble-rviz-common: '*' - ros-humble-ros-workspace: '*' - ros-humble-rviz-ogre-vendor: '*' xorg-libx11: '*' - xorg-libxext: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz2-11.2.5-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-ogre-vendor-11.2.5-py310h57a32cc_3.tar.bz2 hash: - md5: 1b8fdf5405eb2609f75f74288e127aa2 - sha256: 8037332f8ada8904e90f8895b643453a70a08c64e04ad7f27530dd642ecffbfa + md5: 90701dabb957c0293dcc3764d6c0a333 + sha256: 4dddd1456926b4cf3a521cb0d3856cb5be4664fb0f3835a666758272b2899a4b optional: false category: main - build: py310h927cc32_3 + build: py310h57a32cc_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 24288 - timestamp: 1675847514451 -- name: ros-humble-teleop-twist-joy - version: 2.4.3 + size: 5055865 + timestamp: 1675719078299 +- name: ros-humble-nav-msgs + version: 4.2.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-joy: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rclcpp-components: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-teleop-twist-joy-2.4.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-nav-msgs-4.2.3-py310h927cc32_3.tar.bz2 hash: - md5: f541fa5453d1cac9a36a07ba77f73631 - sha256: d708bcf4b112af6c508115df20910c4a7655a40b3c8124dc5fce11dcd4b02d62 + md5: 0fcb54b601a6b73f3230faf0238c953c + sha256: 1d44ff45110d3d626c8131c96c8c3e3814925dc96e07650e17031fb9595f5afc optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 158214 - timestamp: 1675772525139 -- name: ros-humble-teleop-twist-keyboard - version: 2.3.2 + size: 156417 + timestamp: 1675740107811 +- name: ros-humble-urdf + version: 2.6.0 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rclpy: '*' + ros-humble-urdf-parser-plugin: '*' + ros-humble-tinyxml2-vendor: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-urdfdom-headers: '*' + ros-humble-pluginlib: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-teleop-twist-keyboard-2.3.2-py310h927cc32_3.tar.bz2 + ros-humble-urdfdom: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-urdf-2.6.0-py310h927cc32_3.tar.bz2 hash: - md5: f459d986a6a1f874c3a9d0e238f50e40 - sha256: 0a11fb4f2e28fdd3ac5d831453891dbf360548480d8cbd9ffdeb1cac20e22cec + md5: 7f5262c59ebaac46e9242dec3a1d28c1 + sha256: b58d830feda19a667bb6ca1dba644dc9124e39899cbe5231dc29273e922f1598 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12901 - timestamp: 1675748077504 -- name: ros-humble-topic-monitor - version: 0.20.3 + size: 103680 + timestamp: 1675733772511 +- name: ros-humble-ignition-math6-vendor + version: 0.0.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' + libignition-math6: '>=6.13.0,<7.0a0' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-launch: '*' - ros-humble-launch-ros: '*' + ros-humble-ignition-cmake2-vendor: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-topic-monitor-0.20.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ignition-math6-vendor-0.0.2-py310h927cc32_3.tar.bz2 hash: - md5: a1e53d2d97c60133ac1913355e49299f - sha256: 6de3a408cf8638e5f865bb19d503813fe1a9baa76bf07d93cb61ace864af1cbc + md5: 6733eeaec159e338b0be0e1a813ffb29 + sha256: aa0284614db75f1b2a618439f0ab2dd641a533b4af18219fb2de97ab92de5979 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 23563 - timestamp: 1675756841406 -- name: ros-humble-ament-index-python - version: 1.4.0 + size: 8214 + timestamp: 1675721553334 +- name: ros-humble-image-transport + version: 3.1.5 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-index-python-1.4.0-py310h927cc32_3.tar.bz2 + ros-humble-message-filters: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-pluginlib: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-image-transport-3.1.5-py310h927cc32_3.tar.bz2 hash: - md5: f396ba5570de6be98df681ece8e3891c - sha256: a3a8c3ebd2e3ea7f9a419b2e7c07638a028b523bc9c346c005f6ccab1422fa86 + md5: cc122ac3d0681261284535fc18e87844 + sha256: 98f0beb15476cbf47ddeb2813750e8511bef451a387408a0f84e61fcc1b57395 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 16089 - timestamp: 1675640036384 -- name: ros-humble-ament-cmake-core - version: 1.3.3 + size: 528637 + timestamp: 1675841189828 +- name: ros-humble-interactive-markers + version: 2.3.2 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ament-package: '*' + ros-humble-tf2: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - cmake: '*' - libcxx: '>=14.0.6' - catkin_pkg: '*' numpy: '>=1.21.6,<2.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-core-1.3.3-py310h927cc32_3.tar.bz2 + libcxx: '>=14.0.6' + ros-humble-rmw: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' + ros-humble-visualization-msgs: '*' + ros-humble-tf2-geometry-msgs: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-interactive-markers-2.3.2-py310h927cc32_3.tar.bz2 hash: - md5: 828274ed57a91758f6a97abd961b93ae - sha256: e2ce4a9108628b73392591abe3409ca703404d152440209162c3a058ddf40411 + md5: f60fe659187a8e78a6fc3a7816621bb4 + sha256: fedca944ed35af42a7dc083b735cecf638b42077019a1f96ddeba04ac84ce717 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 32156 - timestamp: 1675631327982 -- name: ros-humble-rosidl-cli - version: 3.1.4 + size: 254545 + timestamp: 1675842632920 +- name: ros-humble-laser-geometry + version: 2.4.0 manager: conda platform: osx-arm64 dependencies: - importlib-metadata: '*' + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - argcomplete: '*' + ros-humble-eigen3-cmake-module: '*' + ros-humble-rclpy: '*' + ros-humble-sensor-msgs: '*' + ros-humble-sensor-msgs-py: '*' + ros-humble-tf2: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-cli-3.1.4-py310h927cc32_3.tar.bz2 + eigen: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-laser-geometry-2.4.0-py310h927cc32_3.tar.bz2 hash: - md5: 79762a44c96d5b53eaa23a8bff1948bd - sha256: d37dcd70545b3c8d456e7d854180466f43080f703934c1a057cdea81973df4c9 + md5: d38a6e65f894da829f1ad905b16a6993 + sha256: e9e72983630a10d2ca38b66e5a131b5c95a72f823fd09c8db8c123fa1b880f97 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 24156 - timestamp: 1675640721927 -- name: ros-humble-rosidl-typesupport-interface - version: 3.1.4 + size: 35531 + timestamp: 1675748445114 +- name: ros-humble-map-msgs + version: 2.1.0 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-nav-msgs: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-sensor-msgs: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-interface-3.1.4-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-map-msgs-2.1.0-py310h927cc32_3.tar.bz2 hash: - md5: 3b81b916ac878d22a74920e3af8a7cf8 - sha256: 9d4eda1771728bb759d569cdc533a0d0062b47db05d96e05d2c9bff365851a4d + md5: 0cd86957092ecd368226b4a55805c1f7 + sha256: 78689f75ec08aa7e6ce92210a4afbe9fd4b79d7f122ad3e1aa846c5d0570e205 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13399 - timestamp: 1675721402222 -- name: ros-humble-rpyutils - version: 0.2.1 + size: 161344 + timestamp: 1675743003256 +- name: ros-humble-pluginlib + version: 5.1.0 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-rcpputils: '*' + ros-humble-tinyxml2-vendor: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rpyutils-0.2.1-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rcutils: '*' + ros-humble-ros-workspace: '*' + ros-humble-class-loader: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pluginlib-5.1.0-py310h927cc32_3.tar.bz2 hash: - md5: cbe5078978287fcdd0b1c05ad8742bc9 - sha256: da8b0a942c21a55f59bc71fbd24f84fdf6c1ad9c64c23be979662feabb56862d + md5: 18c229aba56e36f32b8912e45718dac6 + sha256: 2ead6c329a67e62c90782472723dd0f1f4853730e4570963feb38b3746f8012b optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 10798 - timestamp: 1675640802698 -- name: ros-humble-rosidl-cmake - version: 3.1.4 + size: 28740 + timestamp: 1675727620224 +- name: ros-humble-resource-retriever + version: 3.1.1 manager: conda platform: osx-arm64 dependencies: - empy: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-libcurl-vendor: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-parser: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-adapter: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-cmake-3.1.4-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-resource-retriever-3.1.1-py310h927cc32_3.tar.bz2 hash: - md5: f02a9c1caec5f2909abbfa2942fb93a8 - sha256: 6d0faa5a8f7fd4f7bc3b2c5ee381f26b2f96fc83b0634484ace3a33ca0bc68ba + md5: e68b0af1c8de04a62da4e27a0d6a1ed8 + sha256: 857d0f2e27e103bcdc57fd9f59fcfd5e4ca028835f632cccf8f9ef84e7f763a4 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 23640 - timestamp: 1675724402674 -- name: ros-humble-python-cmake-module - version: 0.10.0 + size: 25734 + timestamp: 1675723222059 +- name: ros-humble-rviz-rendering + version: 11.2.5 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' + glew: '>=2.1.0,<2.2.0a0' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-ament-index-cpp: '*' + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-rviz-assimp-vendor: '*' ros-humble-ros-workspace: '*' + ros-humble-resource-retriever: '*' + xorg-libxext: '*' + ros-humble-eigen3-cmake-module: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-python-cmake-module-0.10.0-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rviz-ogre-vendor: '*' + xorg-libx11: '*' + eigen: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-rendering-11.2.5-py310h2da077f_3.tar.bz2 hash: - md5: 3f015533e35fea0dd253358d3e228598 - sha256: 8f8553edbf417393a250cdb654c8ef8715a28f43536556bb4fd9181f35921d0d + md5: fb4037851b162238b28430ac3e2c335f + sha256: 5011bb58dfd7ce68f9d75a4e63cf5b1d9f1576d84f92ca6c540eac71eb80cc95 optional: false category: main - build: py310h927cc32_3 + build: py310h2da077f_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13107 - timestamp: 1675721225704 -- name: ros-humble-rosidl-generator-c - version: 3.1.4 + size: 953680 + timestamp: 1675725039313 +- name: ros-humble-tf2 + version: 0.25.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cmake: '*' + ros-humble-geometry-msgs: '*' + ros-humble-console-bridge-vendor: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' ros-humble-rcutils: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-parser: '*' - ros-humble-rosidl-typesupport-interface: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-generator-c-3.1.4-py310h927cc32_3.tar.bz2 + console_bridge: '>=1.0.2,<1.1.0a0' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-0.25.2-py310h2eb544e_3.tar.bz2 hash: - md5: 307c6f58d690bba69d9e9145e6fa1728 - sha256: 0e97ef022d5036911adb7a4ed3d103a64b7dde4f07f444e9ecdc66b2378276ea + md5: 3cbf4817b787e39df21e84d0bde0d139 + sha256: b8b898021983f44b5d5bac03fcab289ba88034617af967a45d7f9b568bb79b88 optional: false category: main - build: py310h927cc32_3 + build: py310h2eb544e_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 28857 - timestamp: 1675726223355 -- name: ros-humble-rosidl-parser - version: 3.1.4 + size: 93947 + timestamp: 1675740327736 +- name: ros-humble-tf2-geometry-msgs + version: 0.25.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-geometry-msgs: '*' + ros-humble-tf2: '*' + ros-humble-orocos-kdl-vendor: '*' + ros-humble-tf2-ros: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' - lark-parser: '*' libcxx: '>=14.0.6' + ros-humble-tf2-ros-py: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-adapter: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-parser-3.1.4-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-geometry-msgs-0.25.2-py310h927cc32_3.tar.bz2 hash: - md5: e752cc9389d2c7c2143426f78a863fd1 - sha256: c916b75b6c418740618bcba6918235913042badf32682650a2e5c53f13113937 + md5: 5952f8a4ea0500f783b7fb321a5c31eb + sha256: 6c7b6a6c3353e2257e74a818c929cffb323fbe7459c222a8d5d5c889142c63dc optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 36696 - timestamp: 1675723261712 -- name: ros-humble-fastcdr - version: 1.0.24 + size: 27243 + timestamp: 1675825861712 +- name: ros-humble-tf2-ros + version: 0.25.2 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' + ros-humble-rclcpp-action: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rcl-interfaces: '*' + ros-humble-tf2: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' + ros-humble-tf2-msgs: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-fastcdr-1.0.24-py310h927cc32_3.tar.bz2 - hash: - md5: 335c4380cfdd09075cc4e27b8c86d311 - sha256: c3bd42be072db7a9447d876a8d91dcd7812cf7148f24ad6e7c693d39e0acf3cc - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 54071 - timestamp: 1675635292710 -- name: ros-humble-fastrtps-cmake-module - version: 2.2.0 - manager: conda - platform: osx-arm64 - dependencies: + ros-humble-message-filters: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-fastrtps-cmake-module-2.2.0-py310h927cc32_3.tar.bz2 + ros-humble-rclcpp-components: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-ros-0.25.2-py310h927cc32_3.tar.bz2 hash: - md5: 6b5fbc71ce6d5456aa91942336e1d5ea - sha256: 0df57a97c45035929a26f3ba2cecc2d14827908db782e1cb03e87a3bec434dd3 + md5: 0e603ec6c80431f60580cfbe678db1d7 + sha256: 58007f1e233bce8074eda32eeab61edda967fae43f9ea3c53654345c388c0c61 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12074 - timestamp: 1675721536590 -- name: ros-humble-ament-cmake-ros - version: 0.10.0 + size: 407301 + timestamp: 1675771502199 +- name: ros-humble-visualization-msgs + version: 4.2.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-domain-coordinator: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros-humble-ament-cmake-pytest: '*' + ros-humble-geometry-msgs: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-sensor-msgs: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-cmake-gmock: '*' - ros-humble-ament-cmake-gtest: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-ros-0.10.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-visualization-msgs-4.2.3-py310h927cc32_3.tar.bz2 hash: - md5: 2e0182ff3399dc8b901bd403976b4f96 - sha256: 940bbc5e2f48d870078aaad9271ee79a0a90273f5f5aab7798526128221763df + md5: 38d7589170380940a9d5c6fde8382a42 + sha256: 134a445dbfe5989e25d3e682da785cc7f5101783fac5f132f1f71dfab6d18d0a optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 14605 - timestamp: 1675721574825 -- name: ros-humble-rosidl-generator-cpp - version: 3.1.4 + size: 229736 + timestamp: 1675742190363 +- name: ros-humble-rqt-action + version: 2.0.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-rosidl-generator-c: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cmake: '*' + ros-humble-rclpy: '*' + ros-humble-rqt-msg: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' + ros-humble-python-qt-binding: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-parser: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-generator-cpp-3.1.4-py310h927cc32_3.tar.bz2 + ros-humble-rqt-gui-py: '*' + ros-humble-rqt-py-common: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-action-2.0.1-py310h927cc32_3.tar.bz2 hash: - md5: fd25e3ba9fc895ec4f17a41a662afb8b - sha256: 8f3a40d743f4fbf2ef5822680d1a73fa4977c8794e94bac1d6cef76446de9715 + md5: deb93fc09f740ffb31390ae340e6535b + sha256: 7f17cde0faa0eadda1d8dfc0ad941347d53a11e5937dd040dd308f97c7725a04 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 30728 - timestamp: 1675727111412 -- name: ros-humble-unique-identifier-msgs - version: 2.2.1 + size: 12245 + timestamp: 1675847173276 +- name: ros-humble-rqt-bag + version: 1.1.4 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' - ros-humble-rosidl-default-runtime: '*' + ros-humble-rclpy: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-unique-identifier-msgs-2.2.1-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-rosbag2-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-bag-1.1.4-py310h927cc32_3.tar.bz2 hash: - md5: e9690bf42e909798b90f651dc766f272 - sha256: 32b59ba0c881408e6f02d597a17567798ab16cd358047236afda3696dcf520e7 + md5: ceed27c1869372b2a83ee0259d0b30ab + sha256: a87031f8375c94ac31885e91bca5f3ace8d7fb84b2a28cd5e770e48d597bcdfe optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 47765 - timestamp: 1675736011092 -- name: ros-humble-ament-cmake-export-definitions - version: 1.3.3 + size: 85707 + timestamp: 1675852048550 +- name: ros-humble-rqt-bag-plugins + version: 1.1.4 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rqt-plot: '*' + ros-humble-rqt-gui: '*' + ros-humble-std-msgs: '*' ros-humble-ros-workspace: '*' + pycairo: '*' + ros-humble-rqt-bag: '*' + ros-humble-geometry-msgs: '*' + ros-humble-sensor-msgs: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-definitions-1.3.3-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + pillow: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-rosbag2: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-bag-plugins-1.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 8452a95fdd6295de7280d900df585ff1 - sha256: 0ba8f47b484f747d2f6ef2cc60e71a48e2c16e0fcd5462bbb07db5eabb0f6128 + md5: 796af8c74fa5b42ab46f3fdf1ffc66cb + sha256: 74d6a442ca06440fd31dd66a207950916c7260de3a1a17c309e8fe5e455aedd2 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11848 - timestamp: 1675634936918 -- name: ros-humble-ament-cmake-export-dependencies - version: 1.3.3 + size: 30935 + timestamp: 1675856651867 +- name: ros-humble-rqt-console + version: 2.0.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rcl-interfaces: '*' + ros-humble-rclpy: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-cmake-libraries: '*' + ros-humble-ament-index-python: '*' + ros-humble-python-qt-binding: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-dependencies-1.3.3-py310h927cc32_3.tar.bz2 + ros-humble-rqt-gui-py: '*' + ros-humble-rqt-py-common: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-console-2.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 7de542a3b03fdb4da3c8224a8feb950b - sha256: b39228cdba90d3782ec09fb998dfe88b20a056a07163f415628ee92fbfc27811 + md5: c0259e101ab3ce7860e4a8eb44cd8c7e + sha256: 03520915398c196c11ef6ea7ceed9c5b16518c47881494cd0d8afd1ba9ecb8a4 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12633 - timestamp: 1675637075307 -- name: ros-humble-ament-cmake-export-include-directories - version: 1.3.3 + size: 56291 + timestamp: 1675842476163 +- name: ros-humble-rqt-graph + version: 1.3.0 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-qt-dotgraph: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-include-directories-1.3.3-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ament-index-python: '*' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-graph-1.3.0-py310h927cc32_3.tar.bz2 hash: - md5: 2d90a86dde379f427b4002302458b1d5 - sha256: ec3f7f6b488cd4d38632b1f69aa41629cde7e68cf41301a73f97fa01a80d065b + md5: c387d4353513a20b071949fe720a2cf0 + sha256: 79102783462a180658a670f55b6dddc6a1226ff28dde642f8a85ab372683a30b optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12177 - timestamp: 1675634841143 -- name: ros-humble-ament-cmake-export-interfaces - version: 1.3.3 + size: 47837 + timestamp: 1675841477767 +- name: ros-humble-rqt-image-view + version: 1.2.0 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rqt-gui-cpp: '*' + ros-humble-rqt-gui: '*' + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-ros-workspace: '*' + ros-humble-qt-gui-cpp: '*' + ros-humble-image-transport: '*' + xorg-libxext: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-export-libraries: '*' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-interfaces-1.3.3-py310h927cc32_3.tar.bz2 + ros-humble-cv-bridge: '*' + xorg-libx11: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-image-view-1.2.0-py310h927cc32_3.tar.bz2 hash: - md5: 8fc21fc423f299455500da077cd488ef - sha256: a6755a3cbcf644b78af9ad637ad132ecf50973ec5407d1e92e81e72c08d68e63 + md5: af1bf7f52b667502ff84c63ebbf8c738 + sha256: 76be53ff8d416714f60eb47eaf5c8b10f0e9f2ad1a4ba5d54d2b4801ed727d52 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12365 - timestamp: 1675637340447 -- name: ros-humble-ament-cmake-export-libraries - version: 1.3.3 + size: 208982 + timestamp: 1675844302027 +- name: ros-humble-rqt-msg + version: 1.2.0 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rclpy: '*' + ros-humble-rqt-console: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-libraries-1.3.3-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + catkin_pkg: '*' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-rqt-py-common: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-msg-1.2.0-py310h927cc32_3.tar.bz2 hash: - md5: 5e3bd22d5078ed760ed75c9e2b780481 - sha256: ff8ddf06d5011fd7defff303869e6a47603271bf699e901c18e6f362ca65a614 + md5: 993360c425201fb211b7286b4b56bdb0 + sha256: 6b38def065f81421640ce0bbfef78030e435b94579e9c58a3690cded31ab9eb7 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13879 - timestamp: 1675634576707 -- name: ros-humble-ament-cmake-export-link-flags - version: 1.3.3 + size: 19859 + timestamp: 1675843969771 +- name: ros-humble-rqt-plot + version: 1.1.2 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rqt-gui: '*' + ros-humble-std-msgs: '*' ros-humble-ros-workspace: '*' + ros-humble-qt-gui-py-common: '*' + matplotlib-base: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-link-flags-1.3.3-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + ros-humble-rqt-py-common: '*' + libcxx: '>=14.0.6' + catkin_pkg: '*' + ros-humble-python-qt-binding: '*' + ros-humble-rqt-gui-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-plot-1.1.2-py310h927cc32_3.tar.bz2 hash: - md5: fb492c586ca86971b834da63a39ecf66 - sha256: adf948ce76d953e2b152eb5886d768d5921cd85f73259ae580ed14f094130fc1 + md5: 2236c4b23f3c79fdf77598dfe4cc98ef + sha256: 4adb968b950edcd4ce22a6a7b79225afb5c9a986e0b7faa24a157a9bf9cc552b optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11761 - timestamp: 1675634756412 -- name: ros-humble-ament-cmake-export-targets - version: 1.3.3 + size: 47189 + timestamp: 1675841139376 +- name: ros-humble-rqt-publisher + version: 1.5.0 manager: conda platform: osx-arm64 dependencies: + ros-humble-rqt-py-common: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-export-libraries: '*' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + catkin_pkg: '*' + ros-humble-python-qt-binding: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-targets-1.3.3-py310h927cc32_3.tar.bz2 + ros-humble-qt-gui-py-common: '*' + ros-humble-rqt-gui-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-publisher-1.5.0-py310h927cc32_3.tar.bz2 hash: - md5: 16849da7d854d1e1ad6a3edc990b30b9 - sha256: cfc5c56edc1bfeff8a9ad4c781bce7fbb305e48e166928b92b16a31f9bbb3ec8 + md5: 215498d973c047dead86bccc3d860a9d + sha256: 77c52cc591f5472fc728e5edbe1161124741029a84137186e1d548eec59d21c8 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12290 - timestamp: 1675637252096 -- name: ros-humble-ament-cmake-gen-version-h - version: 1.3.3 + size: 27694 + timestamp: 1675841383480 +- name: ros-humble-rqt-py-common + version: 1.1.4 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-gen-version-h-1.3.3-py310h927cc32_3.tar.bz2 + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-qt-gui: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-py-common-1.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 26ab82c2a7323c59feeb4fb873779fe5 - sha256: ac0616e6998fec4b786de9edbebe9099d3977b4f75e18267ad73eae32e794365 + md5: 1c74759c65217b847158b38988182c5c + sha256: 843cf8e533ec536ac722d72f285e2185f98b191089a989a772ea19cfda88b1be optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 14235 - timestamp: 1675638661767 -- name: ros-humble-ament-cmake-libraries - version: 1.3.3 + size: 44573 + timestamp: 1675748499411 +- name: ros-humble-rqt-py-console + version: 1.0.2 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rclpy: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-libraries-1.3.3-py310h927cc32_3.tar.bz2 + ros-humble-qt-gui: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ament-index-python: '*' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + ros-humble-qt-gui-py-common: '*' + ros-humble-rqt-gui-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-py-console-1.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 132a5150c4f0bfb6c568452eb1380f27 - sha256: 982288a8027eade5d4fd8890cb9924b784e9ffa1aee35c512a1f119450c45c09 + md5: d337885e8931c3e0c728e1ce20440544 + sha256: 7b061763c2dd8316e8eddef25eeb9b48ac3d24f62c9ad2f1574c19d4b7a65f58 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12121 - timestamp: 1675634793932 -- name: ros-humble-ament-cmake-python - version: 1.3.3 + size: 16834 + timestamp: 1675841572424 +- name: ros-humble-rqt-reconfigure + version: 1.1.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rqt-console: '*' + ros-humble-rqt-gui: '*' + pyyaml: '*' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' + ros-humble-qt-gui-py-common: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-python-1.3.3-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + ros-humble-rqt-py-common: '*' + libcxx: '>=14.0.6' + ros-humble-rqt-gui-py: '*' + ros-humble-python-qt-binding: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-reconfigure-1.1.1-py310h927cc32_3.tar.bz2 hash: - md5: 69a2f02a439a04fe7224856f05001100 - sha256: cb7f5fa2bf5381d239bcf8b9695c44566e30a636349aa4aed1cc84b7baf3e4cd + md5: 6e6165a0a1784a1de111fa81c6da810a + sha256: 9b54b07a0dab0b902b4459c8d5d1e82cc027b92e367fcc89f8d4f68542ad0335 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 14024 - timestamp: 1675634625297 -- name: ros-humble-ament-cmake-target-dependencies - version: 1.3.3 + size: 51455 + timestamp: 1675844286317 +- name: ros-humble-rqt-service-caller + version: 1.0.5 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-include-directories: '*' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-cmake-libraries: '*' + ros-humble-rqt-py-common: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-target-dependencies-1.3.3-py310h927cc32_3.tar.bz2 + ros-humble-rqt-gui-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-service-caller-1.0.5-py310h927cc32_3.tar.bz2 hash: - md5: a05924d966ac9e45b640dc9fae8b67c5 - sha256: 0e0082fa22271dfcf335af165b5d8fa48c8ac658110f18eac286140f1e42fc50 + md5: 3ea8f005b564cda48f3fb062299bd8f4 + sha256: 3678dcb24ebe6a60e497f084867c726cfd3b23465be536b7fd4eeae00aaf31c7 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13224 - timestamp: 1675637150859 -- name: ros-humble-ament-cmake-test - version: 1.3.3 + size: 21437 + timestamp: 1675841461539 +- name: ros-humble-rqt-shell + version: 1.0.2 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-test-1.3.3-py310h927cc32_3.tar.bz2 + ros-humble-qt-gui: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + catkin_pkg: '*' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + ros-humble-qt-gui-py-common: '*' + ros-humble-rqt-gui-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-shell-1.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 47de9d292aa24b81d3b31a6479b09cfe - sha256: 82fc5be4b51d76c23d35ef6ea7243e645f858892bbbe08e6000bd3777a0a0e3b + md5: 6768b8f8d319be0fb70755d1af94a2b3 + sha256: 8625ec797c424b46c77ae724e050f5490e44d1f8e2172f03adcefa7000753c31 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 22207 - timestamp: 1675637059560 -- name: ros-humble-ament-cmake-version - version: 1.3.3 + size: 19940 + timestamp: 1675841353490 +- name: ros-humble-rqt-srv + version: 1.0.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rclpy: '*' + ros-humble-rqt-msg: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-version-1.3.3-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-srv-1.0.3-py310h927cc32_3.tar.bz2 hash: - md5: 01417c8a70923848fb26ba3b86635b47 - sha256: 1a4ba4e9528a9270353f599859a4b7cc1c3b9dba6ab215caa347d1cb54ff1511 + md5: 5c8b1bd5dabfbcef19ce5d341359f655 + sha256: 4317ad6a7426029d34fbdb323affec3f86bef8594ff6b2e5058cae6ed911d812 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11623 - timestamp: 1675634664067 -- name: ros-humble-rcl-logging-interface - version: 2.3.1 + size: 12227 + timestamp: 1675847833135 +- name: ros-humble-rqt-topic + version: 1.5.0 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcutils: '*' - ros-humble-ros-workspace: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-logging-interface-2.3.1-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-rqt-py-common: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-topic-1.5.0-py310h927cc32_3.tar.bz2 hash: - md5: 4590986257cdffe11d2a12ddda391878 - sha256: 8f4352b6394bef1c8751437f0461fc1a7d064f3ced124d84c6a58297d32bb36d + md5: f4eaacba67be5beece60548a5e5d5447 + sha256: 6e4b8a5af9901f6647c6922c6e7bead1130c5db92c363c7122270b0169006394 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 17987 - timestamp: 1675726144737 -- name: ros-humble-rmw-implementation - version: 2.8.2 + size: 24836 + timestamp: 1675841246960 +- name: ros-humble-robot-state-publisher + version: 3.0.2 manager: conda platform: osx-arm64 dependencies: - ros-humble-rmw-connextdds: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-rcpputils: '*' - ros-humble-rmw-fastrtps-cpp: '*' - ros-humble-rmw-implementation-cmake: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-tf2-ros: '*' + ros-humble-kdl-parser: '*' + ros-humble-std-msgs: '*' + ros-humble-urdf: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' + ros-humble-sensor-msgs: '*' + ros-humble-orocos-kdl-vendor: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcutils: '*' - ros-humble-rmw-fastrtps-dynamic-cpp: '*' - ros-humble-rmw-cyclonedds-cpp: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-implementation-2.8.2-py310h927cc32_3.tar.bz2 + ros-humble-rclcpp-components: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-robot-state-publisher-3.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 5cee37b567c6832ef65109d7e3e56f41 - sha256: 74041227f7c039029a90d097e3ba08d875d0fc1d48fb28674e076a1dc914b89d + md5: c70b0206f3574bbb45ee76254fd6f805 + sha256: 7edaedd5dc4091a61f6906dbda1eca5f5d1523c103a7a1f47769ceb6bea250ec optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 29304 - timestamp: 1675741531735 -- name: ros-humble-rcl-logging-spdlog - version: 2.3.1 + size: 223055 + timestamp: 1675826190151 +- name: ros-humble-geometry2 + version: 0.25.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-spdlog-vendor: '*' + ros-humble-tf2: '*' + ros-humble-tf2-kdl: '*' + ros-humble-tf2-ros: '*' + ros-humble-tf2-py: '*' + ros-humble-tf2-sensor-msgs: '*' + ros-humble-tf2-tools: '*' + ros-humble-ros-workspace: '*' + ros-humble-tf2-bullet: '*' + ros-humble-tf2-geometry-msgs: '*' + ros-humble-tf2-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcl-logging-interface: '*' - ros-humble-rcutils: '*' - ros-humble-ros-workspace: '*' - spdlog: '>=1.11.0,<1.12.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-logging-spdlog-2.3.1-py310he44a079_3.tar.bz2 + ros-humble-tf2-eigen-kdl: '*' + ros-humble-tf2-eigen: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-geometry2-0.25.2-py310h927cc32_3.tar.bz2 hash: - md5: f94248fdf30763f27b3c662a3ba52d3e - sha256: 8b58c25c72dd7c77c2bddd9589f3598ce4c831c1584e9e50918007f2c3d88434 + md5: 91416408f43e0001479413c47187e44d + sha256: 948025c6b45720d4ac2d6c0cc9d1f5d7d483e424f61be20f7b58c4dbca034a14 optional: false category: main - build: py310he44a079_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 22887 - timestamp: 1675727519489 -- name: ros-humble-libyaml-vendor - version: 1.2.2 + size: 12441 + timestamp: 1675831900387 +- name: ros-humble-kdl-parser + version: 2.6.4 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-orocos-kdl-vendor: '*' + ros-humble-urdf: '*' ros2-distro-mutex: 0.3.* humble - yaml: '>=0.2.5,<0.3.0a0' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - yaml-cpp: '>=0.7.0,<0.8.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-libyaml-vendor-1.2.2-py310h927cc32_3.tar.bz2 + ros-humble-urdfdom-headers: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-kdl-parser-2.6.4-py310h927cc32_3.tar.bz2 hash: - md5: 8771adb79ec7b0c2a591f7a609a9eb6f - sha256: d4b32dd022d42851f1d564df212cf7206fe6325d510e7bd4f8a29cacb6f9d6ab + md5: f6ddfed88052515f7960856dcd166f56 + sha256: abdb473d83f7ce1926e54ddacc63400dd388483ba45fbf515e8942a13a2c72e7 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13898 - timestamp: 1675726599013 -- name: ros-humble-rclcpp-components - version: 16.0.3 + size: 31700 + timestamp: 1675734279464 +- name: ros-humble-ros-core + version: 0.10.0 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' + ros-humble-rclcpp-action: '*' python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 ros-humble-ament-index-cpp: '*' - ros-humble-composition-interfaces: '*' + ros-humble-ament-lint-auto: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-ament-cmake-gtest: '*' + ros-humble-launch-testing: '*' + ros-humble-ament-cmake-ros: '*' + ros-humble-launch-xml: '*' + ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros-humble-sros2: '*' + ros-humble-rclcpp-lifecycle: '*' + ros-humble-rclpy: '*' + ros-humble-ros2launch: '*' + ros-humble-rosidl-default-generators: '*' + ros-humble-launch-testing-ament-cmake: '*' + ros-humble-launch-testing-ros: '*' + ros-humble-launch-yaml: '*' + python_abi: 3.10.* *_cp310 + ros-humble-sros2-cmake: '*' + ros-humble-ament-cmake-pytest: '*' + ros-humble-rcl-lifecycle: '*' + ros-humble-ament-index-python: '*' + ros-humble-launch-ros: '*' + ros-humble-pluginlib: '*' + ros-humble-ros-environment: '*' + ros-humble-ament-lint-common: '*' + ros-humble-ament-cmake-auto: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' + ros-humble-ament-cmake-gmock: '*' + ros-humble-launch: '*' ros-humble-class-loader: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclcpp-components-16.0.3-py310h927cc32_3.tar.bz2 + ros-humble-common-interfaces: '*' + ros-humble-ros2cli-common-extensions: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ros-core-0.10.0-py310h927cc32_3.tar.bz2 hash: - md5: 0e45b3185e4df84c4a294f5a58d168d7 - sha256: e8e20141b09d4c5edaf877831dd3d5f4646a8f40410efdd6bdf078e332e4d27e + md5: 5a67ad7a2387cb752de89ab42183f2b6 + sha256: 2e1ec4b0f61e4293e48fcd489df4dc4c18f5237783187ffeb1e409d81b8dd445 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 95567 - timestamp: 1675748966795 -- name: ros-humble-rclpy - version: 3.3.7 + size: 12678 + timestamp: 1675850022889 +- name: ros-humble-rosbag2 + version: 0.15.4 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcl-action: '*' - ros-humble-rcl-interfaces: '*' - ros-humble-rosgraph-msgs: '*' - ros-humble-rpyutils: '*' - ros-humble-rcl-lifecycle: '*' - ros-humble-rcl-logging-interface: '*' - ros-humble-rmw: '*' - ros-humble-ament-index-python: '*' - ros-humble-builtin-interfaces: '*' + ros-humble-ros2bag: '*' + ros-humble-rosbag2-compression: '*' + ros-humble-rosbag2-storage-default-plugins: '*' + ros-humble-rosbag2-compression-zstd: '*' + ros-humble-shared-queues-vendor: '*' + ros-humble-rosbag2-transport: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-unique-identifier-msgs: '*' + ros-humble-sqlite3-vendor: '*' + ros-humble-rosbag2-storage: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-rcl-yaml-param-parser: '*' - ros-humble-rmw-implementation: '*' + ros-humble-rosbag2-cpp: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcl: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclpy-3.3.7-py310h927cc32_3.tar.bz2 + ros-humble-rosbag2-py: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosbag2-0.15.4-py310h927cc32_3.tar.bz2 hash: - md5: 2e552866147251212cc944c012136ffd - sha256: 5cc3cc6241d2a50ee18ae8f533e0eeeb6186ca4410e9a8ccc9a03738701737ec + md5: 1a70390575631e7d85f0c8c61e9baea2 + sha256: 00c5e0cf8fc22dcc69897c7e4d852b7e352ee51b5f21b47bdc28ce01a555c356 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 497091 - timestamp: 1675747761291 + size: 12085 + timestamp: 1675855050611 - name: ros-humble-example-interfaces version: 0.9.3 manager: conda @@ -17918,243 +17594,215 @@ package: build_number: 3 size: 317756 timestamp: 1675738716516 -- name: ros-humble-launch-ros - version: 0.19.4 +- name: ros-humble-rcutils + version: 5.1.2 manager: conda platform: osx-arm64 dependencies: - importlib-metadata: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-composition-interfaces: '*' - ros-humble-osrf-pycommon: '*' - ros-humble-rclpy: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-lifecycle-msgs: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - pyyaml: '*' - ros-humble-ament-index-python: '*' - ros-humble-launch: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-launch-ros-0.19.4-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcutils-5.1.2-py310h927cc32_3.tar.bz2 hash: - md5: 072fd70334526393f8ae19e64970113d - sha256: a0658e08e78cbbb5bb864bc28971fdd18e8a943bbb0d1524a13d457d0b16879f + md5: 7f6185564190d7a11a92abb5396691b9 + sha256: 045096ee53e23e3529ab4f1d5cb0ec2c9fd4d91294486c971c2b075d7d3828de optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 65502 - timestamp: 1675748554673 -- name: ros-humble-launch-xml - version: 1.0.4 + size: 87842 + timestamp: 1675724272091 +- name: ros-humble-rmw + version: 6.1.1 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-launch: '*' - ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-launch-xml-1.0.4-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rcutils: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-6.1.1-py310h927cc32_3.tar.bz2 hash: - md5: 166e112e016f19b0b0cfab691923e1a6 - sha256: fbad2b4ea10898971d8365a24b92992d5e3ab052d7c1396983babf04d3406233 + md5: 4c6d1fb1485c2cb5cbe4f990c07efc6f + sha256: bf9dd88c07ab663efeee2558e5dff34a933361c3870d99e046bbd2c8776bcc9e optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13443 - timestamp: 1675641711601 -- name: ros-humble-rmw-fastrtps-cpp - version: 6.2.2 + size: 69496 + timestamp: 1675726359439 +- name: ros-humble-rosidl-default-runtime + version: 1.2.0 manager: conda platform: osx-arm64 dependencies: - ros-humble-fastrtps: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rmw-fastrtps-shared-cpp: '*' - ros-humble-rcutils: '*' - ros-humble-fastcdr: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' ros-humble-rosidl-runtime-c: '*' + ros-humble-ros-workspace: '*' ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros-humble-tracetools: '*' + ros-humble-rosidl-generator-py: '*' ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rmw-dds-common: '*' - ros-humble-ament-cmake: '*' - ros-humble-rosidl-cmake: '*' + ros-humble-rosidl-typesupport-c: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-fastrtps-cmake-module: '*' + ros-humble-rosidl-typesupport-introspection-c: '*' + ros-humble-rosidl-typesupport-cpp: '*' ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-cpp-6.2.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-default-runtime-1.2.0-py310h927cc32_3.tar.bz2 hash: - md5: 6ace035ac28059408844c2f23dfc1d1a - sha256: 56ba64dabdf2c0cc7dfeb63d75206c74b87ff4b14aabc4ab2a8efd43dadd2c14 + md5: 387f09dad0e715e7481c06417010cda6 + sha256: 51a02b5b8adf2ab93ce1e97400a4bc14ace3cbc2965d33fac49166abda6758c3 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 97252 - timestamp: 1675740174494 -- name: ros-humble-image-geometry - version: 3.2.1 + size: 11911 + timestamp: 1675735303231 +- name: ros-humble-builtin-interfaces + version: 1.2.1 manager: conda platform: osx-arm64 dependencies: - xorg-libxext: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - py-opencv: '>=4.6.0,<5.0a0' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - xorg-libx11: '*' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-image-geometry-3.2.1-py310hdd2ad31_3.tar.bz2 + ros-humble-rosidl-default-runtime: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-builtin-interfaces-1.2.1-py310h927cc32_3.tar.bz2 hash: - md5: 993492a2f028621b030073c4362dc4bc - sha256: 2fd3856fa05f1dfb6ad05f9bb319708e942c409981bc30aea9b09e38f9d610bc + md5: 12fa7949bd961b7ff076c1b1452957ef + sha256: b90d1b7f6010d584f4283ff7b171cbd1c8234d938e76d0fda09988583af8ad06 optional: false category: main - build: py310hdd2ad31_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 41451 - timestamp: 1675741637275 -- name: ros-humble-sensor-msgs - version: 4.2.3 + size: 53249 + timestamp: 1675736170368 +- name: ros-humble-message-filters + version: 4.3.2 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-rcutils: '*' ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-sensor-msgs-4.2.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-message-filters-4.3.2-py310h927cc32_3.tar.bz2 hash: - md5: 543dbf46a42580047dee286de42623fa - sha256: 212526768b2aee28bdaeef0a1e3728cf88bd4e99f975af62ed840a9f52bec300 + md5: c5c96f4a1143bf10c68183678ff15cb5 + sha256: d3cdf799ff6a8e84da267a4e9787d2355e59561a626a887bf4895677c78a7d64 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 354426 - timestamp: 1675740645531 -- name: ros-humble-nav-msgs - version: 4.2.3 + size: 46917 + timestamp: 1675754969458 +- name: ros-humble-pcl-msgs + version: 1.0.0 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' ros-humble-rosidl-default-runtime: '*' + ros-humble-sensor-msgs: '*' ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-nav-msgs-4.2.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pcl-msgs-1.0.0-py310h927cc32_3.tar.bz2 hash: - md5: 0fcb54b601a6b73f3230faf0238c953c - sha256: 1d44ff45110d3d626c8131c96c8c3e3814925dc96e07650e17031fb9595f5afc + md5: 2af5702ba7d79f3f53263ec1a1f78d71 + sha256: 8ce5aca2234e0cfb9ed992e3c475115138417cb0fe8314b8036b365f63c9545a optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 156417 - timestamp: 1675740107811 -- name: ros-humble-launch - version: 1.0.4 + size: 99819 + timestamp: 1675741442116 +- name: ros-humble-lifecycle-msgs + version: 1.2.1 manager: conda platform: osx-arm64 dependencies: - importlib-metadata: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-osrf-pycommon: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' - lark-parser: '*' libcxx: '>=14.0.6' - pyyaml: '*' - ros-humble-ament-index-python: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-launch-1.0.4-py310h927cc32_3.tar.bz2 + ros-humble-rosidl-default-runtime: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-lifecycle-msgs-1.2.1-py310h927cc32_3.tar.bz2 hash: - md5: b9a5e6e30f46a38a0f856865a093ec14 - sha256: 2fd12f52df69e300bc5a47e6c585a40e444c400d59a2d4e2c302e2d3fc0955eb + md5: 695fdfbab0e0988157e7d6884c7753ce + sha256: 97f67541db59ccff5f9e3b88c72f9cb8f3ad5b2d942e9fc6b7a68aca3846f283 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 143014 - timestamp: 1675640631166 -- name: ros-humble-robot-state-publisher - version: 3.0.2 + size: 135392 + timestamp: 1675736542972 +- name: ros-humble-rclcpp-lifecycle + version: 16.0.3 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-tf2-ros: '*' - ros-humble-kdl-parser: '*' - ros-humble-std-msgs: '*' - ros-humble-urdf: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' - ros-humble-orocos-kdl-vendor: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-lifecycle-msgs: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rclcpp-components: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-robot-state-publisher-3.0.2-py310h927cc32_3.tar.bz2 + ros-humble-rcl-lifecycle: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-typesupport-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclcpp-lifecycle-16.0.3-py310h927cc32_3.tar.bz2 hash: - md5: c70b0206f3574bbb45ee76254fd6f805 - sha256: 7edaedd5dc4091a61f6906dbda1eca5f5d1523c103a7a1f47769ceb6bea250ec + md5: f185bdd3a980277cbff1cbca290a64f9 + sha256: fc84c04a20b78cb71e8f6ee02a1b1eaabf44a257e2211514c083a9f69820d788 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 223055 - timestamp: 1675826190151 + size: 82239 + timestamp: 1675748429283 - name: ros-humble-sdl2-vendor version: 3.1.0 manager: conda @@ -18179,31 +17827,7 @@ package: build_number: 3 size: 11278 timestamp: 1675640429957 -- name: ros-humble-lifecycle-msgs - version: 1.2.1 - manager: conda - platform: osx-arm64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-lifecycle-msgs-1.2.1-py310h927cc32_3.tar.bz2 - hash: - md5: 695fdfbab0e0988157e7d6884c7753ce - sha256: 97f67541db59ccff5f9e3b88c72f9cb8f3ad5b2d942e9fc6b7a68aca3846f283 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 135392 - timestamp: 1675736542972 -- name: ros-humble-rclcpp-lifecycle +- name: ros-humble-rclcpp-action version: 16.0.3 manager: conda platform: osx-arm64 @@ -18211,1683 +17835,1523 @@ package: ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rcl-action: '*' + ros-humble-ament-cmake: '*' + ros-humble-rcpputils: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-lifecycle-msgs: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcl-lifecycle: '*' - ros-humble-rmw: '*' + ros-humble-action-msgs: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-typesupport-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclcpp-lifecycle-16.0.3-py310h927cc32_3.tar.bz2 + ros-humble-rosidl-runtime-c: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rclcpp-action-16.0.3-py310h927cc32_3.tar.bz2 hash: - md5: f185bdd3a980277cbff1cbca290a64f9 - sha256: fc84c04a20b78cb71e8f6ee02a1b1eaabf44a257e2211514c083a9f69820d788 + md5: 197578ec0c6e9ea7fa7e75094dc3bd6f + sha256: 626f8b30792d5fcf1c3b194b4e929a8630032bafd3bb9c0e6d9f9ef259476d3f optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 82239 - timestamp: 1675748429283 -- name: ros-humble-message-filters - version: 4.3.2 + size: 76186 + timestamp: 1675749181323 +- name: ros-humble-ament-index-python + version: 1.4.0 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcutils: '*' - ros-humble-builtin-interfaces: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-message-filters-4.3.2-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-index-python-1.4.0-py310h927cc32_3.tar.bz2 hash: - md5: c5c96f4a1143bf10c68183678ff15cb5 - sha256: d3cdf799ff6a8e84da267a4e9787d2355e59561a626a887bf4895677c78a7d64 + md5: f396ba5570de6be98df681ece8e3891c + sha256: a3a8c3ebd2e3ea7f9a419b2e7c07638a028b523bc9c346c005f6ccab1422fa86 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 46917 - timestamp: 1675754969458 -- name: ros-humble-pcl-msgs - version: 1.0.0 + size: 16089 + timestamp: 1675640036384 +- name: ros-humble-image-geometry + version: 3.2.1 manager: conda platform: osx-arm64 dependencies: + xorg-libxext: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' ros-humble-sensor-msgs: '*' - ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + py-opencv: '>=4.6.0,<5.0a0' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pcl-msgs-1.0.0-py310h927cc32_3.tar.bz2 + xorg-libx11: '*' + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-image-geometry-3.2.1-py310hdd2ad31_3.tar.bz2 hash: - md5: 2af5702ba7d79f3f53263ec1a1f78d71 - sha256: 8ce5aca2234e0cfb9ed992e3c475115138417cb0fe8314b8036b365f63c9545a + md5: 993492a2f028621b030073c4362dc4bc + sha256: 2fd3856fa05f1dfb6ad05f9bb319708e942c409981bc30aea9b09e38f9d610bc optional: false category: main - build: py310h927cc32_3 + build: py310hdd2ad31_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 99819 - timestamp: 1675741442116 -- name: ros-humble-geometry2 - version: 0.25.2 + size: 41451 + timestamp: 1675741637275 +- name: ros-humble-rmw-fastrtps-cpp + version: 6.2.2 manager: conda platform: osx-arm64 dependencies: + ros-humble-fastrtps: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-tf2: '*' - ros-humble-tf2-kdl: '*' - ros-humble-tf2-ros: '*' - ros-humble-tf2-py: '*' - ros-humble-tf2-sensor-msgs: '*' - ros-humble-tf2-tools: '*' + ros-humble-rcpputils: '*' + ros-humble-rmw-fastrtps-shared-cpp: '*' + ros-humble-rcutils: '*' + ros-humble-fastcdr: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-tf2-bullet: '*' - ros-humble-tf2-geometry-msgs: '*' - ros-humble-tf2-msgs: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' + ros-humble-tracetools: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rmw-dds-common: '*' + ros-humble-ament-cmake: '*' + ros-humble-rosidl-cmake: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-tf2-eigen-kdl: '*' - ros-humble-tf2-eigen: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-geometry2-0.25.2-py310h927cc32_3.tar.bz2 + ros-humble-fastrtps-cmake-module: '*' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-cpp-6.2.2-py310h927cc32_3.tar.bz2 hash: - md5: 91416408f43e0001479413c47187e44d - sha256: 948025c6b45720d4ac2d6c0cc9d1f5d7d483e424f61be20f7b58c4dbca034a14 + md5: 6ace035ac28059408844c2f23dfc1d1a + sha256: 56ba64dabdf2c0cc7dfeb63d75206c74b87ff4b14aabc4ab2a8efd43dadd2c14 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12441 - timestamp: 1675831900387 -- name: ros-humble-kdl-parser - version: 2.6.4 + size: 97252 + timestamp: 1675740174494 +- name: ros-humble-launch-xml + version: 1.0.4 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-orocos-kdl-vendor: '*' - ros-humble-urdf: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcutils: '*' - ros-humble-ros-workspace: '*' - ros-humble-urdfdom-headers: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-kdl-parser-2.6.4-py310h927cc32_3.tar.bz2 - hash: - md5: f6ddfed88052515f7960856dcd166f56 - sha256: abdb473d83f7ce1926e54ddacc63400dd388483ba45fbf515e8942a13a2c72e7 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 31700 - timestamp: 1675734279464 -- name: ros-humble-ros-core - version: 0.10.0 - manager: conda - platform: osx-arm64 - dependencies: - ros-humble-rclcpp-action: '*' python: 3.10.* *_cpython - ros-humble-ament-index-cpp: '*' - ros-humble-ament-lint-auto: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-ament-cmake-gtest: '*' - ros-humble-launch-testing: '*' - ros-humble-ament-cmake-ros: '*' - ros-humble-launch-xml: '*' - ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-sros2: '*' - ros-humble-rclcpp-lifecycle: '*' - ros-humble-rclpy: '*' - ros-humble-ros2launch: '*' - ros-humble-rosidl-default-generators: '*' - ros-humble-launch-testing-ament-cmake: '*' - ros-humble-launch-testing-ros: '*' - ros-humble-launch-yaml: '*' python_abi: 3.10.* *_cp310 - ros-humble-sros2-cmake: '*' - ros-humble-ament-cmake-pytest: '*' - ros-humble-rcl-lifecycle: '*' - ros-humble-ament-index-python: '*' - ros-humble-launch-ros: '*' - ros-humble-pluginlib: '*' - ros-humble-ros-environment: '*' - ros-humble-ament-lint-common: '*' - ros-humble-ament-cmake-auto: '*' - ros-humble-ament-cmake: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-ament-cmake-gmock: '*' ros-humble-launch: '*' - ros-humble-class-loader: '*' - ros-humble-common-interfaces: '*' - ros-humble-ros2cli-common-extensions: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ros-core-0.10.0-py310h927cc32_3.tar.bz2 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-launch-xml-1.0.4-py310h927cc32_3.tar.bz2 hash: - md5: 5a67ad7a2387cb752de89ab42183f2b6 - sha256: 2e1ec4b0f61e4293e48fcd489df4dc4c18f5237783187ffeb1e409d81b8dd445 + md5: 166e112e016f19b0b0cfab691923e1a6 + sha256: fbad2b4ea10898971d8365a24b92992d5e3ab052d7c1396983babf04d3406233 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12678 - timestamp: 1675850022889 -- name: ros-humble-rosbag2 - version: 0.15.4 + size: 13443 + timestamp: 1675641711601 +- name: ros-humble-ament-cmake + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros2bag: '*' - ros-humble-rosbag2-compression: '*' - ros-humble-rosbag2-storage-default-plugins: '*' - ros-humble-rosbag2-compression-zstd: '*' - ros-humble-shared-queues-vendor: '*' - ros-humble-rosbag2-transport: '*' + ros-humble-ament-cmake-gen-version-h: '*' + ros-humble-ament-cmake-python: '*' + ros-humble-ament-cmake-export-link-flags: '*' + ros-humble-ament-cmake-core: '*' + ros-humble-ament-cmake-export-dependencies: '*' ros-humble-ros-workspace: '*' - ros-humble-sqlite3-vendor: '*' - ros-humble-rosbag2-storage: '*' + ros-humble-ament-cmake-export-include-directories: '*' + ros-humble-ament-cmake-test: '*' + ros-humble-ament-cmake-export-definitions: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-rosbag2-cpp: '*' - numpy: '>=1.21.6,<2.0a0' + ros-humble-ament-cmake-export-libraries: '*' + ros-humble-ament-cmake-export-targets: '*' + cmake: '*' libcxx: '>=14.0.6' - ros-humble-rosbag2-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosbag2-0.15.4-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + ros-humble-ament-cmake-libraries: '*' + ros-humble-ament-cmake-target-dependencies: '*' + ros-humble-ament-cmake-version: '*' + ros-humble-ament-cmake-export-interfaces: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: 1a70390575631e7d85f0c8c61e9baea2 - sha256: 00c5e0cf8fc22dcc69897c7e4d852b7e352ee51b5f21b47bdc28ce01a555c356 + md5: 2649cb41b692e3e575d5bf8eb6f29886 + sha256: 1ce8efc5d2499722280d0f0774fcff37013131f913b8b221f1ef081465aff177 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12085 - timestamp: 1675855050611 -- name: ros-humble-urdf - version: 2.6.0 + size: 11810 + timestamp: 1675639727580 +- name: ros-humble-action-msgs + version: 1.2.1 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-urdf-parser-plugin: '*' - ros-humble-tinyxml2-vendor: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-urdfdom-headers: '*' - ros-humble-pluginlib: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - ros-humble-urdfdom: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-urdf-2.6.0-py310h927cc32_3.tar.bz2 + ros-humble-unique-identifier-msgs: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-action-msgs-1.2.1-py310h927cc32_3.tar.bz2 hash: - md5: 7f5262c59ebaac46e9242dec3a1d28c1 - sha256: b58d830feda19a667bb6ca1dba644dc9124e39899cbe5231dc29273e922f1598 + md5: d506b7122bd435ca9833245117bf8306 + sha256: afada21b3cd93d9802c922c95c6957993c0bf2a2f3573dfd01fed4c264527927 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 103680 - timestamp: 1675733772511 -- name: ros-humble-rqt-action - version: 2.0.1 + size: 86911 + timestamp: 1675737167439 +- name: ros-humble-ament-index-cpp + version: 1.4.0 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-rqt-msg: '*' - ros-humble-rqt-gui: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-python-qt-binding: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rqt-py-common: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-action-2.0.1-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-index-cpp-1.4.0-py310h927cc32_3.tar.bz2 hash: - md5: deb93fc09f740ffb31390ae340e6535b - sha256: 7f17cde0faa0eadda1d8dfc0ad941347d53a11e5937dd040dd308f97c7725a04 + md5: 2a3b9649127f31cfcf498c4f552fb029 + sha256: e8e524b5a96d3a9cd0259a71565bc0406c730b141b67b1acb7606645665318f4 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12245 - timestamp: 1675847173276 -- name: ros-humble-rqt-bag - version: 1.1.4 + size: 32960 + timestamp: 1675721435171 +- name: ros-humble-std-srvs + version: 4.2.3 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-rqt-gui: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-python-qt-binding: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rosbag2-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-bag-1.1.4-py310h927cc32_3.tar.bz2 + ros-humble-rosidl-default-runtime: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-std-srvs-4.2.3-py310h927cc32_3.tar.bz2 hash: - md5: ceed27c1869372b2a83ee0259d0b30ab - sha256: a87031f8375c94ac31885e91bca5f3ace8d7fb84b2a28cd5e770e48d597bcdfe + md5: 03eaea5fa0261017df86807cb88de1ac + sha256: 84f19ec78e08214a28a34af1f32e308d2fd5a097a2a63c1ea123a5aa088cb6ff optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 85707 - timestamp: 1675852048550 -- name: ros-humble-rqt-bag-plugins - version: 1.1.4 + size: 76961 + timestamp: 1675736710584 +- name: ros-humble-rcl + version: 5.3.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rqt-plot: '*' - ros-humble-rqt-gui: '*' - ros-humble-std-msgs: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-tracetools: '*' + ros-humble-rcutils: '*' + ros-humble-rcl-logging-interface: '*' + ros-humble-rosidl-runtime-c: '*' ros-humble-ros-workspace: '*' - pycairo: '*' - ros-humble-rqt-bag: '*' - ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' - ros-humble-rclpy: '*' + ros-humble-rmw: '*' + ros-humble-rcl-logging-spdlog: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - pillow: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rosbag2: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-bag-plugins-1.1.4-py310h927cc32_3.tar.bz2 + ros-humble-rcl-yaml-param-parser: '*' + ros-humble-rmw-implementation: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-5.3.2-py310h927cc32_3.tar.bz2 hash: - md5: 796af8c74fa5b42ab46f3fdf1ffc66cb - sha256: 74d6a442ca06440fd31dd66a207950916c7260de3a1a17c309e8fe5e455aedd2 + md5: f62aa0bd679f29aeda48ba92cc788300 + sha256: 7e9f0222103f8e9925559dc1a541c9fdb84a6c92fd229a58ddb6c2005e375e06 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 30935 - timestamp: 1675856651867 -- name: ros-humble-rqt-console - version: 2.0.2 + size: 131749 + timestamp: 1675745323753 +- name: ros-humble-rcl-interfaces + version: 1.2.1 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-rclpy: '*' - ros-humble-rqt-gui: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' - ros-humble-python-qt-binding: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rqt-py-common: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-console-2.0.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-interfaces-1.2.1-py310h927cc32_3.tar.bz2 hash: - md5: c0259e101ab3ce7860e4a8eb44cd8c7e - sha256: 03520915398c196c11ef6ea7ceed9c5b16518c47881494cd0d8afd1ba9ecb8a4 + md5: 7ec7c2c1a9e882bcfd50b5e6489b944a + sha256: 130c456de05184ad0f478d73908890da907dbe08f5b92890e2233d2bd792d52c optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 56291 - timestamp: 1675842476163 -- name: ros-humble-rqt-graph - version: 1.3.0 + size: 263286 + timestamp: 1675737880216 +- name: ros-humble-rcl-yaml-param-parser + version: 5.3.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-qt-dotgraph: '*' - ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble + yaml: '>=0.2.5,<0.3.0a0' + ros-humble-libyaml-vendor: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' - ros-humble-python-qt-binding: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-graph-1.3.0-py310h927cc32_3.tar.bz2 + yaml-cpp: '>=0.7.0,<0.8.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-yaml-param-parser-5.3.2-py310h927cc32_3.tar.bz2 hash: - md5: c387d4353513a20b071949fe720a2cf0 - sha256: 79102783462a180658a670f55b6dddc6a1226ff28dde642f8a85ab372683a30b + md5: 83627810d6ae37d8a7db05c0035432a8 + sha256: c3d9a1a1bcab2c81afdcaa616f7d903b9abb0d1ae56de63474040947b18dc9c1 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 47837 - timestamp: 1675841477767 -- name: ros-humble-rqt-image-view - version: 1.2.0 + size: 31728 + timestamp: 1675727383196 +- name: ros-humble-rosgraph-msgs + version: 1.2.1 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui-cpp: '*' - ros-humble-rqt-gui: '*' - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-ros-workspace: '*' - ros-humble-qt-gui-cpp: '*' - ros-humble-image-transport: '*' - xorg-libxext: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-cv-bridge: '*' - xorg-libx11: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-image-view-1.2.0-py310h927cc32_3.tar.bz2 + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosgraph-msgs-1.2.1-py310h927cc32_3.tar.bz2 hash: - md5: af1bf7f52b667502ff84c63ebbf8c738 - sha256: 76be53ff8d416714f60eb47eaf5c8b10f0e9f2ad1a4ba5d54d2b4801ed727d52 + md5: 16d24568628a70afda2784a626eee158 + sha256: eb2ce795b20464095ce3742cd59ce17abe29b305b1b03ba0039fdaef3d31bfaa optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 208982 - timestamp: 1675844302027 -- name: ros-humble-rqt-msg - version: 1.2.0 + size: 46184 + timestamp: 1675737548908 +- name: ros-humble-rcl-action + version: 5.3.2 manager: conda platform: osx-arm64 dependencies: + ros-humble-rosidl-runtime-c: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-rqt-console: '*' - ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - catkin_pkg: '*' - ros-humble-python-qt-binding: '*' + ros-humble-action-msgs: '*' + ros-humble-rcl: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rqt-py-common: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-msg-1.2.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-action-5.3.2-py310h927cc32_3.tar.bz2 hash: - md5: 993360c425201fb211b7286b4b56bdb0 - sha256: 6b38def065f81421640ce0bbfef78030e435b94579e9c58a3690cded31ab9eb7 + md5: 4880406ed176c4e949083c73c1ee625a + sha256: 91e80dfe25b6dee59928f311e9e83a9af9919350e1439b73a8a2cc82e7e13e23 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 19859 - timestamp: 1675843969771 -- name: ros-humble-rqt-plot - version: 1.1.2 + size: 50561 + timestamp: 1675746860008 +- name: ros-humble-rosidl-runtime-c + version: 3.1.4 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' - ros-humble-std-msgs: '*' - ros-humble-ros-workspace: '*' - ros-humble-qt-gui-py-common: '*' - matplotlib-base: '*' - ros-humble-rclpy: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-typesupport-interface: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-rqt-py-common: '*' libcxx: '>=14.0.6' - catkin_pkg: '*' - ros-humble-python-qt-binding: '*' - ros-humble-rqt-gui-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-plot-1.1.2-py310h927cc32_3.tar.bz2 + ros-humble-rcutils: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-c-3.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 2236c4b23f3c79fdf77598dfe4cc98ef - sha256: 4adb968b950edcd4ce22a6a7b79225afb5c9a986e0b7faa24a157a9bf9cc552b + md5: 6a0648dd7f16b25ad3cf65cbc2a5b757 + sha256: 81cee367699c36969b39ffe8b4d5379c0fb66784b892a254aa1797e8160f9e73 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 47189 - timestamp: 1675841139376 -- name: ros-humble-rqt-publisher - version: 1.5.0 + size: 29689 + timestamp: 1675725441336 +- name: ros-humble-unique-identifier-msgs + version: 2.2.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-rqt-py-common: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - catkin_pkg: '*' - ros-humble-python-qt-binding: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-qt-gui-py-common: '*' - ros-humble-rqt-gui-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-publisher-1.5.0-py310h927cc32_3.tar.bz2 + ros-humble-rosidl-default-runtime: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-unique-identifier-msgs-2.2.1-py310h927cc32_3.tar.bz2 hash: - md5: 215498d973c047dead86bccc3d860a9d - sha256: 77c52cc591f5472fc728e5edbe1161124741029a84137186e1d548eec59d21c8 + md5: e9690bf42e909798b90f651dc766f272 + sha256: 32b59ba0c881408e6f02d597a17567798ab16cd358047236afda3696dcf520e7 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 27694 - timestamp: 1675841383480 -- name: ros-humble-rqt-py-common - version: 1.1.4 + size: 47765 + timestamp: 1675736011092 +- name: ros-humble-rcl-lifecycle + version: 5.3.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-qt-gui: '*' + ros-humble-lifecycle-msgs: '*' + ros-humble-tracetools: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-python-qt-binding: '*' + ros-humble-rcl: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-py-common-1.1.4-py310h927cc32_3.tar.bz2 + ros-humble-rosidl-runtime-c: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-lifecycle-5.3.2-py310h927cc32_3.tar.bz2 hash: - md5: 1c74759c65217b847158b38988182c5c - sha256: 843cf8e533ec536ac722d72f285e2185f98b191089a989a772ea19cfda88b1be + md5: 14bae084d84b7c959723953d050fd613 + sha256: 8e089e132d1d6b656166c2507e1f48941a1b3d8529a81d36cc94bb1f57e010f6 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 44573 - timestamp: 1675748499411 -- name: ros-humble-rqt-py-console - version: 1.0.2 + size: 31527 + timestamp: 1675746713761 +- name: ros-humble-rcl-logging-interface + version: 2.3.1 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-rqt-gui: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' - ros-humble-python-qt-binding: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - ros-humble-qt-gui-py-common: '*' - ros-humble-rqt-gui-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-py-console-1.0.2-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-logging-interface-2.3.1-py310h927cc32_3.tar.bz2 hash: - md5: d337885e8931c3e0c728e1ce20440544 - sha256: 7b061763c2dd8316e8eddef25eeb9b48ac3d24f62c9ad2f1574c19d4b7a65f58 + md5: 4590986257cdffe11d2a12ddda391878 + sha256: 8f4352b6394bef1c8751437f0461fc1a7d064f3ced124d84c6a58297d32bb36d optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 16834 - timestamp: 1675841572424 -- name: ros-humble-rqt-reconfigure - version: 1.1.1 + size: 17987 + timestamp: 1675726144737 +- name: ros-humble-rmw-implementation + version: 2.8.2 manager: conda platform: osx-arm64 dependencies: + ros-humble-rmw-connextdds: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rqt-console: '*' - ros-humble-rqt-gui: '*' - pyyaml: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-qt-gui-py-common: '*' - ros-humble-rclpy: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-rcpputils: '*' + ros-humble-rmw-fastrtps-cpp: '*' + ros-humble-rmw-implementation-cmake: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' - ros-humble-rqt-py-common: '*' libcxx: '>=14.0.6' - ros-humble-rqt-gui-py: '*' - ros-humble-python-qt-binding: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-reconfigure-1.1.1-py310h927cc32_3.tar.bz2 + ros-humble-rcutils: '*' + ros-humble-rmw-fastrtps-dynamic-cpp: '*' + ros-humble-rmw-cyclonedds-cpp: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-implementation-2.8.2-py310h927cc32_3.tar.bz2 hash: - md5: 6e6165a0a1784a1de111fa81c6da810a - sha256: 9b54b07a0dab0b902b4459c8d5d1e82cc027b92e367fcc89f8d4f68542ad0335 + md5: 5cee37b567c6832ef65109d7e3e56f41 + sha256: 74041227f7c039029a90d097e3ba08d875d0fc1d48fb28674e076a1dc914b89d optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 51455 - timestamp: 1675844286317 -- name: ros-humble-rqt-service-caller - version: 1.0.5 + size: 29304 + timestamp: 1675741531735 +- name: ros-humble-rpyutils + version: 0.2.1 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rqt-py-common: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-service-caller-1.0.5-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rpyutils-0.2.1-py310h927cc32_3.tar.bz2 hash: - md5: 3ea8f005b564cda48f3fb062299bd8f4 - sha256: 3678dcb24ebe6a60e497f084867c726cfd3b23465be536b7fd4eeae00aaf31c7 + md5: cbe5078978287fcdd0b1c05ad8742bc9 + sha256: da8b0a942c21a55f59bc71fbd24f84fdf6c1ad9c64c23be979662feabb56862d optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 21437 - timestamp: 1675841461539 -- name: ros-humble-rqt-shell - version: 1.0.2 + size: 10798 + timestamp: 1675640802698 +- name: ros-humble-composition-interfaces + version: 1.2.1 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - catkin_pkg: '*' - ros-humble-python-qt-binding: '*' ros-humble-ros-workspace: '*' - ros-humble-qt-gui-py-common: '*' - ros-humble-rqt-gui-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-shell-1.0.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-composition-interfaces-1.2.1-py310h927cc32_3.tar.bz2 hash: - md5: 6768b8f8d319be0fb70755d1af94a2b3 - sha256: 8625ec797c424b46c77ae724e050f5490e44d1f8e2172f03adcefa7000753c31 + md5: ffc38cfa07301f9b096f000ee05628f1 + sha256: 0314883a46b5a1a76376b1a30a6ba2ad677f7fe7a8da2b2c1e5508f5dc681e49 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 19940 - timestamp: 1675841353490 -- name: ros-humble-rqt-srv - version: 1.0.3 + size: 111837 + timestamp: 1675739305173 +- name: ros-humble-osrf-pycommon + version: 2.0.2 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-rqt-msg: '*' - ros-humble-rqt-gui: '*' - ros2-distro-mutex: 0.3.* humble + importlib-metadata: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-srv-1.0.3-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-osrf-pycommon-2.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 5c8b1bd5dabfbcef19ce5d341359f655 - sha256: 4317ad6a7426029d34fbdb323affec3f86bef8594ff6b2e5058cae6ed911d812 + md5: f5610c1a79cba443cf083c4db51fba7f + sha256: d1e5627a66011de9f9a5c77d735bc31d930bfedfc58f15d97eb6f5c83b94a3b1 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12227 - timestamp: 1675847833135 -- name: ros-humble-rqt-topic - version: 1.5.0 + size: 44946 + timestamp: 1675634706036 +- name: ros-humble-libstatistics-collector + version: 1.3.0 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' + ros-humble-rcpputils: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-python-qt-binding: '*' + ros-humble-rcl: '*' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rqt-py-common: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-topic-1.5.0-py310h927cc32_3.tar.bz2 + ros-humble-statistics-msgs: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-libstatistics-collector-1.3.0-py310h927cc32_3.tar.bz2 hash: - md5: f4eaacba67be5beece60548a5e5d5447 - sha256: 6e4b8a5af9901f6647c6922c6e7bead1130c5db92c363c7122270b0169006394 + md5: ae7de02a14f6a69674fb611f46a07e54 + sha256: c32d08a17a0e941656096b43512376cfd150710563ed2dd543979b3bfea5ffa4 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 24836 - timestamp: 1675841246960 -- name: ros-humble-ignition-math6-vendor - version: 0.0.2 + size: 33097 + timestamp: 1675746573620 +- name: ros-humble-rcpputils + version: 2.4.0 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - libignition-math6: '>=6.13.0,<7.0a0' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ignition-cmake2-vendor: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ignition-math6-vendor-0.0.2-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcpputils-2.4.0-py310h927cc32_3.tar.bz2 hash: - md5: 6733eeaec159e338b0be0e1a813ffb29 - sha256: aa0284614db75f1b2a618439f0ab2dd641a533b4af18219fb2de97ab92de5979 + md5: 6537548ba99b7ebd824f79bcbb1eed6d + sha256: 38157b3e2fc219a3404380310d22015441515c0b1cbec34478ea8fb8e0b6cd7f optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 8214 - timestamp: 1675721553334 -- name: ros-humble-image-transport - version: 3.1.5 + size: 50010 + timestamp: 1675725567788 +- name: ros-humble-rosidl-runtime-cpp + version: 3.1.4 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-message-filters: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-pluginlib: '*' + ros-humble-rosidl-runtime-c: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-image-transport-3.1.5-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-cpp-3.1.4-py310h927cc32_3.tar.bz2 hash: - md5: cc122ac3d0681261284535fc18e87844 - sha256: 98f0beb15476cbf47ddeb2813750e8511bef451a387408a0f84e61fcc1b57395 + md5: f295316439fc35f0c9e99190dd1a494e + sha256: 4f026bfd697c5a7ff091fad10f58d84e25cbe780bb232ab92ee6818c1963f7b1 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 528637 - timestamp: 1675841189828 -- name: ros-humble-interactive-markers - version: 2.3.2 + size: 20540 + timestamp: 1675726124566 +- name: ros-humble-rosidl-typesupport-c + version: 2.0.0 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-tf2: '*' - ros-humble-rclpy: '*' + ros-humble-rcpputils: '*' + ros-humble-rosidl-typesupport-interface: '*' + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + ros-humble-rcutils: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rmw: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - ros-humble-visualization-msgs: '*' - ros-humble-tf2-geometry-msgs: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-interactive-markers-2.3.2-py310h927cc32_3.tar.bz2 + ros-humble-rosidl-typesupport-introspection-c: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-c-2.0.0-py310h927cc32_3.tar.bz2 hash: - md5: f60fe659187a8e78a6fc3a7816621bb4 - sha256: fedca944ed35af42a7dc083b735cecf638b42077019a1f96ddeba04ac84ce717 + md5: cf18272d156237e39c8c73bc43023405 + sha256: 020e36c899d198e218d3b1af4a75733e6a71c56c4bea98478ee9e89cdb282ae7 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 254545 - timestamp: 1675842632920 -- name: ros-humble-laser-geometry - version: 2.4.0 + size: 30519 + timestamp: 1675734640965 +- name: ros-humble-rosidl-typesupport-cpp + version: 2.0.0 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-eigen3-cmake-module: '*' - ros-humble-rclpy: '*' - ros-humble-sensor-msgs: '*' - ros-humble-sensor-msgs-py: '*' - ros-humble-tf2: '*' + ros-humble-rcpputils: '*' + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + ros-humble-rcutils: '*' + ros-humble-rosidl-typesupport-interface: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rosidl-typesupport-c: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - eigen: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-laser-geometry-2.4.0-py310h927cc32_3.tar.bz2 + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-cpp-2.0.0-py310h927cc32_3.tar.bz2 hash: - md5: d38a6e65f894da829f1ad905b16a6993 - sha256: e9e72983630a10d2ca38b66e5a131b5c95a72f823fd09c8db8c123fa1b880f97 + md5: 63cae3439b7fe5e66d9c21352384e611 + sha256: 8166500ab9a69b394c8d3fe0cf9a0c68040c9219b54e0876ce43e326e3095298 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 35531 - timestamp: 1675748445114 -- name: ros-humble-map-msgs - version: 2.1.0 + size: 29927 + timestamp: 1675735096089 +- name: ros-humble-statistics-msgs + version: 1.2.1 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-nav-msgs: '*' ros-humble-rosidl-default-runtime: '*' - ros-humble-sensor-msgs: '*' - ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-map-msgs-2.1.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-statistics-msgs-1.2.1-py310h927cc32_3.tar.bz2 hash: - md5: 0cd86957092ecd368226b4a55805c1f7 - sha256: 78689f75ec08aa7e6ce92210a4afbe9fd4b79d7f122ad3e1aa846c5d0570e205 + md5: 5716a3c6d08338f35e488cc9b26c58d3 + sha256: cc2f8a6a793185f1389b1ccfe957912a72b37d4f02fb5cc520ba64c6c4c8dc0b optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 161344 - timestamp: 1675743003256 -- name: ros-humble-pluginlib - version: 5.1.0 + size: 74014 + timestamp: 1675737407331 +- name: ros-humble-tracetools + version: 4.1.1 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-rcpputils: '*' - ros-humble-tinyxml2-vendor: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcutils: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-class-loader: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pluginlib-5.1.0-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tracetools-4.1.1-py310h927cc32_3.tar.bz2 hash: - md5: 18c229aba56e36f32b8912e45718dac6 - sha256: 2ead6c329a67e62c90782472723dd0f1f4853730e4570963feb38b3746f8012b + md5: c0c971dc6112d5c221875ac8560ce818 + sha256: fcea962129890251d74a55cb07763df86ef271964dbbf9295c079dec1d149eb5 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 28740 - timestamp: 1675727620224 -- name: ros-humble-resource-retriever - version: 3.1.1 + size: 22253 + timestamp: 1675723412934 +- name: ros-humble-class-loader + version: 2.2.0 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-libcurl-vendor: '*' + ros-humble-rcpputils: '*' + ros-humble-console-bridge-vendor: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-resource-retriever-3.1.1-py310h927cc32_3.tar.bz2 + console_bridge: '>=1.0.2,<1.1.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-class-loader-2.2.0-py310h2eb544e_3.tar.bz2 hash: - md5: e68b0af1c8de04a62da4e27a0d6a1ed8 - sha256: 857d0f2e27e103bcdc57fd9f59fcfd5e4ca028835f632cccf8f9ef84e7f763a4 + md5: 6b51a16cb2d3ea2e82b4556f00efc4d8 + sha256: 6b339a9a4081c39a46bef911d821e4fa0d118eaf311fb743200caaf26543ea05 optional: false category: main - build: py310h927cc32_3 + build: py310h2eb544e_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 25734 - timestamp: 1675723222059 -- name: ros-humble-rviz-common - version: 11.2.5 + size: 51627 + timestamp: 1675726258183 +- name: ros-humble-tinyxml2-vendor + version: 0.7.5 manager: conda platform: osx-arm64 dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-tf2: '*' - ros-humble-tf2-ros: '*' - ros-humble-std-msgs: '*' - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-urdf: '*' - ros-humble-rviz-rendering: '*' - ros-humble-pluginlib: '*' - ros-humble-resource-retriever: '*' ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' - ros-humble-tf2-geometry-msgs: '*' - ros-humble-yaml-cpp-vendor: '*' - xorg-libxext: '*' - ros-humble-tinyxml2-vendor: '*' - ros-humble-message-filters: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rviz-ogre-vendor: '*' - xorg-libx11: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-common-11.2.5-py310h927cc32_3.tar.bz2 + tinyxml2: '>=9.0.0,<10.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tinyxml2-vendor-0.7.5-py310hb6d62d9_3.tar.bz2 hash: - md5: 603ed5b105b4f9d6e63bf698c8d258c7 - sha256: 0d24033b37d79c9372c269b34d9d4c94d3efdf5bb428490af01b171976aa3a20 + md5: a65f34a40a225c4db7010662ff89d847 + sha256: be4e355e49e1725fdb4ba382ef12badca247bbee3534dfc14af58a5a646c4164 optional: false category: main - build: py310h927cc32_3 + build: py310hb6d62d9_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 621012 - timestamp: 1675832688484 -- name: ros-humble-rviz-ogre-vendor - version: 11.2.5 + size: 12187 + timestamp: 1675640545857 +- name: ros-humble-yaml-cpp-vendor + version: 8.0.2 manager: conda platform: osx-arm64 dependencies: - python: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - libzlib: '>=1.2.13,<1.3.0a0' - xorg-libxaw: '*' - freeimage: '>=3.18.0,<3.19.0a0' ros-humble-ros-workspace: '*' - xorg-libxext: '*' - pugixml: '>=1.11.4,<1.12.0a0' - assimp: '>=5.2.5,<5.2.6.0a0' - xorg-libxrandr: '*' - freetype: '>=2.12.1,<3.0a0' ros2-distro-mutex: 0.3.* humble - zziplib: '>=0.13.69,<0.14.0a0' - libcxx: '>=14.0.6' - xorg-libx11: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-ogre-vendor-11.2.5-py310h57a32cc_3.tar.bz2 + yaml-cpp: '>=0.7.0,<0.8.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-yaml-cpp-vendor-8.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 90701dabb957c0293dcc3764d6c0a333 - sha256: 4dddd1456926b4cf3a521cb0d3856cb5be4664fb0f3835a666758272b2899a4b + md5: 9ea72a57911cbfad36e98fbf718637bc + sha256: 3c580acd58ac2f9a1da7ab3c27ed27d90b5da94ffed22312d109acde8cc54ad8 optional: false category: main - build: py310h57a32cc_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 5055865 - timestamp: 1675719078299 -- name: ros-humble-rviz-rendering - version: 11.2.5 + size: 10893 + timestamp: 1675640641715 +- name: assimp + version: 5.2.5 manager: conda platform: osx-arm64 dependencies: - glew: '>=2.1.0,<2.2.0a0' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-rviz-assimp-vendor: '*' - ros-humble-ros-workspace: '*' - ros-humble-resource-retriever: '*' + libcxx: '>=14.0.4' + boost-cpp: '>=1.78.0,<1.78.1.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + zlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/assimp-5.2.5-h276577b_0.tar.bz2 + hash: + md5: 75a8a2356089616af1b69037e5fac640 + sha256: debec3cffc8ecf0b51372ca61cba093a53cbf898784ffb6780791930eeb3633d + optional: false + category: main + build: h276577b_0 + subdir: osx-arm64 + build_number: 0 + license: Modified BSD + license_family: BSD + size: 2900794 + timestamp: 1666714573969 +- name: xorg-libxrandr + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + xorg-libxrender: '*' + xorg-randrproto: '*' + xorg-renderproto: '*' + xorg-libx11: '>=1.7.1,<2.0a0' + xorg-xextproto: '*' xorg-libxext: '*' - ros-humble-eigen3-cmake-module: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rviz-ogre-vendor: '*' - xorg-libx11: '*' - eigen: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-rendering-11.2.5-py310h2da077f_3.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxrandr-1.5.2-h3422bc3_1.tar.bz2 hash: - md5: fb4037851b162238b28430ac3e2c335f - sha256: 5011bb58dfd7ce68f9d75a4e63cf5b1d9f1576d84f92ca6c540eac71eb80cc95 + md5: 07645abfe2fbe5d4793576a80ff22732 + sha256: 622bf68297075a451ab4df59ac218c9f47c1416d6bac1bf49e0f15e344d88c31 optional: false category: main - build: py310h2da077f_3 - arch: arm64 + build: h3422bc3_1 subdir: osx-arm64 - build_number: 3 - size: 953680 - timestamp: 1675725039313 -- name: ros-humble-tf2 - version: 0.25.2 + build_number: 1 + license: MIT + license_family: MIT + size: 25915 + timestamp: 1621515904504 +- name: zziplib + version: 0.13.69 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-console-bridge-vendor: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rcutils: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - console_bridge: '>=1.0.2,<1.1.0a0' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-0.25.2-py310h2eb544e_3.tar.bz2 + zlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/zziplib-0.13.69-he1e0b03_1.tar.bz2 hash: - md5: 3cbf4817b787e39df21e84d0bde0d139 - sha256: b8b898021983f44b5d5bac03fcab289ba88034617af967a45d7f9b568bb79b88 + md5: 45475ada2aaf132d1be927f53d3a2567 + sha256: e48dbd5e30f5c0efdf7d929664e9a623551ebb2dd4033a76bc31ded595847352 optional: false category: main - build: py310h2eb544e_3 - arch: arm64 + build: he1e0b03_1 subdir: osx-arm64 - build_number: 3 - size: 93947 - timestamp: 1675740327736 -- name: ros-humble-tf2-geometry-msgs - version: 0.25.2 + build_number: 1 + license: GPL-2.0 + license_family: GPL + size: 95357 + timestamp: 1617437173697 +- name: ros-humble-urdfdom-headers + version: 1.0.6 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-tf2: '*' - ros-humble-orocos-kdl-vendor: '*' - ros-humble-tf2-ros: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-tf2-ros-py: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-geometry-msgs-0.25.2-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-urdfdom-headers-1.0.6-py310h927cc32_3.tar.bz2 hash: - md5: 5952f8a4ea0500f783b7fb321a5c31eb - sha256: 6c7b6a6c3353e2257e74a818c929cffb323fbe7459c222a8d5d5c889142c63dc + md5: af814a41a3fa4638eb69b80a94d95091 + sha256: a33df31d99b3d94cb9235bff5c7816f4d824045adab49acd171881c77a1d0769 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 27243 - timestamp: 1675825861712 -- name: ros-humble-tf2-ros - version: 0.25.2 + size: 20469 + timestamp: 1675635506069 +- name: ros-humble-urdf-parser-plugin + version: 2.6.0 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp-action: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-tf2: '*' - ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-tf2-msgs: '*' + ros-humble-urdfdom-headers: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-message-filters: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rclcpp-components: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-ros-0.25.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-urdf-parser-plugin-2.6.0-py310h927cc32_3.tar.bz2 hash: - md5: 0e603ec6c80431f60580cfbe678db1d7 - sha256: 58007f1e233bce8074eda32eeab61edda967fae43f9ea3c53654345c388c0c61 + md5: 1dee965b861932231457c012a807fb38 + sha256: 7867abce0b33e224f026e3cbbcb2fe51525c75fd4310289b6caf848a88738883 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 407301 - timestamp: 1675771502199 -- name: ros-humble-visualization-msgs - version: 4.2.3 + size: 14792 + timestamp: 1675723601976 +- name: ros-humble-urdfdom + version: 3.0.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-sensor-msgs: '*' - ros-humble-std-msgs: '*' + ros-humble-console-bridge-vendor: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-builtin-interfaces: '*' + ros-humble-tinyxml-vendor: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-visualization-msgs-4.2.3-py310h927cc32_3.tar.bz2 + ros-humble-urdfdom-headers: '*' + console_bridge: '>=1.0.2,<1.1.0a0' + tinyxml: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-urdfdom-3.0.2-py310h2eb544e_3.tar.bz2 hash: - md5: 38d7589170380940a9d5c6fde8382a42 - sha256: 134a445dbfe5989e25d3e682da785cc7f5101783fac5f132f1f71dfab6d18d0a + md5: 23355324a933bde4acd2a7d672c9ce41 + sha256: 103f6184bdcf54a56f50285cd753683567c7cb4c5a6394fd5562c615cb43815f optional: false category: main - build: py310h927cc32_3 + build: py310h2eb544e_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 229736 - timestamp: 1675742190363 -- name: ros-humble-ament-package - version: 0.14.0 + size: 117525 + timestamp: 1675724605931 +- name: ros-humble-ignition-cmake2-vendor + version: 0.0.2 manager: conda platform: osx-arm64 dependencies: - importlib-metadata: '*' + libignition-cmake2: '>=2.16.0,<3.0a0' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - setuptools: '*' - importlib_resources: '*' - libcxx: '>=14.0.6' - numpy: '>=1.21.6,<2.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-package-0.14.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ignition-cmake2-vendor-0.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 66a67a135aadc6eb670c79df7c472b92 - sha256: 5ec75241b828b8132956659f8e84f45b960b247adf6351d567e6f784d32295fb + md5: 1e0e58004ae5aa5de74e5de4ae2fbf76 + sha256: 49e76edfa0e18ca941b73d86181ad3abcd1727709b9a22c6ccb10a159b21e50c optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 27477 - timestamp: 1675631226577 -- name: ros-humble-rosidl-adapter - version: 3.1.4 + size: 8132 + timestamp: 1675720855536 +- name: ros-humble-eigen3-cmake-module + version: 0.1.1 manager: conda platform: osx-arm64 dependencies: - empy: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-adapter-3.1.4-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-eigen3-cmake-module-0.1.1-py310h927cc32_3.tar.bz2 hash: - md5: 41b94883ff08e32607602214d77526e7 - sha256: 6a8e16f175efe1fab392f42bda02f670b9275324dc87520fdd0c536412f3db0d + md5: b6c5c94cddfeacbfd6190a090c12c065 + sha256: 0decbde26e5ba2c6661b55d06ae7f231439a4fe951e74adf13a62f22841e2700 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 38211 - timestamp: 1675721673101 -- name: ros-humble-ament-cmake-gmock - version: 1.3.3 + size: 11487 + timestamp: 1675642342426 +- name: ros-humble-sensor-msgs-py + version: 4.2.3 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake-test: '*' - gmock: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-cmake-gtest: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-gmock-vendor: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-gmock-1.3.3-py310h927cc32_3.tar.bz2 + ros-humble-sensor-msgs: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-sensor-msgs-py-4.2.3-py310h927cc32_3.tar.bz2 hash: - md5: aa2b38615e54b3d308af932aff504d10 - sha256: 03bb0d2c19c60b9e729e27f4b14a153fb0518de3abd2adc0530004412b796564 + md5: 1edba103117e78998a2cacca6f893d50 + sha256: e603159343068549b4eecc318d35cdc487faf638cff29d3dfe98719c400aff2f optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 13689 - timestamp: 1675638758134 -- name: ros-humble-ament-cmake-gtest - version: 1.3.3 + size: 18513 + timestamp: 1675741649359 +- name: ros-humble-libcurl-vendor + version: 3.1.1 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython + libcurl: '>=7.87.0,<8.0a0' + pkg-config: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake-test: '*' ros2-distro-mutex: 0.3.* humble - gtest: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - ros-humble-gtest-vendor: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-gtest-1.3.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-libcurl-vendor-3.1.1-py310h667bcb1_3.tar.bz2 hash: - md5: 82b00008247aad26ae230da90edf8ed7 - sha256: 091d035689cae937fbf24ee9f5560e519a2885955e306d49ebfe4dcc9baf01ce + md5: 18fe82a927d3cdca25c4639971cec76e + sha256: 5319c7714119f92bf2d24773f67a6387a771018a5bc25a985efb32c1d6aeafe6 optional: false category: main - build: py310h927cc32_3 + build: py310h667bcb1_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 14300 - timestamp: 1675637943001 -- name: ros-humble-ament-cmake-pytest - version: 1.3.3 + size: 11503 + timestamp: 1675640758951 +- name: glew + version: 2.1.0 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake-test: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - pytest: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-pytest-1.3.3-py310h927cc32_3.tar.bz2 + libcxx: '>=11.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2 hash: - md5: c603f94c0c46d816573fe5f0e04ffb40 - sha256: 080de504ba04f294321547cbc4960f4863312b2f6ae0aaa5005d7d4d8d6cc1dc + md5: ec67d4b810ad567618722a2772e9755c + sha256: 582991e48b1000eea38a1df68309652a92c1af62fa96f78e6659c799d28d00cf optional: false category: main - build: py310h927cc32_3 - arch: arm64 + build: h9f76cd9_2 subdir: osx-arm64 - build_number: 3 - size: 13732 - timestamp: 1675638226139 -- name: ros-humble-domain-coordinator - version: 0.10.0 + build_number: 2 + license: BSD-3-Clause + license_family: BSD + size: 783742 + timestamp: 1607113139225 +- name: ros-humble-rviz-assimp-vendor + version: 11.2.5 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' + assimp: '>=5.2.5,<5.2.6.0a0' libcxx: '>=14.0.6' + numpy: '>=1.21.6,<2.0a0' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-domain-coordinator-0.10.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-assimp-vendor-11.2.5-py310h07a1639_3.tar.bz2 hash: - md5: 3f721e4c67c1f331feb1a12d08089278 - sha256: 557d313633208407642a8fc98f338622f5da0edeee4d1de33165b83e1e3bdf11 + md5: a888294c8e347bd19706bc67ab6fed26 + sha256: 47a93fa801ba89d939a436b41a617eaa94881a7268a4476831df6d3eb20f1790 optional: false category: main - build: py310h927cc32_3 + build: py310h07a1639_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 9703 - timestamp: 1675639618522 -- name: ros-humble-ament-cmake-include-directories - version: 1.3.3 + size: 11541 + timestamp: 1675720757641 +- name: ros-humble-console-bridge-vendor + version: 1.4.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' + console_bridge: '>=1.0.2,<1.1.0a0' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-include-directories-1.3.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-console-bridge-vendor-1.4.1-py310h2eb544e_3.tar.bz2 hash: - md5: e6e9c4a3667e1c2cbfcd3db796a5d248 - sha256: db7ab2023988df57d1107e8f9615763897f33878b67b0c713dacd8ed062b3683 + md5: a24ca37e3fe6f9b829ba5df2f9c18b4a + sha256: df7004267a05dc8b2e35a6dd9181cac6ac815285a1040eaccc1632ced6917fcf optional: false category: main - build: py310h927cc32_3 + build: py310h2eb544e_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11764 - timestamp: 1675634881971 -- name: ros-humble-rmw-connextdds - version: 0.11.1 + size: 11108 + timestamp: 1675723508534 +- name: ros-humble-orocos-kdl-vendor + version: 0.2.5 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython + orocos-kdl: '>=1.5.1,<1.6.0a0' python_abi: 3.10.* *_cp310 - ros-humble-rmw-connextdds-common: '*' - ros-humble-ament-cmake: '*' + ros-humble-eigen3-cmake-module: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-connextdds-0.11.1-py310h927cc32_3.tar.bz2 + eigen: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-orocos-kdl-vendor-0.2.5-py310h927cc32_3.tar.bz2 hash: - md5: ee54bff0d89d3f429c21bc95a18d0ccd - sha256: 6104c6ccd884ea54c404936874a9ad63e44d3df18c079cb7054a50bba2f12651 + md5: 9642c11ef605785ce7c83b1704e14e57 + sha256: 5c4f456a8f94397cd42949d4365c32bc84f9131e0d202f04333cc8c65cca761e optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11533 - timestamp: 1675738824090 -- name: ros-humble-rmw-cyclonedds-cpp - version: 1.3.4 + size: 11762 + timestamp: 1675721646544 +- name: ros-humble-tf2-ros-py + version: 0.25.2 manager: conda platform: osx-arm64 dependencies: + ros-humble-tf2-msgs: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-cyclonedds: '*' - ros-humble-tracetools: '*' - ros-humble-rcutils: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-iceoryx-binding-c: '*' - ros-humble-rmw-dds-common: '*' + ros-humble-geometry-msgs: '*' + ros-humble-rclpy: '*' + ros-humble-sensor-msgs: '*' + ros-humble-std-msgs: '*' + ros-humble-tf2-py: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rosidl-typesupport-introspection-c: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-cyclonedds-cpp-1.3.4-py310h927cc32_3.tar.bz2 + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-ros-py-0.25.2-py310h927cc32_3.tar.bz2 hash: - md5: 84048015eb67a5668d2214ac116f8562 - sha256: 1b70c7a59b863be04690f4a0c486216bf126e809712d1d263a45fa86440da599 + md5: 1cd8aa0d1d589255ef674fcaaaefd53b + sha256: 866c6780b06f71b68b593aae654b2524e4772f33daae40ed8a4b904acd2994e7 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 169492 - timestamp: 1675737649119 -- name: ros-humble-rmw-fastrtps-dynamic-cpp - version: 6.2.2 + size: 26470 + timestamp: 1675755186596 +- name: ros-humble-tf2-msgs + version: 0.25.2 manager: conda platform: osx-arm64 dependencies: - ros-humble-fastrtps: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rmw-fastrtps-shared-cpp: '*' - ros-humble-rcutils: '*' - ros-humble-fastcdr: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rmw-dds-common: '*' - ros-humble-ament-cmake: '*' + ros-humble-geometry-msgs: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-fastrtps-cmake-module: '*' - ros-humble-rosidl-typesupport-introspection-c: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.2-py310h927cc32_3.tar.bz2 + ros-humble-action-msgs: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-msgs-0.25.2-py310h927cc32_3.tar.bz2 hash: - md5: e5938c8eb3677e396dcc286c7f2cc2ae - sha256: 2c4bdc771454768afab1fdad3bf7a53c2ab43a4d83c478a0766093dd54203aca + md5: e3ac79198295dc2857c1b675ce4bc177 + sha256: 13cfc80a27fb8beb4a4fe5ffdf5bfa7bc4033c5c6ebe9abeeeb2e9f8aacba7d6 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 127146 - timestamp: 1675739980345 -- name: ros-humble-rmw-implementation-cmake - version: 6.1.1 + size: 131383 + timestamp: 1675740847430 +- name: ros-humble-python-qt-binding + version: 1.1.1 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-implementation-cmake-6.1.1-py310h927cc32_3.tar.bz2 + qt-main: '>=5.15.6,<5.16.0a0' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + pyqt: '>=5.15.7,<5.16.0a0' + pyqt-builder: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-python-qt-binding-1.1.1-py310h927cc32_3.tar.bz2 hash: - md5: 1110efc055f7a6a19433e40e3b828e0a - sha256: 9e626ec0e8c4084acf00dc8f2dfbba666c909078c016a51804d391d657d772f9 + md5: 70d5e52e4b45ea69b3cbdad394fc7f85 + sha256: ed57ff9956d64a9d62b07a4b4563f6a08f0566ccac2bb1a0508ab700b6e85445 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 14095 - timestamp: 1675722814652 -- name: ros-humble-spdlog-vendor - version: 1.3.1 + size: 27991 + timestamp: 1675721948360 +- name: ros-humble-rqt-gui + version: 1.1.4 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - spdlog: '>=1.11.0,<1.12.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-spdlog-vendor-1.3.1-py310he44a079_3.tar.bz2 + ros-humble-qt-gui: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + catkin_pkg: '*' + ros-humble-ament-index-python: '*' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-gui-1.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 2e039b3f47c2d4b1d4ce921f8e3c1a56 - sha256: ce268ebf1184396f4556713c64eb7eb42c89a7827001980e9c07403e3fc393ef + md5: 06e339f156139e66a0e921082fc09796 + sha256: accc2077c5234fb4ab4e9a5c815e1507871a405b8a305ed145dfc160a4897929 optional: false category: main - build: py310he44a079_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 10999 - timestamp: 1675721543099 -- name: ros-humble-class-loader - version: 2.2.0 + size: 106757 + timestamp: 1675826335722 +- name: ros-humble-rqt-gui-py + version: 1.1.4 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-console-bridge-vendor: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - console_bridge: '>=1.0.2,<1.1.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-class-loader-2.2.0-py310h2eb544e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-gui-py-1.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 6b51a16cb2d3ea2e82b4556f00efc4d8 - sha256: 6b339a9a4081c39a46bef911d821e4fa0d118eaf311fb743200caaf26543ea05 + md5: 62c8f166dc4acd38ce929a7a8af64ac5 + sha256: 9ebe0681bae0db084a0033547d2a4fe1daa28ce3a4839a970e1985976f1d1820 optional: false category: main - build: py310h2eb544e_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 51627 - timestamp: 1675726258183 -- name: ros-humble-composition-interfaces - version: 1.2.1 + size: 14250 + timestamp: 1675831063098 +- name: ros-humble-rosbag2-py + version: 0.15.4 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-rosidl-default-runtime: '*' + ros-humble-rosbag2-storage: '*' + ros-humble-rosbag2-compression: '*' + ros-humble-rpyutils: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-rosbag2-cpp: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-rosbag2-transport: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-composition-interfaces-1.2.1-py310h927cc32_3.tar.bz2 + ros-humble-pybind11-vendor: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosbag2-py-0.15.4-py310h927cc32_3.tar.bz2 hash: - md5: ffc38cfa07301f9b096f000ee05628f1 - sha256: 0314883a46b5a1a76376b1a30a6ba2ad677f7fe7a8da2b2c1e5508f5dc681e49 + md5: 6ac11f3e3ff1351a217ebeb69e30ae90 + sha256: 223910a95b8ec026015fc6c56a5eadfc480703ce1e1548963317523ab69a9e5a optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 111837 - timestamp: 1675739305173 -- name: ros-humble-rcl-lifecycle - version: 5.3.2 + size: 486601 + timestamp: 1675850724145 +- name: ros-humble-qt-dotgraph + version: 2.2.2 manager: conda platform: osx-arm64 dependencies: + pydot: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros2-distro-mutex: 0.3.* humble - ros-humble-lifecycle-msgs: '*' - ros-humble-tracetools: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcl: '*' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' + ros-humble-python-qt-binding: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-lifecycle-5.3.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-qt-dotgraph-2.2.2-py310h927cc32_3.tar.bz2 hash: - md5: 14bae084d84b7c959723953d050fd613 - sha256: 8e089e132d1d6b656166c2507e1f48941a1b3d8529a81d36cc94bb1f57e010f6 + md5: 0e2527f34d16617830e3796589774ac3 + sha256: 4e3d7be718b745c243c81466fab2934fdf2f979005115a61699e662020ac919a optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 31527 - timestamp: 1675746713761 -- name: ros-humble-osrf-pycommon - version: 2.0.2 + size: 32039 + timestamp: 1675723743024 +- name: ros-humble-cv-bridge + version: 3.2.1 manager: conda platform: osx-arm64 dependencies: - importlib-metadata: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' + boost: '>=1.78.0,<1.78.1.0a0' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rcpputils: '*' + ros-humble-sensor-msgs: '*' + xorg-libxext: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-osrf-pycommon-2.0.2-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + py-opencv: '>=4.6.0,<5.0a0' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + xorg-libx11: '*' + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-cv-bridge-3.2.1-py310h27a8b25_3.tar.bz2 hash: - md5: f5610c1a79cba443cf083c4db51fba7f - sha256: d1e5627a66011de9f9a5c77d735bc31d930bfedfc58f15d97eb6f5c83b94a3b1 + md5: 196c6e2fb405c5d038f1636c942bbe5f + sha256: 138b6b19f62714181a63e7fa6d98ebf1323aa52f63c3b47253cef5c733f398c1 optional: false category: main - build: py310h927cc32_3 + build: py310h27a8b25_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 44946 - timestamp: 1675634706036 -- name: ros-humble-fastrtps - version: 2.6.4 + size: 111680 + timestamp: 1675744254468 +- name: ros-humble-qt-gui-cpp + version: 2.2.2 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - openssl: '>=3.0.8,<4.0a0' + xorg-libxext: '*' + python: '*' python_abi: 3.10.* *_cp310 - ros-humble-foonathan-memory-vendor: '*' + ros-humble-rcpputils: '*' + ros-humble-tinyxml2-vendor: '*' + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-qt-gui: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-fastcdr: '*' + pep517: '*' + ros-humble-pluginlib: '*' + pyqt-builder: '*' ros-humble-ros-workspace: '*' - tinyxml2: '>=9.0.0,<10.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-fastrtps-2.6.4-py310h824520d_3.tar.bz2 + xorg-libx11: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-qt-gui-cpp-2.2.2-py310hd751b12_3.tar.bz2 hash: - md5: 4faf0093879d40b61b63b61b904e54f1 - sha256: b01b9d89c0663d80b4b2fd220bb75dbfa912351d616d0d9f401cf91f4a2edb3a + md5: 52d4ef044545b705f1ae3671ed502a00 + sha256: 1c1829e888cdce81b5d451ff564e1b09dec33d6574ce2e57919c3caf2e72c1b2 optional: false category: main - build: py310h824520d_3 + build: py310hd751b12_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 2602555 - timestamp: 1675859500096 -- name: ros-humble-rmw-dds-common - version: 1.6.0 + size: 582447 + timestamp: 1675732241199 +- name: ros-humble-rqt-gui-cpp + version: 1.1.4 manager: conda platform: osx-arm64 dependencies: + ros-humble-rclcpp: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rosidl-default-runtime: '*' + xorg-libxext: '*' ros2-distro-mutex: 0.3.* humble + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' + ros-humble-pluginlib: '*' + ros-humble-qt-gui-cpp: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-dds-common-1.6.0-py310h927cc32_3.tar.bz2 + xorg-libx11: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-gui-cpp-1.1.4-py310h927cc32_3.tar.bz2 hash: - md5: c62fb647cde42142178fa01d1e8034c5 - sha256: a3000cdc93fa114dcb8df783b7476f927c23b4112717c61608b55f9f0524b467 + md5: bf2c5e23cbe56b29201f15bde3c4220f + sha256: 974059814b5c6b53c5d9c671120f9c7f2f7403b28abfeea30eb80482842cd6e4 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 118285 - timestamp: 1675736345892 -- name: ros-humble-rmw-fastrtps-shared-cpp - version: 6.2.2 + size: 113035 + timestamp: 1675749351241 +- name: ros-humble-qt-gui-py-common + version: 2.2.2 manager: conda platform: osx-arm64 dependencies: - ros-humble-fastrtps: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-tracetools: '*' - ros-humble-rcutils: '*' - ros-humble-fastcdr: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rmw-dds-common: '*' - ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-rosidl-typesupport-introspection-c: '*' - ros-humble-fastrtps-cmake-module: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-shared-cpp-6.2.2-py310h927cc32_3.tar.bz2 + ros-humble-ament-index-python: '*' + ros-humble-python-qt-binding: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-qt-gui-py-common-2.2.2-py310h927cc32_3.tar.bz2 hash: - md5: 6fb199625ac006df0637e2452762b89e - sha256: e843177a899793df87d924f489966c8014337fd448bfadc790e8f5f9ca31697a + md5: 7c3d52b768521311b96849f98e9afd56 + sha256: 6503761233676db9bc4a9778a607fa028c326aba23e7f9c36e662c27d15f6034 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 152561 - timestamp: 1675737386337 -- name: ros-humble-orocos-kdl-vendor - version: 0.2.5 + size: 22354 + timestamp: 1675723621425 +- name: ros-humble-qt-gui + version: 2.2.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython - orocos-kdl: '>=1.5.1,<1.6.0a0' python_abi: 3.10.* *_cp310 - ros-humble-eigen3-cmake-module: '*' + ros-humble-tango-icons-vendor: '*' ros2-distro-mutex: 0.3.* humble + qt-main: '>=5.15.6,<5.16.0a0' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + catkin_pkg: '*' + pyqt: '>=5.15.7,<5.16.0a0' + ros-humble-ament-index-python: '*' + ros-humble-python-qt-binding: '*' ros-humble-ros-workspace: '*' - eigen: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-orocos-kdl-vendor-0.2.5-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-qt-gui-2.2.2-py310h927cc32_3.tar.bz2 hash: - md5: 9642c11ef605785ce7c83b1704e14e57 - sha256: 5c4f456a8f94397cd42949d4365c32bc84f9131e0d202f04333cc8c65cca761e + md5: daac96d3c2cf102f09e01e077960eef9 + sha256: a428654288d95df977d661778ad26e09d6ba067b3cf2b3d9578eb6a956eb7ca3 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11762 - timestamp: 1675721646544 + size: 107571 + timestamp: 1675723381779 - name: ros-humble-tf2-bullet version: 0.25.2 manager: conda @@ -19997,33 +19461,6 @@ package: build_number: 3 size: 20687 timestamp: 1675825709046 -- name: ros-humble-tf2-msgs - version: 0.25.2 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-action-msgs: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-msgs-0.25.2-py310h927cc32_3.tar.bz2 - hash: - md5: e3ac79198295dc2857c1b675ce4bc177 - sha256: 13cfc80a27fb8beb4a4fe5ffdf5bfa7bc4033c5c6ebe9abeeeb2e9f8aacba7d6 - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 131383 - timestamp: 1675740847430 - name: ros-humble-tf2-py version: 0.25.2 manager: conda @@ -20110,54 +19547,138 @@ package: build_number: 3 size: 13888 timestamp: 1675772302572 -- name: ros-humble-urdfdom-headers - version: 1.0.6 +- name: ros-humble-ament-cmake-auto + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-ament-cmake-gtest: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-auto-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: cd0d60397cc5fab4462a471ed1f4584a + sha256: a69f232462c6af5dcd2e1d2c0710e663215d84ba34d38144a33874430d7969dc + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 14922 + timestamp: 1675640454860 +- name: ros-humble-ament-cmake-gmock + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake-test: '*' + gmock: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ament-cmake-gtest: '*' ros-humble-ros-workspace: '*' + ros-humble-gmock-vendor: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-gmock-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: aa2b38615e54b3d308af932aff504d10 + sha256: 03bb0d2c19c60b9e729e27f4b14a153fb0518de3abd2adc0530004412b796564 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 13689 + timestamp: 1675638758134 +- name: ros-humble-ament-cmake-gtest + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake-test: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-urdfdom-headers-1.0.6-py310h927cc32_3.tar.bz2 + gtest: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + ros-humble-gtest-vendor: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-gtest-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: af814a41a3fa4638eb69b80a94d95091 - sha256: a33df31d99b3d94cb9235bff5c7816f4d824045adab49acd171881c77a1d0769 + md5: 82b00008247aad26ae230da90edf8ed7 + sha256: 091d035689cae937fbf24ee9f5560e519a2885955e306d49ebfe4dcc9baf01ce optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 20469 - timestamp: 1675635506069 -- name: ros-humble-ament-cmake-auto + size: 14300 + timestamp: 1675637943001 +- name: ros-humble-ament-cmake-pytest version: 1.3.3 manager: conda platform: osx-arm64 dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake-test: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + pytest: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-pytest-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: c603f94c0c46d816573fe5f0e04ffb40 + sha256: 080de504ba04f294321547cbc4960f4863312b2f6ae0aaa5005d7d4d8d6cc1dc + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 13732 + timestamp: 1675638226139 +- name: ros-humble-ament-cmake-ros + version: 0.10.0 + manager: conda + platform: osx-arm64 + dependencies: + ros-humble-domain-coordinator: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ament-cmake: '*' + ros-humble-ament-cmake-pytest: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-ament-cmake-gmock: '*' ros-humble-ament-cmake-gtest: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-auto-1.3.3-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-ros-0.10.0-py310h927cc32_3.tar.bz2 hash: - md5: cd0d60397cc5fab4462a471ed1f4584a - sha256: a69f232462c6af5dcd2e1d2c0710e663215d84ba34d38144a33874430d7969dc + md5: 2e0182ff3399dc8b901bd403976b4f96 + sha256: 940bbc5e2f48d870078aaad9271ee79a0a90273f5f5aab7798526128221763df optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 14922 - timestamp: 1675640454860 + size: 14605 + timestamp: 1675721574825 - name: ros-humble-ament-lint-auto version: 0.12.5 manager: conda @@ -20653,35 +20174,6 @@ package: build_number: 3 size: 206123 timestamp: 1675831691220 -- name: ros-humble-rosbag2-py - version: 0.15.4 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rosbag2-storage: '*' - ros-humble-rosbag2-compression: '*' - ros-humble-rpyutils: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-rosbag2-cpp: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rosbag2-transport: '*' - ros-humble-ros-workspace: '*' - ros-humble-pybind11-vendor: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosbag2-py-0.15.4-py310h927cc32_3.tar.bz2 - hash: - md5: 6ac11f3e3ff1351a217ebeb69e30ae90 - sha256: 223910a95b8ec026015fc6c56a5eadfc480703ce1e1548963317523ab69a9e5a - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 486601 - timestamp: 1675850724145 - name: ros-humble-rosbag2-storage version: 0.15.4 manager: conda @@ -20818,8 +20310,173 @@ package: build_number: 3 size: 12196 timestamp: 1675640363882 -- name: ros-humble-tinyxml2-vendor - version: 0.7.5 +- name: ros-humble-rosidl-generator-py + version: 0.14.4 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rpyutils: '*' + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-parser: '*' + ros-humble-rosidl-typesupport-interface: '*' + ros-humble-ament-index-python: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-generator-c: '*' + ros-humble-rosidl-typesupport-c: '*' + ros-humble-ament-cmake: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-python-cmake-module: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-generator-py-0.14.4-py310h927cc32_3.tar.bz2 + hash: + md5: f873127109f11a70da249566f527397a + sha256: ac2a7177a32b37e394ebaad6ee93785a7977259f645220eff4af159f0133a714 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 38628 + timestamp: 1675735200297 +- name: ros-humble-rosidl-typesupport-fastrtps-c + version: 2.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-typesupport-interface: '*' + ros-humble-fastcdr: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-ros-workspace: '*' + ros-humble-ament-index-python: '*' + ros-humble-ament-cmake-ros: '*' + ros-humble-rmw: '*' + ros-humble-rosidl-generator-c: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-fastrtps-cmake-module: '*' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.0-py310h927cc32_3.tar.bz2 + hash: + md5: 73e58cc4465b5ad49c09e01cb572cb98 + sha256: bfe0ac40f318b6ab654e43512b477c798ac9c21a20ecdfe41f57207c0132cdc0 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 29596 + timestamp: 1675734138569 +- name: ros-humble-rosidl-typesupport-fastrtps-cpp + version: 2.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-typesupport-interface: '*' + ros-humble-fastcdr: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-ros-workspace: '*' + ros-humble-ament-index-python: '*' + ros-humble-rosidl-generator-cpp: '*' + ros-humble-ament-cmake-ros: '*' + ros-humble-rmw: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-fastrtps-cmake-module: '*' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.0-py310h927cc32_3.tar.bz2 + hash: + md5: df876776f17d0065eda9ceb1bdc26850 + sha256: 8c21be2cdc6c76afe70749ddf128fe374d3205b3459ee02e6e96220c88db8f75 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 32027 + timestamp: 1675733615373 +- name: ros-humble-rosidl-typesupport-introspection-c + version: 3.1.4 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-parser: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-introspection-c-3.1.4-py310h927cc32_3.tar.bz2 + hash: + md5: 6eab0ce21dab1c88ca8af926071b6d45 + sha256: dd487afcaf1e27e4137ff21704e54207d683ecf2924514dd2b6d4bc8073786ef + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 28527 + timestamp: 1675726494382 +- name: ros-humble-rosidl-typesupport-introspection-cpp + version: 3.1.4 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-parser: '*' + ros-humble-rosidl-typesupport-interface: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-ament-cmake: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rosidl-typesupport-introspection-c: '*' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.4-py310h927cc32_3.tar.bz2 + hash: + md5: 6e676104da579df9908bd74898251743 + sha256: 01d5b0873dcfa202bf04eb6c6d48179ece5a16baa81248423ff24938d161015e + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 28665 + timestamp: 1675727255446 +- name: ros-humble-fastcdr + version: 1.0.24 manager: conda platform: osx-arm64 dependencies: @@ -20829,21 +20486,47 @@ package: python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-fastcdr-1.0.24-py310h927cc32_3.tar.bz2 + hash: + md5: 335c4380cfdd09075cc4e27b8c86d311 + sha256: c3bd42be072db7a9447d876a8d91dcd7812cf7148f24ad6e7c693d39e0acf3cc + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 54071 + timestamp: 1675635292710 +- name: ros-humble-fastrtps + version: 2.6.4 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + openssl: '>=3.0.8,<4.0a0' + python_abi: 3.10.* *_cp310 + ros-humble-foonathan-memory-vendor: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-fastcdr: '*' + ros-humble-ros-workspace: '*' tinyxml2: '>=9.0.0,<10.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tinyxml2-vendor-0.7.5-py310hb6d62d9_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-fastrtps-2.6.4-py310h824520d_3.tar.bz2 hash: - md5: a65f34a40a225c4db7010662ff89d847 - sha256: be4e355e49e1725fdb4ba382ef12badca247bbee3534dfc14af58a5a646c4164 + md5: 4faf0093879d40b61b63b61b904e54f1 + sha256: b01b9d89c0663d80b4b2fd220bb75dbfa912351d616d0d9f401cf91f4a2edb3a optional: false category: main - build: py310hb6d62d9_3 + build: py310h824520d_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12187 - timestamp: 1675640545857 -- name: ros-humble-urdf-parser-plugin - version: 2.6.0 + size: 2602555 + timestamp: 1675859500096 +- name: ros-humble-fastrtps-cmake-module + version: 2.2.0 manager: conda platform: osx-arm64 dependencies: @@ -20852,396 +20535,623 @@ package: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-urdfdom-headers: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-urdf-parser-plugin-2.6.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-fastrtps-cmake-module-2.2.0-py310h927cc32_3.tar.bz2 hash: - md5: 1dee965b861932231457c012a807fb38 - sha256: 7867abce0b33e224f026e3cbbcb2fe51525c75fd4310289b6caf848a88738883 + md5: 6b5fbc71ce6d5456aa91942336e1d5ea + sha256: 0df57a97c45035929a26f3ba2cecc2d14827908db782e1cb03e87a3bec434dd3 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 14792 - timestamp: 1675723601976 -- name: ros-humble-urdfdom - version: 3.0.2 + size: 12074 + timestamp: 1675721536590 +- name: ros-humble-rmw-dds-common + version: 1.6.0 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-console-bridge-vendor: '*' + ros-humble-rcpputils: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-tinyxml-vendor: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-urdfdom-headers: '*' - console_bridge: '>=1.0.2,<1.1.0a0' - tinyxml: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-urdfdom-3.0.2-py310h2eb544e_3.tar.bz2 + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-dds-common-1.6.0-py310h927cc32_3.tar.bz2 hash: - md5: 23355324a933bde4acd2a7d672c9ce41 - sha256: 103f6184bdcf54a56f50285cd753683567c7cb4c5a6394fd5562c615cb43815f + md5: c62fb647cde42142178fa01d1e8034c5 + sha256: a3000cdc93fa114dcb8df783b7476f927c23b4112717c61608b55f9f0524b467 optional: false category: main - build: py310h2eb544e_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 117525 - timestamp: 1675724605931 -- name: ros-humble-python-qt-binding - version: 1.1.1 + size: 118285 + timestamp: 1675736345892 +- name: ros-humble-rmw-fastrtps-shared-cpp + version: 6.2.2 + manager: conda + platform: osx-arm64 + dependencies: + ros-humble-fastrtps: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-tracetools: '*' + ros-humble-rcutils: '*' + ros-humble-fastcdr: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rmw-dds-common: '*' + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rosidl-typesupport-introspection-c: '*' + ros-humble-fastrtps-cmake-module: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-shared-cpp-6.2.2-py310h927cc32_3.tar.bz2 + hash: + md5: 6fb199625ac006df0637e2452762b89e + sha256: e843177a899793df87d924f489966c8014337fd448bfadc790e8f5f9ca31697a + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 152561 + timestamp: 1675737386337 +- name: ros-humble-rosidl-cmake + version: 3.1.4 + manager: conda + platform: osx-arm64 + dependencies: + empy: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-parser: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-adapter: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-cmake-3.1.4-py310h927cc32_3.tar.bz2 + hash: + md5: f02a9c1caec5f2909abbfa2942fb93a8 + sha256: 6d0faa5a8f7fd4f7bc3b2c5ee381f26b2f96fc83b0634484ace3a33ca0bc68ba + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 23640 + timestamp: 1675724402674 +- name: ros-humble-ament-cmake-core + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ament-package: '*' + ros2-distro-mutex: 0.3.* humble + cmake: '*' + libcxx: '>=14.0.6' + catkin_pkg: '*' + numpy: '>=1.21.6,<2.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-core-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: 828274ed57a91758f6a97abd961b93ae + sha256: e2ce4a9108628b73392591abe3409ca703404d152440209162c3a058ddf40411 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 32156 + timestamp: 1675631327982 +- name: ros-humble-ament-cmake-export-definitions + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-definitions-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: 8452a95fdd6295de7280d900df585ff1 + sha256: 0ba8f47b484f747d2f6ef2cc60e71a48e2c16e0fcd5462bbb07db5eabb0f6128 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 11848 + timestamp: 1675634936918 +- name: ros-humble-ament-cmake-export-dependencies + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ament-cmake-libraries: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-dependencies-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: 7de542a3b03fdb4da3c8224a8feb950b + sha256: b39228cdba90d3782ec09fb998dfe88b20a056a07163f415628ee92fbfc27811 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 12633 + timestamp: 1675637075307 +- name: ros-humble-ament-cmake-export-include-directories + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-include-directories-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: 2d90a86dde379f427b4002302458b1d5 + sha256: ec3f7f6b488cd4d38632b1f69aa41629cde7e68cf41301a73f97fa01a80d065b + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 12177 + timestamp: 1675634841143 +- name: ros-humble-ament-cmake-export-interfaces + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + ros-humble-ament-cmake-export-libraries: '*' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-interfaces-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: 8fc21fc423f299455500da077cd488ef + sha256: a6755a3cbcf644b78af9ad637ad132ecf50973ec5407d1e92e81e72c08d68e63 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 12365 + timestamp: 1675637340447 +- name: ros-humble-ament-cmake-export-libraries + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-libraries-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: 5e3bd22d5078ed760ed75c9e2b780481 + sha256: ff8ddf06d5011fd7defff303869e6a47603271bf699e901c18e6f362ca65a614 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 13879 + timestamp: 1675634576707 +- name: ros-humble-ament-cmake-export-link-flags + version: 1.3.3 + manager: conda + platform: osx-arm64 + dependencies: + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-link-flags-1.3.3-py310h927cc32_3.tar.bz2 + hash: + md5: fb492c586ca86971b834da63a39ecf66 + sha256: adf948ce76d953e2b152eb5886d768d5921cd85f73259ae580ed14f094130fc1 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 11761 + timestamp: 1675634756412 +- name: ros-humble-ament-cmake-export-targets + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-ament-cmake-export-libraries: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - pyqt: '>=5.15.7,<5.16.0a0' - pyqt-builder: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-python-qt-binding-1.1.1-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-targets-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: 70d5e52e4b45ea69b3cbdad394fc7f85 - sha256: ed57ff9956d64a9d62b07a4b4563f6a08f0566ccac2bb1a0508ab700b6e85445 + md5: 16849da7d854d1e1ad6a3edc990b30b9 + sha256: cfc5c56edc1bfeff8a9ad4c781bce7fbb305e48e166928b92b16a31f9bbb3ec8 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 27991 - timestamp: 1675721948360 -- name: ros-humble-rqt-gui - version: 1.1.4 + size: 12290 + timestamp: 1675637252096 +- name: ros-humble-ament-cmake-gen-version-h + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-qt-gui: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - catkin_pkg: '*' - ros-humble-ament-index-python: '*' - ros-humble-python-qt-binding: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-gui-1.1.4-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-gen-version-h-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: 06e339f156139e66a0e921082fc09796 - sha256: accc2077c5234fb4ab4e9a5c815e1507871a405b8a305ed145dfc160a4897929 + md5: 26ab82c2a7323c59feeb4fb873779fe5 + sha256: ac0616e6998fec4b786de9edbebe9099d3977b4f75e18267ad73eae32e794365 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 106757 - timestamp: 1675826335722 -- name: ros-humble-rqt-gui-py - version: 1.1.4 + size: 14235 + timestamp: 1675638661767 +- name: ros-humble-ament-cmake-libraries + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-qt-gui: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-gui-py-1.1.4-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-libraries-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: 62c8f166dc4acd38ce929a7a8af64ac5 - sha256: 9ebe0681bae0db084a0033547d2a4fe1daa28ce3a4839a970e1985976f1d1820 + md5: 132a5150c4f0bfb6c568452eb1380f27 + sha256: 982288a8027eade5d4fd8890cb9924b784e9ffa1aee35c512a1f119450c45c09 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 14250 - timestamp: 1675831063098 -- name: ros-humble-qt-dotgraph - version: 2.2.2 + size: 12121 + timestamp: 1675634793932 +- name: ros-humble-ament-cmake-python + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: - pydot: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-python-qt-binding: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-qt-dotgraph-2.2.2-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-python-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: 0e2527f34d16617830e3796589774ac3 - sha256: 4e3d7be718b745c243c81466fab2934fdf2f979005115a61699e662020ac919a + md5: 69a2f02a439a04fe7224856f05001100 + sha256: cb7f5fa2bf5381d239bcf8b9695c44566e30a636349aa4aed1cc84b7baf3e4cd optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 32039 - timestamp: 1675723743024 -- name: ros-humble-cv-bridge - version: 3.2.1 + size: 14024 + timestamp: 1675634625297 +- name: ros-humble-ament-cmake-target-dependencies + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: - boost: '>=1.78.0,<1.78.1.0a0' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-sensor-msgs: '*' - xorg-libxext: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-ament-cmake-include-directories: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - py-opencv: '>=4.6.0,<5.0a0' - ros-humble-ament-index-python: '*' + ros-humble-ament-cmake-libraries: '*' ros-humble-ros-workspace: '*' - xorg-libx11: '*' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-cv-bridge-3.2.1-py310h27a8b25_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-target-dependencies-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: 196c6e2fb405c5d038f1636c942bbe5f - sha256: 138b6b19f62714181a63e7fa6d98ebf1323aa52f63c3b47253cef5c733f398c1 + md5: a05924d966ac9e45b640dc9fae8b67c5 + sha256: 0e0082fa22271dfcf335af165b5d8fa48c8ac658110f18eac286140f1e42fc50 optional: false category: main - build: py310h27a8b25_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 111680 - timestamp: 1675744254468 -- name: ros-humble-qt-gui-cpp - version: 2.2.2 + size: 13224 + timestamp: 1675637150859 +- name: ros-humble-ament-cmake-test + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: - xorg-libxext: '*' - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-tinyxml2-vendor: '*' - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-qt-gui: '*' - ros2-distro-mutex: 0.3.* humble + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - pep517: '*' - ros-humble-pluginlib: '*' - pyqt-builder: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - xorg-libx11: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-qt-gui-cpp-2.2.2-py310hd751b12_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-test-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: 52d4ef044545b705f1ae3671ed502a00 - sha256: 1c1829e888cdce81b5d451ff564e1b09dec33d6574ce2e57919c3caf2e72c1b2 + md5: 47de9d292aa24b81d3b31a6479b09cfe + sha256: 82fc5be4b51d76c23d35ef6ea7243e645f858892bbbe08e6000bd3777a0a0e3b optional: false category: main - build: py310hd751b12_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 582447 - timestamp: 1675732241199 -- name: ros-humble-rqt-gui-cpp - version: 1.1.4 + size: 22207 + timestamp: 1675637059560 +- name: ros-humble-ament-cmake-version + version: 1.3.3 manager: conda platform: osx-arm64 dependencies: - ros-humble-rclcpp: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - xorg-libxext: '*' - ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-qt-gui: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-pluginlib: '*' - ros-humble-qt-gui-cpp: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - xorg-libx11: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rqt-gui-cpp-1.1.4-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-version-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: bf2c5e23cbe56b29201f15bde3c4220f - sha256: 974059814b5c6b53c5d9c671120f9c7f2f7403b28abfeea30eb80482842cd6e4 + md5: 01417c8a70923848fb26ba3b86635b47 + sha256: 1a4ba4e9528a9270353f599859a4b7cc1c3b9dba6ab215caa347d1cb54ff1511 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 113035 - timestamp: 1675749351241 -- name: ros-humble-qt-gui-py-common - version: 2.2.2 + size: 11623 + timestamp: 1675634664067 +- name: ros-humble-rcl-logging-spdlog + version: 2.3.1 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-spdlog-vendor: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ament-index-python: '*' - ros-humble-python-qt-binding: '*' + ros-humble-rcl-logging-interface: '*' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-qt-gui-py-common-2.2.2-py310h927cc32_3.tar.bz2 + spdlog: '>=1.11.0,<1.12.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rcl-logging-spdlog-2.3.1-py310he44a079_3.tar.bz2 hash: - md5: 7c3d52b768521311b96849f98e9afd56 - sha256: 6503761233676db9bc4a9778a607fa028c326aba23e7f9c36e662c27d15f6034 + md5: f94248fdf30763f27b3c662a3ba52d3e + sha256: 8b58c25c72dd7c77c2bddd9589f3598ce4c831c1584e9e50918007f2c3d88434 optional: false category: main - build: py310h927cc32_3 + build: py310he44a079_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 22354 - timestamp: 1675723621425 -- name: ros-humble-qt-gui - version: 2.2.2 + size: 22887 + timestamp: 1675727519489 +- name: ros-humble-libyaml-vendor + version: 1.2.2 manager: conda platform: osx-arm64 dependencies: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-tango-icons-vendor: '*' ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.6,<5.16.0a0' + yaml: '>=0.2.5,<0.3.0a0' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - catkin_pkg: '*' - pyqt: '>=5.15.7,<5.16.0a0' - ros-humble-ament-index-python: '*' - ros-humble-python-qt-binding: '*' ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-qt-gui-2.2.2-py310h927cc32_3.tar.bz2 + yaml-cpp: '>=0.7.0,<0.8.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-libyaml-vendor-1.2.2-py310h927cc32_3.tar.bz2 hash: - md5: daac96d3c2cf102f09e01e077960eef9 - sha256: a428654288d95df977d661778ad26e09d6ba067b3cf2b3d9578eb6a956eb7ca3 + md5: 8771adb79ec7b0c2a591f7a609a9eb6f + sha256: d4b32dd022d42851f1d564df212cf7206fe6325d510e7bd4f8a29cacb6f9d6ab optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 107571 - timestamp: 1675723381779 -- name: ros-humble-ignition-cmake2-vendor - version: 0.0.2 + size: 13898 + timestamp: 1675726599013 +- name: ros-humble-rosidl-typesupport-interface + version: 3.1.4 manager: conda platform: osx-arm64 dependencies: - libignition-cmake2: '>=2.16.0,<3.0a0' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ignition-cmake2-vendor-0.0.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-interface-3.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 1e0e58004ae5aa5de74e5de4ae2fbf76 - sha256: 49e76edfa0e18ca941b73d86181ad3abcd1727709b9a22c6ccb10a159b21e50c + md5: 3b81b916ac878d22a74920e3af8a7cf8 + sha256: 9d4eda1771728bb759d569cdc533a0d0062b47db05d96e05d2c9bff365851a4d optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 8132 - timestamp: 1675720855536 -- name: ros-humble-eigen3-cmake-module - version: 0.1.1 + size: 13399 + timestamp: 1675721402222 +- name: ros-humble-rmw-connextdds + version: 0.11.1 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rmw-connextdds-common: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-eigen3-cmake-module-0.1.1-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-connextdds-0.11.1-py310h927cc32_3.tar.bz2 hash: - md5: b6c5c94cddfeacbfd6190a090c12c065 - sha256: 0decbde26e5ba2c6661b55d06ae7f231439a4fe951e74adf13a62f22841e2700 + md5: ee54bff0d89d3f429c21bc95a18d0ccd + sha256: 6104c6ccd884ea54c404936874a9ad63e44d3df18c079cb7054a50bba2f12651 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11487 - timestamp: 1675642342426 -- name: ros-humble-sensor-msgs-py - version: 4.2.3 + size: 11533 + timestamp: 1675738824090 +- name: ros-humble-rmw-cyclonedds-cpp + version: 1.3.4 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-cyclonedds: '*' + ros-humble-tracetools: '*' + ros-humble-rcutils: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-sensor-msgs: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-iceoryx-binding-c: '*' + ros-humble-rmw-dds-common: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-sensor-msgs-py-4.2.3-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rosidl-typesupport-introspection-c: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-cyclonedds-cpp-1.3.4-py310h927cc32_3.tar.bz2 hash: - md5: 1edba103117e78998a2cacca6f893d50 - sha256: e603159343068549b4eecc318d35cdc487faf638cff29d3dfe98719c400aff2f + md5: 84048015eb67a5668d2214ac116f8562 + sha256: 1b70c7a59b863be04690f4a0c486216bf126e809712d1d263a45fa86440da599 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 18513 - timestamp: 1675741649359 -- name: ros-humble-libcurl-vendor - version: 3.1.1 + size: 169492 + timestamp: 1675737649119 +- name: ros-humble-rmw-fastrtps-dynamic-cpp + version: 6.2.2 manager: conda platform: osx-arm64 dependencies: + ros-humble-fastrtps: '*' python: 3.10.* *_cpython - libcurl: '>=7.87.0,<8.0a0' - pkg-config: '*' python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-rmw-fastrtps-shared-cpp: '*' + ros-humble-rcutils: '*' + ros-humble-fastcdr: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rmw-dds-common: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-libcurl-vendor-3.1.1-py310h667bcb1_3.tar.bz2 + ros-humble-fastrtps-cmake-module: '*' + ros-humble-rosidl-typesupport-introspection-c: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.2-py310h927cc32_3.tar.bz2 hash: - md5: 18fe82a927d3cdca25c4639971cec76e - sha256: 5319c7714119f92bf2d24773f67a6387a771018a5bc25a985efb32c1d6aeafe6 + md5: e5938c8eb3677e396dcc286c7f2cc2ae + sha256: 2c4bdc771454768afab1fdad3bf7a53c2ab43a4d83c478a0766093dd54203aca optional: false category: main - build: py310h667bcb1_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11503 - timestamp: 1675640758951 -- name: ros-humble-yaml-cpp-vendor - version: 8.0.2 + size: 127146 + timestamp: 1675739980345 +- name: ros-humble-rmw-implementation-cmake + version: 6.1.1 manager: conda platform: osx-arm64 dependencies: @@ -21249,131 +21159,126 @@ package: libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - yaml-cpp: '>=0.7.0,<0.8.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-yaml-cpp-vendor-8.0.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-implementation-cmake-6.1.1-py310h927cc32_3.tar.bz2 hash: - md5: 9ea72a57911cbfad36e98fbf718637bc - sha256: 3c580acd58ac2f9a1da7ab3c27ed27d90b5da94ffed22312d109acde8cc54ad8 + md5: 1110efc055f7a6a19433e40e3b828e0a + sha256: 9e626ec0e8c4084acf00dc8f2dfbba666c909078c016a51804d391d657d772f9 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 10893 - timestamp: 1675640641715 -- name: assimp - version: 5.2.5 + size: 14095 + timestamp: 1675722814652 +- name: ros-humble-rosidl-cli + version: 3.1.4 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=14.0.4' - boost-cpp: '>=1.78.0,<1.78.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - zlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/assimp-5.2.5-h276577b_0.tar.bz2 + importlib-metadata: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + argcomplete: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-cli-3.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 75a8a2356089616af1b69037e5fac640 - sha256: debec3cffc8ecf0b51372ca61cba093a53cbf898784ffb6780791930eeb3633d + md5: 79762a44c96d5b53eaa23a8bff1948bd + sha256: d37dcd70545b3c8d456e7d854180466f43080f703934c1a057cdea81973df4c9 optional: false category: main - build: h276577b_0 + build: py310h927cc32_3 + arch: arm64 subdir: osx-arm64 - build_number: 0 - license: Modified BSD - license_family: BSD - size: 2900794 - timestamp: 1666714573969 -- name: xorg-libxrandr - version: 1.5.2 + build_number: 3 + size: 24156 + timestamp: 1675640721927 +- name: xorg-randrproto + version: 1.5.0 manager: conda platform: osx-arm64 - dependencies: - xorg-libxrender: '*' - xorg-randrproto: '*' - xorg-renderproto: '*' - xorg-libx11: '>=1.7.1,<2.0a0' - xorg-xextproto: '*' - xorg-libxext: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxrandr-1.5.2-h3422bc3_1.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-randrproto-1.5.0-h3422bc3_1001.tar.bz2 hash: - md5: 07645abfe2fbe5d4793576a80ff22732 - sha256: 622bf68297075a451ab4df59ac218c9f47c1416d6bac1bf49e0f15e344d88c31 + md5: 560329664e109685dccccab2b0761879 + sha256: c424b302c0eef7446d0ed2c5dcee2cac159e5da9a6ea2ba543a12a482a214ac4 optional: false category: main - build: h3422bc3_1 + build: h3422bc3_1001 subdir: osx-arm64 - build_number: 1 + build_number: 1001 license: MIT license_family: MIT - size: 25915 - timestamp: 1621515904504 -- name: zziplib - version: 0.13.69 + size: 33081 + timestamp: 1621340252425 +- name: xorg-renderproto + version: 0.11.1 manager: conda platform: osx-arm64 - dependencies: - zlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/zziplib-0.13.69-he1e0b03_1.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-renderproto-0.11.1-h27ca646_1002.tar.bz2 hash: - md5: 45475ada2aaf132d1be927f53d3a2567 - sha256: e48dbd5e30f5c0efdf7d929664e9a623551ebb2dd4033a76bc31ded595847352 + md5: 8a4acd93b6a763c3379196e317167186 + sha256: bf7315c5442ea04d9632e94b2d659dae076717ab4cf9fcb35c2bdcf5effa9111 optional: false category: main - build: he1e0b03_1 + build: h27ca646_1002 subdir: osx-arm64 - build_number: 1 - license: GPL-2.0 - license_family: GPL - size: 95357 - timestamp: 1617437173697 -- name: glew - version: 2.1.0 + build_number: 1002 + license: MIT + license_family: MIT + size: 9630 + timestamp: 1614866486734 +- name: tinyxml + version: 2.6.2 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=11.0.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2 + libcxx: '>=11.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/tinyxml-2.6.2-h260d524_2.tar.bz2 hash: - md5: ec67d4b810ad567618722a2772e9755c - sha256: 582991e48b1000eea38a1df68309652a92c1af62fa96f78e6659c799d28d00cf + md5: 514f487df6232e8dd819faf3c5915e58 + sha256: ffed96f7167394be9007c1b4e2b28cf690388f9aaef0b57f0d44ad44bb247f94 optional: false category: main - build: h9f76cd9_2 + build: h260d524_2 subdir: osx-arm64 build_number: 2 - license: BSD-3-Clause - license_family: BSD - size: 783742 - timestamp: 1607113139225 -- name: ros-humble-rviz-assimp-vendor - version: 11.2.5 + license: Zlib + size: 52319 + timestamp: 1613627858183 +- name: ros-humble-tinyxml-vendor + version: 0.8.3 manager: conda platform: osx-arm64 dependencies: - assimp: '>=5.2.5,<5.2.6.0a0' - libcxx: '>=14.0.6' numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rviz-assimp-vendor-11.2.5-py310h07a1639_3.tar.bz2 + tinyxml: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tinyxml-vendor-0.8.3-py310h927cc32_3.tar.bz2 hash: - md5: a888294c8e347bd19706bc67ab6fed26 - sha256: 47a93fa801ba89d939a436b41a617eaa94881a7268a4476831df6d3eb20f1790 + md5: 4b38bd60bcfdfeb257b50a3273cf344c + sha256: da4ae386e80001bfb00dc9ac51844270324d0810f3925a0a8e5ad993ac08e69b optional: false category: main - build: py310h07a1639_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11541 - timestamp: 1675720757641 -- name: ros-humble-console-bridge-vendor - version: 1.4.1 + size: 12034 + timestamp: 1675640452010 +- name: ros-humble-pybind11-vendor + version: 2.4.2 manager: conda platform: osx-arm64 dependencies: @@ -21382,49 +21287,43 @@ package: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - console_bridge: '>=1.0.2,<1.1.0a0' + pybind11: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-console-bridge-vendor-1.4.1-py310h2eb544e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pybind11-vendor-2.4.2-py310h927cc32_3.tar.bz2 hash: - md5: a24ca37e3fe6f9b829ba5df2f9c18b4a - sha256: df7004267a05dc8b2e35a6dd9181cac6ac815285a1040eaccc1632ced6917fcf + md5: 12627d1a83ac4d1275014580e8de2ac4 + sha256: 5f6da1a6546cc0b92152a9c0b191df44118859701fc5c18eb1ef9705f0fa7faa optional: false category: main - build: py310h2eb544e_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11108 - timestamp: 1675723508534 -- name: ros-humble-tf2-ros-py - version: 0.25.2 + size: 10700 + timestamp: 1675640356700 +- name: ros-humble-tango-icons-vendor + version: 0.1.1 manager: conda platform: osx-arm64 dependencies: - ros-humble-tf2-msgs: '*' - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rclpy: '*' - ros-humble-sensor-msgs: '*' - ros-humble-std-msgs: '*' - ros-humble-tf2-py: '*' - ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tf2-ros-py-0.25.2-py310h927cc32_3.tar.bz2 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tango-icons-vendor-0.1.1-py310h927cc32_3.tar.bz2 hash: - md5: 1cd8aa0d1d589255ef674fcaaaefd53b - sha256: 866c6780b06f71b68b593aae654b2524e4772f33daae40ed8a4b904acd2994e7 + md5: 16e97644d2f08cbbad4e35b58ddcc3ee + sha256: 15b77d3e4ffdaf8020359a98f81dc8ffe1b38f9c5b3125a061d9f8920868e0af optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 26470 - timestamp: 1675755186596 + size: 1027269 + timestamp: 1675721303664 - name: ros-humble-gmock-vendor version: 1.10.9004 manager: conda @@ -21472,71 +21371,8 @@ package: build_number: 3 size: 177822 timestamp: 1675634707046 -- name: ros-humble-rmw-connextdds-common - version: 0.11.1 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rti-connext-dds-cmake-module: '*' - ros-humble-rcutils: '*' - ros-humble-fastcdr: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rmw-dds-common: '*' - ros-humble-ament-cmake: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rosidl-typesupport-introspection-c: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-connextdds-common-0.11.1-py310h927cc32_3.tar.bz2 - hash: - md5: 26503441d026bb3443939bc8bf0a9006 - sha256: f099d640af56e1ebd40f7a948566d68045cf750fcf1d0c5d0db6af56a6708eef - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 32108 - timestamp: 1675737489154 -- name: ros-humble-cyclonedds - version: 0.9.1 - manager: conda - platform: osx-arm64 - dependencies: - ros-humble-iceoryx-posh: '*' - python: 3.10.* *_cpython - openssl: '>=3.0.8,<4.0a0' - python_abi: 3.10.* *_cp310 - ros-humble-iceoryx-binding-c: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - ros-humble-iceoryx-hoofs: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-cyclonedds-0.9.1-py310h1bd489d_3.tar.bz2 - hash: - md5: d1358c1674ee87be7aa71555ed4b9b93 - sha256: c3aed27560d08cf66c55dd1acb75f5ac282006e4f63806f8fdfa57a38331254b - optional: false - category: main - build: py310h1bd489d_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 806782 - timestamp: 1675859668927 -- name: ros-humble-iceoryx-binding-c - version: 2.0.2 +- name: ros-humble-domain-coordinator + version: 0.10.0 manager: conda platform: osx-arm64 dependencies: @@ -21546,43 +21382,18 @@ package: python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-iceoryx-binding-c-2.0.2-py310h927cc32_3.tar.bz2 - hash: - md5: 336288872c6e57a52fbce998422116e6 - sha256: 3228aab16ba62f55547f5d2ad682a7a68cd4b5725b1b588b8607b6f8cf27d17a - optional: false - category: main - build: py310h927cc32_3 - arch: arm64 - subdir: osx-arm64 - build_number: 3 - size: 77156 - timestamp: 1675637869736 -- name: ros-humble-foonathan-memory-vendor - version: 1.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: 3.10.* *_cpython - python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - cmake: '*' - foonathan-memory: '>=0.7.2,<0.7.3.0a0' - libcxx: '>=14.0.6' - numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-foonathan-memory-vendor-1.2.0-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-domain-coordinator-0.10.0-py310h927cc32_3.tar.bz2 hash: - md5: e6bad9eeafceb2d2fb3c1c2fbd233c23 - sha256: f014b07b8cb77964729be16ba1d7897d01d0611ccb4bff9cfb1e2fe8e7e71011 + md5: 3f721e4c67c1f331feb1a12d08089278 + sha256: 557d313633208407642a8fc98f338622f5da0edeee4d1de33165b83e1e3bdf11 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 9125 - timestamp: 1675720617706 + size: 9703 + timestamp: 1675639618522 - name: ros-humble-ament-cmake-copyright version: 0.12.5 manager: conda @@ -21915,6 +21726,29 @@ package: build_number: 3 size: 100969 timestamp: 1675740596118 +- name: ros-humble-python-cmake-module + version: 0.10.0 + manager: conda + platform: osx-arm64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-python-cmake-module-0.10.0-py310h927cc32_3.tar.bz2 + hash: + md5: 3f015533e35fea0dd253358d3e228598 + sha256: 8f8553edbf417393a250cdb654c8ef8715a28f43536556bb4fd9181f35921d0d + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 13107 + timestamp: 1675721225704 - name: ros-humble-ros2action version: 0.18.5 manager: conda @@ -22272,32 +22106,68 @@ package: build_number: 3 size: 40029 timestamp: 1675771626362 -- name: ros-humble-zstd-vendor - version: 0.15.4 +- name: ros-humble-rosidl-generator-c + version: 3.1.4 manager: conda platform: osx-arm64 dependencies: + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' + ros-humble-ament-index-python: '*' + ros-humble-rcutils: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-parser: '*' + ros-humble-rosidl-typesupport-interface: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-generator-c-3.1.4-py310h927cc32_3.tar.bz2 + hash: + md5: 307c6f58d690bba69d9e9145e6fa1728 + sha256: 0e97ef022d5036911adb7a4ed3d103a64b7dde4f07f444e9ecdc66b2378276ea + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 28857 + timestamp: 1675726223355 +- name: ros-humble-rosidl-generator-cpp + version: 3.1.4 + manager: conda + platform: osx-arm64 + dependencies: + ros-humble-rosidl-generator-c: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-rosidl-cmake: '*' ros2-distro-mutex: 0.3.* humble - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-zstd-vendor-0.15.4-py310h4be5160_3.tar.bz2 + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-parser: '*' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-generator-cpp-3.1.4-py310h927cc32_3.tar.bz2 hash: - md5: e056cfad7ec10a9e62022c2c2d0e96ba - sha256: 19e0c8cf2add634e6567423883dfe07fc3df8523c0ae904b2855ea1ea5d08e72 + md5: fd25e3ba9fc895ec4f17a41a662afb8b + sha256: 8f3a40d743f4fbf2ef5822680d1a73fa4977c8794e94bac1d6cef76446de9715 optional: false category: main - build: py310h4be5160_3 + build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 11552 - timestamp: 1675641051344 -- name: ros-humble-pybind11-vendor - version: 2.4.2 + size: 30728 + timestamp: 1675727111412 +- name: ros-humble-zstd-vendor + version: 0.15.4 manager: conda platform: osx-arm64 dependencies: @@ -22306,20 +22176,20 @@ package: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - pybind11: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-pybind11-vendor-2.4.2-py310h927cc32_3.tar.bz2 + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-zstd-vendor-0.15.4-py310h4be5160_3.tar.bz2 hash: - md5: 12627d1a83ac4d1275014580e8de2ac4 - sha256: 5f6da1a6546cc0b92152a9c0b191df44118859701fc5c18eb1ef9705f0fa7faa + md5: e056cfad7ec10a9e62022c2c2d0e96ba + sha256: 19e0c8cf2add634e6567423883dfe07fc3df8523c0ae904b2855ea1ea5d08e72 optional: false category: main - build: py310h927cc32_3 + build: py310h4be5160_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 10700 - timestamp: 1675640356700 + size: 11552 + timestamp: 1675641051344 - name: ros-humble-keyboard-handler version: 0.0.5 manager: conda @@ -22368,175 +22238,219 @@ package: build_number: 3 size: 153726 timestamp: 1675737955102 -- name: tinyxml - version: 2.6.2 +- name: ros-humble-rosidl-parser + version: 3.1.4 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=11.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/tinyxml-2.6.2-h260d524_2.tar.bz2 + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + lark-parser: '*' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-adapter: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-parser-3.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 514f487df6232e8dd819faf3c5915e58 - sha256: ffed96f7167394be9007c1b4e2b28cf690388f9aaef0b57f0d44ad44bb247f94 + md5: e752cc9389d2c7c2143426f78a863fd1 + sha256: c916b75b6c418740618bcba6918235913042badf32682650a2e5c53f13113937 optional: false category: main - build: h260d524_2 + build: py310h927cc32_3 + arch: arm64 subdir: osx-arm64 - build_number: 2 - license: Zlib - size: 52319 - timestamp: 1613627858183 -- name: ros-humble-tinyxml-vendor - version: 0.8.3 + build_number: 3 + size: 36696 + timestamp: 1675723261712 +- name: ros-humble-foonathan-memory-vendor + version: 1.2.0 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - tinyxml: '*' - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tinyxml-vendor-0.8.3-py310h927cc32_3.tar.bz2 + cmake: '*' + foonathan-memory: '>=0.7.2,<0.7.3.0a0' + libcxx: '>=14.0.6' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-foonathan-memory-vendor-1.2.0-py310h927cc32_3.tar.bz2 hash: - md5: 4b38bd60bcfdfeb257b50a3273cf344c - sha256: da4ae386e80001bfb00dc9ac51844270324d0810f3925a0a8e5ad993ac08e69b + md5: e6bad9eeafceb2d2fb3c1c2fbd233c23 + sha256: f014b07b8cb77964729be16ba1d7897d01d0611ccb4bff9cfb1e2fe8e7e71011 optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 12034 - timestamp: 1675640452010 -- name: ros-humble-tango-icons-vendor - version: 0.1.1 + size: 9125 + timestamp: 1675720617706 +- name: ros-humble-rosidl-adapter + version: 3.1.4 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' + empy: '*' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-tango-icons-vendor-0.1.1-py310h927cc32_3.tar.bz2 + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rosidl-adapter-3.1.4-py310h927cc32_3.tar.bz2 hash: - md5: 16e97644d2f08cbbad4e35b58ddcc3ee - sha256: 15b77d3e4ffdaf8020359a98f81dc8ffe1b38f9c5b3125a061d9f8920868e0af + md5: 41b94883ff08e32607602214d77526e7 + sha256: 6a8e16f175efe1fab392f42bda02f670b9275324dc87520fdd0c536412f3db0d optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 1027269 - timestamp: 1675721303664 -- name: xorg-libxrender - version: 0.9.10 + size: 38211 + timestamp: 1675721673101 +- name: ros-humble-ament-package + version: 0.14.0 manager: conda platform: osx-arm64 dependencies: - xorg-renderproto: '*' - xorg-libx11: '>=1.7.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxrender-0.9.10-h27ca646_1003.tar.bz2 + importlib-metadata: '*' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + setuptools: '*' + importlib_resources: '*' + libcxx: '>=14.0.6' + numpy: '>=1.21.6,<2.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-package-0.14.0-py310h927cc32_3.tar.bz2 hash: - md5: 9e8d4cb8984791a85cd9010fade12983 - sha256: 0e9c22a31923677e7579ac648592cb21843a022d0c4c18a0bf047324ef7680f2 + md5: 66a67a135aadc6eb670c79df7c472b92 + sha256: 5ec75241b828b8132956659f8e84f45b960b247adf6351d567e6f784d32295fb optional: false category: main - build: h27ca646_1003 + build: py310h927cc32_3 + arch: arm64 subdir: osx-arm64 - build_number: 1003 - license: MIT - license_family: MIT - size: 25802 - timestamp: 1615305784235 -- name: xorg-randrproto - version: 1.5.0 + build_number: 3 + size: 27477 + timestamp: 1675631226577 +- name: ros-humble-ament-cmake-include-directories + version: 1.3.3 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-randrproto-1.5.0-h3422bc3_1001.tar.bz2 + dependencies: + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-ament-cmake-include-directories-1.3.3-py310h927cc32_3.tar.bz2 hash: - md5: 560329664e109685dccccab2b0761879 - sha256: c424b302c0eef7446d0ed2c5dcee2cac159e5da9a6ea2ba543a12a482a214ac4 + md5: e6e9c4a3667e1c2cbfcd3db796a5d248 + sha256: db7ab2023988df57d1107e8f9615763897f33878b67b0c713dacd8ed062b3683 optional: false category: main - build: h3422bc3_1001 + build: py310h927cc32_3 + arch: arm64 subdir: osx-arm64 - build_number: 1001 - license: MIT - license_family: MIT - size: 33081 - timestamp: 1621340252425 -- name: xorg-renderproto - version: 0.11.1 + build_number: 3 + size: 11764 + timestamp: 1675634881971 +- name: ros-humble-spdlog-vendor + version: 1.3.1 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-renderproto-0.11.1-h27ca646_1002.tar.bz2 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + spdlog: '>=1.11.0,<1.12.0a0' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-spdlog-vendor-1.3.1-py310he44a079_3.tar.bz2 hash: - md5: 8a4acd93b6a763c3379196e317167186 - sha256: bf7315c5442ea04d9632e94b2d659dae076717ab4cf9fcb35c2bdcf5effa9111 + md5: 2e039b3f47c2d4b1d4ce921f8e3c1a56 + sha256: ce268ebf1184396f4556713c64eb7eb42c89a7827001980e9c07403e3fc393ef optional: false category: main - build: h27ca646_1002 + build: py310he44a079_3 + arch: arm64 subdir: osx-arm64 - build_number: 1002 - license: MIT - license_family: MIT - size: 9630 - timestamp: 1614866486734 -- name: ros-humble-rti-connext-dds-cmake-module + build_number: 3 + size: 10999 + timestamp: 1675721543099 +- name: ros-humble-rmw-connextdds-common version: 0.11.1 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' + ros-humble-rcpputils: '*' + ros-humble-rti-connext-dds-cmake-module: '*' + ros-humble-rcutils: '*' + ros-humble-fastcdr: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rmw-dds-common: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rti-connext-dds-cmake-module-0.11.1-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rosidl-typesupport-introspection-c: '*' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rmw-connextdds-common-0.11.1-py310h927cc32_3.tar.bz2 hash: - md5: 4283f4a4c37526640c5596180ceee338 - sha256: dff76c1943c2f3951252aeb7c7a64097aa8da950ad1d4bc60aec85f454775a23 + md5: 26503441d026bb3443939bc8bf0a9006 + sha256: f099d640af56e1ebd40f7a948566d68045cf750fcf1d0c5d0db6af56a6708eef optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 16232 - timestamp: 1675722689630 -- name: ros-humble-iceoryx-hoofs - version: 2.0.2 + size: 32108 + timestamp: 1675737489154 +- name: ros-humble-cyclonedds + version: 0.9.1 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' + ros-humble-iceoryx-posh: '*' python: 3.10.* *_cpython + openssl: '>=3.0.8,<4.0a0' python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' + ros-humble-iceoryx-binding-c: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-iceoryx-hoofs-2.0.2-py310h927cc32_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + ros-humble-iceoryx-hoofs: '*' + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-cyclonedds-0.9.1-py310h1bd489d_3.tar.bz2 hash: - md5: fd45733f8a0ab66315c3182fb6d8634c - sha256: daad07193fbcf50875b6e906d3b59d99451226474ea8704c3f8cf9f56aad6ce1 + md5: d1358c1674ee87be7aa71555ed4b9b93 + sha256: c3aed27560d08cf66c55dd1acb75f5ac282006e4f63806f8fdfa57a38331254b optional: false category: main - build: py310h927cc32_3 + build: py310h1bd489d_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 256033 - timestamp: 1675635433981 -- name: ros-humble-iceoryx-posh + size: 806782 + timestamp: 1675859668927 +- name: ros-humble-iceoryx-binding-c version: 2.0.2 manager: conda platform: osx-arm64 @@ -22546,20 +22460,19 @@ package: python: 3.10.* *_cpython python_abi: 3.10.* *_cp310 ros-humble-ros-workspace: '*' - ros-humble-iceoryx-hoofs: '*' ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-iceoryx-posh-2.0.2-py310h927cc32_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-iceoryx-binding-c-2.0.2-py310h927cc32_3.tar.bz2 hash: - md5: 556287f361d37b4d0ea9abd988842afb - sha256: 7faff14964e1200da00e6279cb8be6f5aeedf1c0806a2d2005a4bd228e5b7f63 + md5: 336288872c6e57a52fbce998422116e6 + sha256: 3228aab16ba62f55547f5d2ad682a7a68cd4b5725b1b588b8607b6f8cf27d17a optional: false category: main build: py310h927cc32_3 arch: arm64 subdir: osx-arm64 build_number: 3 - size: 446585 - timestamp: 1675637515240 + size: 77156 + timestamp: 1675637869736 - name: ros-humble-ament-copyright version: 0.12.5 manager: conda @@ -22779,6 +22692,77 @@ package: build_number: 3 size: 21178 timestamp: 1675739907240 +- name: ros-humble-rti-connext-dds-cmake-module + version: 0.11.1 + manager: conda + platform: osx-arm64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-rti-connext-dds-cmake-module-0.11.1-py310h927cc32_3.tar.bz2 + hash: + md5: 4283f4a4c37526640c5596180ceee338 + sha256: dff76c1943c2f3951252aeb7c7a64097aa8da950ad1d4bc60aec85f454775a23 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 16232 + timestamp: 1675722689630 +- name: ros-humble-iceoryx-hoofs + version: 2.0.2 + manager: conda + platform: osx-arm64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-iceoryx-hoofs-2.0.2-py310h927cc32_3.tar.bz2 + hash: + md5: fd45733f8a0ab66315c3182fb6d8634c + sha256: daad07193fbcf50875b6e906d3b59d99451226474ea8704c3f8cf9f56aad6ce1 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 256033 + timestamp: 1675635433981 +- name: ros-humble-iceoryx-posh + version: 2.0.2 + manager: conda + platform: osx-arm64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: 3.10.* *_cpython + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros-humble-iceoryx-hoofs: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-arm64/ros-humble-iceoryx-posh-2.0.2-py310h927cc32_3.tar.bz2 + hash: + md5: 556287f361d37b4d0ea9abd988842afb + sha256: 7faff14964e1200da00e6279cb8be6f5aeedf1c0806a2d2005a4bd228e5b7f63 + optional: false + category: main + build: py310h927cc32_3 + arch: arm64 + subdir: osx-arm64 + build_number: 3 + size: 446585 + timestamp: 1675637515240 - name: ros-humble-ament-lint version: 0.12.5 manager: conda @@ -23095,238 +23079,6 @@ package: license_family: MOZILLA size: 220745 timestamp: 1669785182058 -- name: numpy - version: 1.25.0 - manager: conda - platform: osx-arm64 - dependencies: - libcblas: '>=3.9.0,<4.0a0' - libcxx: '>=15.0.7' - liblapack: '>=3.9.0,<4.0a0' - python: '>=3.10,<3.11.0a0 *_cpython' - python_abi: 3.10.* *_cp310 - libblas: '>=3.9.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.25.0-py310haa1e00c_0.conda - hash: - md5: a0335061ed42c8906b86c3a308ac2e3e - sha256: c4a61497f741ddcbdab8781c24995445c355792c63f18b19b6d2f24c5c7ea649 - optional: false - category: main - build: py310haa1e00c_0 - subdir: osx-arm64 - build_number: 0 - constrains: - - numpy-base <0a0 - license: BSD-3-Clause - license_family: BSD - size: 5687449 - timestamp: 1687057029875 -- name: python_abi - version: '3.10' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-3_cp310.conda - hash: - md5: 3f2b2974db21a33a2f45b0c9abbb7516 - sha256: 3f23b0e1656682b0ad1ded4810ba269b610299091c36cf5d516e2dc1162695de - optional: false - category: main - build: 3_cp310 - subdir: osx-arm64 - build_number: 3 - constrains: - - python 3.10.* *_cpython - license: BSD-3-Clause - license_family: BSD - size: 5771 - timestamp: 1669071822684 -- name: eigen - version: 3.4.0 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-hc021e02_0.tar.bz2 - hash: - md5: 1ab85356c868376768df642be47c808a - sha256: ddb1e2afe34a8463087f41edff2a1b0f12dd3f586164cccf740276fd3f324e0f - optional: false - category: main - build: hc021e02_0 - subdir: osx-arm64 - build_number: 0 - license: MPL-2.0 - license_family: MOZILLA - size: 1262336 - timestamp: 1630134565448 -- name: bullet - version: '3.24' - manager: conda - platform: osx-arm64 - dependencies: - bullet-cpp: ==3.24 py310h2b830bf_0 - numpy: '*' - python: '*' - pybullet: ==3.24 py310h2b830bf_0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bullet-3.24-h69fb684_0.conda - hash: - md5: eb9985e5ef91868e6ab7c47bfc42fb87 - sha256: 95daefbf961126166e930648f11f949edfccc6cb6fb47c6ad86b8c3cc3958256 - optional: false - category: main - build: h69fb684_0 - subdir: osx-arm64 - build_number: 0 - license: Zlib - size: 9983 - timestamp: 1683008986265 -- name: bullet-cpp - version: '3.24' - manager: conda - platform: osx-arm64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: '>=3.10,<3.11.0a0 *_cpython' - python_abi: 3.10.* *_cp310 - xorg-libx11: '>=1.8.4,<2.0a0' - xorg-libxext: '>=1.3.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/bullet-cpp-3.24-py310h2b830bf_0.conda - hash: - md5: cd12db543cc182d8acc54fafd2f60731 - sha256: 5db5d0c194e86a411b8af98251c166aad488149110a4189f995ad07d9201e470 - optional: false - category: main - build: py310h2b830bf_0 - subdir: osx-arm64 - build_number: 0 - license: Zlib - size: 39494866 - timestamp: 1683008223616 -- name: pybullet - version: '3.24' - manager: conda - platform: osx-arm64 - dependencies: - bullet-cpp: ==3.24 py310h2b830bf_0 - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: '>=3.10,<3.11.0a0 *_cpython' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pybullet-3.24-py310h2b830bf_0.conda - hash: - md5: 674d59b25e6b49cb0595321142b6dbf1 - sha256: a8293b151298fb29843ea0a9b42ff771c128717ff512cb141875ccc8f9d73e24 - optional: false - category: main - build: py310h2b830bf_0 - subdir: osx-arm64 - build_number: 0 - license: Zlib - size: 62156192 - timestamp: 1683008897003 -- name: orocos-kdl - version: 1.5.1 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=14.0.6' - eigen: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/orocos-kdl-1.5.1-hb7217d7_4.conda - hash: - md5: c9b0595fcb34cde05d43cd06b44fd1cf - sha256: 4f5bfa696cf8e290789b839db4c2ade34b3b527c011cd56ba116905aa5f46e6a - optional: false - category: main - build: hb7217d7_4 - subdir: osx-arm64 - build_number: 4 - license: LGPL-2.1-or-later - license_family: LGPL - size: 295812 - timestamp: 1669072827123 -- name: empy - version: 3.3.4 - manager: conda - platform: osx-arm64 - dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 - hash: - md5: e4be10fd1a907b223da5be93f06709d2 - sha256: 75e04755df8d8db7a7711dddaf68963c11258b755c9c24565bfefa493ee383e3 - optional: false - category: main - build: pyh9f0ad1d_1 - subdir: noarch - build_number: 1 - license: LGPL-2.1 - license_family: GPL - noarch: python - size: 40210 - timestamp: 1586444722817 -- name: openssl - version: 3.1.1 - manager: conda - platform: osx-arm64 - dependencies: - ca-certificates: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.1-h53f4e23_1.conda - hash: - md5: 7451b96ed28b5fd02f0df32689327755 - sha256: 898aac8f8753385e9cd378d539364647d1deb9396032b7c1fd8f0f08107e020b - optional: false - category: main - build: h53f4e23_1 - subdir: osx-arm64 - build_number: 1 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 2223980 - timestamp: 1685517736396 -- name: krb5 - version: 1.20.1 - manager: conda - platform: osx-arm64 - dependencies: - libedit: '>=3.1.20191231,<4.0a0' - libcxx: '>=14.0.6' - openssl: '>=3.0.7,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda - hash: - md5: a85db53e45b1173f270fc998dd40ec03 - sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 - optional: false - category: main - build: h69eda48_0 - subdir: osx-arm64 - build_number: 0 - license: MIT - license_family: MIT - size: 1094005 - timestamp: 1671091920523 -- name: libedit - version: 3.1.20191231 - manager: conda - platform: osx-arm64 - dependencies: - ncurses: '>=6.2,<7.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - hash: - md5: 30e4362988a2623e9eb34337b83e01f9 - sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca - optional: false - category: main - build: hc8eb9b7_2 - subdir: osx-arm64 - build_number: 2 - license: BSD-2-Clause - license_family: BSD - size: 96607 - timestamp: 1597616630749 - name: libzlib version: 1.2.13 manager: conda @@ -23366,23 +23118,6 @@ package: license_family: Other size: 79577 timestamp: 1686575471024 -- name: ca-certificates - version: 2023.5.7 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.5.7-hf0a4a13_0.conda - hash: - md5: a8387be82224743cf849fb907790b91a - sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5 - optional: false - category: main - build: hf0a4a13_0 - subdir: osx-arm64 - build_number: 0 - license: ISC - size: 148524 - timestamp: 1683451885269 - name: gst-plugins-base version: 1.22.4 manager: conda @@ -23392,24 +23127,24 @@ package: libglib: '>=2.76.3,<3.0a0' libvorbis: '>=1.3.7,<1.4.0a0' libzlib: '>=1.2.13,<1.3.0a0' - gstreamer: ==1.22.4 h8c52bba_0 + gstreamer: ==1.22.4 h8c52bba_1 gettext: '>=0.21.1,<1.0a0' libcxx: '>=15.0.7' libopus: '>=1.3.1,<2.0a0' libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gst-plugins-base-1.22.4-h27255cc_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/gst-plugins-base-1.22.4-h27255cc_1.conda hash: - md5: 1702bc8c7faab98487c9c6ae77d2c70b - sha256: 9b786a79a8adb61333432c803f5934314d8e38dbed51549fcc9fb8d54c8bb09f + md5: 8aa6d5462f74d2f9e58b599c43ddf06a + sha256: 0e2e6f89fe1c38dd08f4da0750c979bdeb70a376d06d22527d06cb3f73b97929 optional: false category: main - build: h27255cc_0 + build: h27255cc_1 subdir: osx-arm64 - build_number: 0 + build_number: 1 license: LGPL-2.0-or-later license_family: LGPL - size: 2003183 - timestamp: 1687713657665 + size: 2002232 + timestamp: 1688582791186 - name: gstreamer version: 1.22.4 manager: conda @@ -23420,44 +23155,19 @@ package: libcxx: '>=15.0.7' libglib: '>=2.76.3,<3.0a0' libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gstreamer-1.22.4-h8c52bba_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/gstreamer-1.22.4-h8c52bba_1.conda hash: - md5: 2e3969234ecc2f40f67d4bf7e8ca6af2 - sha256: 79fdfa336ea59870e2225f770f1830b9292a5d5bdc371120ffbcdbda61840413 + md5: 77fd2e7fad128c8053600fec675807fc + sha256: ea6aca7c0e061f0b00c9ee33775522d3574f67c3686538701e81dcfcf271b37e optional: false category: main - build: h8c52bba_0 + build: h8c52bba_1 subdir: osx-arm64 - build_number: 0 + build_number: 1 license: LGPL-2.0-or-later license_family: LGPL - size: 1397771 - timestamp: 1687713385883 -- name: libglib - version: 2.76.3 - manager: conda - platform: osx-arm64 - dependencies: - gettext: '>=0.21.1,<1.0a0' - libcxx: '>=15.0.7' - pcre2: '>=10.40,<10.41.0a0' - libffi: '>=3.4,<4.0a0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.76.3-h24e9cb9_0.conda - hash: - md5: 30b160e9e8ca46b28491ca85eab61dce - sha256: 5b31f80d89224fbfbd0c46b313f6a8d3c43f20f2ae57613cd25d46524a3ca23d - optional: false - category: main - build: h24e9cb9_0 - subdir: osx-arm64 - build_number: 0 - constrains: - - glib 2.76.3 *_0 - license: LGPL-2.1-or-later - size: 2519808 - timestamp: 1684848541134 + size: 1398362 + timestamp: 1688582522015 - name: gettext version: 0.21.1 manager: conda @@ -23479,103 +23189,40 @@ package: - name: libvorbis version: 1.3.7 manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=11.0.0' - libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2 - hash: - md5: 92a1a88d1a1d468c19d9e1659ac8d3df - sha256: 60457217e20d8b24a8390c81338a8fa69c8656b440c067cd82f802a09da93cb9 - optional: false - category: main - build: h9f76cd9_0 - subdir: osx-arm64 - build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 254839 - timestamp: 1610609991029 -- name: libiconv - version: '1.17' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 - hash: - md5: 686f9c755574aa221f29fbcf36a67265 - sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec - optional: false - category: main - build: he4db4b2_0 - subdir: osx-arm64 - build_number: 0 - license: GPL and LGPL - size: 1407036 - timestamp: 1652700956112 -- name: glib - version: 2.76.3 - manager: conda - platform: osx-arm64 - dependencies: - glib-tools: ==2.76.3 ha614eb4_0 - python: '*' - gettext: '>=0.21.1,<1.0a0' - libcxx: '>=15.0.7' - libglib: ==2.76.3 h24e9cb9_0 - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/glib-2.76.3-ha614eb4_0.conda - hash: - md5: eb4697ff50ff2975ffe92a8d71ae2477 - sha256: a5ba4330dcb7a1cbcf2703874faae32f0a361c37a4a0b35efd8e7c76a36d91d6 - optional: false - category: main - build: ha614eb4_0 - subdir: osx-arm64 - build_number: 0 - license: LGPL-2.1-or-later - size: 482889 - timestamp: 1684848691550 -- name: pcre2 - version: '10.40' - manager: conda - platform: osx-arm64 - dependencies: - libzlib: '>=1.2.12,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 + platform: osx-arm64 + dependencies: + libcxx: '>=11.0.0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2 hash: - md5: 721b7288270bafc83586b0f01c2a67f2 - sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe + md5: 92a1a88d1a1d468c19d9e1659ac8d3df + sha256: 60457217e20d8b24a8390c81338a8fa69c8656b440c067cd82f802a09da93cb9 optional: false category: main - build: hb34f9b4_0 + build: h9f76cd9_0 subdir: osx-arm64 build_number: 0 license: BSD-3-Clause license_family: BSD - size: 1161688 - timestamp: 1665563317371 -- name: glib-tools - version: 2.76.3 + size: 254839 + timestamp: 1610609991029 +- name: libiconv + version: '1.17' manager: conda platform: osx-arm64 - dependencies: - libglib: ==2.76.3 h24e9cb9_0 - libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-arm64/glib-tools-2.76.3-ha614eb4_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 hash: - md5: 6db340c85872538821d8eb361d514b3e - sha256: 264982c5ac60d701ec13cdc1c6f35e61b17252a76982bec0031589ac8fe6f255 + md5: 686f9c755574aa221f29fbcf36a67265 + sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec optional: false category: main - build: ha614eb4_0 + build: he4db4b2_0 subdir: osx-arm64 build_number: 0 - license: LGPL-2.1-or-later - size: 100481 - timestamp: 1684848620259 + license: GPL and LGPL + size: 1407036 + timestamp: 1652700956112 - name: jpeg version: 9e manager: conda @@ -23595,6 +23242,44 @@ package: license: IJG size: 218587 timestamp: 1676177519876 +- name: xorg-libxrender + version: 0.9.10 + manager: conda + platform: osx-arm64 + dependencies: + xorg-renderproto: '*' + xorg-libx11: '>=1.7.0,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxrender-0.9.10-h27ca646_1003.tar.bz2 + hash: + md5: 9e8d4cb8984791a85cd9010fade12983 + sha256: 0e9c22a31923677e7579ac648592cb21843a022d0c4c18a0bf047324ef7680f2 + optional: false + category: main + build: h27ca646_1003 + subdir: osx-arm64 + build_number: 1003 + license: MIT + license_family: MIT + size: 25802 + timestamp: 1615305784235 +- name: libogg + version: 1.3.4 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.4-h27ca646_1.tar.bz2 + hash: + md5: fb211883ad5716e398b974a9cde9d78e + sha256: 916bbd5b7da6c922d6a16dd7d396b8a4e862edaca045671692e35add58aace64 + optional: false + category: main + build: h27ca646_1 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 207390 + timestamp: 1610382137160 - name: xorg-libx11 version: 1.8.4 manager: conda @@ -23653,63 +23338,26 @@ package: license_family: MIT size: 74988 timestamp: 1607291556181 -- name: libxcb - version: '1.13' +- name: xorg-libxext + version: 1.3.4 manager: conda platform: osx-arm64 dependencies: - xorg-libxau: '*' - pthread-stubs: '*' - xorg-libxdmcp: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2 - hash: - md5: 6b3457a192f8091cb413962f65740ac4 - sha256: a89b1e46650c01a8791c201c108d6d49a0a5604dd24ddb18902057bbd90f7dbb - optional: false - category: main - build: h9b22ae9_1004 - subdir: osx-arm64 - build_number: 1004 - license: MIT - license_family: MIT - size: 353124 - timestamp: 1636659450212 -- name: pthread-stubs - version: '0.4' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2 - hash: - md5: d3f26c6494d4105d4ecb85203d687102 - sha256: 9da9e6f5d51dff6ad2e4ee0874791437ba952e0a6249942273f0fedfd07ea826 - optional: false - category: main - build: h27ca646_1001 - subdir: osx-arm64 - build_number: 1001 - license: MIT - license_family: MIT - size: 5696 - timestamp: 1606147608402 -- name: xorg-libxdmcp - version: 1.1.3 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2 + xorg-libx11: '>=1.7.2,<2.0a0' + xorg-xextproto: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxext-1.3.4-h1a8c8d9_2.conda hash: - md5: 6738b13f7fadc18725965abdd4129c36 - sha256: d9a2fb4762779994718832f05a7d62ab2dcf6103a312235267628b5187ce88f7 + md5: 0ea792d9a253b64752e9fcfaafe8d529 + sha256: 073e673a9b4ef748c256d655d1ab5f368e5e3972ad3332c96c1d4c2cf0c7b9af optional: false category: main - build: h27ca646_0 + build: h1a8c8d9_2 subdir: osx-arm64 - build_number: 0 + build_number: 2 license: MIT license_family: MIT - size: 18164 - timestamp: 1610071737668 + size: 41541 + timestamp: 1677037316516 - name: xorg-xextproto version: 7.3.0 manager: conda @@ -23728,1303 +23376,1035 @@ package: license_family: MIT size: 30550 timestamp: 1677037030945 -- name: libclang - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - libllvm14: '>=14.0.6,<14.1.0a0' - libclang13: ==14.0.6 default_hc7183e1_1 - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-14.0.6-default_h5dc8d65_1.conda - hash: - md5: d24aeebf80ea1d9df83c8436afa04a7f - sha256: 85b5e616b42e420968512e42276c4d61c647db15e5f3f6065ed6dbbcc2c01b46 - optional: false - category: main - build: default_h5dc8d65_1 - subdir: osx-arm64 - build_number: 1 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 133667 - timestamp: 1684414047342 -- name: libclang13 - version: 14.0.6 - manager: conda - platform: osx-arm64 - dependencies: - libllvm14: '>=14.0.6,<14.1.0a0' - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-14.0.6-default_hc7183e1_1.conda - hash: - md5: c811f112a83cefb15d7b4f511579b6e8 - sha256: 775d89c70250ed7fb9d2c480d7a8dcbfff9942a263cef2df89e51d87aafb40ee - optional: false - category: main - build: default_hc7183e1_1 - subdir: osx-arm64 - build_number: 1 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 6248677 - timestamp: 1684413932938 -- name: libpq - version: '15.3' - manager: conda - platform: osx-arm64 - dependencies: - krb5: '>=1.20.1,<1.21.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.3-h7126958_1.conda - hash: - md5: ae13d3547e9d21beb88e42afd0c820cf - sha256: 4529f6bd6308df510ebb7493fbbfba533a13f77bdee9785b0b029e4cef194519 - optional: false - category: main - build: h7126958_1 - subdir: osx-arm64 - build_number: 1 - license: PostgreSQL - size: 2415588 - timestamp: 1684452698134 -- name: mysql-libs - version: 8.0.33 +- name: boost-cpp + version: 1.78.0 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=15.0.7' - openssl: '>=3.1.1,<4.0a0' + xz: '>=5.2.6,<6.0a0' + libcxx: '>=12.0.1' + bzip2: '>=1.0.8,<2.0a0' + icu: '>=70.1,<71.0a0' libzlib: '>=1.2.13,<1.3.0a0' - mysql-common: ==8.0.33 h7b5afe1_0 zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-libs-8.0.33-hb292caa_0.conda - hash: - md5: 6594a4b0b601ddac7a99b57026d75430 - sha256: 6a2a78b8622624ea0fccfe362d42b3c52f00222378334051bf056a6f7ca71c2c - optional: false - category: main - build: hb292caa_0 - subdir: osx-arm64 - build_number: 0 - size: 1518669 - timestamp: 1687219958931 -- name: mysql-common - version: 8.0.33 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=15.0.7' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-common-8.0.33-h7b5afe1_0.conda - hash: - md5: c569d038da8b16f7ff8e11459d2fc9fb - sha256: 161575343730785b8cf7b0c56c81cedc1cafd668a10ee01a3182055ff48ea766 - optional: false - category: main - build: h7b5afe1_0 - subdir: osx-arm64 - build_number: 0 - size: 788080 - timestamp: 1687219816873 -- name: nss - version: '3.89' - manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=14.0.6' - nspr: '>=4.35,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libsqlite: '>=3.40.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.89-h789eff7_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.78.0-hf1d6563_2.conda hash: - md5: dbb6be9468b513522e0b03d30cc7f1fd - sha256: 483b3d89e2ed179990a79d858cb4ee8fd5e860c3b85f1a84540a798d89968b82 + md5: ad334927e87c12f7f3de44064034892d + sha256: a44e260f7a8cd55c66fcf4457aadfa249119822fef0e26333bec184026110776 optional: false category: main - build: h789eff7_0 + build: hf1d6563_2 subdir: osx-arm64 - build_number: 0 - license: MPL-2.0 - license_family: MOZILLA - size: 1734792 - timestamp: 1678488388531 + build_number: 2 + constrains: + - libboost <0 + license: BSL-1.0 + size: 15161838 + timestamp: 1680713438320 - name: zstd version: 1.5.2 manager: conda platform: osx-arm64 dependencies: libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-h4f39d0f_7.conda hash: - md5: 8f346953ef63bf5fb482488a659adcf3 - sha256: 018989ba028e76abc332c246002e8f5975ff123c68f6116a30da8009b14ea88d + md5: ac4a17e2fb251cbf3bce3aec64668ef2 + sha256: d51d2225da473689dcb5d633f3b60ab60beff74d29a380142da4b684db98dd56 optional: false category: main - build: hf913c23_6 + build: h4f39d0f_7 subdir: osx-arm64 - build_number: 6 + build_number: 7 license: BSD-3-Clause license_family: BSD - size: 308282 - timestamp: 1674244921036 -- name: libffi - version: 3.4.2 + size: 317319 + timestamp: 1688722265582 +- name: libglib + version: 2.76.4 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + dependencies: + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=15.0.7' + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.76.4-h24e9cb9_0.conda hash: - md5: 086914b672be056eb70fd4285b6783b6 - sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + md5: 6c68bbf6d89e0fd5d12a4c41e1a9e79b + sha256: 27e6c1c2db36e9156212da55ea6dd7c73194d8247549ccca5d6a4b12c0de1b4e optional: false category: main - build: h3422bc3_5 + build: h24e9cb9_0 subdir: osx-arm64 - build_number: 5 - license: MIT - license_family: MIT - size: 39020 - timestamp: 1636488587153 -- name: tzdata - version: 2023c - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda - hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - optional: false - category: main - build: h71feb2d_0 - subdir: noarch build_number: 0 - license: LicenseRef-Public-Domain - noarch: generic - size: 117580 - timestamp: 1680041306008 -- name: libblas - version: 3.9.0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2510157 + timestamp: 1688694829858 +- name: pcre2 + version: '10.40' manager: conda platform: osx-arm64 dependencies: - libopenblas: '>=0.3.23,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-17_osxarm64_openblas.conda + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 hash: - md5: 2597bd39632ec57ef3f5ac14865dca09 - sha256: 76c68d59491b449b7608fb5e4a86f3c292c01cf487ce47288a22fc7001a6b150 + md5: 721b7288270bafc83586b0f01c2a67f2 + sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe optional: false category: main - build: 17_osxarm64_openblas + build: hb34f9b4_0 subdir: osx-arm64 - build_number: 17 - constrains: - - libcblas 3.9.0 17_osxarm64_openblas - - liblapacke 3.9.0 17_osxarm64_openblas - - blas * openblas - - liblapack 3.9.0 17_osxarm64_openblas + build_number: 0 license: BSD-3-Clause license_family: BSD - size: 14715 - timestamp: 1685931044178 -- name: libopenblas - version: 0.3.23 + size: 1161688 + timestamp: 1665563317371 +- name: glib + version: 2.76.4 manager: conda platform: osx-arm64 dependencies: - libgfortran: 5.* - libgfortran5: '>=11.3.0' - llvm-openmp: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.23-openmp_hc731615_0.conda + glib-tools: ==2.76.4 ha614eb4_0 + python: '*' + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=15.0.7' + libglib: ==2.76.4 h24e9cb9_0 + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/glib-2.76.4-ha614eb4_0.conda hash: - md5: a40b73e171a91527c79fb1c8b10e3312 - sha256: 7f88475228d306962493a3f1c52637187695f7c9716a68a75e24a8aa910be69a + md5: a1065aa44355983e5defd9ef97a60a4d + sha256: 30371b52717e3e99d80c75f79d3edb6d70d3bb78bbf40ae1b96d7ee256c1b30f optional: false category: main - build: openmp_hc731615_0 + build: ha614eb4_0 subdir: osx-arm64 build_number: 0 - constrains: - - openblas >=0.3.23,<0.3.24.0a0 - license: BSD-3-Clause - license_family: BSD - size: 2732539 - timestamp: 1681398430140 -- name: liblapack - version: 3.9.0 + license: LGPL-2.1-or-later + size: 482194 + timestamp: 1688694942192 +- name: glib-tools + version: 2.76.4 manager: conda platform: osx-arm64 dependencies: - libblas: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-17_osxarm64_openblas.conda + libglib: ==2.76.4 h24e9cb9_0 + libzlib: '>=1.2.13,<1.3.0a0' + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/glib-tools-2.76.4-ha614eb4_0.conda hash: - md5: d93cc56c1467a5bcf6a4c9c0be469114 - sha256: 7e32d178639c5bcaac4b654438aa364eec8a42f108bc592dda8e52a432b0cdb4 + md5: 183ff0580b44d53bfdea7ce6e9e7769f + sha256: f14d9277d47affd7d3a4281a80742b78a5e67f4e9c3deb50595a126743e0a69a optional: false category: main - build: 17_osxarm64_openblas + build: ha614eb4_0 subdir: osx-arm64 - build_number: 17 - constrains: - - libcblas 3.9.0 17_osxarm64_openblas - - liblapacke 3.9.0 17_osxarm64_openblas - - blas * openblas - license: BSD-3-Clause - license_family: BSD - size: 14640 - timestamp: 1685931066631 -- name: libcblas - version: 3.9.0 + build_number: 0 + license: LGPL-2.1-or-later + size: 100669 + timestamp: 1688694886885 +- name: libopus + version: 1.3.1 manager: conda platform: osx-arm64 - dependencies: - libblas: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-17_osxarm64_openblas.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 hash: - md5: cf6f9ca46e3db6b2437024df14046b48 - sha256: d5828db3a507790582815aaf44d54ed6bb07dfce4fd25f92e34b2eb31378a372 + md5: 3d0dbee0ccd2f6d6781d270313627b62 + sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a optional: false category: main - build: 17_osxarm64_openblas + build: h27ca646_1 subdir: osx-arm64 - build_number: 17 - constrains: - - liblapacke 3.9.0 17_osxarm64_openblas - - blas * openblas - - liblapack 3.9.0 17_osxarm64_openblas + build_number: 1 license: BSD-3-Clause license_family: BSD - size: 14629 - timestamp: 1685931056087 -- name: pyyaml - version: '6.0' + size: 252854 + timestamp: 1606823635137 +- name: libxcb + version: '1.13' manager: conda platform: osx-arm64 dependencies: - python: '>=3.10,<3.11.0a0 *_cpython' - python_abi: 3.10.* *_cp310 - yaml: '>=0.2.5,<0.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py310h8e9501a_5.tar.bz2 + xorg-libxau: '*' + pthread-stubs: '*' + xorg-libxdmcp: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2 hash: - md5: 51d03e61fad9a0703bece80e471e95d3 - sha256: 9f5b55141e51d64bcd235eeda8d191ba9adde888b33e8bc338229718304f23a5 + md5: 6b3457a192f8091cb413962f65740ac4 + sha256: a89b1e46650c01a8791c201c108d6d49a0a5604dd24ddb18902057bbd90f7dbb optional: false category: main - build: py310h8e9501a_5 + build: h9b22ae9_1004 subdir: osx-arm64 - build_number: 5 + build_number: 1004 license: MIT license_family: MIT - size: 162676 - timestamp: 1666772867901 -- name: libxml2 - version: 2.10.3 + size: 353124 + timestamp: 1636659450212 +- name: pthread-stubs + version: '0.4' manager: conda platform: osx-arm64 - dependencies: - xz: '>=5.2.6,<6.0a0' - icu: '>=70.1,<71.0a0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h67585b2_4.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2 hash: - md5: 3b3f67d1c9d66e873ca91c87640a1d1b - sha256: c558d297f34ca1481359e805804559d351882b5130b1dc9c9c3a603bb54a24eb + md5: d3f26c6494d4105d4ecb85203d687102 + sha256: 9da9e6f5d51dff6ad2e4ee0874791437ba952e0a6249942273f0fedfd07ea826 optional: false category: main - build: h67585b2_4 + build: h27ca646_1001 subdir: osx-arm64 - build_number: 4 - license: MIT - license_family: MIT - size: 597937 - timestamp: 1679341827706 -- name: pydocstyle - version: 6.3.0 - manager: conda - platform: osx-arm64 - dependencies: - python: '>=3.8' - snowballstemmer: '>=2.2.0' - tomli: '>=1.2.3' - url: https://conda.anaconda.org/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_0.conda - hash: - md5: 7e23a61a7fbaedfef6eb0e1ac775c8e5 - sha256: 2076385b40e99732a013eff3b8defd88cd848764b9911d8e0d21728fbc89e301 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 39851 - timestamp: 1673997613432 -- name: snowballstemmer - version: 2.2.0 - manager: conda - platform: osx-arm64 - dependencies: - python: '>=2' - url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 4d22a9315e78c6827f806065957d566e - sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 58824 - timestamp: 1637143137377 -- name: flake8 - version: 6.0.0 - manager: conda - platform: osx-arm64 - dependencies: - mccabe: '>=0.7.0,<0.8.0' - pyflakes: '>=3.0.0,<3.1.0' - python: '>=3.8.1' - pycodestyle: '>=2.10.0,<2.11.0' - url: https://conda.anaconda.org/conda-forge/noarch/flake8-6.0.0-pyhd8ed1ab_0.conda - hash: - md5: e9345ba05d71742412b8aa6992ad9457 - sha256: 4a988f1b1bb9c58b1ee58220e880aa30f346ca193e3fb0d48607f3d961bb5e20 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build_number: 1001 license: MIT license_family: MIT - noarch: python - size: 109426 - timestamp: 1669396799974 -- name: mccabe - version: 0.7.0 + size: 5696 + timestamp: 1606147608402 +- name: xorg-libxdmcp + version: 1.1.3 manager: conda platform: osx-arm64 - dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2 hash: - md5: 34fc335fc50eef0b5ea708f2b5f54e0c - sha256: 0466ad9490b761e9a8c57fab574fc099136b45fa19a0746ce33acdeb2a84766b + md5: 6738b13f7fadc18725965abdd4129c36 + sha256: d9a2fb4762779994718832f05a7d62ab2dcf6103a312235267628b5187ce88f7 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h27ca646_0 + subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT - noarch: python - size: 10909 - timestamp: 1643049714491 -- name: pycodestyle - version: 2.10.0 + size: 18164 + timestamp: 1610071737668 +- name: libclang + version: 14.0.6 manager: conda platform: osx-arm64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.10.0-pyhd8ed1ab_0.conda + libllvm14: '>=14.0.6,<14.1.0a0' + libclang13: ==14.0.6 default_hc7183e1_1 + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-14.0.6-default_h5dc8d65_1.conda hash: - md5: 89843e4cc99c6a3fe5f4c86994cc8410 - sha256: 045624129b3a1cb288527353398af14479a58bee29d42498dc23a9b047f8d042 + md5: d24aeebf80ea1d9df83c8436afa04a7f + sha256: 85b5e616b42e420968512e42276c4d61c647db15e5f3f6065ed6dbbcc2c01b46 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 42519 - timestamp: 1669306964956 -- name: cppcheck - version: 2.7.5 + build: default_h5dc8d65_1 + subdir: osx-arm64 + build_number: 1 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133667 + timestamp: 1684414047342 +- name: libclang13 + version: 14.0.6 manager: conda platform: osx-arm64 dependencies: - pygments: <2.12 - libcxx: '>=14.0.4' - pcre: '>=8.45,<9.0a0' - python: '>=3.10,<3.11.0a0 *_cpython' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-arm64/cppcheck-2.7.5-py310hf3ebaa5_1.tar.bz2 + libllvm14: '>=14.0.6,<14.1.0a0' + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-14.0.6-default_hc7183e1_1.conda hash: - md5: 860c670612a7cdee819c0b51cffd2c88 - sha256: e8b567026927a820a69f62db892d1774f4e6b9117418ca7c6b1a9e09c7b7938b + md5: c811f112a83cefb15d7b4f511579b6e8 + sha256: 775d89c70250ed7fb9d2c480d7a8dcbfff9942a263cef2df89e51d87aafb40ee optional: false category: main - build: py310hf3ebaa5_1 + build: default_hc7183e1_1 subdir: osx-arm64 build_number: 1 - license: GPL-3.0-or-later - license_family: GPL - size: 2104808 - timestamp: 1667412043314 -- name: pcre - version: '8.45' + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 6248677 + timestamp: 1684413932938 +- name: libpq + version: '15.3' manager: conda platform: osx-arm64 dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre-8.45-hbdafb3b_0.tar.bz2 + krb5: '>=1.20.1,<1.21.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-15.3-h7126958_1.conda hash: - md5: 500758f2515ae07c640d255c11afc19f - sha256: f2e0c4ae3306f94851eea2318c6d26d24f8e191e329ddd256a612cd1184c5737 + md5: ae13d3547e9d21beb88e42afd0c820cf + sha256: 4529f6bd6308df510ebb7493fbbfba533a13f77bdee9785b0b029e4cef194519 optional: false category: main - build: hbdafb3b_0 + build: h7126958_1 subdir: osx-arm64 - build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 235554 - timestamp: 1623788902053 -- name: importlib-metadata - version: 6.7.0 + build_number: 1 + license: PostgreSQL + size: 2415588 + timestamp: 1684452698134 +- name: mysql-libs + version: 8.0.33 manager: conda platform: osx-arm64 dependencies: - python: '>=3.8' - zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.7.0-pyha770c72_0.conda + libcxx: '>=15.0.7' + openssl: '>=3.1.1,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + mysql-common: ==8.0.33 h7b5afe1_1 + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-libs-8.0.33-hb292caa_1.conda hash: - md5: ba3786c6846e46038fe60c785d46dc81 - sha256: 1ffffc30dc67d8329d47c6d22de726cfd28d7ed236bca54f52fc0bdcd0a53fc7 + md5: 9c2b9291fb113d2a554dce99f3bfa4af + sha256: 03caf6d05734ab65fd65cd7489f74e3d4fe618ed13093a33dcfb9f0475aad42a optional: false category: main - build: pyha770c72_0 - subdir: noarch - build_number: 0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 25884 - timestamp: 1687138526439 -- name: spdlog - version: 1.11.0 + build: hb292caa_1 + subdir: osx-arm64 + build_number: 1 + size: 1521112 + timestamp: 1688287790464 +- name: mysql-common + version: 8.0.33 manager: conda platform: osx-arm64 dependencies: - fmt: '>=9.1.0,<10.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/spdlog-1.11.0-h6981a3a_1.conda + libcxx: '>=15.0.7' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-common-8.0.33-h7b5afe1_1.conda hash: - md5: bf79b3dcfbabba9d5a398faaf20cda88 - sha256: df0ddbbdd0e9459d64f7156cca44aa83e8c0cb46d3cd40ee5f406c3a3499961e + md5: 1a3436cc1e9a54491d9ea498387e4b55 + sha256: 8fbd0141d13accaba3a6c6b640d49b61e6a212d7e8b1972d990557c2423f2e68 optional: false category: main - build: h6981a3a_1 + build: h7b5afe1_1 subdir: osx-arm64 build_number: 1 - license: MIT - license_family: MIT - size: 180235 - timestamp: 1673570405116 -- name: fmt - version: 9.1.0 + size: 763577 + timestamp: 1688287676704 +- name: nss + version: '3.89' manager: conda platform: osx-arm64 dependencies: - libcxx: '>=14.0.4' - url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-9.1.0-hffc8910_0.tar.bz2 + libcxx: '>=14.0.6' + nspr: '>=4.35,<5.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libsqlite: '>=3.40.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.89-h789eff7_0.conda hash: - md5: 78c11e6b1e971d49e9610d856a845d2f - sha256: 9864e8ed7501ef8d0e6c3de64b9a45865d05c9e19e074fb15633cf0b8924c459 + md5: dbb6be9468b513522e0b03d30cc7f1fd + sha256: 483b3d89e2ed179990a79d858cb4ee8fd5e860c3b85f1a84540a798d89968b82 optional: false category: main - build: hffc8910_0 + build: h789eff7_0 subdir: osx-arm64 build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 1734792 + timestamp: 1678488388531 +- name: libffi + version: 3.4.2 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + hash: + md5: 086914b672be056eb70fd4285b6783b6 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + optional: false + category: main + build: h3422bc3_5 + subdir: osx-arm64 + build_number: 5 license: MIT license_family: MIT - size: 175475 - timestamp: 1661661278672 -- name: pybind11 - version: 2.10.4 + size: 39020 + timestamp: 1636488587153 +- name: openssl + version: 3.1.1 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10,<3.11.0a0 *_cpython' - libcxx: '>=14.0.6' - python_abi: 3.10.* *_cp310 - pybind11-global: ==2.10.4 py310h2887b22_0 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pybind11-2.10.4-py310h2887b22_0.conda + ca-certificates: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.1-h53f4e23_1.conda hash: - md5: dff5175b279861833bda7257724fe421 - sha256: 8d5eee9059077ca091fd44c794ef7355cc967fc0ad698ddcfc6f38a97077d70c + md5: 7451b96ed28b5fd02f0df32689327755 + sha256: 898aac8f8753385e9cd378d539364647d1deb9396032b7c1fd8f0f08107e020b optional: false category: main - build: py310h2887b22_0 + build: h53f4e23_1 subdir: osx-arm64 - build_number: 0 + build_number: 1 constrains: - - pybind11-abi ==4 - license: BSD-3-Clause - license_family: BSD - size: 180310 - timestamp: 1679013248109 -- name: pybind11-global - version: 2.10.4 + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2223980 + timestamp: 1685517736396 +- name: krb5 + version: 1.20.1 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10,<3.11.0a0 *_cpython' + libedit: '>=3.1.20191231,<4.0a0' libcxx: '>=14.0.6' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pybind11-global-2.10.4-py310h2887b22_0.conda + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda hash: - md5: b61ad8698a509573e1041c341fe6f5ba - sha256: 715d18dcad73d2501ed1a74fea5cc47d37fadac94dc5de4d4317209279b5645f + md5: a85db53e45b1173f270fc998dd40ec03 + sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 optional: false category: main - build: py310h2887b22_0 + build: h69eda48_0 subdir: osx-arm64 build_number: 0 - constrains: - - pybind11-abi ==4 - license: BSD-3-Clause - license_family: BSD - size: 169644 - timestamp: 1679013182542 -- name: importlib_resources - version: 5.12.0 + license: MIT + license_family: MIT + size: 1094005 + timestamp: 1671091920523 +- name: libedit + version: 3.1.20191231 manager: conda platform: osx-arm64 dependencies: - python: '>=3.7' - zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda + ncurses: '>=6.2,<7.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 hash: - md5: e5fd2260a231ee63b6969f4801082f2b - sha256: 091cca3e010f7a7353152f0abda2d68cfd83ddde80a15e974d9e18b2047e7be2 + md5: 30e4362988a2623e9eb34337b83e01f9 + sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - constrains: - - importlib-resources >=5.12.0,<5.12.1.0a0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 31030 - timestamp: 1676919099370 -- name: catkin_pkg - version: 0.5.2 + build: hc8eb9b7_2 + subdir: osx-arm64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 96607 + timestamp: 1597616630749 +- name: tzdata + version: 2023c manager: conda platform: osx-arm64 - dependencies: - setuptools: '*' - python: '>=3.6' - python-dateutil: '*' - pyparsing: '>=1.5.7' - docutils: '*' - url: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-0.5.2-pyhd8ed1ab_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: - md5: 023308d75d557ab1ce66bf99a2988d9b - sha256: fbb30218baeceeabaa49fcd3e053b928899d4f78fb5dea131ee550de3e377d42 + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main - build: pyhd8ed1ab_0 + build: h71feb2d_0 subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 51088 - timestamp: 1653705145099 -- name: psutil - version: 5.9.5 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 +- name: numpy + version: 1.25.1 manager: conda platform: osx-arm64 dependencies: + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + liblapack: '>=3.9.0,<4.0a0' python: '>=3.10,<3.11.0a0 *_cpython' python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.5-py310h8e9501a_0.conda + libblas: '>=3.9.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.25.1-py310haa1e00c_0.conda hash: - md5: 691828350ac4ddd02cb9533740a8604c - sha256: 8087d712579ac7537c5d5204c9122a2bac6ee659901df79da32a311169409e91 + md5: e6cb6d386238dd8cce9b403b8f91a33f + sha256: 80a838a20e053efe45da5bdad7b21383eda398384caae77453330386c705012a optional: false category: main - build: py310h8e9501a_0 + build: py310haa1e00c_0 subdir: osx-arm64 build_number: 0 + constrains: + - numpy-base <0a0 license: BSD-3-Clause - license_family: BSD - size: 370353 - timestamp: 1681775531641 -- name: rosdistro - version: 0.9.0 + size: 5634016 + timestamp: 1688887693258 +- name: python_abi + version: '3.10' manager: conda platform: osx-arm64 - dependencies: - setuptools: '*' - python: '>=3.10,<3.11.0a0 *_cpython' - python_abi: 3.10.* *_cp310 - catkin_pkg: '*' - pyyaml: '*' - rospkg: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/rosdistro-0.9.0-py310hbe9552e_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-3_cp310.conda hash: - md5: 3189a83682684f4654dfe01604a8d975 - sha256: edeea84c0ca3ba6ea848e45ac7980450c086703a5b9b05c3e266ef5a6d92d293 + md5: 3f2b2974db21a33a2f45b0c9abbb7516 + sha256: 3f23b0e1656682b0ad1ded4810ba269b610299091c36cf5d516e2dc1162695de optional: false category: main - build: py310hbe9552e_0 + build: 3_cp310 subdir: osx-arm64 - build_number: 0 + build_number: 3 + constrains: + - python 3.10.* *_cpython license: BSD-3-Clause license_family: BSD - size: 81676 - timestamp: 1666961115050 -- name: netifaces - version: 0.11.0 + size: 5771 + timestamp: 1669071822684 +- name: pyyaml + version: '6.0' manager: conda platform: osx-arm64 dependencies: python: '>=3.10,<3.11.0a0 *_cpython' python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-arm64/netifaces-0.11.0-py310h8e9501a_1.tar.bz2 + yaml: '>=0.2.5,<0.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py310h8e9501a_5.tar.bz2 hash: - md5: 96dfe3fb0efa2f204f8187123eaeccea - sha256: fba819e162d68403f1e4d4639bb943399a851e2b5680253b749de7db91e5fd63 + md5: 51d03e61fad9a0703bece80e471e95d3 + sha256: 9f5b55141e51d64bcd235eeda8d191ba9adde888b33e8bc338229718304f23a5 optional: false category: main - build: py310h8e9501a_1 + build: py310h8e9501a_5 subdir: osx-arm64 - build_number: 1 + build_number: 5 license: MIT license_family: MIT - size: 17461 - timestamp: 1666851784712 -- name: packaging - version: '23.1' + size: 162676 + timestamp: 1666772867901 +- name: libxml2 + version: 2.10.3 manager: conda platform: osx-arm64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda + xz: '>=5.2.6,<6.0a0' + icu: '>=70.1,<71.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.10.3-h67585b2_4.conda hash: - md5: 91cda59e66e1e4afe9476f8ef98f5c30 - sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 + md5: 3b3f67d1c9d66e873ca91c87640a1d1b + sha256: c558d297f34ca1481359e805804559d351882b5130b1dc9c9c3a603bb54a24eb optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 46098 - timestamp: 1681337144376 -- name: argcomplete - version: 3.1.1 + build: h67585b2_4 + subdir: osx-arm64 + build_number: 4 + license: MIT + license_family: MIT + size: 597937 + timestamp: 1679341827706 +- name: libgd + version: 2.3.3 manager: conda platform: osx-arm64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.1.1-pyhd8ed1ab_0.conda + icu: '>=70.1,<71.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libiconv: '>=1.16,<2.0.0a0' + freetype: '>=2.10.4,<3.0a0' + jpeg: '>=9e,<10a' + expat: '>=2.4.8,<3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + libtiff: '>=4.3.0,<4.5.0a0' + libwebp: '*' + fonts-conda-ecosystem: '*' + libwebp-base: '>=1.2.2,<2.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + zlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-hede1055_3.tar.bz2 hash: - md5: 964bace0c38ce4733851a2a29679e3f9 - sha256: 1fe9b55d3daeb26ac404ec51f106ce8792d7d6548810ca87600cd9b9e9cfbd6e + md5: 8bbd974c213208687dc289d50feb5c65 + sha256: 5f74d667704a7c93b1b792c0c702211df779ce5ba52f8310955a05da353820a8 optional: false category: main - build: pyhd8ed1ab_0 + build: hede1055_3 + subdir: osx-arm64 + build_number: 3 + license: GD + license_family: BSD + size: 249458 + timestamp: 1648739653064 +- name: fonts-conda-ecosystem + version: '1' + manager: conda + platform: osx-arm64 + dependencies: + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + optional: false + category: main + build: '0' subdir: noarch build_number: 0 - license: Apache-2.0 - license_family: Apache - noarch: python - size: 39430 - timestamp: 1686587564613 -- name: cmake - version: 3.26.3 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 3667 + timestamp: 1566974674465 +- name: fonts-conda-forge + version: '1' manager: conda platform: osx-arm64 dependencies: - libuv: '*' - libcurl: '>=7.88.1,<9.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - rhash: '*' - expat: '*' - libexpat: '>=2.5.0,<3.0a0' - xz: '>=5.2.6,<6.0a0' - bzip2: '>=1.0.8,<2.0a0' - libcxx: '>=14.0.6' - ncurses: '>=6.3,<7.0a0' - zlib: '*' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.26.3-hf234bd0_0.conda + font-ttf-ubuntu: '*' + font-ttf-inconsolata: '*' + font-ttf-dejavu-sans-mono: '*' + font-ttf-source-code-pro: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 hash: - md5: 344bbd44a05f01ccc1b3fdfe6200810f - sha256: f93e975c6d6919666368d9cd0129ca35b6514eeb486848fcb571dcc166863a7a + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 optional: false category: main - build: hf234bd0_0 - subdir: osx-arm64 + build: '0' + subdir: noarch build_number: 0 license: BSD-3-Clause license_family: BSD - size: 13252125 - timestamp: 1680748376161 -- name: libexpat - version: 2.5.0 + noarch: generic + size: 4102 + timestamp: 1566932280397 +- name: font-ttf-dejavu-sans-mono + version: '2.37' manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 hash: - md5: 5a097ad3d17e42c148c9566280481317 - sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main - build: hb7217d7_1 - subdir: osx-arm64 - build_number: 1 - constrains: - - expat 2.5.0.* - license: MIT - license_family: MIT - size: 63442 - timestamp: 1680190916539 -- name: foonathan-memory - version: 0.7.2 + build: hab24e00_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 397370 + timestamp: 1566932522327 +- name: font-ttf-ubuntu + version: '0.83' manager: conda platform: osx-arm64 - dependencies: - libcxx: '>=14.0.4' - url: https://conda.anaconda.org/conda-forge/osx-arm64/foonathan-memory-0.7.2-hb7217d7_1.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 hash: - md5: efd80b94f2b1c04a09d097faa325cceb - sha256: 2ffab99736b64c15660e828dc249574689e39e00de21bcf2c57bbcc6324505af + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main - build: hb7217d7_1 - subdir: osx-arm64 - build_number: 1 - license: Zlib - size: 147637 - timestamp: 1661195843841 -- name: lark-parser - version: 0.12.0 + build: hab24e00_0 + subdir: noarch + build_number: 0 + license: Ubuntu Font Licence Version 1.0 + license_family: Other + noarch: generic + size: 1961279 + timestamp: 1566932680646 +- name: expat + version: 2.5.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_0.tar.bz2 + libexpat: ==2.5.0 hb7217d7_1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda hash: - md5: 2d1f963b23792b269635b9b32bee1913 - sha256: 5a1b0fb3c9e6ba7f8c5788d0bc90aadc85f88371ba261c07edf951805988f89a + md5: 624fa0dd6fdeaa650b71a62296fdfedf + sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build: hb7217d7_1 + subdir: osx-arm64 + build_number: 1 license: MIT license_family: MIT - noarch: python - size: 79371 - timestamp: 1630320889981 -- name: yaml - version: 0.2.5 + size: 117851 + timestamp: 1680190940654 +- name: libexpat + version: 2.5.0 manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda hash: - md5: 4bb3f014845110883a3c5ee811fd84b4 - sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 + md5: 5a097ad3d17e42c148c9566280481317 + sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 optional: false category: main - build: h3422bc3_2 + build: hb7217d7_1 subdir: osx-arm64 - build_number: 2 + build_number: 1 + constrains: + - expat 2.5.0.* license: MIT license_family: MIT - size: 88016 - timestamp: 1641347076660 -- name: yaml-cpp - version: 0.7.0 + size: 63442 + timestamp: 1680190916539 +- name: fontconfig + version: 2.14.2 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=14.0.4' - url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.7.0-hb7217d7_2.tar.bz2 + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + expat: '>=2.5.0,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda hash: - md5: 1ba3d7af8b182ae33d49e4bb567076d3 - sha256: a0672f4d06dc6f4e763d37927b5d0d8c4badaeb76d7bb4840650d79e90f41c3c + md5: f77d47ddb6d3cc5b39b9bdf65635afbb + sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b optional: false category: main - build: hb7217d7_2 + build: h82840c6_0 subdir: osx-arm64 - build_number: 2 + build_number: 0 license: MIT license_family: MIT - size: 136307 - timestamp: 1664346021426 -- name: console_bridge - version: 1.0.2 + size: 237668 + timestamp: 1674829263740 +- name: libwebp + version: 1.2.4 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=12.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/console_bridge-1.0.2-h3e96240_1.tar.bz2 + libtiff: '>=4.4.0,<4.5.0a0' + libpng: '>=1.6.37,<1.7.0a0' + giflib: '>=5.2.1,<5.3.0a0' + jpeg: '>=9e,<10a' + libwebp-base: '>=1.2.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h328b37c_0.tar.bz2 hash: - md5: e2dde786c16d90869de84d458af36d92 - sha256: f39c48eb54adaffe679fc9b3a2a9b9cd78f97e2e9fd555ec7c5fd8a99957bfc5 + md5: 194c8df68e6966f8e012cd326e42c31d + sha256: cb50b3337ed39a33861ab7aff50883239d5c373c7caf5dff6684ebba6477d0e6 optional: false category: main - build: h3e96240_1 + build: h328b37c_0 subdir: osx-arm64 - build_number: 1 + build_number: 0 license: BSD-3-Clause license_family: BSD - size: 17727 - timestamp: 1648912770421 -- name: libcurl - version: 7.88.1 + size: 86136 + timestamp: 1660329717009 +- name: libtiff + version: 4.4.0 manager: conda platform: osx-arm64 dependencies: - libssh2: '>=1.10.0,<2.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - openssl: '>=3.1.0,<4.0a0' - krb5: '>=1.20.1,<1.21.0a0' + libdeflate: '>=1.14,<1.15.0a0' libzlib: '>=1.2.13,<1.3.0a0' + jpeg: '>=9e,<10a' + libwebp-base: '>=1.2.4,<2.0a0' + xz: '>=5.2.6,<6.0a0' + libcxx: '>=14.0.6' + lerc: '>=4.0.0,<5.0a0' zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.88.1-h9049daf_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.4.0-heb92581_5.conda hash: - md5: 148e2e109774943f699768703502a918 - sha256: ae5994694488b40e7fbdc57babd1c352c72d9f7a355faec4f3502fc953578116 + md5: fb564626ea319252c2b3a5edc2f7640f + sha256: 585ec0cea99f86320c2d6cf1c3d13538e617bd48200902d64154363a92d89162 optional: false category: main - build: h9049daf_1 + build: heb92581_5 subdir: osx-arm64 - build_number: 1 - license: curl - license_family: MIT - size: 322772 - timestamp: 1679082329467 -- name: libnghttp2 - version: 1.52.0 + build_number: 5 + license: HPND + size: 431146 + timestamp: 1671300873940 +- name: lerc + version: 4.0.0 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=14.0.6' - c-ares: '>=1.18.1,<2.0a0' - libev: '>=4.33,<4.34.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.8,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda + libcxx: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 hash: - md5: 1d319e95a0216f801293626a00337712 - sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 + md5: de462d5aacda3b30721b512c5da4e742 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 optional: false category: main - build: hae82a92_0 + build: h9a09cb3_0 subdir: osx-arm64 build_number: 0 - license: MIT - license_family: MIT - size: 564295 - timestamp: 1677678452375 -- name: libignition-cmake2 - version: 2.16.0 + license: Apache-2.0 + license_family: Apache + size: 215721 + timestamp: 1657977558796 +- name: libdeflate + version: '1.14' manager: conda platform: osx-arm64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libignition-cmake2-2.16.0-hb7217d7_1.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.14-h1a8c8d9_0.tar.bz2 hash: - md5: e925f21c1c478ee19915e32eaeaa3bee - sha256: 7ddcc3024bec20527fef30635b8d1d6fa105eb92bd2c65af8dcae03625b95ed3 + md5: cb64374f9f7ad86b6194e294c56e06a5 + sha256: 2adff34121246f809250417a65036cacd3b7929929df51feda9ff90d5156750b optional: false category: main - build: hb7217d7_1 + build: h1a8c8d9_0 subdir: osx-arm64 - build_number: 1 - license: Apache-2.0 - license_family: APACHE - size: 269955 - timestamp: 1670579165091 -- name: pyqt - version: 5.15.7 + build_number: 0 + license: MIT + license_family: MIT + size: 61426 + timestamp: 1662888596416 +- name: giflib + version: 5.2.1 manager: conda platform: osx-arm64 - dependencies: - pyqt5-sip: ==12.11.0 py310h0f1eb42_3 - python: '>=3.10,<3.11.0a0 *_cpython' - libcxx: '>=14.0.6' - python_abi: 3.10.* *_cp310 - qt-main: '>=5.15.6,<5.16.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyqt-5.15.7-py310h7aaa74b_3.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda hash: - md5: a5d5f2aa80102438a8473edb75f27cc0 - sha256: 7e34b2c7203639230db1e2348cfb7877dada3bbedf38c0a42a67191de711265e + md5: f39a05d3dbb0e5024b7deabb2c0993f1 + sha256: dbf1e431d3e5e03f8eeb77ec08a4c5d6d5d9af84dbef13d4365e397dd389beb8 optional: false category: main - build: py310h7aaa74b_3 + build: h1a8c8d9_3 subdir: osx-arm64 build_number: 3 - license: GPL-3.0-only - license_family: GPL - size: 3908378 - timestamp: 1674670813619 -- name: pyqt5-sip - version: 12.11.0 + license: MIT + license_family: MIT + size: 71963 + timestamp: 1678718059849 +- name: freetype + version: 2.12.1 manager: conda platform: osx-arm64 dependencies: - sip: '*' - python: '>=3.10,<3.11.0a0 *_cpython' - libcxx: '>=14.0.6' - python_abi: 3.10.* *_cp310 - toml: '*' - packaging: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyqt5-sip-12.11.0-py310h0f1eb42_3.conda + libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda hash: - md5: c4c93c4630c1370e0921fa3f02cbcc87 - sha256: 2d524e7d8ecd4ca7584622bc6def9e0a8443e55d2798098d8451d2b838447ab8 + md5: 33ea6326e26d1da25eb8dfa768195b82 + sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4 optional: false category: main - build: py310h0f1eb42_3 + build: hd633e50_1 subdir: osx-arm64 - build_number: 3 - license: GPL-3.0-only - license_family: GPL - size: 70326 - timestamp: 1674666905278 -- name: xorg-libxext - version: 1.3.4 + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 572579 + timestamp: 1669233072570 +- name: yaml + version: 0.2.5 manager: conda platform: osx-arm64 - dependencies: - xorg-libx11: '>=1.7.2,<2.0a0' - xorg-xextproto: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxext-1.3.4-h1a8c8d9_2.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 hash: - md5: 0ea792d9a253b64752e9fcfaafe8d529 - sha256: 073e673a9b4ef748c256d655d1ab5f368e5e3972ad3332c96c1d4c2cf0c7b9af + md5: 4bb3f014845110883a3c5ee811fd84b4 + sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 optional: false category: main - build: h1a8c8d9_2 + build: h3422bc3_2 subdir: osx-arm64 build_number: 2 license: MIT license_family: MIT - size: 41541 - timestamp: 1677037316516 -- name: pep517 - version: 0.13.0 + size: 88016 + timestamp: 1641347076660 +- name: xorg-libxau + version: 1.0.11 manager: conda platform: osx-arm64 - dependencies: - python: '>=3.8' - tomli: '*' - url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hb547adb_0.conda hash: - md5: d94aa03d99d8adc9898f783eba0d84d2 - sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 + md5: ca73dc4f01ea91e44e3ed76602c5ea61 + sha256: 02c313a1cada46912e5b9bdb355cfb4534bfe22143b4ea4ecc419690e793023b optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: hb547adb_0 + subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT - noarch: python - size: 19044 - timestamp: 1667916747996 -- name: pyqt-builder - version: 1.15.1 - manager: conda - platform: osx-arm64 - dependencies: - sip: '*' - python: '>=3.6' - toml: '*' - packaging: '*' - url: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.1-pyhd8ed1ab_0.conda - hash: - md5: d124f91fd155fee0bd3d56e656917622 - sha256: 15b5fcae4530c1a7ba8dd32d3b249486f60f51b2342e21aa010852923f677405 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: GPL-3.0-only - license_family: GPL - noarch: python - size: 2962795 - timestamp: 1685604062805 -- name: libopencv - version: 4.6.0 + size: 13667 + timestamp: 1684638272445 +- name: libllvm14 + version: 14.0.6 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10,<3.11.0a0 *_cpython' - libpng: '>=1.6.39,<1.7.0a0' - jpeg: '>=9e,<10a' - libprotobuf: '>=3.21.12,<3.22.0a0' libzlib: '>=1.2.13,<1.3.0a0' - libcblas: '>=3.9.0,<4.0a0' - jasper: '>=2.0.33,<3.0a0' - harfbuzz: '>=6.0.0,<7.0a0' - liblapacke: '>=3.9.0,<4.0a0' - libglib: '>=2.74.1,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - hdf5: '>=1.12.2,<1.12.3.0a0' - libwebp-base: '>=1.2.4,<2.0a0' - liblapack: '>=3.9.0,<4.0a0' - libcxx: '>=14.0.6' - ffmpeg: '>=5.1.2,<6.0a0' - libtiff: '>=4.4.0,<4.5.0a0' - numpy: '>=1.21.6,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopencv-4.6.0-py310h57eab40_8.conda + libcxx: '>=15' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hd1a9a77_3.conda hash: - md5: ed26a010d317c846f6aeb794a63f6797 - sha256: 067b6513de97d41f205af2465fe6e495ca0b074db519ee6df4eb4a87fbe34d53 + md5: 51d95b4036d6f7695b7dee38ea1792a6 + sha256: 905f9084737336c4232c25698e0ac16f23f3d9f541647c9874e8392cbcf9e9cd optional: false category: main - build: py310h57eab40_8 + build: hd1a9a77_3 subdir: osx-arm64 - build_number: 8 - license: Apache-2.0 + build_number: 3 + license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 15377616 - timestamp: 1671410027790 -- name: harfbuzz - version: 6.0.0 + size: 20569776 + timestamp: 1685676531181 +- name: ca-certificates + version: 2023.5.7 manager: conda platform: osx-arm64 - dependencies: - icu: '>=70.1,<71.0a0' - libcxx: '>=14.0.6' - graphite2: '*' - cairo: '>=1.16.0,<2.0a0' - freetype: '>=2.12.1,<3.0a0' - libglib: '>=2.74.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-6.0.0-hddbc195_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.5.7-hf0a4a13_0.conda hash: - md5: bc6503f2956775e3d6e481d7588b7998 - sha256: 1758f3bd55a43fbf08e543f794b005ffe92e2dfc6c6a01d33b49a6697b4d597c + md5: a8387be82224743cf849fb907790b91a + sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5 optional: false category: main - build: hddbc195_0 + build: hf0a4a13_0 subdir: osx-arm64 build_number: 0 - license: MIT - license_family: MIT - size: 1110864 - timestamp: 1671366696289 -- name: liblapacke + license: ISC + size: 148524 + timestamp: 1683451885269 +- name: libblas version: 3.9.0 manager: conda platform: osx-arm64 dependencies: - libcblas: ==3.9.0 17_osxarm64_openblas - libblas: ==3.9.0 17_osxarm64_openblas - liblapack: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapacke-3.9.0-17_osxarm64_openblas.conda + libopenblas: '>=0.3.23,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-17_osxarm64_openblas.conda hash: - md5: c134445c3c15c057b58dc74cd295f156 - sha256: 3a0283b21be08080632f097b9f9d6faea2bc097d5ce2ce19dd5769b194076f81 + md5: 2597bd39632ec57ef3f5ac14865dca09 + sha256: 76c68d59491b449b7608fb5e4a86f3c292c01cf487ce47288a22fc7001a6b150 optional: false category: main build: 17_osxarm64_openblas subdir: osx-arm64 build_number: 17 constrains: + - libcblas 3.9.0 17_osxarm64_openblas + - liblapacke 3.9.0 17_osxarm64_openblas - blas * openblas + - liblapack 3.9.0 17_osxarm64_openblas license: BSD-3-Clause license_family: BSD - size: 14633 - timestamp: 1685931077409 -- name: libprotobuf - version: 3.21.12 + size: 14715 + timestamp: 1685931044178 +- name: libopenblas + version: 0.3.23 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.21.12-hb5ab8b9_0.conda + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.23-openmp_hc731615_0.conda hash: - md5: 7adb342474af442e3842c422f07fbf68 - sha256: 1ba3f141e7554b0d0998808b2ba270760e3d4b882839bb24a566ce046d58bbc8 + md5: a40b73e171a91527c79fb1c8b10e3312 + sha256: 7f88475228d306962493a3f1c52637187695f7c9716a68a75e24a8aa910be69a optional: false category: main - build: hb5ab8b9_0 + build: openmp_hc731615_0 subdir: osx-arm64 build_number: 0 + constrains: + - openblas >=0.3.23,<0.3.24.0a0 license: BSD-3-Clause license_family: BSD - size: 1795574 - timestamp: 1670987082982 -- name: graphite2 - version: 1.3.13 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=11.0.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2 - hash: - md5: 288b591645cb9cb9c0af7309ac1114f5 - sha256: 57db1e563cdfe469cd453a2988039118e96ce4b77c9219e2f1022be0e1c2b03f - optional: false - category: main - build: h9f76cd9_1001 - subdir: osx-arm64 - build_number: 1001 - license: LGPLv2 - size: 83198 - timestamp: 1604365687923 -- name: py-opencv - version: 4.6.0 + size: 2732539 + timestamp: 1681398430140 +- name: liblapack + version: 3.9.0 manager: conda platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libopencv: ==4.6.0 py310h57eab40_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/py-opencv-4.6.0-py310h69fb684_8.conda + libblas: ==3.9.0 17_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-17_osxarm64_openblas.conda hash: - md5: ed1e7301a20e73cdbc8a6d61ea19c1db - sha256: ac7ae93e6265ebc4ffc096c92fed9fd71beef76f9eb7bdfa460f32f7cea48ab8 + md5: d93cc56c1467a5bcf6a4c9c0be469114 + sha256: 7e32d178639c5bcaac4b654438aa364eec8a42f108bc592dda8e52a432b0cdb4 optional: false category: main - build: py310h69fb684_8 + build: 17_osxarm64_openblas subdir: osx-arm64 - build_number: 8 - license: Apache-2.0 - license_family: Apache - size: 1150245 - timestamp: 1671410080364 -- name: tomli - version: 2.0.1 - manager: conda - platform: osx-arm64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 15940 - timestamp: 1644342331069 -- name: pyflakes - version: 3.0.1 - manager: conda - platform: osx-arm64 - dependencies: - python: 2.7.*|>=3.5 - url: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.0.1-pyhd8ed1ab_0.conda - hash: - md5: 44b7d77d96560c93e0e11437a3c35254 - sha256: 1a6fd59626b360ef498d8cd61b4a8a3ef771a385f97c6f574fccaa100a8bb99e - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 57427 - timestamp: 1669320032089 -- name: sip - version: 6.7.9 + build_number: 17 + constrains: + - libcblas 3.9.0 17_osxarm64_openblas + - liblapacke 3.9.0 17_osxarm64_openblas + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14640 + timestamp: 1685931066631 +- name: libcblas + version: 3.9.0 manager: conda platform: osx-arm64 dependencies: - ply: '*' - libcxx: '>=15.0.7' - python: '>=3.10,<3.11.0a0 *_cpython' - python_abi: 3.10.* *_cp310 - packaging: '*' - tomli: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/sip-6.7.9-py310h1253130_0.conda + libblas: ==3.9.0 17_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-17_osxarm64_openblas.conda hash: - md5: 69fe6b221214c1736f0183bd672f3e85 - sha256: 7c476619d666114158f9d6f5b3ab1c41cf30c2cecb467bf553370ce146265b8f + md5: cf6f9ca46e3db6b2437024df14046b48 + sha256: d5828db3a507790582815aaf44d54ed6bb07dfce4fd25f92e34b2eb31378a372 optional: false category: main - build: py310h1253130_0 + build: 17_osxarm64_openblas subdir: osx-arm64 - build_number: 0 - license: GPL-3.0-only - license_family: GPL - size: 481697 - timestamp: 1681995517238 -- name: ply - version: '3.11' + build_number: 17 + constrains: + - liblapacke 3.9.0 17_osxarm64_openblas + - blas * openblas + - liblapack 3.9.0 17_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14629 + timestamp: 1685931056087 +- name: pydocstyle + version: 6.3.0 manager: conda platform: osx-arm64 dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 + python: '>=3.8' + snowballstemmer: '>=2.2.0' + tomli: '>=1.2.3' + url: https://conda.anaconda.org/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_0.conda hash: - md5: 7205635cd71531943440fbfe3b6b5727 - sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 + md5: 7e23a61a7fbaedfef6eb0e1ac775c8e5 + sha256: 2076385b40e99732a013eff3b8defd88cd848764b9911d8e0d21728fbc89e301 optional: false category: main - build: py_1 + build: pyhd8ed1ab_0 subdir: noarch - build_number: 1 - license: BSD 3-clause - license_family: BSD + build_number: 0 + license: MIT + license_family: MIT noarch: python - size: 44837 - timestamp: 1530963184592 -- name: toml - version: 0.10.2 + size: 39851 + timestamp: 1673997613432 +- name: snowballstemmer + version: 2.2.0 manager: conda platform: osx-arm64 dependencies: - python: '>=2.7' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + python: '>=2' + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: MIT - license_family: MIT + license: BSD-3-Clause + license_family: BSD noarch: python - size: 18433 - timestamp: 1604308660817 -- name: zipp - version: 3.15.0 + size: 58824 + timestamp: 1637143137377 +- name: flake8 + version: 6.0.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda + mccabe: '>=0.7.0,<0.8.0' + pyflakes: '>=3.0.0,<3.1.0' + python: '>=3.8.1' + pycodestyle: '>=2.10.0,<2.11.0' + url: https://conda.anaconda.org/conda-forge/noarch/flake8-6.0.0-pyhd8ed1ab_0.conda hash: - md5: 13018819ca8f5b7cc675a8faf1f5fedf - sha256: 241de30545299be9bcea3addf8a2c22a3b3d4ba6730890e150ab690ac937a3d2 + md5: e9345ba05d71742412b8aa6992ad9457 + sha256: 4a988f1b1bb9c58b1ee58220e880aa30f346ca193e3fb0d48607f3d961bb5e20 optional: false category: main build: pyhd8ed1ab_0 @@ -25033,37 +24413,38 @@ package: license: MIT license_family: MIT noarch: python - size: 17197 - timestamp: 1677313561776 -- name: docutils - version: 0.20.1 + size: 109426 + timestamp: 1669396799974 +- name: mccabe + version: 0.7.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.10,<3.11.0a0 *_cpython' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-arm64/docutils-0.20.1-py310hbe9552e_0.conda + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: 9d7f94f2db61c2c4c584641ddaaf2a92 - sha256: b60c4013e0ee6f9bbff0c6f8dc9d8210c216d1e135cf0527bbfadcb5a2115f6a + md5: 34fc335fc50eef0b5ea708f2b5f54e0c + sha256: 0466ad9490b761e9a8c57fab574fc099136b45fa19a0746ce33acdeb2a84766b optional: false category: main - build: py310hbe9552e_0 - subdir: osx-arm64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: LicenseRef-Public-Domain-Dedictation and BSD-2-Clause and LicenseRef-PSF-2.1.1 and GPL-3.0-or-later - size: 724048 - timestamp: 1684324952093 -- name: pyparsing - version: 3.1.0 + license: MIT + license_family: MIT + noarch: python + size: 10909 + timestamp: 1643049714491 +- name: pycodestyle + version: 2.10.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.10.0-pyhd8ed1ab_0.conda hash: - md5: d3ed087d1f7f8f5590e8e87b57a8ce64 - sha256: 18e3bd52c64f23bbc7c200fd2fc4152dd29423936dc43e8f129cb43f1af0136c + md5: 89843e4cc99c6a3fe5f4c86994cc8410 + sha256: 045624129b3a1cb288527353398af14479a58bee29d42498dc23a9b047f8d042 optional: false category: main build: pyhd8ed1ab_0 @@ -25072,712 +24453,734 @@ package: license: MIT license_family: MIT noarch: python - size: 88865 - timestamp: 1687132145260 -- name: python-dateutil - version: 2.8.2 + size: 42519 + timestamp: 1669306964956 +- name: cppcheck + version: 2.7.5 manager: conda platform: osx-arm64 dependencies: - python: '>=3.6' - six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + pygments: <2.12 + libcxx: '>=14.0.4' + pcre: '>=8.45,<9.0a0' + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cppcheck-2.7.5-py310hf3ebaa5_1.tar.bz2 hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + md5: 860c670612a7cdee819c0b51cffd2c88 + sha256: e8b567026927a820a69f62db892d1774f4e6b9117418ca7c6b1a9e09c7b7938b optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 245987 - timestamp: 1626286448716 -- name: pygments - version: 2.11.2 + build: py310hf3ebaa5_1 + subdir: osx-arm64 + build_number: 1 + license: GPL-3.0-or-later + license_family: GPL + size: 2104808 + timestamp: 1667412043314 +- name: pcre + version: '8.45' manager: conda platform: osx-arm64 dependencies: - setuptools: '*' - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.11.2-pyhd8ed1ab_0.tar.bz2 + libcxx: '>=11.1.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre-8.45-hbdafb3b_0.tar.bz2 hash: - md5: caef60540e2239e27bf62569a5015e3b - sha256: 9624f2edb2ff64f7cdaf6034202092644978290e0f551352a46925d78b8179cf + md5: 500758f2515ae07c640d255c11afc19f + sha256: f2e0c4ae3306f94851eea2318c6d26d24f8e191e329ddd256a612cd1184c5737 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: hbdafb3b_0 + subdir: osx-arm64 build_number: 0 - license: BSD-2-Clause + license: BSD-3-Clause license_family: BSD - noarch: python - size: 815457 - timestamp: 1641580324044 -- name: rospkg - version: 1.5.0 + size: 235554 + timestamp: 1623788902053 +- name: importlib-metadata + version: 6.8.0 manager: conda platform: osx-arm64 dependencies: - python: '>=3.6' - pyyaml: '*' - catkin_pkg: '*' - distro: '*' - url: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.5.0-pyhd8ed1ab_0.conda + python: '>=3.8' + zipp: '>=0.5' + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda hash: - md5: 15f4f2f2538f7746a9c4c9f3ba783f49 - sha256: 1ad1b4ce441a35dc86c13d8683ed2f052e4df8d8c3f5ced86d5e4735d596f940 + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf optional: false category: main - build: pyhd8ed1ab_0 + build: pyha770c72_0 subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD + license: Apache-2.0 + license_family: APACHE noarch: python - size: 31031 - timestamp: 1679367764497 -- name: c-ares - version: 1.19.1 + size: 25910 + timestamp: 1688754651944 +- name: spdlog + version: 1.11.0 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda + dependencies: + fmt: '>=9.1.0,<10.0a0' + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/spdlog-1.11.0-h6981a3a_1.conda hash: - md5: e7fc7430440d255e3a9c7e5a52f7b294 - sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 + md5: bf79b3dcfbabba9d5a398faaf20cda88 + sha256: df0ddbbdd0e9459d64f7156cca44aa83e8c0cb46d3cd40ee5f406c3a3499961e optional: false category: main - build: hb547adb_0 + build: h6981a3a_1 subdir: osx-arm64 - build_number: 0 + build_number: 1 license: MIT license_family: MIT - size: 101998 - timestamp: 1684783026131 -- name: libev - version: '4.33' + size: 180235 + timestamp: 1673570405116 +- name: fmt + version: 9.1.0 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 + dependencies: + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-9.1.0-hffc8910_0.tar.bz2 hash: - md5: 566dbf70fe79eacdb3c3d3d195a27f55 - sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c + md5: 78c11e6b1e971d49e9610d856a845d2f + sha256: 9864e8ed7501ef8d0e6c3de64b9a45865d05c9e19e074fb15633cf0b8924c459 optional: false category: main - build: h642e427_1 + build: hffc8910_0 subdir: osx-arm64 - build_number: 1 - license: BSD-2-Clause - license_family: BSD - size: 100668 - timestamp: 1598868103393 -- name: libssh2 - version: 1.11.0 + build_number: 0 + license: MIT + license_family: MIT + size: 175475 + timestamp: 1661661278672 +- name: pybind11 + version: 2.10.4 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + python: '>=3.10,<3.11.0a0 *_cpython' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + pybind11-global: ==2.10.4 py310h2887b22_0 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pybind11-2.10.4-py310h2887b22_0.conda hash: - md5: 029f7dc931a3b626b94823bc77830b01 - sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 + md5: dff5175b279861833bda7257724fe421 + sha256: 8d5eee9059077ca091fd44c794ef7355cc967fc0ad698ddcfc6f38a97077d70c optional: false category: main - build: h7a5bd25_0 + build: py310h2887b22_0 subdir: osx-arm64 build_number: 0 + constrains: + - pybind11-abi ==4 license: BSD-3-Clause license_family: BSD - size: 255610 - timestamp: 1685837894256 -- name: libogg - version: 1.3.4 + size: 180310 + timestamp: 1679013248109 +- name: pybind11-global + version: 2.10.4 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.4-h27ca646_1.tar.bz2 + dependencies: + python: '>=3.10,<3.11.0a0 *_cpython' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pybind11-global-2.10.4-py310h2887b22_0.conda hash: - md5: fb211883ad5716e398b974a9cde9d78e - sha256: 916bbd5b7da6c922d6a16dd7d396b8a4e862edaca045671692e35add58aace64 + md5: b61ad8698a509573e1041c341fe6f5ba + sha256: 715d18dcad73d2501ed1a74fea5cc47d37fadac94dc5de4d4317209279b5645f optional: false category: main - build: h27ca646_1 + build: py310h2887b22_0 subdir: osx-arm64 - build_number: 1 + build_number: 0 + constrains: + - pybind11-abi ==4 license: BSD-3-Clause license_family: BSD - size: 207390 - timestamp: 1610382137160 -- name: boost-cpp - version: 1.78.0 + size: 169644 + timestamp: 1679013182542 +- name: importlib_resources + version: 6.0.0 manager: conda platform: osx-arm64 dependencies: - xz: '>=5.2.6,<6.0a0' - libcxx: '>=12.0.1' - bzip2: '>=1.0.8,<2.0a0' - icu: '>=70.1,<71.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.78.0-hf1d6563_2.conda + python: '>=3.7' + zipp: '>=3.1.0' + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.0.0-pyhd8ed1ab_0.conda hash: - md5: ad334927e87c12f7f3de44064034892d - sha256: a44e260f7a8cd55c66fcf4457aadfa249119822fef0e26333bec184026110776 + md5: acf36c4210f71dbf45a83409a9b5ff4d + sha256: cfdc0bb498d6957e360181947b8f07c1128606e9fc27eb4b8aca421857d4127a optional: false category: main - build: hf1d6563_2 - subdir: osx-arm64 - build_number: 2 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 constrains: - - libboost <0 - license: BSL-1.0 - size: 15161838 - timestamp: 1680713438320 -- name: freetype - version: 2.12.1 + - importlib-resources >=6.0.0,<6.0.1.0a0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 27488 + timestamp: 1688813652372 +- name: catkin_pkg + version: 0.5.2 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda + setuptools: '*' + python: '>=3.6' + python-dateutil: '*' + pyparsing: '>=1.5.7' + docutils: '*' + url: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-0.5.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: 33ea6326e26d1da25eb8dfa768195b82 - sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4 + md5: 023308d75d557ab1ce66bf99a2988d9b + sha256: fbb30218baeceeabaa49fcd3e053b928899d4f78fb5dea131ee550de3e377d42 optional: false category: main - build: hd633e50_1 - subdir: osx-arm64 - build_number: 1 - license: GPL-2.0-only and LicenseRef-FreeType - size: 572579 - timestamp: 1669233072570 -- name: cairo - version: 1.16.0 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 51088 + timestamp: 1653705145099 +- name: empy + version: 3.3.4 manager: conda platform: osx-arm64 dependencies: - icu: '>=70.1,<71.0a0' - libpng: '>=1.6.38,<1.7.0a0' - libglib: '>=2.72.1,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - zlib: '>=1.2.12,<1.3.0a0' - fontconfig: '>=2.13.96,<3.0a0' - fonts-conda-ecosystem: '*' - pixman: '>=0.40.0,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h73a0509_1014.tar.bz2 + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 hash: - md5: be2ea75899a7b1f1dd59a862fac655ee - sha256: 508c63c893360cee44e82cf550548ae8bbcc96bd26b7f30f9197787a653dd6a1 + md5: e4be10fd1a907b223da5be93f06709d2 + sha256: 75e04755df8d8db7a7711dddaf68963c11258b755c9c24565bfefa493ee383e3 optional: false category: main - build: h73a0509_1014 - subdir: osx-arm64 - build_number: 1014 - license: LGPL-2.1-only or MPL-1.1 - size: 1401434 - timestamp: 1663568643512 -- name: pixman - version: 0.40.0 + build: pyh9f0ad1d_1 + subdir: noarch + build_number: 1 + license: LGPL-2.1 + license_family: GPL + noarch: python + size: 40210 + timestamp: 1586444722817 +- name: psutil + version: 5.9.5 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2 + dependencies: + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.5-py310h8e9501a_0.conda hash: - md5: 0cedfe37c9aee28f5e926a870965466a - sha256: a3bde72b3f9344ede1a189612d997f775b503a8eec61fb9720d18551f3c71080 + md5: 691828350ac4ddd02cb9533740a8604c + sha256: 8087d712579ac7537c5d5204c9122a2bac6ee659901df79da32a311169409e91 optional: false category: main - build: h27ca646_0 + build: py310h8e9501a_0 subdir: osx-arm64 build_number: 0 - license: MIT - license_family: MIT - size: 291804 - timestamp: 1604342450513 -- name: fonts-conda-ecosystem - version: '1' + license: BSD-3-Clause + license_family: BSD + size: 370353 + timestamp: 1681775531641 +- name: rosdistro + version: 0.9.0 manager: conda platform: osx-arm64 dependencies: - fonts-conda-forge: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + setuptools: '*' + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + catkin_pkg: '*' + pyyaml: '*' + rospkg: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/rosdistro-0.9.0-py310hbe9552e_0.tar.bz2 hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: 3189a83682684f4654dfe01604a8d975 + sha256: edeea84c0ca3ba6ea848e45ac7980450c086703a5b9b05c3e266ef5a6d92d293 optional: false category: main - build: '0' - subdir: noarch + build: py310hbe9552e_0 + subdir: osx-arm64 build_number: 0 license: BSD-3-Clause license_family: BSD - noarch: generic - size: 3667 - timestamp: 1566974674465 -- name: fonts-conda-forge - version: '1' + size: 81676 + timestamp: 1666961115050 +- name: netifaces + version: 0.11.0 manager: conda platform: osx-arm64 dependencies: - font-ttf-ubuntu: '*' - font-ttf-inconsolata: '*' - font-ttf-dejavu-sans-mono: '*' - font-ttf-source-code-pro: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-arm64/netifaces-0.11.0-py310h8e9501a_1.tar.bz2 hash: - md5: f766549260d6815b0c52253f1fb1bb29 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + md5: 96dfe3fb0efa2f204f8187123eaeccea + sha256: fba819e162d68403f1e4d4639bb943399a851e2b5680253b749de7db91e5fd63 optional: false category: main - build: '0' + build: py310h8e9501a_1 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 17461 + timestamp: 1666851784712 +- name: packaging + version: '23.1' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda + hash: + md5: 91cda59e66e1e4afe9476f8ef98f5c30 + sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 + optional: false + category: main + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: generic - size: 4102 - timestamp: 1566932280397 -- name: font-ttf-dejavu-sans-mono - version: '2.37' + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 46098 + timestamp: 1681337144376 +- name: argcomplete + version: 3.1.1 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 0c96522c6bdaed4b1566d11387caaf45 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: 964bace0c38ce4733851a2a29679e3f9 + sha256: 1fe9b55d3daeb26ac404ec51f106ce8792d7d6548810ca87600cd9b9e9cfbd6e optional: false category: main - build: hab24e00_0 + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: generic - size: 397370 - timestamp: 1566932522327 -- name: font-ttf-ubuntu - version: '0.83' + license: Apache-2.0 + license_family: Apache + noarch: python + size: 39430 + timestamp: 1686587564613 +- name: cmake + version: 3.26.3 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + dependencies: + libuv: '*' + libcurl: '>=7.88.1,<9.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + rhash: '*' + expat: '*' + libexpat: '>=2.5.0,<3.0a0' + xz: '>=5.2.6,<6.0a0' + bzip2: '>=1.0.8,<2.0a0' + libcxx: '>=14.0.6' + ncurses: '>=6.3,<7.0a0' + zlib: '*' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.26.3-hf234bd0_0.conda hash: - md5: 19410c3df09dfb12d1206132a1d357c5 - sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + md5: 344bbd44a05f01ccc1b3fdfe6200810f + sha256: f93e975c6d6919666368d9cd0129ca35b6514eeb486848fcb571dcc166863a7a optional: false category: main - build: hab24e00_0 - subdir: noarch + build: hf234bd0_0 + subdir: osx-arm64 build_number: 0 - license: Ubuntu Font Licence Version 1.0 - license_family: Other - noarch: generic - size: 1961279 - timestamp: 1566932680646 -- name: expat - version: 2.5.0 + license: BSD-3-Clause + license_family: BSD + size: 13252125 + timestamp: 1680748376161 +- name: foonathan-memory + version: 0.7.2 manager: conda platform: osx-arm64 dependencies: - libexpat: ==2.5.0 hb7217d7_1 - url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-arm64/foonathan-memory-0.7.2-hb7217d7_1.tar.bz2 hash: - md5: 624fa0dd6fdeaa650b71a62296fdfedf - sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0 + md5: efd80b94f2b1c04a09d097faa325cceb + sha256: 2ffab99736b64c15660e828dc249574689e39e00de21bcf2c57bbcc6324505af optional: false category: main build: hb7217d7_1 subdir: osx-arm64 build_number: 1 - license: MIT - license_family: MIT - size: 117851 - timestamp: 1680190940654 -- name: libuv - version: 1.44.2 + license: Zlib + size: 147637 + timestamp: 1661195843841 +- name: lark-parser + version: 0.12.0 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.44.2-he4db4b2_0.tar.bz2 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: 9ec5d69871f50066aca03d0611507396 - sha256: 287e905d9e28cd868033c98cb5871377c1fdaa9c4985195ea59023aaff1ebdbf + md5: 2d1f963b23792b269635b9b32bee1913 + sha256: 5a1b0fb3c9e6ba7f8c5788d0bc90aadc85f88371ba261c07edf951805988f89a optional: false category: main - build: he4db4b2_0 - subdir: osx-arm64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 license: MIT license_family: MIT - size: 467798 - timestamp: 1657719563117 -- name: rhash - version: 1.4.3 + noarch: python + size: 79371 + timestamp: 1630320889981 +- name: yaml-cpp + version: 0.7.0 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.3-he4db4b2_0.tar.bz2 + dependencies: + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.7.0-hb7217d7_2.tar.bz2 hash: - md5: e45421ad669d2e9bf56b7af7be0111e0 - sha256: 404182eee6bc4da134cf1ce32ddf055d1a80bf14702bc9978de04f5eb2ecbf86 + md5: 1ba3d7af8b182ae33d49e4bb567076d3 + sha256: a0672f4d06dc6f4e763d37927b5d0d8c4badaeb76d7bb4840650d79e90f41c3c optional: false category: main - build: he4db4b2_0 + build: hb7217d7_2 subdir: osx-arm64 - build_number: 0 + build_number: 2 license: MIT license_family: MIT - size: 199253 - timestamp: 1655257790374 -- name: libgfortran5 - version: 12.2.0 + size: 136307 + timestamp: 1664346021426 +- name: console_bridge + version: 1.0.2 manager: conda platform: osx-arm64 dependencies: - llvm-openmp: '>=8.0.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_31.conda + libcxx: '>=12.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/console_bridge-1.0.2-h3e96240_1.tar.bz2 hash: - md5: 244a7665228221cc951d5126b8bc1465 - sha256: 375b6ebafffcc1b0e377559b5ba7cb723634a88b77513ad158982d98ff98c32b + md5: e2dde786c16d90869de84d458af36d92 + sha256: f39c48eb54adaffe679fc9b3a2a9b9cd78f97e2e9fd555ec7c5fd8a99957bfc5 optional: false category: main - build: h0eea778_31 + build: h3e96240_1 subdir: osx-arm64 - build_number: 31 - constrains: - - libgfortran 5.0.0 *_31 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 1049187 - timestamp: 1678488257002 -- name: llvm-openmp - version: 16.0.6 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 17727 + timestamp: 1648912770421 +- name: libcurl + version: 7.88.1 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.6-h1c12783_0.conda + dependencies: + libssh2: '>=1.10.0,<2.0a0' + libnghttp2: '>=1.52.0,<2.0a0' + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-7.88.1-h9049daf_1.conda hash: - md5: 52e5730888439f7f55fd4f83905581b4 - sha256: f5cbb852853a7a931716d55e39515876f61fefd0cb4e055f286adc2dc3bc9d2a + md5: 148e2e109774943f699768703502a918 + sha256: ae5994694488b40e7fbdc57babd1c352c72d9f7a355faec4f3502fc953578116 optional: false category: main - build: h1c12783_0 + build: h9049daf_1 subdir: osx-arm64 - build_number: 0 - constrains: - - openmp 16.0.6|16.0.6.* - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 268740 - timestamp: 1686865657336 -- name: xorg-libxau - version: 1.0.11 + build_number: 1 + license: curl + license_family: MIT + size: 322772 + timestamp: 1679082329467 +- name: libnghttp2 + version: 1.52.0 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hb547adb_0.conda + dependencies: + libcxx: '>=14.0.6' + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda hash: - md5: ca73dc4f01ea91e44e3ed76602c5ea61 - sha256: 02c313a1cada46912e5b9bdb355cfb4534bfe22143b4ea4ecc419690e793023b + md5: 1d319e95a0216f801293626a00337712 + sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 optional: false category: main - build: hb547adb_0 + build: hae82a92_0 subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT - size: 13667 - timestamp: 1684638272445 -- name: libllvm14 - version: 14.0.6 + size: 564295 + timestamp: 1677678452375 +- name: libignition-cmake2 + version: 2.16.0 manager: conda platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hd1a9a77_3.conda - hash: - md5: 51d95b4036d6f7695b7dee38ea1792a6 - sha256: 905f9084737336c4232c25698e0ac16f23f3d9f541647c9874e8392cbcf9e9cd - optional: false - category: main - build: hd1a9a77_3 - subdir: osx-arm64 - build_number: 3 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 20569776 - timestamp: 1685676531181 -- name: libopus - version: 1.3.1 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libignition-cmake2-2.16.0-hb7217d7_1.conda hash: - md5: 3d0dbee0ccd2f6d6781d270313627b62 - sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a + md5: e925f21c1c478ee19915e32eaeaa3bee + sha256: 7ddcc3024bec20527fef30635b8d1d6fa105eb92bd2c65af8dcae03625b95ed3 optional: false category: main - build: h27ca646_1 + build: hb7217d7_1 subdir: osx-arm64 build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 252854 - timestamp: 1606823635137 -- name: ffmpeg - version: 5.1.2 + license: Apache-2.0 + license_family: APACHE + size: 269955 + timestamp: 1670579165091 +- name: pyqt + version: 5.15.7 manager: conda platform: osx-arm64 dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - openh264: '>=2.3.1,<2.3.2.0a0' - svt-av1: '>=1.4.1,<1.4.2.0a0' - x265: '>=3.5,<3.6.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - x264: '>=1!164.3095,<1!165' - aom: '>=3.5.0,<3.6.0a0' - gnutls: '>=3.7.8,<3.8.0a0' - libopus: '>=1.3.1,<2.0a0' - lame: '>=3.100,<3.101.0a0' - gmp: '>=6.2.1,<7.0a0' - libvpx: '>=1.11.0,<1.12.0a0' - freetype: '>=2.12.1,<3.0a0' - libiconv: '>=1.17,<2.0a0' - fontconfig: '>=2.14.1,<3.0a0' - bzip2: '>=1.0.8,<2.0a0' + pyqt5-sip: ==12.11.0 py310h0f1eb42_3 + python: '>=3.10,<3.11.0a0 *_cpython' libcxx: '>=14.0.6' - fonts-conda-ecosystem: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-5.1.2-gpl_hf318d42_106.conda + python_abi: 3.10.* *_cp310 + qt-main: '>=5.15.6,<5.16.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyqt-5.15.7-py310h7aaa74b_3.conda hash: - md5: 40f9aa797a2c2628858d8dee2ff2dcb3 - sha256: 8432652ee8c64b5577e3990969fb87839c7153b76835b4f0fb4adb3d185a7da7 + md5: a5d5f2aa80102438a8473edb75f27cc0 + sha256: 7e34b2c7203639230db1e2348cfb7877dada3bbedf38c0a42a67191de711265e optional: false category: main - build: gpl_hf318d42_106 + build: py310h7aaa74b_3 subdir: osx-arm64 - build_number: 106 - license: GPL-2.0-or-later + build_number: 3 + license: GPL-3.0-only license_family: GPL - size: 8441459 - timestamp: 1674567776777 -- name: gmp - version: 6.2.1 + size: 3908378 + timestamp: 1674670813619 +- name: pyqt5-sip + version: 12.11.0 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=11.0.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2 + sip: '*' + python: '>=3.10,<3.11.0a0 *_cpython' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + toml: '*' + packaging: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyqt5-sip-12.11.0-py310h0f1eb42_3.conda hash: - md5: f8140773b6ca51bf32feec9b4290a8c5 - sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 + md5: c4c93c4630c1370e0921fa3f02cbcc87 + sha256: 2d524e7d8ecd4ca7584622bc6def9e0a8443e55d2798098d8451d2b838447ab8 optional: false category: main - build: h9f76cd9_0 + build: py310h0f1eb42_3 subdir: osx-arm64 - build_number: 0 - license: GPL-2.0-or-later AND LGPL-3.0-or-later - size: 570567 - timestamp: 1605751606013 -- name: gnutls - version: 3.7.8 + build_number: 3 + license: GPL-3.0-only + license_family: GPL + size: 70326 + timestamp: 1674666905278 +- name: pep517 + version: 0.13.0 manager: conda platform: osx-arm64 dependencies: - p11-kit: '>=0.24.1,<0.25.0a0' - gettext: '>=0.19.8.1,<1.0a0' - libidn2: '>=2,<3.0a0' - libcxx: '>=14.0.4' - nettle: '>=3.8.1,<3.9.0a0' - libtasn1: '>=4.19.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gnutls-3.7.8-h9f1a10d_0.tar.bz2 + python: '>=3.8' + tomli: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: 2367cca5a0451a70d01cff2dd2ce7d3e - sha256: 7b9b69cb2b3134e064b37948a4cd54dee2184a851c0cda5fe52efcfd90ae032d + md5: d94aa03d99d8adc9898f783eba0d84d2 + sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 optional: false category: main - build: h9f1a10d_0 - subdir: osx-arm64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 2156057 - timestamp: 1664444818581 -- name: aom - version: 3.5.0 + license: MIT + license_family: MIT + noarch: python + size: 19044 + timestamp: 1667916747996 +- name: pyqt-builder + version: 1.15.1 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=14.0.4' - url: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.5.0-h7ea286d_0.tar.bz2 + sip: '*' + python: '>=3.6' + toml: '*' + packaging: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.1-pyhd8ed1ab_0.conda hash: - md5: afb32d2a714ef2c3268508fdc85fc7c4 - sha256: 3a238c39da0bb29da396ae9f88655a1a6b05926055539ecc29cef9533671d71c + md5: d124f91fd155fee0bd3d56e656917622 + sha256: 15b5fcae4530c1a7ba8dd32d3b249486f60f51b2342e21aa010852923f677405 optional: false category: main - build: h7ea286d_0 - subdir: osx-arm64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: BSD-2-Clause - license_family: BSD - size: 2485267 - timestamp: 1663808577638 -- name: svt-av1 - version: 1.4.1 + license: GPL-3.0-only + license_family: GPL + noarch: python + size: 2962795 + timestamp: 1685604062805 +- name: libopencv + version: 4.6.0 manager: conda platform: osx-arm64 dependencies: + python: '>=3.10,<3.11.0a0 *_cpython' + libpng: '>=1.6.39,<1.7.0a0' + jpeg: '>=9e,<10a' + libprotobuf: '>=3.21.12,<3.22.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libcblas: '>=3.9.0,<4.0a0' + jasper: '>=2.0.33,<3.0a0' + harfbuzz: '>=6.0.0,<7.0a0' + liblapacke: '>=3.9.0,<4.0a0' + libglib: '>=2.74.1,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + hdf5: '>=1.12.2,<1.12.3.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + liblapack: '>=3.9.0,<4.0a0' libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-1.4.1-h7ea286d_0.conda - hash: - md5: c249fb2d81c39843166f20b6a69a99c3 - sha256: b868a00e01cf9a5f5f411fc3e82500a22a910e3c916d06d9c443b2cc96aa93c4 - optional: false - category: main - build: h7ea286d_0 - subdir: osx-arm64 - build_number: 0 - license: BSD-2-Clause - license_family: BSD - size: 1187163 - timestamp: 1670989108960 -- name: nettle - version: 3.8.1 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/nettle-3.8.1-h63371fa_1.tar.bz2 + ffmpeg: '>=5.1.2,<6.0a0' + libtiff: '>=4.4.0,<4.5.0a0' + numpy: '>=1.21.6,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopencv-4.6.0-py310h57eab40_8.conda hash: - md5: 0da3266889a3febbb9840a7a89d29da9 - sha256: 712b4e836060ab26772c343a05d243e7486bb44a39bb5b35f3371e72d7b38a24 + md5: ed26a010d317c846f6aeb794a63f6797 + sha256: 067b6513de97d41f205af2465fe6e495ca0b074db519ee6df4eb4a87fbe34d53 optional: false category: main - build: h63371fa_1 + build: py310h57eab40_8 subdir: osx-arm64 - build_number: 1 - license: GPL 2 and LGPL3 - license_family: GPL - size: 537453 - timestamp: 1659085354893 -- name: libtasn1 - version: 4.19.0 + build_number: 8 + license: Apache-2.0 + license_family: Apache + size: 15377616 + timestamp: 1671410027790 +- name: liblapacke + version: 3.9.0 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libtasn1-4.19.0-h1a8c8d9_0.tar.bz2 + dependencies: + libcblas: ==3.9.0 17_osxarm64_openblas + libblas: ==3.9.0 17_osxarm64_openblas + liblapack: ==3.9.0 17_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapacke-3.9.0-17_osxarm64_openblas.conda hash: - md5: c35bc17c31579789c76739486fc6d27a - sha256: 912e96644ea22b49921c71c9c94bcdd2b6463e9313da895c2fcee298a8c0e44c + md5: c134445c3c15c057b58dc74cd295f156 + sha256: 3a0283b21be08080632f097b9f9d6faea2bc097d5ce2ce19dd5769b194076f81 optional: false category: main - build: h1a8c8d9_0 + build: 17_osxarm64_openblas subdir: osx-arm64 - build_number: 0 - license: GPL-3.0-or-later - license_family: GPL - size: 116745 - timestamp: 1661325945767 -- name: p11-kit - version: 0.24.1 + build_number: 17 + constrains: + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14633 + timestamp: 1685931077409 +- name: harfbuzz + version: 6.0.0 manager: conda platform: osx-arm64 dependencies: - libffi: '>=3.4.2,<3.5.0a0' - libtasn1: '>=4.18.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/p11-kit-0.24.1-h29577a5_0.tar.bz2 + icu: '>=70.1,<71.0a0' + libcxx: '>=14.0.6' + graphite2: '*' + cairo: '>=1.16.0,<2.0a0' + freetype: '>=2.12.1,<3.0a0' + libglib: '>=2.74.1,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-6.0.0-hddbc195_0.conda hash: - md5: 8f111d56c8c7c1895bde91a942c43d93 - sha256: 3e124859307956f9f390f39c74b9700be4843eaaf56891c4b09da75b1bd5b57f + md5: bc6503f2956775e3d6e481d7588b7998 + sha256: 1758f3bd55a43fbf08e543f794b005ffe92e2dfc6c6a01d33b49a6697b4d597c optional: false category: main - build: h29577a5_0 + build: hddbc195_0 subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT - size: 890711 - timestamp: 1654869118646 -- name: pcl - version: 1.12.1 + size: 1110864 + timestamp: 1671366696289 +- name: libprotobuf + version: 3.21.12 manager: conda platform: osx-arm64 dependencies: - flann: '>=1.9.1,<1.9.2.0a0' - glew: '>=2.1.0,<2.2.0a0' - libpng: '>=1.6.39,<1.7.0a0' - vtk: '>=9.2.2,<9.2.3.0a0' - qt-main: '>=5.15.6,<5.16.0a0' + libzlib: '>=1.2.13,<1.3.0a0' libcxx: '>=14.0.6' - boost-cpp: '>=1.78.0,<1.78.1.0a0' - qhull: '>=2020.2,<2020.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pcl-1.12.1-h4d3e839_4.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.21.12-hb5ab8b9_0.conda hash: - md5: 9bc612bc3084f4859ba9e6c87fcd3e1f - sha256: 208aae8e45c6a9a01000493538d1de6746bb8cbd16b7c7cbd813b98c75f63635 + md5: 7adb342474af442e3842c422f07fbf68 + sha256: 1ba3f141e7554b0d0998808b2ba270760e3d4b882839bb24a566ce046d58bbc8 optional: false category: main - build: h4d3e839_4 + build: hb5ab8b9_0 subdir: osx-arm64 - build_number: 4 + build_number: 0 license: BSD-3-Clause license_family: BSD - size: 13573685 - timestamp: 1670110413871 -- name: hdf5 - version: 1.12.2 + size: 1795574 + timestamp: 1670987082982 +- name: graphite2 + version: 1.3.13 manager: conda platform: osx-arm64 dependencies: - libgfortran: 5.* - libcxx: '>=13.0.1' - libaec: '>=1.0.6,<2.0a0' - libcurl: '>=7.87.0,<9.0a0' - libgfortran5: '>=11.3.0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.7,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_ha7af310_101.conda + libcxx: '>=11.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2 hash: - md5: 050df57fed623d4b6aa817e9c8bdbfaa - sha256: bc01f800a87da06adbe465a7b33f569a67c4b8911460c8b9089660cede4cabe6 + md5: 288b591645cb9cb9c0af7309ac1114f5 + sha256: 57db1e563cdfe469cd453a2988039118e96ce4b77c9219e2f1022be0e1c2b03f optional: false category: main - build: nompi_ha7af310_101 + build: h9f76cd9_1001 subdir: osx-arm64 - build_number: 101 - license: LicenseRef-HDF5 - license_family: BSD - size: 2888228 - timestamp: 1671624822360 -- name: flann - version: 1.9.1 + build_number: 1001 + license: LGPLv2 + size: 83198 + timestamp: 1604365687923 +- name: py-opencv + version: 4.6.0 manager: conda platform: osx-arm64 dependencies: - hdf5: '>=1.12.2,<1.12.3.0a0' - libcxx: '>=13.0.1' - llvm-openmp: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/flann-1.9.1-hd3e9afc_1011.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libopencv: ==4.6.0 py310h57eab40_8 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-opencv-4.6.0-py310h69fb684_8.conda hash: - md5: 6ea890d097abd0120487480afec0a0e4 - sha256: 30dbad35321cf3eddf13c09b78b46b8ca906b23e6fc49118d2cfb782348e66da + md5: ed1e7301a20e73cdbc8a6d61ea19c1db + sha256: ac7ae93e6265ebc4ffc096c92fed9fd71beef76f9eb7bdfa460f32f7cea48ab8 optional: false category: main - build: hd3e9afc_1011 - subdir: osx-arm64 - build_number: 1011 - license: BSD-3-Clause - license_family: BSD - size: 2433895 - timestamp: 1660524385960 + build: py310h69fb684_8 + subdir: osx-arm64 + build_number: 8 + license: Apache-2.0 + license_family: Apache + size: 1150245 + timestamp: 1671410080364 - name: jasper version: 2.0.33 manager: conda @@ -25796,68 +25199,64 @@ package: license: JasPer 2.0 size: 638671 timestamp: 1674879092324 -- name: libtiff - version: 4.4.0 +- name: libwebp-base + version: 1.2.4 manager: conda platform: osx-arm64 - dependencies: - libdeflate: '>=1.14,<1.15.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - jpeg: '>=9e,<10a' - libwebp-base: '>=1.2.4,<2.0a0' - xz: '>=5.2.6,<6.0a0' - libcxx: '>=14.0.6' - lerc: '>=4.0.0,<5.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.4.0-heb92581_5.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda hash: - md5: fb564626ea319252c2b3a5edc2f7640f - sha256: 585ec0cea99f86320c2d6cf1c3d13538e617bd48200902d64154363a92d89162 + md5: 480b5b992632e7d17778abf01bad473b + sha256: aba1657df54c0847b80a42acf33bf19dc8e601408f99f8d2934cb5680b600a1e optional: false category: main - build: heb92581_5 + build: h1a8c8d9_0 subdir: osx-arm64 - build_number: 5 - license: HPND - size: 431146 - timestamp: 1671300873940 -- name: lerc - version: 4.0.0 + build_number: 0 + constrains: + - libwebp 1.2.4 + license: BSD-3-Clause + license_family: BSD + size: 263418 + timestamp: 1678664706077 +- name: bzip2 + version: 1.0.8 manager: conda platform: osx-arm64 - dependencies: - libcxx: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 hash: - md5: de462d5aacda3b30721b512c5da4e742 - sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + md5: fc76ace7b94fb1f694988ab1b14dd248 + sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 optional: false category: main - build: h9a09cb3_0 + build: h3422bc3_4 subdir: osx-arm64 - build_number: 0 - license: Apache-2.0 - license_family: Apache - size: 215721 - timestamp: 1657977558796 -- name: libdeflate - version: '1.14' + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 151850 + timestamp: 1618862645215 +- name: pkg-config + version: 0.29.2 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.14-h1a8c8d9_0.tar.bz2 + dependencies: + libglib: '>=2.70.2,<3.0a0' + libiconv: '>=1.16,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hab62308_1008.tar.bz2 hash: - md5: cb64374f9f7ad86b6194e294c56e06a5 - sha256: 2adff34121246f809250417a65036cacd3b7929929df51feda9ff90d5156750b + md5: 8d173d52214679033079d1b0582075aa + sha256: e59e69111709d097f9938e72ba19811ec1ef36aababdbed77bd7c767f15639e0 optional: false category: main - build: h1a8c8d9_0 + build: hab62308_1008 subdir: osx-arm64 - build_number: 0 - license: MIT - license_family: MIT - size: 61426 - timestamp: 1662888596416 + build_number: 1008 + license: GPL-2.0-or-later + license_family: GPL + size: 46049 + timestamp: 1650239029040 - name: boost version: 1.78.0 manager: conda @@ -26107,37 +25506,6 @@ package: license_family: Other size: 4485905 timestamp: 1672450649939 -- name: libgd - version: 2.3.3 - manager: conda - platform: osx-arm64 - dependencies: - icu: '>=70.1,<71.0a0' - libpng: '>=1.6.37,<1.7.0a0' - libiconv: '>=1.16,<2.0.0a0' - freetype: '>=2.10.4,<3.0a0' - jpeg: '>=9e,<10a' - expat: '>=2.4.8,<3.0a0' - fontconfig: '>=2.13.96,<3.0a0' - libtiff: '>=4.3.0,<4.5.0a0' - libwebp: '*' - fonts-conda-ecosystem: '*' - libwebp-base: '>=1.2.2,<2.0a0' - libzlib: '>=1.2.11,<1.3.0a0' - zlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-hede1055_3.tar.bz2 - hash: - md5: 8bbd974c213208687dc289d50feb5c65 - sha256: 5f74d667704a7c93b1b792c0c702211df779ce5ba52f8310955a05da353820a8 - optional: false - category: main - build: hede1055_3 - subdir: osx-arm64 - build_number: 3 - license: GD - license_family: BSD - size: 249458 - timestamp: 1648739653064 - name: librsvg version: 2.54.4 manager: conda @@ -26161,6 +25529,111 @@ package: license: LGPL-2.1-or-later size: 7363857 timestamp: 1656555074086 +- name: eigen + version: 3.4.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=11.1.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-hc021e02_0.tar.bz2 + hash: + md5: 1ab85356c868376768df642be47c808a + sha256: ddb1e2afe34a8463087f41edff2a1b0f12dd3f586164cccf740276fd3f324e0f + optional: false + category: main + build: hc021e02_0 + subdir: osx-arm64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 1262336 + timestamp: 1630134565448 +- name: bullet + version: '3.24' + manager: conda + platform: osx-arm64 + dependencies: + bullet-cpp: ==3.24 py310h2b830bf_0 + numpy: '*' + python: '*' + pybullet: ==3.24 py310h2b830bf_0 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bullet-3.24-h69fb684_0.conda + hash: + md5: eb9985e5ef91868e6ab7c47bfc42fb87 + sha256: 95daefbf961126166e930648f11f949edfccc6cb6fb47c6ad86b8c3cc3958256 + optional: false + category: main + build: h69fb684_0 + subdir: osx-arm64 + build_number: 0 + license: Zlib + size: 9983 + timestamp: 1683008986265 +- name: bullet-cpp + version: '3.24' + manager: conda + platform: osx-arm64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + xorg-libx11: '>=1.8.4,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/bullet-cpp-3.24-py310h2b830bf_0.conda + hash: + md5: cd12db543cc182d8acc54fafd2f60731 + sha256: 5db5d0c194e86a411b8af98251c166aad488149110a4189f995ad07d9201e470 + optional: false + category: main + build: py310h2b830bf_0 + subdir: osx-arm64 + build_number: 0 + license: Zlib + size: 39494866 + timestamp: 1683008223616 +- name: pybullet + version: '3.24' + manager: conda + platform: osx-arm64 + dependencies: + bullet-cpp: ==3.24 py310h2b830bf_0 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pybullet-3.24-py310h2b830bf_0.conda + hash: + md5: 674d59b25e6b49cb0595321142b6dbf1 + sha256: a8293b151298fb29843ea0a9b42ff771c128717ff512cb141875ccc8f9d73e24 + optional: false + category: main + build: py310h2b830bf_0 + subdir: osx-arm64 + build_number: 0 + license: Zlib + size: 62156192 + timestamp: 1683008897003 +- name: orocos-kdl + version: 1.5.1 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + eigen: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/orocos-kdl-1.5.1-hb7217d7_4.conda + hash: + md5: c9b0595fcb34cde05d43cd06b44fd1cf + sha256: 4f5bfa696cf8e290789b839db4c2ade34b3b527c011cd56ba116905aa5f46e6a + optional: false + category: main + build: hb7217d7_4 + subdir: osx-arm64 + build_number: 4 + license: LGPL-2.1-or-later + license_family: LGPL + size: 295812 + timestamp: 1669072827123 - name: freeimage version: 3.18.0 manager: conda @@ -26295,37 +25768,37 @@ package: size: 1007999 timestamp: 1682366121342 - name: matplotlib-base - version: 3.7.1 + version: 3.7.2 manager: conda platform: osx-arm64 dependencies: cycler: '>=0.10' - certifi: '>=2020.06.20' + certifi: '>=2020.6.20' contourpy: '>=1.0.1' fonttools: '>=4.22.0' kiwisolver: '>=1.0.1' freetype: '>=2.12.1,<3.0a0' - pyparsing: '>=2.3.1' + pyparsing: '>=2.3.1,<3.1' python: '>=3.10,<3.11.0a0 *_cpython' python_abi: 3.10.* *_cp310 numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' + libcxx: '>=15.0.7' pillow: '>=6.2.0' python-dateutil: '>=2.7' packaging: '>=20.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.1-py310h78c5c2f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.7.2-py310h49faba3_0.conda hash: - md5: a1a982fea610d516ef985522117ba6dd - sha256: 59bf6aecd6c59a60a2ba815c47498230f075199b2d634c7956291d38212fb029 + md5: ac04833bdbd0a0300b155ff4b1f9a25b + sha256: 2d5199e02200781bf337c6070ebce17dfe0be9c95798c6a72f5e1b8debe6b8e6 optional: false category: main - build: py310h78c5c2f_0 + build: py310h49faba3_0 subdir: osx-arm64 build_number: 0 license: LicenseRef-PSF-2.0 and CC0-1.0 license_family: PSF - size: 6721204 - timestamp: 1678136285884 + size: 6597902 + timestamp: 1688685475809 - name: pillow version: 9.2.0 manager: conda @@ -26392,26 +25865,72 @@ package: license: Zlib size: 1219085 timestamp: 1680736651870 -- name: distro - version: 1.8.0 +- name: pcl + version: 1.12.1 manager: conda platform: osx-arm64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/distro-1.8.0-pyhd8ed1ab_0.conda + flann: '>=1.9.1,<1.9.2.0a0' + glew: '>=2.1.0,<2.2.0a0' + libpng: '>=1.6.39,<1.7.0a0' + vtk: '>=9.2.2,<9.2.3.0a0' + qt-main: '>=5.15.6,<5.16.0a0' + libcxx: '>=14.0.6' + boost-cpp: '>=1.78.0,<1.78.1.0a0' + qhull: '>=2020.2,<2020.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcl-1.12.1-h4d3e839_4.conda hash: - md5: 67999c5465064480fa8016d00ac768f6 - sha256: 0d01c4da6d4f0a935599210f82ac0630fa9aeb4fc37cbbc78043a932a39ec4f3 + md5: 9bc612bc3084f4859ba9e6c87fcd3e1f + sha256: 208aae8e45c6a9a01000493538d1de6746bb8cbd16b7c7cbd813b98c75f63635 + optional: false + category: main + build: h4d3e839_4 + subdir: osx-arm64 + build_number: 4 + license: BSD-3-Clause + license_family: BSD + size: 13573685 + timestamp: 1670110413871 +- name: tomli + version: 2.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: Apache-2.0 - license_family: APACHE + license: MIT + license_family: MIT noarch: python - size: 40854 - timestamp: 1675116355989 + size: 15940 + timestamp: 1644342331069 +- name: pyflakes + version: 3.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: 2.7.*|>=3.5 + url: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.0.1-pyhd8ed1ab_0.conda + hash: + md5: 44b7d77d96560c93e0e11437a3c35254 + sha256: 1a6fd59626b360ef498d8cd61b4a8a3ef771a385f97c6f574fccaa100a8bb99e + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 57427 + timestamp: 1669320032089 - name: font-ttf-inconsolata version: '3.000' manager: conda @@ -26450,26 +25969,90 @@ package: noarch: generic size: 700814 timestamp: 1620479612257 -- name: six - version: 1.16.0 +- name: sip + version: 6.7.9 + manager: conda + platform: osx-arm64 + dependencies: + ply: '*' + libcxx: '>=15.0.7' + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + packaging: '*' + tomli: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/sip-6.7.9-py310h1253130_0.conda + hash: + md5: 69fe6b221214c1736f0183bd672f3e85 + sha256: 7c476619d666114158f9d6f5b3ab1c41cf30c2cecb467bf553370ce146265b8f + optional: false + category: main + build: py310h1253130_0 + subdir: osx-arm64 + build_number: 0 + license: GPL-3.0-only + license_family: GPL + size: 481697 + timestamp: 1681995517238 +- name: ply + version: '3.11' manager: conda platform: osx-arm64 dependencies: python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + md5: 7205635cd71531943440fbfe3b6b5727 + sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 optional: false category: main - build: pyh6c4a22f_0 + build: py_1 + subdir: noarch + build_number: 1 + license: BSD 3-clause + license_family: BSD + noarch: python + size: 44837 + timestamp: 1530963184592 +- name: toml + version: 0.10.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + build: pyhd8ed1ab_0 subdir: noarch build_number: 0 license: MIT license_family: MIT noarch: python - size: 14259 - timestamp: 1620240338595 + size: 18433 + timestamp: 1604308660817 +- name: zipp + version: 3.16.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.0-pyhd8ed1ab_0.conda + hash: + md5: 8be65b18d05ecd2801964e69c42f4fca + sha256: de563512a84818e5b367414e68985196dfb40964c12147fc731a6645f2e029e5 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 17482 + timestamp: 1688903060076 - name: pluggy version: 1.2.0 manager: conda @@ -26531,15 +26114,119 @@ package: size: 11101 timestamp: 1673103208955 - name: exceptiongroup - version: 1.1.1 + version: 1.1.2 manager: conda platform: osx-arm64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.2-pyhd8ed1ab_0.conda + hash: + md5: de4cb3384374e1411f0454edcf546cdb + sha256: 7b23ea0169fa6e7c3a0867d96d9eacd312759f83e5d83ad0fcc93e85379c16ae + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 19043 + timestamp: 1688381208754 +- name: docutils + version: 0.20.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-arm64/docutils-0.20.1-py310hbe9552e_0.conda + hash: + md5: 9d7f94f2db61c2c4c584641ddaaf2a92 + sha256: b60c4013e0ee6f9bbff0c6f8dc9d8210c216d1e135cf0527bbfadcb5a2115f6a + optional: false + category: main + build: py310hbe9552e_0 + subdir: osx-arm64 + build_number: 0 + license: LicenseRef-Public-Domain-Dedictation and BSD-2-Clause and LicenseRef-PSF-2.1.1 and GPL-3.0-or-later + size: 724048 + timestamp: 1684324952093 +- name: pyparsing + version: 3.0.9 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2 + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 81321 + timestamp: 1652235496915 +- name: python-dateutil + version: 2.8.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + six: '>=1.5' + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 245987 + timestamp: 1626286448716 +- name: pygments + version: 2.11.2 + manager: conda + platform: osx-arm64 + dependencies: + setuptools: '*' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.11.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: caef60540e2239e27bf62569a5015e3b + sha256: 9624f2edb2ff64f7cdaf6034202092644978290e0f551352a46925d78b8179cf + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 815457 + timestamp: 1641580324044 +- name: rospkg + version: 1.5.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + pyyaml: '*' + catkin_pkg: '*' + distro: '*' + url: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.5.0-pyhd8ed1ab_0.conda hash: - md5: 7312299d7a0ea4993159229b7d2dceb2 - sha256: f073c3ba993912f1c0027bc34a54975642885f0a4cd5f9dc42a17ca945df2c18 + md5: 15f4f2f2538f7746a9c4c9f3ba783f49 + sha256: 1ad1b4ce441a35dc86c13d8683ed2f052e4df8d8c3f5ced86d5e4735d596f940 optional: false category: main build: pyhd8ed1ab_0 @@ -26548,8 +26235,52 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 18929 - timestamp: 1678703786698 + size: 31031 + timestamp: 1679367764497 +- name: cairo + version: 1.16.0 + manager: conda + platform: osx-arm64 + dependencies: + icu: '>=70.1,<71.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libglib: '>=2.72.1,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + zlib: '>=1.2.12,<1.3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '*' + pixman: '>=0.40.0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h73a0509_1014.tar.bz2 + hash: + md5: be2ea75899a7b1f1dd59a862fac655ee + sha256: 508c63c893360cee44e82cf550548ae8bbcc96bd26b7f30f9197787a653dd6a1 + optional: false + category: main + build: h73a0509_1014 + subdir: osx-arm64 + build_number: 1014 + license: LGPL-2.1-only or MPL-1.1 + size: 1401434 + timestamp: 1663568643512 +- name: pixman + version: 0.40.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2 + hash: + md5: 0cedfe37c9aee28f5e926a870965466a + sha256: a3bde72b3f9344ede1a189612d997f775b503a8eec61fb9720d18551f3c71080 + optional: false + category: main + build: h27ca646_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 291804 + timestamp: 1604342450513 - name: gdk-pixbuf version: 2.42.8 manager: conda @@ -26599,27 +26330,6 @@ package: license: LGPL-2.1-or-later size: 409559 timestamp: 1677859540720 -- name: fontconfig - version: 2.14.2 - manager: conda - platform: osx-arm64 - dependencies: - freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - expat: '>=2.5.0,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda - hash: - md5: f77d47ddb6d3cc5b39b9bdf65635afbb - sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b - optional: false - category: main - build: h82840c6_0 - subdir: osx-arm64 - build_number: 0 - license: MIT - license_family: MIT - size: 237668 - timestamp: 1674829263740 - name: fribidi version: 1.0.10 manager: conda @@ -26637,29 +26347,42 @@ package: license: LGPL-2.1 size: 60255 timestamp: 1604417405528 -- name: libwebp - version: 1.2.4 +- name: c-ares + version: 1.19.1 manager: conda platform: osx-arm64 - dependencies: - libtiff: '>=4.4.0,<4.5.0a0' - libpng: '>=1.6.37,<1.7.0a0' - giflib: '>=5.2.1,<5.3.0a0' - jpeg: '>=9e,<10a' - libwebp-base: '>=1.2.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-1.2.4-h328b37c_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda hash: - md5: 194c8df68e6966f8e012cd326e42c31d - sha256: cb50b3337ed39a33861ab7aff50883239d5c373c7caf5dff6684ebba6477d0e6 + md5: e7fc7430440d255e3a9c7e5a52f7b294 + sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 optional: false category: main - build: h328b37c_0 + build: hb547adb_0 subdir: osx-arm64 build_number: 0 - license: BSD-3-Clause + license: MIT + license_family: MIT + size: 101998 + timestamp: 1684783026131 +- name: libev + version: '4.33' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 + hash: + md5: 566dbf70fe79eacdb3c3d3d195a27f55 + sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c + optional: false + category: main + build: h642e427_1 + subdir: osx-arm64 + build_number: 1 + license: BSD-2-Clause license_family: BSD - size: 86136 - timestamp: 1660329717009 + size: 100668 + timestamp: 1598868103393 - name: xorg-libxt version: 1.3.0 manager: conda @@ -26720,24 +26443,6 @@ package: license_family: MIT size: 23118 timestamp: 1614875290960 -- name: giflib - version: 5.2.1 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda - hash: - md5: f39a05d3dbb0e5024b7deabb2c0993f1 - sha256: dbf1e431d3e5e03f8eeb77ec08a4c5d6d5d9af84dbef13d4365e397dd389beb8 - optional: false - category: main - build: h1a8c8d9_3 - subdir: osx-arm64 - build_number: 3 - license: MIT - license_family: MIT - size: 71963 - timestamp: 1678718059849 - name: cffi version: 1.15.1 manager: conda @@ -26821,42 +26526,26 @@ package: license_family: GPL size: 408403 timestamp: 1672362003513 -- name: libidn2 - version: 2.3.4 +- name: libssh2 + version: 1.11.0 manager: conda platform: osx-arm64 dependencies: - gettext: '>=0.21.1,<1.0a0' - libunistring: '>=0,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libidn2-2.3.4-h1a8c8d9_0.tar.bz2 - hash: - md5: 7fdc11b6fd3ea4ce92886df855fc7085 - sha256: 3f2990c33c57559fbf03c5e5b3f3c8e95886548ab4c7fc10314e4514d6632703 - optional: false - category: main - build: h1a8c8d9_0 - subdir: osx-arm64 - build_number: 0 - license: LGPLv2 - size: 173494 - timestamp: 1666574243937 -- name: libunistring - version: 0.9.10 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libunistring-0.9.10-h3422bc3_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda hash: - md5: d88e77a4861e20bd96bde6628ee7a5ae - sha256: a1afe12ab199f82f339eae83405d293d197f2485d45346a709703bc7e8299949 + md5: 029f7dc931a3b626b94823bc77830b01 + sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 optional: false category: main - build: h3422bc3_0 + build: h7a5bd25_0 subdir: osx-arm64 build_number: 0 - license: GPL-3.0-only OR LGPL-3.0-only - size: 1577561 - timestamp: 1626955172521 + license: BSD-3-Clause + license_family: BSD + size: 255610 + timestamp: 1685837894256 - name: xorg-libxpm version: 3.5.16 manager: conda @@ -27110,118 +26799,123 @@ package: noarch: python size: 10307 timestamp: 1635519555262 -- name: libaec - version: 1.0.6 +- name: libuv + version: 1.44.2 manager: conda platform: osx-arm64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.44.2-he4db4b2_0.tar.bz2 hash: - md5: 4f04770bf6f12d22fb6c1d91a04e0c8c - sha256: 9a2209a30923728fd9c430695a2fea9274ac6d357e6bdfa4c7b5aa52122d9e2c + md5: 9ec5d69871f50066aca03d0611507396 + sha256: 287e905d9e28cd868033c98cb5871377c1fdaa9c4985195ea59023aaff1ebdbf optional: false category: main - build: hb7217d7_1 + build: he4db4b2_0 subdir: osx-arm64 - build_number: 1 - license: BSD-2-Clause - license_family: BSD - size: 28016 - timestamp: 1673801257939 -- name: lame - version: '3.100' + build_number: 0 + license: MIT + license_family: MIT + size: 467798 + timestamp: 1657719563117 +- name: rhash + version: 1.4.3 manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.3-he4db4b2_0.tar.bz2 hash: - md5: bff0e851d66725f78dc2fd8b032ddb7e - sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c + md5: e45421ad669d2e9bf56b7af7be0111e0 + sha256: 404182eee6bc4da134cf1ce32ddf055d1a80bf14702bc9978de04f5eb2ecbf86 optional: false category: main - build: h1a8c8d9_1003 + build: he4db4b2_0 subdir: osx-arm64 - build_number: 1003 - license: LGPL-2.0-only - license_family: LGPL - size: 528805 - timestamp: 1664996399305 -- name: openh264 - version: 2.3.1 + build_number: 0 + license: MIT + license_family: MIT + size: 199253 + timestamp: 1655257790374 +- name: libgfortran + version: 5.0.0 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/openh264-2.3.1-hb7217d7_2.conda + libgfortran5: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_31.conda hash: - md5: 6ce0517e73640933cf5916deb21d4f23 - sha256: 36c6dc71bb10245ed93f3cb13280948cc8c6ca525f1639aac9d541726e4c80af + md5: dfc3dff1ce831c8e821f19d5d218825a + sha256: 1abde945c2c7377aec9f2f648d9cc1fcb5f818a1e0caf53f8188b1182cbc1332 optional: false category: main - build: hb7217d7_2 + build: 12_2_0_hd922786_31 subdir: osx-arm64 - build_number: 2 - license: BSD-2-Clause - license_family: BSD - size: 587729 - timestamp: 1675880932590 -- name: x264 - version: 1!164.3095 + build_number: 31 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 160260 + timestamp: 1678488316051 +- name: libgfortran5 + version: 12.2.0 manager: conda platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 + dependencies: + llvm-openmp: '>=8.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_31.conda hash: - md5: b1f6dccde5d3a1f911960b6e567113ff - sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a + md5: 244a7665228221cc951d5126b8bc1465 + sha256: 375b6ebafffcc1b0e377559b5ba7cb723634a88b77513ad158982d98ff98c32b optional: false category: main - build: h57fd34a_2 + build: h0eea778_31 subdir: osx-arm64 - build_number: 2 - license: GPL-2.0-or-later + build_number: 31 + constrains: + - libgfortran 5.0.0 *_31 + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 717038 - timestamp: 1660323292329 -- name: libvpx - version: 1.11.0 + size: 1049187 + timestamp: 1678488257002 +- name: llvm-openmp + version: 16.0.6 manager: conda platform: osx-arm64 - dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libvpx-1.11.0-hc470f4d_3.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.6-h1c12783_0.conda hash: - md5: 459be650ba4f9660cc959c090125cb32 - sha256: 888d0985a7355bb52e71c415be35d0c170a52f35e4c319732bbebb5369787d68 + md5: 52e5730888439f7f55fd4f83905581b4 + sha256: f5cbb852853a7a931716d55e39515876f61fefd0cb4e055f286adc2dc3bc9d2a optional: false category: main - build: hc470f4d_3 + build: h1c12783_0 subdir: osx-arm64 - build_number: 3 - license: BSD-3-Clause - license_family: BSD - size: 1276730 - timestamp: 1635005254807 -- name: x265 - version: '3.5' + build_number: 0 + constrains: + - openmp 16.0.6|16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 268740 + timestamp: 1686865657336 +- name: flann + version: 1.9.1 manager: conda platform: osx-arm64 dependencies: - libcxx: '>=12.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 + hdf5: '>=1.12.2,<1.12.3.0a0' + libcxx: '>=13.0.1' + llvm-openmp: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/flann-1.9.1-hd3e9afc_1011.tar.bz2 hash: - md5: b1f7f2780feffe310b068c021e8ff9b2 - sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d + md5: 6ea890d097abd0120487480afec0a0e4 + sha256: 30dbad35321cf3eddf13c09b78b46b8ca906b23e6fc49118d2cfb782348e66da optional: false category: main - build: hbc6ce65_3 + build: hd3e9afc_1011 subdir: osx-arm64 - build_number: 3 - license: GPL-2.0-or-later - license_family: GPL - size: 1832744 - timestamp: 1646609481185 + build_number: 1011 + license: BSD-3-Clause + license_family: BSD + size: 2433895 + timestamp: 1660524385960 - name: qhull version: '2020.2' manager: conda @@ -27362,6 +27056,243 @@ package: license_family: MIT size: 2887513 timestamp: 1662423897594 +- name: ffmpeg + version: 5.1.2 + manager: conda + platform: osx-arm64 + dependencies: + libxml2: '>=2.10.3,<2.11.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + svt-av1: '>=1.4.1,<1.4.2.0a0' + x265: '>=3.5,<3.6.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + x264: '>=1!164.3095,<1!165' + aom: '>=3.5.0,<3.6.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + libopus: '>=1.3.1,<2.0a0' + lame: '>=3.100,<3.101.0a0' + gmp: '>=6.2.1,<7.0a0' + libvpx: '>=1.11.0,<1.12.0a0' + freetype: '>=2.12.1,<3.0a0' + libiconv: '>=1.17,<2.0a0' + fontconfig: '>=2.14.1,<3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libcxx: '>=14.0.6' + fonts-conda-ecosystem: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-5.1.2-gpl_hf318d42_106.conda + hash: + md5: 40f9aa797a2c2628858d8dee2ff2dcb3 + sha256: 8432652ee8c64b5577e3990969fb87839c7153b76835b4f0fb4adb3d185a7da7 + optional: false + category: main + build: gpl_hf318d42_106 + subdir: osx-arm64 + build_number: 106 + license: GPL-2.0-or-later + license_family: GPL + size: 8441459 + timestamp: 1674567776777 +- name: gmp + version: 6.2.1 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=11.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2 + hash: + md5: f8140773b6ca51bf32feec9b4290a8c5 + sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 + optional: false + category: main + build: h9f76cd9_0 + subdir: osx-arm64 + build_number: 0 + license: GPL-2.0-or-later AND LGPL-3.0-or-later + size: 570567 + timestamp: 1605751606013 +- name: gnutls + version: 3.7.8 + manager: conda + platform: osx-arm64 + dependencies: + p11-kit: '>=0.24.1,<0.25.0a0' + gettext: '>=0.19.8.1,<1.0a0' + libidn2: '>=2,<3.0a0' + libcxx: '>=14.0.4' + nettle: '>=3.8.1,<3.9.0a0' + libtasn1: '>=4.19.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gnutls-3.7.8-h9f1a10d_0.tar.bz2 + hash: + md5: 2367cca5a0451a70d01cff2dd2ce7d3e + sha256: 7b9b69cb2b3134e064b37948a4cd54dee2184a851c0cda5fe52efcfd90ae032d + optional: false + category: main + build: h9f1a10d_0 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 2156057 + timestamp: 1664444818581 +- name: aom + version: 3.5.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.5.0-h7ea286d_0.tar.bz2 + hash: + md5: afb32d2a714ef2c3268508fdc85fc7c4 + sha256: 3a238c39da0bb29da396ae9f88655a1a6b05926055539ecc29cef9533671d71c + optional: false + category: main + build: h7ea286d_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 2485267 + timestamp: 1663808577638 +- name: svt-av1 + version: 1.4.1 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-1.4.1-h7ea286d_0.conda + hash: + md5: c249fb2d81c39843166f20b6a69a99c3 + sha256: b868a00e01cf9a5f5f411fc3e82500a22a910e3c916d06d9c443b2cc96aa93c4 + optional: false + category: main + build: h7ea286d_0 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 1187163 + timestamp: 1670989108960 +- name: nettle + version: 3.8.1 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/nettle-3.8.1-h63371fa_1.tar.bz2 + hash: + md5: 0da3266889a3febbb9840a7a89d29da9 + sha256: 712b4e836060ab26772c343a05d243e7486bb44a39bb5b35f3371e72d7b38a24 + optional: false + category: main + build: h63371fa_1 + subdir: osx-arm64 + build_number: 1 + license: GPL 2 and LGPL3 + license_family: GPL + size: 537453 + timestamp: 1659085354893 +- name: libtasn1 + version: 4.19.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtasn1-4.19.0-h1a8c8d9_0.tar.bz2 + hash: + md5: c35bc17c31579789c76739486fc6d27a + sha256: 912e96644ea22b49921c71c9c94bcdd2b6463e9313da895c2fcee298a8c0e44c + optional: false + category: main + build: h1a8c8d9_0 + subdir: osx-arm64 + build_number: 0 + license: GPL-3.0-or-later + license_family: GPL + size: 116745 + timestamp: 1661325945767 +- name: p11-kit + version: 0.24.1 + manager: conda + platform: osx-arm64 + dependencies: + libffi: '>=3.4.2,<3.5.0a0' + libtasn1: '>=4.18.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/p11-kit-0.24.1-h29577a5_0.tar.bz2 + hash: + md5: 8f111d56c8c7c1895bde91a942c43d93 + sha256: 3e124859307956f9f390f39c74b9700be4843eaaf56891c4b09da75b1bd5b57f + optional: false + category: main + build: h29577a5_0 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 890711 + timestamp: 1654869118646 +- name: hdf5 + version: 1.12.2 + manager: conda + platform: osx-arm64 + dependencies: + libgfortran: 5.* + libcxx: '>=13.0.1' + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=7.87.0,<9.0a0' + libgfortran5: '>=11.3.0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.12.2-nompi_ha7af310_101.conda + hash: + md5: 050df57fed623d4b6aa817e9c8bdbfaa + sha256: bc01f800a87da06adbe465a7b33f569a67c4b8911460c8b9089660cede4cabe6 + optional: false + category: main + build: nompi_ha7af310_101 + subdir: osx-arm64 + build_number: 101 + license: LicenseRef-HDF5 + license_family: BSD + size: 2888228 + timestamp: 1671624822360 +- name: distro + version: 1.8.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/distro-1.8.0-pyhd8ed1ab_0.conda + hash: + md5: 67999c5465064480fa8016d00ac768f6 + sha256: 0d01c4da6d4f0a935599210f82ac0630fa9aeb4fc37cbbc78043a932a39ec4f3 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 40854 + timestamp: 1675116355989 +- name: six + version: 1.16.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main + build: pyh6c4a22f_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 14259 + timestamp: 1620240338595 - name: pycparser version: '2.21' manager: conda @@ -27422,6 +27353,7 @@ package: subdir: osx-arm64 build_number: 9 license: MIT + license_family: MIT size: 20228 timestamp: 1687884815549 - name: brotli-bin @@ -27441,6 +27373,7 @@ package: subdir: osx-arm64 build_number: 9 license: MIT + license_family: MIT size: 18182 timestamp: 1687884787034 - name: libbrotlidec @@ -27459,6 +27392,7 @@ package: subdir: osx-arm64 build_number: 9 license: MIT + license_family: MIT size: 29129 timestamp: 1687884725821 - name: libbrotlienc @@ -27477,6 +27411,7 @@ package: subdir: osx-arm64 build_number: 9 license: MIT + license_family: MIT size: 263314 timestamp: 1687884758242 - name: libbrotlicommon @@ -27494,6 +27429,7 @@ package: subdir: osx-arm64 build_number: 9 license: MIT + license_family: MIT size: 70285 timestamp: 1687884697998 - name: unicodedata2 @@ -27536,6 +27472,42 @@ package: noarch: python size: 12452 timestamp: 1600387789153 +- name: libidn2 + version: 2.3.4 + manager: conda + platform: osx-arm64 + dependencies: + gettext: '>=0.21.1,<1.0a0' + libunistring: '>=0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libidn2-2.3.4-h1a8c8d9_0.tar.bz2 + hash: + md5: 7fdc11b6fd3ea4ce92886df855fc7085 + sha256: 3f2990c33c57559fbf03c5e5b3f3c8e95886548ab4c7fc10314e4514d6632703 + optional: false + category: main + build: h1a8c8d9_0 + subdir: osx-arm64 + build_number: 0 + license: LGPLv2 + size: 173494 + timestamp: 1666574243937 +- name: libunistring + version: 0.9.10 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libunistring-0.9.10-h3422bc3_0.tar.bz2 + hash: + md5: d88e77a4861e20bd96bde6628ee7a5ae + sha256: a1afe12ab199f82f339eae83405d293d197f2485d45346a709703bc7e8299949 + optional: false + category: main + build: h3422bc3_0 + subdir: osx-arm64 + build_number: 0 + license: GPL-3.0-only OR LGPL-3.0-only + size: 1577561 + timestamp: 1626955172521 - name: lz4-c version: 1.9.4 manager: conda @@ -27736,16 +27708,16 @@ package: size: 114844 timestamp: 1661172455255 - name: wslink - version: 1.11.0 + version: 1.11.1 manager: conda platform: osx-arm64 dependencies: python: '>=3.6' aiohttp: <4 - url: https://conda.anaconda.org/conda-forge/noarch/wslink-1.11.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/wslink-1.11.1-pyhd8ed1ab_0.conda hash: - md5: 70f4b52c0e703936aa1812d8b14a5bb2 - sha256: 11dd5e6c5062e788160167e2a64fcbbb2c7ec825e28d628a9e7771172e039de7 + md5: 0d0113b67472cea3da288838ebc80acb + sha256: 656947c8457d5ac06f11dc1da904ac7ac8ac8edf81323ee9794a3d51ace79ff3 optional: false category: main build: pyhd8ed1ab_0 @@ -27754,8 +27726,120 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 31744 - timestamp: 1686354338531 + size: 31753 + timestamp: 1688102076761 +- name: libaec + version: 1.0.6 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda + hash: + md5: 4f04770bf6f12d22fb6c1d91a04e0c8c + sha256: 9a2209a30923728fd9c430695a2fea9274ac6d357e6bdfa4c7b5aa52122d9e2c + optional: false + category: main + build: hb7217d7_1 + subdir: osx-arm64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 28016 + timestamp: 1673801257939 +- name: lame + version: '3.100' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + hash: + md5: bff0e851d66725f78dc2fd8b032ddb7e + sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c + optional: false + category: main + build: h1a8c8d9_1003 + subdir: osx-arm64 + build_number: 1003 + license: LGPL-2.0-only + license_family: LGPL + size: 528805 + timestamp: 1664996399305 +- name: openh264 + version: 2.3.1 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/openh264-2.3.1-hb7217d7_2.conda + hash: + md5: 6ce0517e73640933cf5916deb21d4f23 + sha256: 36c6dc71bb10245ed93f3cb13280948cc8c6ca525f1639aac9d541726e4c80af + optional: false + category: main + build: hb7217d7_2 + subdir: osx-arm64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 587729 + timestamp: 1675880932590 +- name: x264 + version: 1!164.3095 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 + hash: + md5: b1f6dccde5d3a1f911960b6e567113ff + sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a + optional: false + category: main + build: h57fd34a_2 + subdir: osx-arm64 + build_number: 2 + license: GPL-2.0-or-later + license_family: GPL + size: 717038 + timestamp: 1660323292329 +- name: libvpx + version: 1.11.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=11.1.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libvpx-1.11.0-hc470f4d_3.tar.bz2 + hash: + md5: 459be650ba4f9660cc959c090125cb32 + sha256: 888d0985a7355bb52e71c415be35d0c170a52f35e4c319732bbebb5369787d68 + optional: false + category: main + build: hc470f4d_3 + subdir: osx-arm64 + build_number: 3 + license: BSD-3-Clause + license_family: BSD + size: 1276730 + timestamp: 1635005254807 +- name: x265 + version: '3.5' + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=12.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 + hash: + md5: b1f7f2780feffe310b068c021e8ff9b2 + sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d + optional: false + category: main + build: hbc6ce65_3 + subdir: osx-arm64 + build_number: 3 + license: GPL-2.0-or-later + license_family: GPL + size: 1832744 + timestamp: 1646609481185 - name: aiohttp version: 3.8.4 manager: conda @@ -27908,15 +27992,15 @@ package: size: 12730 timestamp: 1667935912504 - name: charset-normalizer - version: 3.1.0 + version: 3.2.0 manager: conda platform: osx-arm64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 optional: false category: main build: pyhd8ed1ab_0 @@ -27925,8 +28009,8 @@ package: license: MIT license_family: MIT noarch: python - size: 44914 - timestamp: 1678108997608 + size: 45686 + timestamp: 1688813585878 - name: hdf4 version: 4.2.15 manager: conda @@ -27939,464 +28023,97 @@ package: url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h1a38d6a_5.tar.bz2 hash: md5: 33632080213c000ced85118a4265256d - sha256: e743b2f3d6f0b2db7a0af7ffbfecbc28137d51dd2219847e5a561a483d50d176 - optional: false - category: main - build: h1a38d6a_5 - subdir: osx-arm64 - build_number: 5 - license: BSD-3-Clause - license_family: BSD - size: 948048 - timestamp: 1667222994436 -- name: libzip - version: 1.9.2 - manager: conda - platform: osx-arm64 - dependencies: - libzlib: '>=1.2.12,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' - openssl: '>=3.0.5,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h76ab92c_1.tar.bz2 - hash: - md5: eee3b4ab0b5b71fbda7900785f3a46fa - sha256: f8532163164fd6c1063f49225acf0c4919eceaa5e464f2de26095e396909cfaf - optional: false - category: main - build: h76ab92c_1 - subdir: osx-arm64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 117229 - timestamp: 1660347349764 -- name: typing-extensions - version: 4.6.3 - manager: conda - platform: osx-arm64 - dependencies: - typing_extensions: ==4.6.3 pyha770c72_0 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.6.3-hd8ed1ab_0.conda - hash: - md5: 3876f650ed7d0f95d70fa4b647621909 - sha256: d2334dab270e13182403cc3a394e3da8e7acb409e94059a6d9223d2ac053f90a - optional: false - category: main - build: hd8ed1ab_0 - subdir: noarch - build_number: 0 - license: PSF-2.0 - license_family: PSF - noarch: python - size: 10040 - timestamp: 1685705090608 -- name: typing_extensions - version: 4.6.3 - manager: conda - platform: osx-arm64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.6.3-pyha770c72_0.conda - hash: - md5: 4a3014a4d107d15475d106b751c4e352 - sha256: 90a8d56c8015af1575d504d5f77d95a806cd999fc178a06ab51a349f1f744672 - optional: false - category: main - build: pyha770c72_0 - subdir: noarch - build_number: 0 - license: PSF-2.0 - license_family: PSF - noarch: python - size: 34905 - timestamp: 1685705083612 -- name: idna - version: '3.4' - manager: conda - platform: osx-arm64 - dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 56742 - timestamp: 1663625484114 -- name: pkg-config - version: 0.29.2 - manager: conda - platform: osx-arm64 - dependencies: - libglib: '>=2.70.2,<3.0a0' - libiconv: '>=1.16,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hab62308_1008.tar.bz2 - hash: - md5: 8d173d52214679033079d1b0582075aa - sha256: e59e69111709d097f9938e72ba19811ec1ef36aababdbed77bd7c767f15639e0 - optional: false - category: main - build: hab62308_1008 - subdir: osx-arm64 - build_number: 1008 - license: GPL-2.0-or-later - license_family: GPL - size: 46049 - timestamp: 1650239029040 -- name: libwebp-base - version: 1.2.4 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda - hash: - md5: 480b5b992632e7d17778abf01bad473b - sha256: aba1657df54c0847b80a42acf33bf19dc8e601408f99f8d2934cb5680b600a1e - optional: false - category: main - build: h1a8c8d9_0 - subdir: osx-arm64 - build_number: 0 - constrains: - - libwebp 1.2.4 - license: BSD-3-Clause - license_family: BSD - size: 263418 - timestamp: 1678664706077 -- name: bzip2 - version: 1.0.8 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 - hash: - md5: fc76ace7b94fb1f694988ab1b14dd248 - sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 - optional: false - category: main - build: h3422bc3_4 - subdir: osx-arm64 - build_number: 4 - license: bzip2-1.0.6 - license_family: BSD - size: 151850 - timestamp: 1618862645215 -- name: libgfortran - version: 5.0.0 - manager: conda - platform: osx-arm64 - dependencies: - libgfortran5: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_31.conda - hash: - md5: dfc3dff1ce831c8e821f19d5d218825a - sha256: 1abde945c2c7377aec9f2f648d9cc1fcb5f818a1e0caf53f8188b1182cbc1332 - optional: false - category: main - build: 12_2_0_hd922786_31 - subdir: osx-arm64 - build_number: 31 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 160260 - timestamp: 1678488316051 -- name: ros-humble-turtlesim - version: 1.4.2 - manager: conda - platform: win-64 - dependencies: - ros-humble-rclcpp-action: '*' - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' - qt-main: '>=5.15.6,<5.16.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - ros-humble-std-srvs: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-turtlesim-1.4.2-py310ha45506e_3.tar.bz2 - hash: - md5: 7a910eb77dddd64a1d0253e23b5d80fe - sha256: ac68d6eacb2b2def5c7782d9e7db38907c17fd57a954556ffe292b1df5ddb765 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 562463 - timestamp: 1675832157919 -- name: ros2-distro-mutex - version: 0.3.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/robostack-staging/win-64/ros2-distro-mutex-0.3.0-humble.tar.bz2 - hash: - md5: 00e631bbb241a8e93cfb0364d079ff58 - sha256: f4a1a5e23390669e61ca123eaf9c822b0b6a62d0d6faf270c737f8924eda7e3e - optional: false - category: main - build: humble - arch: x86_64 - subdir: win-64 - build_number: 0 - constrains: - - boost-cpp 1.78.* - - pcl 1.12.* - - gazebo 11.* - - libpqxx 6.* - - setuptools 61.0.0* - size: 3233 - timestamp: 1675719835331 -- name: ros-humble-std-srvs - version: 4.2.3 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-std-srvs-4.2.3-py310ha45506e_3.tar.bz2 - hash: - md5: c6a0019a1a5ce0c40c0b454f1ec7bf86 - sha256: c487138474020ee273c1d5c2e5a41c020798032e6ee8d13e8d9ac9aa6881013d - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 103924 - timestamp: 1675788381658 -- name: ros-humble-std-msgs - version: 4.2.3 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-std-msgs-4.2.3-py310ha45506e_3.tar.bz2 - hash: - md5: 82e840dd967b6d2d56cf3b50ad15bddf - sha256: 0f784d93eca0e9482ac207fc4b693974522cfc6bb5f171d7338f23fc4d391313 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 272824 - timestamp: 1675791001506 -- name: ros-humble-rosidl-default-runtime - version: 1.2.0 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ucrt: '>=10.0.20348.0' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros-humble-rosidl-generator-py: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rosidl-typesupport-c: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rosidl-typesupport-cpp: '*' - ros-humble-rosidl-typesupport-introspection-c: '*' - vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-default-runtime-1.2.0-py310ha45506e_3.tar.bz2 - hash: - md5: 95b75b5fa683eb8cb398f8e8daf4ac15 - sha256: c6fb3adee991bd1aca47db9326a52d8f9443c6f0bddaaffaa164ffa087e1864e - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 10112 - timestamp: 1675786168191 -- name: ros-humble-rclcpp-action - version: 16.0.3 - manager: conda - platform: win-64 - dependencies: - ros-humble-rclcpp: '*' - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rcl-action: '*' - ros-humble-ament-cmake: '*' - ros-humble-rcpputils: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-action-msgs: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rclcpp-action-16.0.3-py310ha45506e_3.tar.bz2 - hash: - md5: a63410d64023f01a292f9e5c47854756 - sha256: ca8a716b6d807669ca91941a2f41a0b91b9ca81696eda7f306a2cd448962e9b6 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 79074 - timestamp: 1675807794192 -- name: ros-humble-rclcpp - version: 16.0.3 - manager: conda - platform: win-64 - dependencies: - vs2015_runtime: '>=14.29.30139' - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-rcl-interfaces: '*' - ros-humble-rcpputils: '*' - ros-humble-rosgraph-msgs: '*' - ros-humble-tracetools: '*' - ros-humble-rcutils: '*' - ucrt: '>=10.0.20348.0' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-rosidl-typesupport-c: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rcl: '*' - ros-humble-rcl-yaml-param-parser: '*' - ros-humble-rosidl-typesupport-cpp: '*' - ros-humble-statistics-msgs: '*' - ros-humble-libstatistics-collector: '*' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rclcpp-16.0.3-py310ha45506e_3.tar.bz2 + sha256: e743b2f3d6f0b2db7a0af7ffbfecbc28137d51dd2219847e5a561a483d50d176 + optional: false + category: main + build: h1a38d6a_5 + subdir: osx-arm64 + build_number: 5 + license: BSD-3-Clause + license_family: BSD + size: 948048 + timestamp: 1667222994436 +- name: libzip + version: 1.9.2 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + openssl: '>=3.0.5,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.9.2-h76ab92c_1.tar.bz2 hash: - md5: 6662f70eaa4d3a8ec41c15a951c98bb2 - sha256: f54b7bede234bb692147eb818c8a1836d2ae54cb0f57a8749104966acfee7993 + md5: eee3b4ab0b5b71fbda7900785f3a46fa + sha256: f8532163164fd6c1063f49225acf0c4919eceaa5e464f2de26095e396909cfaf optional: false category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 569586 - timestamp: 1675805061162 -- name: ros-humble-geometry-msgs - version: 4.2.3 + build: h76ab92c_1 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 117229 + timestamp: 1660347349764 +- name: typing-extensions + version: 4.7.1 manager: conda - platform: win-64 + platform: osx-arm64 dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' - ros2-distro-mutex: 0.3.* humble - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-geometry-msgs-4.2.3-py310ha45506e_3.tar.bz2 + typing_extensions: ==4.7.1 pyha770c72_0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda hash: - md5: c6a10d5cb12631c25128a5142aacf548 - sha256: 10fb85750714c8b697924e87cd522e73712be67cd2cad2fe2dc5c7aaf29483a4 + md5: f96688577f1faa58096d06a45136afa2 + sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d optional: false category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 278877 - timestamp: 1675793351796 -- name: ros-humble-ament-index-cpp - version: 1.4.0 + build: hd8ed1ab_0 + subdir: noarch + build_number: 0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 10080 + timestamp: 1688315729011 +- name: typing_extensions + version: 4.7.1 manager: conda - platform: win-64 + platform: osx-arm64 dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-index-cpp-1.4.0-py310ha45506e_3.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda hash: - md5: 3eea0385230382971c1d0093a02fcefd - sha256: e2b9b508b8a23ebf6ac18153c89cc6c4151be7472d4de2eb2ff2a5e0e9cff092 + md5: c39d6a09fe819de4951c2642629d9115 + sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1 optional: false category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 38835 - timestamp: 1675771582212 -- name: ros-humble-ros-workspace - version: 1.0.2 + build: pyha770c72_0 + subdir: noarch + build_number: 0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 36321 + timestamp: 1688315719627 +- name: idna + version: '3.4' manager: conda - platform: win-64 + platform: osx-arm64 dependencies: - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - python: '*' - python_abi: 3.10.* *_cp310 - vs2015_runtime: '>=14.29.30139' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ros-workspace-1.0.2-py310ha45506e_3.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 hash: - md5: 2a74ac9d34c2ac29221cfebf5bfd4a32 - sha256: 388e1e43b50d39a18e5d0ac391a673ec946ade8858a10e47a1dd5c625ca0a9e7 + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 optional: false category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 25499 - timestamp: 1675720610030 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 56742 + timestamp: 1663625484114 - name: ros-humble-desktop version: 0.10.0 manager: conda @@ -28467,657 +28184,322 @@ package: build_number: 3 size: 13644 timestamp: 1675909583353 -- name: ros-humble-builtin-interfaces - version: 1.2.1 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-builtin-interfaces-1.2.1-py310ha45506e_3.tar.bz2 - hash: - md5: cd2dcee23e6227d50dcd1d602793704e - sha256: ef77b4a27032ac99fccbe7a327930cdf15875021dd246bd3ca2a7ff91e636d5b - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 71194 - timestamp: 1675787964207 -- name: ros-humble-rosidl-runtime-cpp - version: 3.1.4 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-runtime-cpp-3.1.4-py310ha45506e_3.tar.bz2 - hash: - md5: 930ac2e40fbdd9f5da8f1e55d42835d3 - sha256: 53e73809111f147977a0f55c802c4f2e41df3d48ee6e80b6616308214c22d221 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 18781 - timestamp: 1675778327937 -- name: ros-humble-rosidl-typesupport-c - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' - ros-humble-rcutils: '*' - ros-humble-rosidl-typesupport-interface: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ucrt: '>=10.0.20348.0' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rosidl-typesupport-introspection-c: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-c-2.0.0-py310ha45506e_3.tar.bz2 - hash: - md5: 01b95b0888cf15cd812c8f881a7f3fe8 - sha256: 91287839fc3a38f6ba347d1f0d8b55ba8744f1d621b8e49850e228c62ce51e31 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 35039 - timestamp: 1675785187828 -- name: ros-humble-rosidl-typesupport-cpp - version: 2.0.0 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' - ros-humble-rcutils: '*' - ros-humble-rosidl-typesupport-interface: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ucrt: '>=10.0.20348.0' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rosidl-typesupport-c: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-cpp-2.0.0-py310ha45506e_3.tar.bz2 - hash: - md5: e465a748f2539896f6fda0695fecb96e - sha256: c11b4639a39b14f15527efad39dd9f4f90ef93e238608393973aabed15c9e33e - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 34351 - timestamp: 1675785285104 -- name: ros-humble-rosidl-runtime-c - version: 3.1.4 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-typesupport-interface: '*' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' - vc: '>=14.2,<15' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-runtime-c-3.1.4-py310ha45506e_3.tar.bz2 - hash: - md5: f03e4e765eaf587642e5c33f68f9e281 - sha256: bd030029a2e4658c06d7ceb1d17370a1a54b1a72828ab283d5f5bfa28d287fa8 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 33682 - timestamp: 1675777529678 -- name: ros-humble-rosidl-generator-py - version: 0.14.4 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rpyutils: '*' - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-parser: '*' - ros-humble-rosidl-typesupport-interface: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ament-index-python: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-generator-c: '*' - ros-humble-rosidl-typesupport-c: '*' - ros-humble-ament-cmake: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - ros-humble-python-cmake-module: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-generator-py-0.14.4-py310ha45506e_3.tar.bz2 - hash: - md5: a574f4fdc321639e8366a2f12d3b9dd2 - sha256: 92dc68f2da9d2871ca4c5b8bec5a6f28bc9f1e2dd548e756c856cd42279fd964 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 44029 - timestamp: 1675785362939 -- name: ros-humble-rosidl-typesupport-fastrtps-c - version: 2.2.0 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-typesupport-interface: '*' - ucrt: '>=10.0.20348.0' - ros-humble-fastcdr: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ament-index-python: '*' - ros-humble-ament-cmake-ros: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-generator-c: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - ros-humble-fastrtps-cmake-module: '*' - vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.0-py310ha45506e_3.tar.bz2 - hash: - md5: 44f2c1d3ee99061c6a49cf39a6294830 - sha256: 7abae49fe7c29f00227fc11a1454d1fd0eaf17a1cc937d0b03435debabf18dad - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 35104 - timestamp: 1675783502595 -- name: ros-humble-rosidl-typesupport-fastrtps-cpp - version: 2.2.0 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-typesupport-interface: '*' - ucrt: '>=10.0.20348.0' - ros-humble-fastcdr: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ament-index-python: '*' - ros-humble-ament-cmake-ros: '*' - ros-humble-rosidl-generator-cpp: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - ros-humble-fastrtps-cmake-module: '*' - vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.0-py310ha45506e_3.tar.bz2 - hash: - md5: 1861e756af06448b637f0bc2428624b4 - sha256: 3e1b501b69ed762a23d95f025cf92249ca6e2f1b1d5adb929a0061212de0ad9f - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 35884 - timestamp: 1675783282003 -- name: ros-humble-rosidl-typesupport-introspection-c - version: 3.1.4 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-parser: '*' - numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-introspection-c-3.1.4-py310ha45506e_3.tar.bz2 - hash: - md5: 990670b6cc4dfbdc67840dace677a11e - sha256: cc0a9a614a9e6de9652d4003a02315fbc9094b91be9ec679e7a1ad6992959287 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 58473 - timestamp: 1675779514893 -- name: ros-humble-rosidl-typesupport-introspection-cpp - version: 3.1.4 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cli: '*' - ros-humble-rosidl-parser: '*' - ros-humble-rosidl-typesupport-interface: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-ament-cmake: '*' - ros-humble-rosidl-cmake: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rosidl-typesupport-introspection-c: '*' - vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.4-py310ha45506e_3.tar.bz2 - hash: - md5: b5b894fe73c06a9ea6ac1b8e9a384b43 - sha256: 6936615d2570b5e953e36c01f204084487e2c45f3d7bc67b5622ca545240635a - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 32906 - timestamp: 1675781380 -- name: ros-humble-action-msgs - version: 1.2.1 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - ros-humble-unique-identifier-msgs: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-action-msgs-1.2.1-py310ha45506e_3.tar.bz2 - hash: - md5: c321952964a78691d1b089e0f5d4e19d - sha256: e9e9df51328c3c01fe7a79d91058a07e9ef670d7b058732f5f3be08f76e6ae86 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 118748 - timestamp: 1675790164029 -- name: ros-humble-ament-cmake - version: 1.3.3 +- name: ros2-distro-mutex + version: 0.3.0 manager: conda platform: win-64 - dependencies: - vs2015_runtime: '>=14.29.30139' - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake-gen-version-h: '*' - ros-humble-ament-cmake-python: '*' - ros-humble-ament-cmake-export-link-flags: '*' - ros-humble-ament-cmake-core: '*' - ros-humble-ament-cmake-export-dependencies: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - ros-humble-ament-cmake-export-include-directories: '*' - ros-humble-ament-cmake-test: '*' - ros-humble-ament-cmake-export-definitions: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-export-libraries: '*' - ros-humble-ament-cmake-export-targets: '*' - cmake: '*' - numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-cmake-libraries: '*' - ros-humble-ament-cmake-target-dependencies: '*' - ros-humble-ament-cmake-version: '*' - vc: '>=14.2,<15' - ros-humble-ament-cmake-export-interfaces: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-1.3.3-py310ha45506e_3.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/robostack-staging/win-64/ros2-distro-mutex-0.3.0-humble.tar.bz2 hash: - md5: 416f8a56ccf8f2ae493f26346c35dd52 - sha256: a2b897f40d9c02e7f8749ce0f2809b31a4c379a5869a3bd19b91d48c08d3fc4e + md5: 00e631bbb241a8e93cfb0364d079ff58 + sha256: f4a1a5e23390669e61ca123eaf9c822b0b6a62d0d6faf270c737f8924eda7e3e optional: false category: main - build: py310ha45506e_3 + build: humble arch: x86_64 subdir: win-64 - build_number: 3 - size: 10117 - timestamp: 1675761923700 -- name: ros-humble-rcpputils - version: 2.4.0 + build_number: 0 + constrains: + - boost-cpp 1.78.* + - pcl 1.12.* + - gazebo 11.* + - libpqxx 6.* + - setuptools 61.0.0* + size: 3233 + timestamp: 1675719835331 +- name: ros-humble-topic-monitor + version: 0.20.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' + ros-humble-launch: '*' + ros-humble-launch-ros: '*' ros-humble-ros-workspace: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcpputils-2.4.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-topic-monitor-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 0cac8117818ad0da0e6dd364e8e17201 - sha256: cbe33a494fee5eec002dd06526a3fede082f2e46672ab625ec5b112ff0ff7073 + md5: eb0af082e19c8b866eb47602f61800e1 + sha256: e9363d72a65b31bbfa331a8309953ff918969f8b4b643769143144dc04410963 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 58302 - timestamp: 1675777625057 -- name: ros-humble-rcl-action - version: 5.3.2 + size: 84188 + timestamp: 1675832247221 +- name: ros-humble-teleop-twist-keyboard + version: 2.3.2 manager: conda platform: win-64 dependencies: - vs2015_runtime: '>=14.29.30139' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-geometry-msgs: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-action-msgs: '*' - ros-humble-rcl: '*' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-action-5.3.2-py310ha45506e_3.tar.bz2 + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-teleop-twist-keyboard-2.3.2-py310ha45506e_3.tar.bz2 hash: - md5: dd5fbf257e2f98525ffce12cc12dd74f - sha256: c23084108bd3a0965bf78ad7b34de92af734858b7ac14c64794e6be544b82d00 + md5: d7967d8773c549489f76858963988aa9 + sha256: 0b0b86ccbb5666639ae82b5a3e81f6a200d35e55083ca8f703c4e99a8b27fddf optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 59680 - timestamp: 1675803221022 -- name: ros-humble-rcutils - version: 5.1.2 + size: 56264 + timestamp: 1675832136696 +- name: ros-humble-teleop-twist-joy + version: 2.4.3 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-geometry-msgs: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + ros-humble-joy: '*' numpy: '>=1.21.6,<2.0a0' + ros-humble-rclcpp-components: '*' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcutils-5.1.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-teleop-twist-joy-2.4.3-py310ha45506e_3.tar.bz2 hash: - md5: 0cd02d38bba6f614e3ac20cc42ad9bee - sha256: fe39dee68592445a7e0ebc7160f95a57d1789746e81d8987802c0dff99722f17 + md5: e05df0f3926b671468b4f86131524853 + sha256: 6101a8c2a750fed288ba1a57477a1b3f37c4d6c041a3a4d61830a1fe1191aeb9 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 102944 - timestamp: 1675775406057 -- name: ros-humble-rmw - version: 6.1.1 + size: 125118 + timestamp: 1675845226483 +- name: ros-humble-rviz2 + version: 11.2.5 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rviz-default-plugins: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + qt-main: '>=5.15.8,<5.16.0a0' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' - ros-humble-rosidl-runtime-c: '*' + ros-humble-rviz-common: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' + ros-humble-rviz-ogre-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-6.1.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz2-11.2.5-py310ha45506e_3.tar.bz2 hash: - md5: 9952d5b87489fecc8508d9f55b53f646 - sha256: 46d04ff0605e5f0edcb829edb93e71ba1c6446cf13ae7d66e7c5e424f76a0e80 + md5: 34336d6653f344a58938f70e752d1ef7 + sha256: b48793a3d652b96c676f2bd69bba952bc63ff20dc2edd189bc8f958990f759c3 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 75103 - timestamp: 1675779427823 -- name: ros-humble-libstatistics-collector - version: 1.3.0 + size: 25738 + timestamp: 1675900437088 +- name: ros-humble-rviz-default-plugins + version: 11.2.5 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' - ros2-distro-mutex: 0.3.* humble + ros-humble-tf2: '*' + ros-humble-tf2-ros: '*' + ros-humble-urdf: '*' + qt-main: '>=5.15.8,<5.16.0a0' + ros-humble-ignition-math6-vendor: '*' ucrt: '>=10.0.20348.0' + ros-humble-interactive-markers: '*' + ros-humble-pluginlib: '*' + ros-humble-image-transport: '*' + ros-humble-resource-retriever: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' + ros-humble-nav-msgs: '*' + ros-humble-ros-workspace: '*' + ros-humble-laser-geometry: '*' + ros-humble-rviz-rendering: '*' + ros-humble-tf2-geometry-msgs: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-map-msgs: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcl: '*' + ros-humble-rviz-common: '*' + ros-humble-visualization-msgs: '*' + ros-humble-rviz-ogre-vendor: '*' vc: '>=14.2,<15' - ros-humble-ros-workspace: '*' - ros-humble-statistics-msgs: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-libstatistics-collector-1.3.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-default-plugins-11.2.5-py310ha45506e_3.tar.bz2 hash: - md5: 02bb2695414b7b69008b348f1eb04915 - sha256: 39038c73c0e793f8b71b36a2d387d413036f5087967dc9624e17c1081b832d5c + md5: c0147239c9462e7bf33e4261a4a98c68 + sha256: 2451f44e88558ae34355711030e5e6f20e7092e2992d457d99933eb5cfc3ae39 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 38360 - timestamp: 1675803033229 -- name: ros-humble-rcl - version: 5.3.2 + size: 1050299 + timestamp: 1675896639856 +- name: ros-humble-rqt-common-plugins + version: 1.2.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-tracetools: '*' - ros-humble-rcutils: '*' - ros-humble-rcl-logging-interface: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' + ros-humble-rqt-plot: '*' + ros-humble-rqt-console: '*' + ros-humble-rqt-graph: '*' + ros-humble-rqt-image-view: '*' + ros-humble-rqt-msg: '*' + ros-humble-rqt-publisher: '*' + ros-humble-rqt-service-caller: '*' + ros-humble-rqt-shell: '*' ucrt: '>=10.0.20348.0' - ros-humble-rcl-logging-spdlog: '*' + ros-humble-ros-workspace: '*' + ros-humble-rqt-srv: '*' + ros-humble-rqt-bag: '*' + ros-humble-rqt-topic: '*' + ros-humble-rqt-action: '*' + ros-humble-rqt-reconfigure: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcl-yaml-param-parser: '*' - ros-humble-rmw-implementation: '*' + ros-humble-rqt-bag-plugins: '*' + ros-humble-rqt-py-common: '*' + ros-humble-rqt-py-console: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-5.3.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-common-plugins-1.2.0-py310ha45506e_3.tar.bz2 hash: - md5: 4847237faa6e38164be8773fdb2dd075 - sha256: 214d5b9dc880e56e0e514f729b8a7d775749d3d65a2a2fcab3f2c0bd1eb2ff50 + md5: 3d110bf80523dcf9d232e1df69807b05 + sha256: e6a6312c40cc7cbc8244ab2c4b6a4c43b702a869d6b69799f5d4c1fbd52eaf22 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 152052 - timestamp: 1675801387425 -- name: ros-humble-rcl-interfaces - version: 1.2.1 + size: 11788 + timestamp: 1675907806768 +- name: ros-humble-ros-base + version: 0.10.0 manager: conda platform: win-64 dependencies: + ros-humble-robot-state-publisher: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' + vs2015_runtime: '>=14.29.30139' + ros-humble-kdl-parser: '*' + ros-humble-urdf: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-builtin-interfaces: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + ros-humble-geometry2: '*' ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-interfaces-1.2.1-py310ha45506e_3.tar.bz2 + ros-humble-ros-core: '*' + ros-humble-rosbag2: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ros-base-0.10.0-py310ha45506e_3.tar.bz2 hash: - md5: fe5a6bf9b6017cdb4778c755b4c71ae6 - sha256: 8be0d5db2d59c923bc3733c88ee63858641d7396960237d8dff8b51b1e165280 + md5: 46b16bd8aac2d39c6a2a35464c9d30a4 + sha256: f599de72f222c78864e7257a80e8a78ba90903414fcd3c1f2a3418c65054cf3c optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 326440 - timestamp: 1675790731993 -- name: ros-humble-rcl-yaml-param-parser - version: 5.3.2 + size: 11282 + timestamp: 1675827570571 +- name: ros-humble-quality-of-service-demo-py + version: 0.20.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ros-humble-libyaml-vendor: '*' - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' - ros-humble-rmw: '*' + numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - yaml: '>=0.2.5,<0.3.0a0' vs2015_runtime: '>=14.29.30139' - yaml-cpp: '>=0.7.0,<0.8.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-yaml-param-parser-5.3.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-quality-of-service-demo-py-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: ed2df385d93f7f7653aeac0aa17f8aa9 - sha256: 693efdb0deb15dc7b5daa19f2414ec9646b280564a6965d595ccbd1864e230be + md5: a1b5755acd54596c5fdaf0575f735a16 + sha256: 9b3329461858467e29320f729b77738c411a1eb71b30308148f2863b221ca345 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 37791 - timestamp: 1675781470272 -- name: ros-humble-rosgraph-msgs - version: 1.2.1 + size: 93366 + timestamp: 1675832354249 +- name: ros-humble-quality-of-service-demo-cpp + version: 0.20.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' + ucrt: '>=10.0.20348.0' + ros-humble-rcutils: '*' + ros-humble-launch-ros: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' + ros-humble-rclcpp-components: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosgraph-msgs-1.2.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-quality-of-service-demo-cpp-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: fea148d96825cf80dbb3520a04113181 - sha256: 14cd8b0982ffae7d82852f6d67a78e318d8b65851e7eb64353e8ceca0b722a67 + md5: b77dfecd0e9aacd6b16a922cbbe8edbb + sha256: 083c8d2ff7fca894dbbd56a4de63cf7462a6da373bc812ee0964e2a1beb05e16 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 63463 - timestamp: 1675790282671 -- name: ros-humble-statistics-msgs - version: 1.2.1 + size: 505966 + timestamp: 1675841651773 +- name: ros-humble-pendulum-msgs + version: 0.20.3 manager: conda platform: win-64 dependencies: @@ -29131,44 +28513,51 @@ package: ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-statistics-msgs-1.2.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pendulum-msgs-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 489150b64f76847c8f7f693e433c888f - sha256: 190909d25993e0b069906db52257bc86bd9018318e790bab9025dd3f840ef801 + md5: 475034abd7eb714f0c1225b906685331 + sha256: 4377e506356b4a435a89b840c7198ac61cf9d68c44ad85e32d49ad62b8d295c2 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 96371 - timestamp: 1675790162404 -- name: ros-humble-tracetools - version: 4.1.1 + size: 88370 + timestamp: 1675832498219 +- name: ros-humble-pcl-conversions + version: 2.4.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-std-msgs: '*' ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros-humble-sensor-msgs: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-message-filters: '*' + pcl: '>=1.12.1,<1.12.2.0a0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-pcl-msgs: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tracetools-4.1.1-py310ha45506e_3.tar.bz2 + eigen: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pcl-conversions-2.4.0-py310h44ae38f_3.tar.bz2 hash: - md5: ea333a9b500491e85a9c60282e961084 - sha256: ce8576650516611fdb8f761a8fb7ea85e41e984c7d7bd13f6636fe9c33021a33 + md5: b24fb181abe4ddbe199aa46c19e69340 + sha256: 780427e908670b529e294826419735ccae4c5083e5490228f613c81c9390a7fa optional: false category: main - build: py310ha45506e_3 + build: py310h44ae38f_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 15569 - timestamp: 1675772883679 -- name: ros-humble-action-tutorials-cpp + size: 18346 + timestamp: 1675812773401 +- name: ros-humble-logging-demo version: 0.20.3 manager: conda platform: win-64 @@ -29176,108 +28565,115 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclcpp-action: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-action-tutorials-interfaces: '*' ros-humble-rclcpp-components: '*' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-action-tutorials-cpp-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-logging-demo-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: b6c35707266ab78fa342552eab27155f - sha256: 21e0ed1114f654e4c4498be280c17489b2344c332ee901ae7d04ba83342dd251 + md5: 3ac2fc04455800364f7dc4cb90e8a362 + sha256: 10673730f0266215fd6122be5d155e2b7f57d4d24847e0c1fd8a7a462a122997 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 85370 - timestamp: 1675842156727 -- name: ros-humble-action-tutorials-interfaces + size: 148445 + timestamp: 1675831793919 +- name: ros-humble-lifecycle version: 0.20.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' + ros-humble-rclcpp-lifecycle: '*' + ros-humble-std-msgs: '*' + ros-humble-lifecycle-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-action-msgs: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-action-tutorials-interfaces-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-lifecycle-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 2b9cde91ba955fba1db2893484c824f3 - sha256: 1bad59661ecbcd29285e487fbe46e2f43cbb9ebab37670b12381865a3a7b3042 + md5: 293c9181fec0aae7b0c4e99af070ea61 + sha256: fc98e55487b6e93ff8bdcb3dc9bc41da0db25ef7a64613b23fb34f413f73880b optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 128646 - timestamp: 1675832052993 -- name: ros-humble-action-tutorials-py - version: 0.20.3 + size: 163435 + timestamp: 1675831925354 +- name: ros-humble-joy + version: 3.1.0 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-sdl2-vendor: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-action-tutorials-interfaces: '*' + ros-humble-rclcpp-components: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-action-tutorials-py-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-joy-3.1.0-py310ha45506e_3.tar.bz2 hash: - md5: 4e5e819402806e520302e5d296b51ed5 - sha256: ef1d6577757e74e5f6c5dfa8e0af0f1afc41848ea3433c291d123b5e418d2e8f + md5: 608e237d97ce02955bdfd610ae15c9d4 + sha256: 6d4fecb850d79c4f99479f596f1aba4f63843ad8be939466b2cdd9d2ccec0566 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 64074 - timestamp: 1675841997577 -- name: ros-humble-angles - version: 1.15.0 + size: 130790 + timestamp: 1675841225050 +- name: ros-humble-intra-process-demo + version: 0.20.3 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + py-opencv: '>=4.6.0,<5.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-angles-1.15.0-py310ha45506e_3.tar.bz2 + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-intra-process-demo-0.20.3-py310h6fa8c79_3.tar.bz2 hash: - md5: 68353461c0aff6f6ebae3af08b510b78 - sha256: 6f0d22a95968d18492f101dd07edd787d863ecda00d939ce02af938be8f0b252 + md5: 9ef5d8194848e4949c1a3a2a5e36d031 + sha256: e29bcfa48d36564e2f0ed39a46b20ed0857e78b10d82ce55aeeb1612ea5e6ed8 optional: false category: main - build: py310ha45506e_3 + build: py310h6fa8c79_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 21943 - timestamp: 1675763050631 -- name: ros-humble-composition + size: 385278 + timestamp: 1675832218643 +- name: ros-humble-image-tools version: 0.20.3 manager: conda platform: win-64 @@ -29285,93 +28681,86 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - vs2015_runtime: '>=14.29.30139' + ros-humble-sensor-msgs: '*' ros-humble-std-msgs: '*' - ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + py-opencv: '>=4.6.0,<5.0a0' ros-humble-rclcpp-components: '*' - ros-humble-launch-ros: '*' - ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-composition-0.20.3-py310ha45506e_3.tar.bz2 + vs2015_runtime: '>=14.29.30139' + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-image-tools-0.20.3-py310h6fa8c79_3.tar.bz2 hash: - md5: ea9bec9043838dabea3f9217671133fe - sha256: 7ac39657a116846661d3c3557caf9e73aa9b6c4aa7e6eac86aa7180fec35a038 + md5: 0346ef68701ec02e0e322cfd75daa8e1 + sha256: fef8d366668d5e62756b6b2eb739969ea00f16d1081492a4c29d0b3f920a875b optional: false category: main - build: py310ha45506e_3 + build: py310h6fa8c79_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 214147 - timestamp: 1675841887705 -- name: ros-humble-demo-nodes-cpp - version: 0.20.3 + size: 165856 + timestamp: 1675832424543 +- name: ros-humble-examples-rclpy-minimal-subscriber + version: 0.15.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' ros-humble-std-msgs: '*' - ucrt: '>=10.0.20348.0' - ros-humble-rcutils: '*' - ros-humble-launch-ros: '*' - ros-humble-launch-xml: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' - vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' + vc: '>=14.2,<15' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-demo-nodes-cpp-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-subscriber-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 800b4339008b59f82e2e701c55290327 - sha256: aa46dc77edb237901ed2e1cb6465b0325dab3e41e8939ddfdfdb8acd779a862e + md5: a552faf2bab10a5235301d84587bc70a + sha256: a3c9de5891052df5af5c6395e06cf99ca28ac69d911e05ae32be9b50db11cba2 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 592463 - timestamp: 1675842057341 -- name: ros-humble-demo-nodes-cpp-native - version: 0.20.3 + size: 67099 + timestamp: 1675832513270 +- name: ros-humble-examples-rclpy-minimal-service + version: 0.15.1 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rmw-fastrtps-cpp: '*' + ros-humble-rclpy: '*' ros-humble-std-msgs: '*' + ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' + ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-demo-nodes-cpp-native-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-service-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: e1c7999b5bbc2016d198c916fefc2505 - sha256: 24a74f319ff56ed33a6126666eb732be9f8fe6aa387214b1b0c3d582c4ff4d8e + md5: f65a7cb9de611bc6c043575c847140dc + sha256: a844e62e1bbf1f638a9392931e159189d9ef15990c8afe51bea2732f650fe056 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 81607 - timestamp: 1675832319222 -- name: ros-humble-demo-nodes-py - version: 0.20.3 + size: 62090 + timestamp: 1675842513772 +- name: ros-humble-examples-rclpy-minimal-publisher + version: 0.15.1 manager: conda platform: win-64 dependencies: @@ -29379,142 +28768,134 @@ package: python_abi: 3.10.* *_cp310 ros-humble-rclpy: '*' ros-humble-std-msgs: '*' - ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-demo-nodes-py-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-publisher-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 517eafb85f992179b996ce1b94ffeb38 - sha256: b0241317a19c6fb78a7f624034491e50e3997b17a67bb3b8917b738bdaee9176 + md5: af0558b153d8fc26d8b0407264f67c30 + sha256: 2677b6f8fe03c1ae54b9705ec419137c38d80ae84be995a45a4d3715b41778d9 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 84624 - timestamp: 1675841391859 -- name: ros-humble-depthimage-to-laserscan - version: 2.5.0 + size: 67880 + timestamp: 1675831780992 +- name: ros-humble-examples-rclpy-minimal-client + version: 0.15.1 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' + ros-humble-rclpy: '*' + ros-humble-std-msgs: '*' + ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - py-opencv: '>=4.6.0,<5.0a0' - ros-humble-image-geometry: '*' - ros-humble-rclcpp-components: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-depthimage-to-laserscan-2.5.0-py310h6fa8c79_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-client-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 5a27f9141dcbb67df29b85099699698c - sha256: c279ae57005f7365df34b617a2f5db9e60bc2ecae6e9f703133b12140746c543 + md5: c1b22047fa975786fd48f7d98b4fd059 + sha256: fe137e781b42a9dcde7b2f2ccdfb0dce03da0254d7827be3b61f6c0888758d0a optional: false category: main - build: py310h6fa8c79_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 136989 - timestamp: 1675832180727 -- name: ros-humble-dummy-map-server - version: 0.20.3 + size: 72724 + timestamp: 1675842581379 +- name: ros-humble-examples-rclpy-minimal-action-server + version: 0.15.1 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-nav-msgs: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-dummy-map-server-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-action-server-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 08b77fbeb1ee84cb81552e815f31a5f1 - sha256: 67e77436e93b3d368d51fe506284effbb01e303d28a677b48b9d3d7c1fa578b3 + md5: 8c6d2e70118729f9c8c1abdc3bf965e4 + sha256: 0764dc3e3f2f25acc983e2538cf45b1a060630598fe64b9cf7ccc04e3067e694 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 57164 - timestamp: 1675831871415 -- name: ros-humble-dummy-robot-bringup - version: 0.20.3 + size: 87499 + timestamp: 1675842643800 +- name: ros-humble-examples-rclpy-minimal-action-client + version: 0.15.1 manager: conda platform: win-64 dependencies: - ros-humble-robot-state-publisher: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-dummy-map-server: '*' - ros-humble-dummy-sensors: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-launch: '*' - ros-humble-ament-index-python: '*' - ros-humble-launch-ros: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-dummy-robot-bringup-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-action-client-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: f6cb0ce6c6ad7dae4a927d7b4a55d73b - sha256: 8accf0f65b68f12295aef2760e224ea5663d211980f6902815a0ec80e0e6a510 + md5: aa002e766f7536a239805ee137dd4443 + sha256: 975bc79164d0e52cc0bcedbdf1e520ee74ecba4558ce14906879fd9bc57c5ed5 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 14542 - timestamp: 1675841627893 -- name: ros-humble-dummy-sensors - version: 0.20.3 + size: 76090 + timestamp: 1675842711788 +- name: ros-humble-examples-rclpy-executors + version: 0.15.1 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' + ros-humble-rclpy: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-dummy-sensors-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-executors-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: c5e0813a259cb5176701046261a4f791 - sha256: 32201c24d2aa494014ba6a196a3cc9a8eb55e015ef3a74eda0359a344b453fe4 + md5: 2c08199fc284fb81fff3020b6707fc02 + sha256: d6d84717f9b10e36b1cd0fa5529987dd90e830825b9da9eab4c867e1973135aa optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 82047 - timestamp: 1675832257742 -- name: ros-humble-examples-rclcpp-minimal-action-client + size: 87757 + timestamp: 1675831849419 +- name: ros-humble-examples-rclcpp-multithreaded-executor version: 0.15.1 manager: conda platform: win-64 @@ -29522,27 +28903,26 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclcpp-action: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-action-client-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 7c3e867fead0e53e3b7cd15c68aaea8a - sha256: b441ef5d6e6ad03e8f4b630520f02ed681e8e4f9a4d0afc6fda09bb5703bcaed + md5: c094e853ee07f92889534908b2b0c493 + sha256: e4b8a98d20bf533ee894a6339ccbbb9bac1d2359cb96d28b33ea1f4727e6a932 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 99659 - timestamp: 1675841538937 -- name: ros-humble-examples-rclcpp-minimal-action-server + size: 96311 + timestamp: 1675831984373 +- name: ros-humble-examples-rclcpp-minimal-timer version: 0.15.1 manager: conda platform: win-64 @@ -29550,27 +28930,25 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclcpp-action: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-action-server-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-timer-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 8ef6effbce558ee2ab0101d30b93352f - sha256: 04db1e7accd44b069750f1520bdb5ace25d583b211869aede2f8635ec4be6d52 + md5: 4376b7fb7df7dd53bafa68c0c8b722f2 + sha256: 5cc10c731fa62bce4c3fc13c87d7210cee53befff0691fd68be77b1bdcb2f78e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 51296 - timestamp: 1675841391214 -- name: ros-humble-examples-rclcpp-minimal-client + size: 25929 + timestamp: 1675832086353 +- name: ros-humble-examples-rclcpp-minimal-subscriber version: 0.15.1 manager: conda platform: win-64 @@ -29578,26 +28956,27 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ros-humble-rclcpp-components: '*' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-client-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 94e93fa7df9f480c5a55dba788a9855c - sha256: a5d47d00f3749142ac442cbc0fa6248d7ec801c942ae5a852daaaf5bb36b4efd + md5: 317478695730d8851713976cf51d6b6a + sha256: dd1217d727eb4cd3d22a2f9900b0ba93267ea1477cd4780e10102c59ff0eb356 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 33794 - timestamp: 1675841264973 -- name: ros-humble-examples-rclcpp-minimal-composition + size: 470957 + timestamp: 1675832303944 +- name: ros-humble-examples-rclcpp-minimal-service version: 0.15.1 manager: conda platform: win-64 @@ -29605,26 +28984,25 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-composition-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-service-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 39b76b7222055a084db119f13cfbdd65 - sha256: 3a84c27bfcc28935cdf71e84c91bedde162df48be81dfb9d3497a6986d88abc9 + md5: 88a103562be48dffe2012df2a65215ab + sha256: 83e4e07e6783293250193973a49561b225a478cefcd0f75d034835a78939d677 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 110701 - timestamp: 1675831975281 + size: 27709 + timestamp: 1675842842913 - name: ros-humble-examples-rclcpp-minimal-publisher version: 0.15.1 manager: conda @@ -29652,7 +29030,7 @@ package: build_number: 3 size: 158537 timestamp: 1675831841774 -- name: ros-humble-examples-rclcpp-minimal-service +- name: ros-humble-examples-rclcpp-minimal-composition version: 0.15.1 manager: conda platform: win-64 @@ -29660,26 +29038,27 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ros-humble-rclcpp-components: '*' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-service-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-composition-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 88a103562be48dffe2012df2a65215ab - sha256: 83e4e07e6783293250193973a49561b225a478cefcd0f75d034835a78939d677 + md5: 39b76b7222055a084db119f13cfbdd65 + sha256: 3a84c27bfcc28935cdf71e84c91bedde162df48be81dfb9d3497a6986d88abc9 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 27709 - timestamp: 1675842842913 -- name: ros-humble-examples-rclcpp-minimal-subscriber + size: 110701 + timestamp: 1675831975281 +- name: ros-humble-examples-rclcpp-minimal-client version: 0.15.1 manager: conda platform: win-64 @@ -29687,27 +29066,26 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-client-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 317478695730d8851713976cf51d6b6a - sha256: dd1217d727eb4cd3d22a2f9900b0ba93267ea1477cd4780e10102c59ff0eb356 + md5: 94e93fa7df9f480c5a55dba788a9855c + sha256: a5d47d00f3749142ac442cbc0fa6248d7ec801c942ae5a852daaaf5bb36b4efd optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 470957 - timestamp: 1675832303944 -- name: ros-humble-examples-rclcpp-minimal-timer + size: 33794 + timestamp: 1675841264973 +- name: ros-humble-examples-rclcpp-minimal-action-server version: 0.15.1 manager: conda platform: win-64 @@ -29715,25 +29093,27 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rclcpp-action: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-timer-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-action-server-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: 4376b7fb7df7dd53bafa68c0c8b722f2 - sha256: 5cc10c731fa62bce4c3fc13c87d7210cee53befff0691fd68be77b1bdcb2f78e + md5: 8ef6effbce558ee2ab0101d30b93352f + sha256: 04db1e7accd44b069750f1520bdb5ace25d583b211869aede2f8635ec4be6d52 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 25929 - timestamp: 1675832086353 -- name: ros-humble-examples-rclcpp-multithreaded-executor + size: 51296 + timestamp: 1675841391214 +- name: ros-humble-examples-rclcpp-minimal-action-client version: 0.15.1 manager: conda platform: win-64 @@ -29741,136 +29121,144 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-std-msgs: '*' + ros-humble-rclcpp-action: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-action-client-0.15.1-py310ha45506e_3.tar.bz2 hash: - md5: c094e853ee07f92889534908b2b0c493 - sha256: e4b8a98d20bf533ee894a6339ccbbb9bac1d2359cb96d28b33ea1f4727e6a932 + md5: 7c3e867fead0e53e3b7cd15c68aaea8a + sha256: b441ef5d6e6ad03e8f4b630520f02ed681e8e4f9a4d0afc6fda09bb5703bcaed optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 96311 - timestamp: 1675831984373 -- name: ros-humble-examples-rclpy-executors - version: 0.15.1 + size: 99659 + timestamp: 1675841538937 +- name: ros-humble-dummy-sensors + version: 0.20.3 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-executors-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-dummy-sensors-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 2c08199fc284fb81fff3020b6707fc02 - sha256: d6d84717f9b10e36b1cd0fa5529987dd90e830825b9da9eab4c867e1973135aa + md5: c5e0813a259cb5176701046261a4f791 + sha256: 32201c24d2aa494014ba6a196a3cc9a8eb55e015ef3a74eda0359a344b453fe4 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 87757 - timestamp: 1675831849419 -- name: ros-humble-examples-rclpy-minimal-action-client - version: 0.15.1 + size: 82047 + timestamp: 1675832257742 +- name: ros-humble-dummy-robot-bringup + version: 0.20.3 manager: conda platform: win-64 dependencies: + ros-humble-robot-state-publisher: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' + ros-humble-dummy-map-server: '*' + ros-humble-dummy-sensors: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' + ros-humble-launch: '*' + ros-humble-ament-index-python: '*' + ros-humble-launch-ros: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-action-client-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-dummy-robot-bringup-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: aa002e766f7536a239805ee137dd4443 - sha256: 975bc79164d0e52cc0bcedbdf1e520ee74ecba4558ce14906879fd9bc57c5ed5 + md5: f6cb0ce6c6ad7dae4a927d7b4a55d73b + sha256: 8accf0f65b68f12295aef2760e224ea5663d211980f6902815a0ec80e0e6a510 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 76090 - timestamp: 1675842711788 -- name: ros-humble-examples-rclpy-minimal-action-server - version: 0.15.1 + size: 14542 + timestamp: 1675841627893 +- name: ros-humble-dummy-map-server + version: 0.20.3 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' + ros-humble-nav-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-action-server-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-dummy-map-server-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 8c6d2e70118729f9c8c1abdc3bf965e4 - sha256: 0764dc3e3f2f25acc983e2538cf45b1a060630598fe64b9cf7ccc04e3067e694 + md5: 08b77fbeb1ee84cb81552e815f31a5f1 + sha256: 67e77436e93b3d368d51fe506284effbb01e303d28a677b48b9d3d7c1fa578b3 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 87499 - timestamp: 1675842643800 -- name: ros-humble-examples-rclpy-minimal-client - version: 0.15.1 + size: 57164 + timestamp: 1675831871415 +- name: ros-humble-depthimage-to-laserscan + version: 2.5.0 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' - ros-humble-example-interfaces: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + py-opencv: '>=4.6.0,<5.0a0' + ros-humble-image-geometry: '*' + ros-humble-rclcpp-components: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-client-0.15.1-py310ha45506e_3.tar.bz2 + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-depthimage-to-laserscan-2.5.0-py310h6fa8c79_3.tar.bz2 hash: - md5: c1b22047fa975786fd48f7d98b4fd059 - sha256: fe137e781b42a9dcde7b2f2ccdfb0dce03da0254d7827be3b61f6c0888758d0a + md5: 5a27f9141dcbb67df29b85099699698c + sha256: c279ae57005f7365df34b617a2f5db9e60bc2ecae6e9f703133b12140746c543 optional: false category: main - build: py310ha45506e_3 + build: py310h6fa8c79_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 72724 - timestamp: 1675842581379 -- name: ros-humble-examples-rclpy-minimal-publisher - version: 0.15.1 + size: 136989 + timestamp: 1675832180727 +- name: ros-humble-demo-nodes-py + version: 0.20.3 manager: conda platform: win-64 dependencies: @@ -29878,80 +29266,88 @@ package: python_abi: 3.10.* *_cp310 ros-humble-rclpy: '*' ros-humble-std-msgs: '*' + ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-publisher-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-demo-nodes-py-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: af0558b153d8fc26d8b0407264f67c30 - sha256: 2677b6f8fe03c1ae54b9705ec419137c38d80ae84be995a45a4d3715b41778d9 + md5: 517eafb85f992179b996ce1b94ffeb38 + sha256: b0241317a19c6fb78a7f624034491e50e3997b17a67bb3b8917b738bdaee9176 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 67880 - timestamp: 1675831780992 -- name: ros-humble-examples-rclpy-minimal-service - version: 0.15.1 + size: 84624 + timestamp: 1675841391859 +- name: ros-humble-demo-nodes-cpp-native + version: 0.20.3 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' + ros-humble-rmw-fastrtps-cpp: '*' ros-humble-std-msgs: '*' - ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-rclcpp-components: '*' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-service-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-demo-nodes-cpp-native-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: f65a7cb9de611bc6c043575c847140dc - sha256: a844e62e1bbf1f638a9392931e159189d9ef15990c8afe51bea2732f650fe056 + md5: e1c7999b5bbc2016d198c916fefc2505 + sha256: 24a74f319ff56ed33a6126666eb732be9f8fe6aa387214b1b0c3d582c4ff4d8e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 62090 - timestamp: 1675842513772 -- name: ros-humble-examples-rclpy-minimal-subscriber - version: 0.15.1 + size: 81607 + timestamp: 1675832319222 +- name: ros-humble-demo-nodes-cpp + version: 0.20.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' ros-humble-std-msgs: '*' - ros2-distro-mutex: 0.3.* humble ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' + ros-humble-rcutils: '*' + ros-humble-launch-ros: '*' + ros-humble-launch-xml: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-example-interfaces: '*' + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-rclcpp-components: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-subscriber-0.15.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-demo-nodes-cpp-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: a552faf2bab10a5235301d84587bc70a - sha256: a3c9de5891052df5af5c6395e06cf99ca28ac69d911e05ae32be9b50db11cba2 + md5: 800b4339008b59f82e2e701c55290327 + sha256: aa46dc77edb237901ed2e1cb6465b0325dab3e41e8939ddfdfdb8acd779a862e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 67099 - timestamp: 1675832513270 -- name: ros-humble-image-tools + size: 592463 + timestamp: 1675842057341 +- name: ros-humble-composition version: 0.20.3 manager: conda platform: win-64 @@ -29959,116 +29355,110 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' + vs2015_runtime: '>=14.29.30139' ros-humble-std-msgs: '*' + ros-humble-example-interfaces: '*' ros2-distro-mutex: 0.3.* humble - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - py-opencv: '>=4.6.0,<5.0a0' ros-humble-rclcpp-components: '*' + ros-humble-launch-ros: '*' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' + ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-image-tools-0.20.3-py310h6fa8c79_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-composition-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 0346ef68701ec02e0e322cfd75daa8e1 - sha256: fef8d366668d5e62756b6b2eb739969ea00f16d1081492a4c29d0b3f920a875b + md5: ea9bec9043838dabea3f9217671133fe + sha256: 7ac39657a116846661d3c3557caf9e73aa9b6c4aa7e6eac86aa7180fec35a038 optional: false category: main - build: py310h6fa8c79_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 165856 - timestamp: 1675832424543 -- name: ros-humble-intra-process-demo - version: 0.20.3 + size: 214147 + timestamp: 1675841887705 +- name: ros-humble-angles + version: 1.15.0 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - py-opencv: '>=4.6.0,<5.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-intra-process-demo-0.20.3-py310h6fa8c79_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-angles-1.15.0-py310ha45506e_3.tar.bz2 hash: - md5: 9ef5d8194848e4949c1a3a2a5e36d031 - sha256: e29bcfa48d36564e2f0ed39a46b20ed0857e78b10d82ce55aeeb1612ea5e6ed8 + md5: 68353461c0aff6f6ebae3af08b510b78 + sha256: 6f0d22a95968d18492f101dd07edd787d863ecda00d939ce02af938be8f0b252 optional: false category: main - build: py310h6fa8c79_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 385278 - timestamp: 1675832218643 -- name: ros-humble-joy - version: 3.1.0 + size: 21943 + timestamp: 1675763050631 +- name: ros-humble-action-tutorials-py + version: 0.20.3 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-sdl2-vendor: '*' + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' - vc: '>=14.2,<15' + ros-humble-action-tutorials-interfaces: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-joy-3.1.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-action-tutorials-py-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 608e237d97ce02955bdfd610ae15c9d4 - sha256: 6d4fecb850d79c4f99479f596f1aba4f63843ad8be939466b2cdd9d2ccec0566 + md5: 4e5e819402806e520302e5d296b51ed5 + sha256: ef1d6577757e74e5f6c5dfa8e0af0f1afc41848ea3433c291d123b5e418d2e8f optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 130790 - timestamp: 1675841225050 -- name: ros-humble-lifecycle + size: 64074 + timestamp: 1675841997577 +- name: ros-humble-action-tutorials-interfaces version: 0.20.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclcpp-lifecycle: '*' - ros-humble-std-msgs: '*' - ros-humble-lifecycle-msgs: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-action-msgs: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-lifecycle-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-action-tutorials-interfaces-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 293c9181fec0aae7b0c4e99af070ea61 - sha256: fc98e55487b6e93ff8bdcb3dc9bc41da0db25ef7a64613b23fb34f413f73880b + md5: 2b9cde91ba955fba1db2893484c824f3 + sha256: 1bad59661ecbcd29285e487fbe46e2f43cbb9ebab37670b12381865a3a7b3042 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 163435 - timestamp: 1675831925354 -- name: ros-humble-logging-demo + size: 128646 + timestamp: 1675832052993 +- name: ros-humble-action-tutorials-cpp version: 0.20.3 manager: conda platform: win-64 @@ -30076,62 +29466,86 @@ package: ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' + ros-humble-rclcpp-action: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ros-humble-action-tutorials-interfaces: '*' ros-humble-rclcpp-components: '*' - ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-logging-demo-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-action-tutorials-cpp-0.20.3-py310ha45506e_3.tar.bz2 hash: - md5: 3ac2fc04455800364f7dc4cb90e8a362 - sha256: 10673730f0266215fd6122be5d155e2b7f57d4d24847e0c1fd8a7a462a122997 + md5: b6c35707266ab78fa342552eab27155f + sha256: 21e0ed1114f654e4c4498be280c17489b2344c332ee901ae7d04ba83342dd251 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 148445 - timestamp: 1675831793919 -- name: ros-humble-pcl-conversions - version: 2.4.0 + size: 85370 + timestamp: 1675842156727 +- name: ros-humble-ros-workspace + version: 1.0.2 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + python: '*' + python_abi: 3.10.* *_cp310 + vs2015_runtime: '>=14.29.30139' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ros-workspace-1.0.2-py310ha45506e_3.tar.bz2 + hash: + md5: 2a74ac9d34c2ac29221cfebf5bfd4a32 + sha256: 388e1e43b50d39a18e5d0ac391a673ec946ade8858a10e47a1dd5c625ca0a9e7 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 25499 + timestamp: 1675720610030 +- name: ros-humble-turtlesim + version: 1.4.2 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp-action: '*' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-ament-index-cpp: '*' + ros-humble-rosidl-default-runtime: '*' ros-humble-std-msgs: '*' + qt-main: '>=5.15.6,<5.16.0a0' ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' + ros-humble-std-srvs: '*' ros-humble-rclcpp: '*' - ros-humble-sensor-msgs: '*' + ros-humble-geometry-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-message-filters: '*' - pcl: '>=1.12.1,<1.12.2.0a0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-pcl-msgs: '*' vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' vs2015_runtime: '>=14.29.30139' - eigen: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pcl-conversions-2.4.0-py310h44ae38f_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-turtlesim-1.4.2-py310ha45506e_3.tar.bz2 hash: - md5: b24fb181abe4ddbe199aa46c19e69340 - sha256: 780427e908670b529e294826419735ccae4c5083e5490228f613c81c9390a7fa + md5: 7a910eb77dddd64a1d0253e23b5d80fe + sha256: ac68d6eacb2b2def5c7782d9e7db38907c17fd57a954556ffe292b1df5ddb765 optional: false category: main - build: py310h44ae38f_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 18346 - timestamp: 1675812773401 -- name: ros-humble-pendulum-msgs - version: 0.20.3 + size: 562463 + timestamp: 1675832157919 +- name: ros-humble-std-msgs + version: 4.2.3 manager: conda platform: win-64 dependencies: @@ -30145,1519 +29559,1633 @@ package: ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pendulum-msgs-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-std-msgs-4.2.3-py310ha45506e_3.tar.bz2 hash: - md5: 475034abd7eb714f0c1225b906685331 - sha256: 4377e506356b4a435a89b840c7198ac61cf9d68c44ad85e32d49ad62b8d295c2 + md5: 82e840dd967b6d2d56cf3b50ad15bddf + sha256: 0f784d93eca0e9482ac207fc4b693974522cfc6bb5f171d7338f23fc4d391313 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 88370 - timestamp: 1675832498219 -- name: ros-humble-quality-of-service-demo-cpp - version: 0.20.3 + size: 272824 + timestamp: 1675791001506 +- name: ros-humble-rclpy + version: 3.3.7 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-std-msgs: '*' + ros-humble-rcl-action: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-rosgraph-msgs: '*' + ros-humble-rpyutils: '*' ucrt: '>=10.0.20348.0' - ros-humble-rcutils: '*' - ros-humble-launch-ros: '*' + ros-humble-rcl-lifecycle: '*' + ros-humble-rcl-logging-interface: '*' ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-sensor-msgs: '*' + ros-humble-ament-index-python: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-unique-identifier-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-example-interfaces: '*' vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' + ros-humble-rmw-implementation: '*' + ros-humble-rcl: '*' + ros-humble-rcl-yaml-param-parser: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-quality-of-service-demo-cpp-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rclpy-3.3.7-py310ha45506e_3.tar.bz2 hash: - md5: b77dfecd0e9aacd6b16a922cbbe8edbb - sha256: 083c8d2ff7fca894dbbd56a4de63cf7462a6da373bc812ee0964e2a1beb05e16 + md5: e4fd99ae93246d32654f16ed0a1c8e0c + sha256: a8bef5d1283a7a12f928ac28d36e150dddf7672678d557a9def8657bcfca9285 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 505966 - timestamp: 1675841651773 -- name: ros-humble-quality-of-service-demo-py - version: 0.20.3 + size: 486237 + timestamp: 1675805264794 +- name: ros-humble-launch-ros + version: 0.19.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-composition-interfaces: '*' + ros-humble-lifecycle-msgs: '*' + ucrt: '>=10.0.20348.0' + pyyaml: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + importlib-metadata: '*' + ros-humble-osrf-pycommon: '*' ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' vc: '>=14.2,<15' - ros-humble-ros-workspace: '*' + numpy: '>=1.21.6,<2.0a0' + ros-humble-launch: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-quality-of-service-demo-py-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-launch-ros-0.19.4-py310ha45506e_3.tar.bz2 hash: - md5: a1b5755acd54596c5fdaf0575f735a16 - sha256: 9b3329461858467e29320f729b77738c411a1eb71b30308148f2863b221ca345 + md5: 991dcc77914f9d6c9df768d5dd5660da + sha256: fd556b8d8fb10624b6b80b23a380a3b9ecdc54816905957079977c67986eacdd optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 93366 - timestamp: 1675832354249 -- name: ros-humble-ros-base - version: 0.10.0 + size: 107330 + timestamp: 1675807420309 +- name: ros-humble-launch + version: 1.0.4 manager: conda platform: win-64 dependencies: - ros-humble-robot-state-publisher: '*' + importlib-metadata: '*' python: '*' python_abi: 3.10.* *_cp310 - vs2015_runtime: '>=14.29.30139' - ros-humble-kdl-parser: '*' - ros-humble-urdf: '*' + ros-humble-osrf-pycommon: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - ros-humble-geometry2: '*' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + lark-parser: '*' + pyyaml: '*' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' - ros-humble-ros-core: '*' - ros-humble-rosbag2: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ros-base-0.10.0-py310ha45506e_3.tar.bz2 + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-launch-1.0.4-py310ha45506e_3.tar.bz2 hash: - md5: 46b16bd8aac2d39c6a2a35464c9d30a4 - sha256: f599de72f222c78864e7257a80e8a78ba90903414fcd3c1f2a3418c65054cf3c + md5: 1d38bd10fa06877eaa328b428b30744a + sha256: 43d07e8d9b1dff7889cb2a2740a3c5fbbbc20aecdd3429f2c91aee6332deb7e4 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 11282 - timestamp: 1675827570571 -- name: ros-humble-rqt-common-plugins - version: 1.2.0 + size: 264624 + timestamp: 1675763075439 +- name: ros-humble-geometry-msgs + version: 4.2.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-plot: '*' - ros-humble-rqt-console: '*' - ros-humble-rqt-graph: '*' - ros-humble-rqt-image-view: '*' - ros-humble-rqt-msg: '*' - ros-humble-rqt-publisher: '*' - ros-humble-rqt-service-caller: '*' - ros-humble-rqt-shell: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - ros-humble-rqt-srv: '*' - ros-humble-rqt-bag: '*' - ros-humble-rqt-topic: '*' - ros-humble-rqt-action: '*' - ros-humble-rqt-reconfigure: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rqt-bag-plugins: '*' - ros-humble-rqt-py-common: '*' - ros-humble-rqt-py-console: '*' vc: '>=14.2,<15' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-common-plugins-1.2.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-geometry-msgs-4.2.3-py310ha45506e_3.tar.bz2 hash: - md5: 3d110bf80523dcf9d232e1df69807b05 - sha256: e6a6312c40cc7cbc8244ab2c4b6a4c43b702a869d6b69799f5d4c1fbd52eaf22 + md5: c6a10d5cb12631c25128a5142aacf548 + sha256: 10fb85750714c8b697924e87cd522e73712be67cd2cad2fe2dc5c7aaf29483a4 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 11788 - timestamp: 1675907806768 -- name: ros-humble-rviz-default-plugins - version: 11.2.5 + size: 278877 + timestamp: 1675793351796 +- name: ros-humble-rclcpp + version: 16.0.3 manager: conda platform: win-64 dependencies: + vs2015_runtime: '>=14.29.30139' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-tf2: '*' - ros-humble-tf2-ros: '*' - ros-humble-urdf: '*' - qt-main: '>=5.15.8,<5.16.0a0' - ros-humble-ignition-math6-vendor: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-rcpputils: '*' + ros-humble-rosgraph-msgs: '*' + ros-humble-tracetools: '*' + ros-humble-rcutils: '*' ucrt: '>=10.0.20348.0' - ros-humble-interactive-markers: '*' - ros-humble-pluginlib: '*' - ros-humble-image-transport: '*' - ros-humble-resource-retriever: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-nav-msgs: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-laser-geometry: '*' - ros-humble-rviz-rendering: '*' - ros-humble-tf2-geometry-msgs: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-rosidl-typesupport-c: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-map-msgs: '*' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rviz-common: '*' - ros-humble-visualization-msgs: '*' - ros-humble-rviz-ogre-vendor: '*' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-default-plugins-11.2.5-py310ha45506e_3.tar.bz2 + numpy: '>=1.21.6,<2.0a0' + ros-humble-rcl: '*' + ros-humble-rcl-yaml-param-parser: '*' + ros-humble-rosidl-typesupport-cpp: '*' + ros-humble-statistics-msgs: '*' + ros-humble-libstatistics-collector: '*' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rclcpp-16.0.3-py310ha45506e_3.tar.bz2 hash: - md5: c0147239c9462e7bf33e4261a4a98c68 - sha256: 2451f44e88558ae34355711030e5e6f20e7092e2992d457d99933eb5cfc3ae39 + md5: 6662f70eaa4d3a8ec41c15a951c98bb2 + sha256: f54b7bede234bb692147eb818c8a1836d2ae54cb0f57a8749104966acfee7993 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 1050299 - timestamp: 1675896639856 -- name: ros-humble-rviz2 - version: 11.2.5 + size: 569586 + timestamp: 1675805061162 +- name: ros-humble-rclcpp-components + version: 16.0.3 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rviz-default-plugins: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-composition-interfaces: '*' ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.8,<5.16.0a0' + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rviz-common: '*' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - ros-humble-rviz-ogre-vendor: '*' + ros-humble-class-loader: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz2-11.2.5-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rclcpp-components-16.0.3-py310ha45506e_3.tar.bz2 hash: - md5: 34336d6653f344a58938f70e752d1ef7 - sha256: b48793a3d652b96c676f2bd69bba952bc63ff20dc2edd189bc8f958990f759c3 + md5: 88d98d3d71b640a4b9a75ec028c6e050 + sha256: 4d615179ef69c35ec6168ed3f4f3c4839b52505b5548050e2f1953ae52e86939 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 25738 - timestamp: 1675900437088 -- name: ros-humble-teleop-twist-joy - version: 2.4.3 + size: 91789 + timestamp: 1675807678183 +- name: ros-humble-sensor-msgs + version: 4.2.3 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ros-humble-joy: '*' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-teleop-twist-joy-2.4.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-sensor-msgs-4.2.3-py310ha45506e_3.tar.bz2 hash: - md5: e05df0f3926b671468b4f86131524853 - sha256: 6101a8c2a750fed288ba1a57477a1b3f37c4d6c041a3a4d61830a1fe1191aeb9 + md5: a18875e4e769e9de782eca5c230322a5 + sha256: f200cbd85146b03c41fab6b6a8cfac9c091a102fcbd118b44548dceb937a0fb0 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 125118 - timestamp: 1675845226483 -- name: ros-humble-teleop-twist-keyboard - version: 2.3.2 + size: 449455 + timestamp: 1675796411500 +- name: ros-humble-rviz-common + version: 11.2.5 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-tf2: '*' + ros-humble-tf2-ros: '*' + ros-humble-std-msgs: '*' + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-urdf: '*' + ucrt: '>=10.0.20348.0' + ros-humble-rviz-rendering: '*' + ros-humble-pluginlib: '*' + ros-humble-resource-retriever: '*' + ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' ros-humble-geometry-msgs: '*' - ros-humble-rclpy: '*' + ros-humble-sensor-msgs: '*' + ros-humble-tf2-geometry-msgs: '*' + ros-humble-yaml-cpp-vendor: '*' + ros-humble-tinyxml2-vendor: '*' + ros-humble-message-filters: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' + vc: '>=14.2,<15' + ros-humble-rviz-ogre-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-teleop-twist-keyboard-2.3.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-common-11.2.5-py310ha45506e_3.tar.bz2 hash: - md5: d7967d8773c549489f76858963988aa9 - sha256: 0b0b86ccbb5666639ae82b5a3e81f6a200d35e55083ca8f703c4e99a8b27fddf + md5: b9c5d948f26ac993192efb35d19027e1 + sha256: e5d37ebd20b3e83fdb12032fe99598fda2927b7d703621d40eeb239e62c3ce36 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 56264 - timestamp: 1675832136696 -- name: ros-humble-topic-monitor - version: 0.20.3 + size: 623558 + timestamp: 1675849031534 +- name: ros-humble-rviz-ogre-vendor + version: 11.2.5 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-std-msgs: '*' - ros2-distro-mutex: 0.3.* humble + libzlib: '>=1.2.13,<1.3.0a0' + freeimage: '>=3.18.0,<3.19.0a0' ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-launch: '*' - ros-humble-launch-ros: '*' ros-humble-ros-workspace: '*' + pugixml: '>=1.11.4,<1.12.0a0' + assimp: '>=5.2.5,<5.2.6.0a0' + freetype: '>=2.12.1,<3.0a0' + ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + zziplib: '>=0.13.69,<0.14.0a0' + numpy: '>=1.21.6,<2.0a0' + xorg-libx11: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-topic-monitor-0.20.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-ogre-vendor-11.2.5-py310hecfa9c1_3.tar.bz2 hash: - md5: eb0af082e19c8b866eb47602f61800e1 - sha256: e9363d72a65b31bbfa331a8309953ff918969f8b4b643769143144dc04410963 + md5: 3c54a9dcebd1a6d3f1abe4410e92fbbb + sha256: 6998b11628a4087939fa7496a095ef63089e65bcd3b095779a9273b2e3fd555a optional: false category: main - build: py310ha45506e_3 + build: py310hecfa9c1_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 84188 - timestamp: 1675832247221 -- name: ros-humble-ament-index-python - version: 1.4.0 + size: 5170502 + timestamp: 1675833882372 +- name: ros-humble-nav-msgs + version: 4.2.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-geometry-msgs: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-index-python-1.4.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-nav-msgs-4.2.3-py310ha45506e_3.tar.bz2 hash: - md5: cdb87a887bfe14d93fe720e5525ab860 - sha256: 9a9aa47123b995c52b7ca69225ac4ecc872ed8ac7c8d3ea63b92ad3963d891ca + md5: 2497bf5dcf216464563985aa8a26d7b7 + sha256: ac0aacdc263bb9a068840e092b242a746b6fa44d5c0417456f3bb1ef6f6aa23e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 61926 - timestamp: 1675762207922 -- name: ros-humble-ament-cmake-core - version: 1.3.3 + size: 194910 + timestamp: 1675795532233 +- name: ros-humble-urdf + version: 2.6.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-package: '*' + ros-humble-urdf-parser-plugin: '*' + ros-humble-tinyxml2-vendor: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' - cmake: '*' numpy: '>=1.21.6,<2.0a0' - catkin_pkg: '*' + ros-humble-urdfdom-headers: '*' + vc: '>=14.2,<15' + ros-humble-pluginlib: '*' + ros-humble-ros-workspace: '*' + ros-humble-urdfdom: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-core-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-urdf-2.6.0-py310ha45506e_3.tar.bz2 hash: - md5: e9c3dcc3f512a129ced17dc698074689 - sha256: dc389f7ac62795a1849e42a6ab553f7e9dab04f626c9d425c9dcbd9943035670 + md5: 1f94a0ede4ce4454ac55665b15febc05 + sha256: d04e38dbf6c84d40cf5eeedfe4c21ca32d3cccac95d11a4661f78c4065c03955 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 32593 - timestamp: 1675720021452 -- name: ros-humble-rosidl-cli - version: 3.1.4 + size: 100108 + timestamp: 1675783393032 +- name: ros-humble-ignition-math6-vendor + version: 0.0.2 manager: conda platform: win-64 dependencies: - importlib-metadata: '*' python: '*' python_abi: 3.10.* *_cp310 - argcomplete: '*' + libignition-math6: '>=6.13.0,<7.0a0' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ros-humble-ignition-cmake2-vendor: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-cli-3.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ignition-math6-vendor-0.0.2-py310ha45506e_3.tar.bz2 hash: - md5: 628ea51c0386772058fd2a2c9154777a - sha256: 1e95aebe068cb0159f04182cb06d8310cd8245a831e8f4abd5646b4d253aafd8 + md5: 048a7d6c7e8680fc419afc93a0e75a81 + sha256: 8556a889d94b07bc5cfc02fd0665a74c1857e60289a23c2d25605f7c79ae6bca optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 75206 - timestamp: 1675763419351 -- name: ros-humble-rosidl-typesupport-interface - version: 3.1.4 + size: 7339 + timestamp: 1675845200451 +- name: ros-humble-image-transport + version: 3.1.5 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-message-filters: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' + ros-humble-pluginlib: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-interface-3.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-image-transport-3.1.5-py310ha45506e_3.tar.bz2 hash: - md5: 9cdd550d90d2e2cd6077938e05affc5c - sha256: 9c50fafa59337013c2b997bd22b2f874b2cde8b94fb9e9fa46bf4b9926381b3d + md5: 169faa2addd3dbcb8f218c0fb0b35415 + sha256: 32c60027fa0d113dec2ffc099066687cd66f7304a5ae2ff9c9cf03ed7a2ca2a6 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 11671 - timestamp: 1675770348345 -- name: ros-humble-rpyutils - version: 0.2.1 + size: 406190 + timestamp: 1675813095890 +- name: ros-humble-interactive-markers + version: 2.3.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-tf2: '*' + ucrt: '>=10.0.20348.0' + ros-humble-rmw: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' + ros-humble-tf2-geometry-msgs: '*' + ros-humble-rclcpp: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' + ros-humble-visualization-msgs: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rpyutils-0.2.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-interactive-markers-2.3.2-py310ha45506e_3.tar.bz2 hash: - md5: f9f984866dcd95e99f67440fe715046f - sha256: b7e55fb25afce6a53c0d4f2a3dd29e7d7d05ec46cba38e106a44ca59ed592de3 + md5: 37e7b7956b835457151bd57aa3361e19 + sha256: 3d17099036b100fc903823c4029d798e68c51f62fa37825a988fee83b1ee717e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 12109 - timestamp: 1675763481288 -- name: ros-humble-rosidl-cmake - version: 3.1.4 + size: 196530 + timestamp: 1675841701420 +- name: ros-humble-laser-geometry + version: 2.4.0 manager: conda platform: win-64 dependencies: - empy: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' + ros-humble-tf2: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros-humble-sensor-msgs: '*' + ros-humble-sensor-msgs-py: '*' + ros-humble-eigen3-cmake-module: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-rosidl-parser: '*' numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-adapter: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-cmake-3.1.4-py310ha45506e_3.tar.bz2 + eigen: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-laser-geometry-2.4.0-py310ha45506e_3.tar.bz2 hash: - md5: bfc90c07882de6c1038182fe1ba6bf3a - sha256: e0efe236bcbb644ffcd1f68c39a65748a9d458824e32938ea58a19909d1fae4a + md5: e057febc2c017482433f36f77c74d9c9 + sha256: a7149d31051e4a84f95e580e25859ebb64ab4ef2ba56f8310738706b8adc67dc optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 26118 - timestamp: 1675775468056 -- name: ros-humble-python-cmake-module - version: 0.10.0 + size: 41718 + timestamp: 1675808111649 +- name: ros-humble-map-msgs + version: 2.1.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-nav-msgs: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-sensor-msgs: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-python-cmake-module-0.10.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-map-msgs-2.1.0-py310ha45506e_3.tar.bz2 hash: - md5: 19a2865c69deccd4dbe88a9795b62788 - sha256: bce807a7034a3196e228c5069029bc6bb090f181b425d159295fbf9b0bcc5a74 + md5: d314e0791e74ed71b64456f1390b4f27 + sha256: 49b5c56d29c0570dfa298a9474719c90cf357e04e34d24b0d280ffd163f7a0e3 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 11372 - timestamp: 1675770366525 -- name: ros-humble-rosidl-generator-c - version: 3.1.4 + size: 197633 + timestamp: 1675834163029 +- name: ros-humble-pluginlib + version: 5.1.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' - ros-humble-rcutils: '*' - ros-humble-rosidl-parser: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-typesupport-interface: '*' - ucrt: '>=10.0.20348.0' - ros-humble-rosidl-cmake: '*' - vc: '>=14.2,<15' + ros-humble-ament-index-cpp: '*' + ros-humble-rcpputils: '*' + ros-humble-tinyxml2-vendor: '*' ros2-distro-mutex: 0.3.* humble + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ros-humble-rcutils: '*' + vc: '>=14.2,<15' + ros-humble-ros-workspace: '*' + ros-humble-class-loader: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-generator-c-3.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pluginlib-5.1.0-py310ha45506e_3.tar.bz2 hash: - md5: b2747d24744af445c82bc7e14d429682 - sha256: a7372cb76f35ecdced6d2bbeaf9d0ab283f4340b0b03f2018971f8c324049527 + md5: c15168ebb7bc0f72fd489f4fdf20665f + sha256: 05a139edefef22e4fb50090e47311bd5d5f87027479ff4a66e4ec2ac83408ebc optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 57658 - timestamp: 1675779344329 -- name: ros-humble-rosidl-parser - version: 3.1.4 + size: 27076 + timestamp: 1675781619444 +- name: ros-humble-resource-retriever + version: 3.1.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-ament-index-cpp: '*' + ros-humble-libcurl-vendor: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - lark-parser: '*' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-adapter: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-parser-3.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-resource-retriever-3.1.1-py310ha45506e_3.tar.bz2 hash: - md5: e750305bd2e5d326366d91a80a164672 - sha256: 58bf61824add724a9d1fddb1c0170ccdc432f566b8d34aa0953305a42abb0bd3 + md5: 73d37184c568acc959fd8a9284788cca + sha256: c15cffde7da83dfef6a3cafe32493ea134baa1cfbd97182b272a20cb37dd59b1 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 53188 - timestamp: 1675772812422 -- name: ros-humble-fastcdr - version: 1.0.24 + size: 30665 + timestamp: 1675841696588 +- name: ros-humble-rviz-rendering + version: 11.2.5 manager: conda platform: win-64 dependencies: + glew: '>=2.1.0,<2.2.0a0' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-ament-index-cpp: '*' + qt-main: '>=5.15.6,<5.16.0a0' + ucrt: '>=10.0.20348.0' + ros-humble-rviz-assimp-vendor: '*' + ros-humble-ros-workspace: '*' + ros-humble-resource-retriever: '*' + ros-humble-eigen3-cmake-module: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' + ros-humble-rviz-ogre-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-fastcdr-1.0.24-py310ha45506e_3.tar.bz2 + eigen: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-rendering-11.2.5-py310hef9c4db_3.tar.bz2 hash: - md5: 0a1224155cdd5732d37910efc607bd5e - sha256: dda3a476299b7a20d991340db742f7c3c7bb10013c6e0cd3c5fa9839abffc448 + md5: 023e4023629a7cbcad02474febebe76f + sha256: 44b796c2ce3e0dd5c33ed0833649fb82648c1a412f9b4a438ebc595b88f1cda4 optional: false category: main - build: py310ha45506e_3 + build: py310hef9c4db_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 66926 - timestamp: 1675722374689 -- name: ros-humble-fastrtps-cmake-module - version: 2.2.0 + size: 940007 + timestamp: 1675845100018 +- name: ros-humble-tf2 + version: 0.25.2 manager: conda platform: win-64 dependencies: + vs2015_runtime: '>=14.29.30139' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-geometry-msgs: '*' + ros-humble-console-bridge-vendor: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ros-humble-rcutils: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-fastrtps-cmake-module-2.2.0-py310ha45506e_3.tar.bz2 + console_bridge: '>=1.0.2,<1.1.0a0' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-0.25.2-py310haec4aa5_3.tar.bz2 hash: - md5: e62a5db3a31f077c0de7d553ee6f27a7 - sha256: a37d049712dd47d6ed3b64e24c2ce9015c94407d078e51028f286a7e5fddba37 + md5: fdd265c7c3af13c2ca446f62295c2eed + sha256: 06a59faedeceb7478b38779ab1a0ffb28c9b2e890ca8f8ee7b239dd35fecd713 optional: false category: main - build: py310ha45506e_3 + build: py310haec4aa5_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10334 - timestamp: 1675770430577 -- name: ros-humble-ament-cmake-ros - version: 0.10.0 + size: 108962 + timestamp: 1675796198002 +- name: ros-humble-tf2-geometry-msgs + version: 0.25.2 manager: conda platform: win-64 dependencies: - ros-humble-domain-coordinator: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' - ros-humble-ament-cmake-pytest: '*' + ros-humble-geometry-msgs: '*' + ros-humble-tf2: '*' + ros-humble-orocos-kdl-vendor: '*' + ros-humble-tf2-ros: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-cmake-gmock: '*' - ros-humble-ament-cmake-gtest: '*' + ros-humble-tf2-ros-py: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-ros-0.10.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-geometry-msgs-0.25.2-py310ha45506e_3.tar.bz2 hash: - md5: aef4010801839e4d420e0b4668c2194b - sha256: ae23f8157b7dd22f4a7d2ed6b6e2204767f84d7d997393d371dad662e5a03d76 + md5: a017c2b5ad1f2e1fcbe0bddbe984a227 + sha256: 2db9be9e542c3ec23018dc968f55da5e329038be84dbc30b02c3dd38679e023c optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 13194 - timestamp: 1675771671658 -- name: ros-humble-rosidl-generator-cpp - version: 3.1.4 + size: 30415 + timestamp: 1675815072538 +- name: ros-humble-tf2-ros + version: 0.25.2 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp-action: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' - ros-humble-rosidl-parser: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-tf2: '*' ucrt: '>=10.0.20348.0' - ros-humble-ament-index-python: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-generator-c: '*' - ros-humble-rosidl-cmake: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' + ros-humble-tf2-msgs: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-message-filters: '*' vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' + ros-humble-rclcpp-components: '*' vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-generator-cpp-3.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-ros-0.25.2-py310ha45506e_3.tar.bz2 hash: - md5: f7c2c417c0b0ef99c7ba08353e723b90 - sha256: 1a0898409ea984c153ba48de4fbdd7cc30d25164641f2d92ca02ec05666021e4 + md5: 369762faeab7c8e0d31da042e6528639 + sha256: f8d346603f6ff9c903ed9295e11c87fabffd89774fb29bb6c3660003cfe56784 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 34826 - timestamp: 1675780331163 -- name: ros-humble-unique-identifier-msgs - version: 2.2.1 + size: 301670 + timestamp: 1675813570708 +- name: ros-humble-visualization-msgs + version: 4.2.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-geometry-msgs: '*' ros-humble-rosidl-default-runtime: '*' + ros-humble-sensor-msgs: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-unique-identifier-msgs-2.2.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-visualization-msgs-4.2.3-py310ha45506e_3.tar.bz2 hash: - md5: 639c278b3d1682c952ce87c571d099e7 - sha256: fb176366e1488a96a315ca03ea012ba0747830f446fa3adf9cdfc736c81dcd03 + md5: 0fe9e6530c8b47dbc9df63c396165fe4 + sha256: 0649fcf037fe0bbdfff876ec45f1ffdd210bfd401bacaa8d0a2cd945503eee59 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 65048 - timestamp: 1675787844147 -- name: ros-humble-ament-cmake-export-definitions - version: 1.3.3 + size: 282336 + timestamp: 1675798347684 +- name: ros-humble-rqt-action + version: 2.0.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' + ros-humble-rqt-msg: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-python-qt-binding: '*' + ros-humble-rqt-py-common: '*' ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-definitions-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-action-2.0.1-py310ha45506e_3.tar.bz2 hash: - md5: 41cc5f60e84b0cce50117bf1d3ace804 - sha256: 872cddb3702cef17f4e31af6f66bfdb935efeca06f5e8864e9adc2faa81aa98a + md5: d2699e9d310e7ff158d0e71ac1f37d22 + sha256: 1aa263cf4143bc482f6e6384f1728e72ea16e1e343296d590e0726035e8e14a7 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10128 - timestamp: 1675721624236 -- name: ros-humble-ament-cmake-export-dependencies - version: 1.3.3 + size: 54382 + timestamp: 1675902969002 +- name: ros-humble-rqt-bag + version: 1.1.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-cmake-libraries: '*' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-python-qt-binding: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-rosbag2-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-dependencies-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-bag-1.1.4-py310ha45506e_3.tar.bz2 hash: - md5: b61ed756f3b0e231ed0416d52a7f6384 - sha256: 57aa3cb42b8eabecf70cf3928a967837f82abe72e87fef5fbdc2280e2366f910 + md5: 93ccafcbd64f037499f72c35a0a00ca8 + sha256: 296f0b2f280dde83fedfab6831fc55cd76945b0873adbe6e2ea283fc742d3327 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10947 - timestamp: 1675732999411 -- name: ros-humble-ament-cmake-export-include-directories - version: 1.3.3 + size: 148296 + timestamp: 1675896387501 +- name: ros-humble-rqt-bag-plugins + version: 1.1.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rqt-plot: '*' + ros-humble-rqt-gui: '*' + ros-humble-std-msgs: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + pycairo: '*' + ros-humble-rqt-bag: '*' + ros-humble-geometry-msgs: '*' + ros-humble-sensor-msgs: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' + pillow: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-rosbag2: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-include-directories-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-bag-plugins-1.1.4-py310ha45506e_3.tar.bz2 hash: - md5: 3e62d13144091d9ff4d219171115c39b - sha256: e5dd413f0ed25e17b4a468b070e311df67340f52470a6e0eae865ed59bfa1817 + md5: 345db5492c47cafce3640d41d698bf8a + sha256: 75aad522739458ff4a4a4be96a6d34c44aebe6c4a0760df34cfb1090eccbae66 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10483 - timestamp: 1675721557148 -- name: ros-humble-ament-cmake-export-interfaces - version: 1.3.3 + size: 45368 + timestamp: 1675899475691 +- name: ros-humble-rqt-console + version: 2.0.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-export-libraries: '*' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' + ros-humble-rcl-interfaces: '*' + ros-humble-rqt-gui: '*' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-interfaces-1.3.3-py310ha45506e_3.tar.bz2 - hash: - md5: 99ec299577dffe29a2bbbdd3ba4db93e - sha256: d02bc42c1932ca2da26cc4180fb97f80fd4e63fb0e2fb03b0b27a780f23cbf60 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 10590 - timestamp: 1675734156011 -- name: ros-humble-ament-cmake-export-libraries - version: 1.3.3 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' + ros-humble-python-qt-binding: '*' + ros-humble-rqt-py-common: '*' + ros-humble-rqt-gui-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-libraries-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-console-2.0.2-py310ha45506e_3.tar.bz2 hash: - md5: 59f5b0ce10bf01df205d486adba52cd6 - sha256: c1d432054fec3d390937664b024e311dcb23ba096031edf7da0ad3c9735b89d1 + md5: c993b0af3e7de52408da99294515d78a + sha256: 0a392f2124a27fbe346c30800326ce24fa8a2cb3696e6e21669e14a2bfa45cb6 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 12148 - timestamp: 1675721356499 -- name: ros-humble-ament-cmake-export-link-flags - version: 1.3.3 + size: 136277 + timestamp: 1675896965917 +- name: ros-humble-rqt-graph + version: 1.3.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-qt-dotgraph: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-python-qt-binding: '*' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-link-flags-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-graph-1.3.0-py310ha45506e_3.tar.bz2 hash: - md5: 7a2f3a62d0c3ebe1dee3608a6a597629 - sha256: e61e532b3c5224815931c1d674d76f26fb7bdf38f69d0973fdcb7d4ebc9e7d92 + md5: 43bc8a61a1c778a6b1d2d119aa5ac2f0 + sha256: 53920768051ddb82ad3ba651c0e2c83c5ae774d12058ec428e61f097fb5e57f1 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10057 - timestamp: 1675721489442 -- name: ros-humble-ament-cmake-export-targets - version: 1.3.3 + size: 121015 + timestamp: 1675896122817 +- name: ros-humble-rqt-image-view + version: 1.2.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-export-libraries: '*' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' + ros-humble-rqt-gui-cpp: '*' + ros-humble-rqt-gui: '*' + qt-main: '>=5.15.8,<5.16.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' + ros-humble-qt-gui-cpp: '*' + ros-humble-image-transport: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' + ros-humble-sensor-msgs: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-cv-bridge: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-targets-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-image-view-1.2.0-py310ha45506e_3.tar.bz2 hash: - md5: 6fabdb80dc7c99f73163271b46f3ce16 - sha256: 853a144f3b84a0560bd3fb2700aecf9752dc770cbb84018585dcc3711adb75e0 + md5: ec33ed55d01631d843ba854cdc4c1d1a + sha256: aca7b9e2a808e2245d83b2bcca4dfcfbf5d62560db180f3e34d9c659d439ac93 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10572 - timestamp: 1675734095011 -- name: ros-humble-ament-cmake-gen-version-h - version: 1.3.3 + size: 11183 + timestamp: 1675899304128 +- name: ros-humble-rqt-msg + version: 1.2.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rqt-console: '*' + ros-humble-rqt-gui: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' + ros-humble-python-qt-binding: '*' + catkin_pkg: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-rqt-py-common: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-gen-version-h-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-msg-1.2.0-py310ha45506e_3.tar.bz2 hash: - md5: c0e8748a5f69b897082648fd3a34f953 - sha256: 73dc2a6f15450ffaa73a6f81ef0de61d7ef4b90e38ed2fc995c98ecf71097d8e + md5: 6e56df1e13d30a847ca2cf8d54cf7835 + sha256: 4abbf0251b9dacd74ef8b91c6b9312a1ebfec1dcac271775fe42b47f6d724cbb optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 12469 - timestamp: 1675759761399 -- name: ros-humble-ament-cmake-libraries - version: 1.3.3 + size: 67768 + timestamp: 1675899101602 +- name: ros-humble-rqt-plot + version: 1.1.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rqt-gui: '*' + ros-humble-std-msgs: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + ros-humble-qt-gui-py-common: '*' + matplotlib-base: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' + ros-humble-python-qt-binding: '*' + catkin_pkg: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-rqt-py-common: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-libraries-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-plot-1.1.2-py310ha45506e_3.tar.bz2 hash: - md5: cbb7267695bf614ee0bdcae05e06c6a0 - sha256: 1c230438cf34e3fd7b6678fba7f89064eefaefc51c61a48d2293f7e8d8c1b63b + md5: ab29dacb3545e0fd77c8c9a6c4a121b6 + sha256: 56377513f1bb565ba23d13c125d44871e73ed5f8a82b9b735bbcfbbfc044e119 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10364 - timestamp: 1675721808618 -- name: ros-humble-ament-cmake-python - version: 1.3.3 + size: 118963 + timestamp: 1675896324413 +- name: ros-humble-rqt-publisher + version: 1.5.0 manager: conda platform: win-64 dependencies: + vc: '>=14.2,<15' python: '*' python_abi: 3.10.* *_cp310 + vs2015_runtime: '>=14.29.30139' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-python-qt-binding: '*' + catkin_pkg: '*' ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-python-1.3.3-py310ha45506e_3.tar.bz2 + ros-humble-rqt-gui-py: '*' + ros-humble-qt-gui-py-common: '*' + ros-humble-rqt-py-common: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-publisher-1.5.0-py310ha45506e_3.tar.bz2 hash: - md5: 4fd7a49510f0a6b1ae1b58832dea62d3 - sha256: 46d999fc186fbc58d6ef65d18e9d254a6407715e8770948bdf9e796434fea2c3 + md5: 0109a913dd60e9a8f972682b98a43ee6 + sha256: 1b11b2df3dcc381a379436d2746a9ad255cc51137f34ca2dd84d8e8b3521d402 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 12422 - timestamp: 1675721671743 -- name: ros-humble-ament-cmake-target-dependencies - version: 1.3.3 + size: 84181 + timestamp: 1675896039512 +- name: ros-humble-rqt-py-common + version: 1.1.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-ament-cmake-include-directories: '*' - ros-humble-ament-cmake-core: '*' + qt-main: '>=5.15.6,<5.16.0a0' + ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-cmake-libraries: '*' + ros-humble-python-qt-binding: '*' ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-target-dependencies-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-py-common-1.1.4-py310ha45506e_3.tar.bz2 hash: - md5: b4c30e41ee93f2f3772d386e994ef9aa - sha256: 356ff78a634d8fe729bf0d71bfd6192ee37c21ec138ad5a3d4c11beac72b8fca + md5: 3a7bd0ff1520a44e4e47e6f7886ebca4 + sha256: 0ad38b535f900843909689147c2362343bb4106ce512df93f60c32edeeb510e7 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 11529 - timestamp: 1675734036273 -- name: ros-humble-ament-cmake-test - version: 1.3.3 + size: 63964 + timestamp: 1675848330809 +- name: ros-humble-rqt-py-console + version: 1.0.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' + ros-humble-rqt-gui: '*' + ros-humble-qt-gui: '*' ucrt: '>=10.0.20348.0' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' + ros-humble-qt-gui-py-common: '*' + ros-humble-rclpy: '*' + vc: '>=14.2,<15' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + ros-humble-python-qt-binding: '*' + ros-humble-rqt-gui-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-test-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-py-console-1.0.2-py310ha45506e_3.tar.bz2 hash: - md5: 80c8f06fd60f2e473ebda9cdc4c80380 - sha256: fbf2064da9f063eafe90626b3e89c776a55c41c03a64306d6c402b73243cdef1 + md5: e6981ec3a273ab6fae7d5fd21db1c9e0 + sha256: 92cb71a08d1fa4fb1005c56e2f673a91ef4d074c7c7186c3c2e7676807ab04f0 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 28248 - timestamp: 1675733979298 -- name: ros-humble-ament-cmake-version - version: 1.3.3 + size: 62512 + timestamp: 1675895968953 +- name: ros-humble-rqt-reconfigure + version: 1.1.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rqt-console: '*' + ros-humble-rqt-gui: '*' + ucrt: '>=10.0.20348.0' + pyyaml: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-qt-gui-py-common: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' + ros-humble-rqt-py-common: '*' + ros-humble-python-qt-binding: '*' + ros-humble-rqt-gui-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-version-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-reconfigure-1.1.1-py310ha45506e_3.tar.bz2 hash: - md5: 3c9de2f62507b3e093cf09d67b6bfd4c - sha256: 1a77926196c96a8018a960c72c8d7cc9ca21bba90ea7dcfa3fd03229746dd1f4 + md5: 2813d1418624c2f45081f9ddf55d4836 + sha256: 6a389ac84285efb76120e34ce536e2fffdf27d702905f448b32a2736ec590ade optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9906 - timestamp: 1675721421080 -- name: ros-humble-rcl-logging-interface - version: 2.3.1 + size: 122860 + timestamp: 1675899405209 +- name: ros-humble-rqt-service-caller + version: 1.0.5 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' + ros-humble-rqt-py-common: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-logging-interface-2.3.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-service-caller-1.0.5-py310ha45506e_3.tar.bz2 hash: - md5: 4a285cc6858d10bbead93c7f13c0f47e - sha256: 812b2c57a62b405c62e5704f143002c26d68e962ae91abfd36ecdb6258695161 + md5: 79e89beccf551895412fef4448ac0719 + sha256: 57c079bf89ba44aa13f532f3b97d26efb9f436908e55eb56866b0419b6fd43d2 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 20242 - timestamp: 1675779160190 -- name: ros-humble-rmw-implementation - version: 2.8.2 + size: 71929 + timestamp: 1675896700601 +- name: ros-humble-rqt-shell + version: 1.0.2 manager: conda platform: win-64 dependencies: + vc: '>=14.2,<15' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-rcpputils: '*' - ros-humble-rmw-implementation-cmake: '*' - ucrt: '>=10.0.20348.0' - ros-humble-rcutils: '*' - ros-humble-ros-workspace: '*' - ros-humble-rmw-connextdds: '*' - ros-humble-rmw-fastrtps-cpp: '*' + vs2015_runtime: '>=14.29.30139' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-rmw-fastrtps-dynamic-cpp: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-implementation-2.8.2-py310ha45506e_3.tar.bz2 + ros-humble-python-qt-binding: '*' + catkin_pkg: '*' + ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + ros-humble-qt-gui-py-common: '*' + ucrt: '>=10.0.20348.0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-shell-1.0.2-py310ha45506e_3.tar.bz2 hash: - md5: e87ca04a74ca9d2d905d0681ffa068f2 - sha256: 480cf61ae2d948e4fea1580a83c03542ae5adc287374b7cbe9e79875f77a7e5d + md5: 970a1dccbdb6f98a034e4b3753a7d65a + sha256: bce757bc802d09cf890f5d0667e71002a6a636963bc94f6e96c449aaf52bc7d8 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 37706 - timestamp: 1675798113655 -- name: ros-humble-rcl-logging-spdlog - version: 2.3.1 + size: 68305 + timestamp: 1675896589640 +- name: ros-humble-rqt-srv + version: 1.0.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-spdlog-vendor: '*' + ros-humble-rclpy: '*' + ros-humble-rqt-msg: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcl-logging-interface: '*' - ros-humble-rcutils: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' vs2015_runtime: '>=14.29.30139' - spdlog: '>=1.11.0,<1.12.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-logging-spdlog-2.3.1-py310h5cedc13_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-srv-1.0.3-py310ha45506e_3.tar.bz2 hash: - md5: ced0ae509a1cc3c58681c4f457f18abe - sha256: ae21607d1dcfc41548bccf707ecef6e1dd81ef76be0bef58423695d027425fcd + md5: 7e7a476bfdbaac41d881e06aa24ffdde + sha256: b9237e8ff0b8406589b4cd8b1217dea828c141a06b005e451792f0c80dee896f optional: false category: main - build: py310h5cedc13_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 24300 - timestamp: 1675781558083 -- name: ros-humble-libyaml-vendor - version: 1.2.2 + size: 54389 + timestamp: 1675902892776 +- name: ros-humble-rqt-topic + version: 1.5.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - yaml: '>=0.2.5,<0.3.0a0' + ros-humble-python-qt-binding: '*' + ros-humble-rqt-py-common: '*' ros-humble-ros-workspace: '*' + ros-humble-rqt-gui-py: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - yaml-cpp: '>=0.7.0,<0.8.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-libyaml-vendor-1.2.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-topic-1.5.0-py310ha45506e_3.tar.bz2 hash: - md5: cabebf1bf2f55be3f149a6211146bb9b - sha256: 47a19974117dc0cbe9a173e7d501144b41ba448eaab226278bc9bbd73ed55bd2 + md5: 4074054dd5c004923c91d4369c8ce2e0 + sha256: 3135f07f1695ae7ac0193aad817c4e93ef8df7eb6056c3ff869c23793fcabb1d optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 12236 - timestamp: 1675779606021 -- name: ros-humble-rclcpp-components - version: 16.0.3 + size: 78027 + timestamp: 1675896467771 +- name: ros-humble-robot-state-publisher + version: 3.0.2 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-composition-interfaces: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-tf2-ros: '*' + ros-humble-kdl-parser: '*' + ros-humble-std-msgs: '*' + ros-humble-urdf: '*' + ucrt: '>=10.0.20348.0' + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros-humble-geometry-msgs: '*' + ros-humble-sensor-msgs: '*' + ros-humble-orocos-kdl-vendor: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' - ros-humble-class-loader: '*' + ros-humble-rclcpp-components: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rclcpp-components-16.0.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-robot-state-publisher-3.0.2-py310ha45506e_3.tar.bz2 hash: - md5: 88d98d3d71b640a4b9a75ec028c6e050 - sha256: 4d615179ef69c35ec6168ed3f4f3c4839b52505b5548050e2f1953ae52e86939 + md5: 5c4cf4170084bf84ef493c8f4facf3b5 + sha256: a65c314556806d53ca91ef8a1e7453a15cc0f49ded149e94aaf34265b437baae optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 91789 - timestamp: 1675807678183 -- name: ros-humble-rclpy - version: 3.3.7 + size: 164986 + timestamp: 1675815633141 +- name: ros-humble-geometry2 + version: 0.25.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcl-action: '*' - ros-humble-rcl-interfaces: '*' - ros-humble-rosgraph-msgs: '*' - ros-humble-rpyutils: '*' + ros-humble-tf2: '*' + ros-humble-tf2-kdl: '*' + ros-humble-tf2-ros: '*' + ros-humble-tf2-py: '*' + ros-humble-tf2-sensor-msgs: '*' + ros-humble-tf2-tools: '*' ucrt: '>=10.0.20348.0' - ros-humble-rcl-lifecycle: '*' - ros-humble-rcl-logging-interface: '*' - ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-ament-index-python: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-unique-identifier-msgs: '*' + ros-humble-tf2-bullet: '*' + ros-humble-tf2-geometry-msgs: '*' + ros-humble-tf2-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' - ros-humble-rmw-implementation: '*' - ros-humble-rcl: '*' - ros-humble-rcl-yaml-param-parser: '*' + ros-humble-tf2-eigen-kdl: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rclpy-3.3.7-py310ha45506e_3.tar.bz2 + ros-humble-tf2-eigen: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-geometry2-0.25.2-py310ha45506e_3.tar.bz2 hash: - md5: e4fd99ae93246d32654f16ed0a1c8e0c - sha256: a8bef5d1283a7a12f928ac28d36e150dddf7672678d557a9def8657bcfca9285 + md5: ecabfca8101c87dfd53c0950bc843ede + sha256: bc5acc11eb51979316c5f141c106ac3cc14a3b6783aa98d2fdd72e3da13ca6f2 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 486237 - timestamp: 1675805264794 -- name: ros-humble-example-interfaces - version: 0.9.3 + size: 10615 + timestamp: 1675817950510 +- name: ros-humble-kdl-parser + version: 2.6.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' + ros-humble-orocos-kdl-vendor: '*' + ros-humble-urdf: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-action-msgs: '*' + ros-humble-rcutils: '*' + ros-humble-urdfdom-headers: '*' ros-humble-ros-workspace: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-example-interfaces-0.9.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-kdl-parser-2.6.4-py310ha45506e_3.tar.bz2 hash: - md5: 2fd044aca67f9e0464c00529b2829112 - sha256: 6ff1f8dbb9e28c91e52cc9e5fa1fba85b6bfa9c6b31cf663244b7573a00c13cf + md5: b0300e66e95096da09092f44df3fb281 + sha256: f753ebdae97931109820f8bbb4454adaad1eb445062d8c37a932858a01c2a644 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 362274 - timestamp: 1675831872102 -- name: ros-humble-launch-ros - version: 0.19.4 + size: 43216 + timestamp: 1675783624265 +- name: ros-humble-ros-core + version: 0.10.0 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp-action: '*' python: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-ament-lint-auto: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-ament-cmake-gtest: '*' + ros-humble-launch-testing: '*' + ros-humble-ament-cmake-ros: '*' + ros-humble-launch-xml: '*' + ros-humble-ros-workspace: '*' + ros-humble-rclcpp: '*' + ros-humble-sros2: '*' + ros-humble-rclcpp-lifecycle: '*' + ros-humble-rclpy: '*' + vc: '>=14.2,<15' + ros-humble-ros2launch: '*' + ros-humble-rosidl-default-generators: '*' + ros-humble-launch-testing-ament-cmake: '*' + ros-humble-launch-testing-ros: '*' + ros-humble-launch-yaml: '*' python_abi: 3.10.* *_cp310 - ros-humble-composition-interfaces: '*' - ros-humble-lifecycle-msgs: '*' + ros-humble-sros2-cmake: '*' + ros-humble-ament-cmake-pytest: '*' ucrt: '>=10.0.20348.0' - pyyaml: '*' + ros-humble-rcl-lifecycle: '*' ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - importlib-metadata: '*' - ros-humble-osrf-pycommon: '*' - ros-humble-rclpy: '*' + ros-humble-launch-ros: '*' + ros-humble-pluginlib: '*' + ros-humble-ros-environment: '*' + ros-humble-ament-lint-common: '*' + ros-humble-ament-cmake-auto: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' + ros-humble-ament-cmake-gmock: '*' ros-humble-launch: '*' + ros-humble-ros2cli-common-extensions: '*' + ros-humble-class-loader: '*' + ros-humble-common-interfaces: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-launch-ros-0.19.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ros-core-0.10.0-py310ha45506e_3.tar.bz2 hash: - md5: 991dcc77914f9d6c9df768d5dd5660da - sha256: fd556b8d8fb10624b6b80b23a380a3b9ecdc54816905957079977c67986eacdd + md5: 1bb69be679f84ca79b8fc81b2db4a2d5 + sha256: 07f51b262d72a1367b3823e3175e9d4f9ea27f157ddf5f169b6ff54c6c460f58 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 107330 - timestamp: 1675807420309 -- name: ros-humble-launch-xml - version: 1.0.4 + size: 10823 + timestamp: 1675826076240 +- name: ros-humble-rosbag2 + version: 0.15.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-ros2bag: '*' + ros-humble-rosbag2-compression: '*' + ros-humble-rosbag2-storage-default-plugins: '*' + ros-humble-rosbag2-compression-zstd: '*' + ucrt: '>=10.0.20348.0' + ros-humble-shared-queues-vendor: '*' + ros-humble-rosbag2-transport: '*' + ros-humble-ros-workspace: '*' + ros-humble-sqlite3-vendor: '*' + ros-humble-rosbag2-storage: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-rosbag2-cpp: '*' vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-launch: '*' - ros-humble-ros-workspace: '*' + ros-humble-rosbag2-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-launch-xml-1.0.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosbag2-0.15.4-py310ha45506e_3.tar.bz2 hash: - md5: 1a581331e2943300f799bac549d8dd54 - sha256: 39378347c9ffb04dfa827455c35b4a5b338094899527721e4a7f362fbf4d5f49 + md5: 08f62014f90d2db5afc5ab25e3d3521a + sha256: d5fb811435c9e35f0e66ff646be1320880ca35d766a621e73198e50a50c8b122 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 16313 - timestamp: 1675765329569 -- name: ros-humble-rmw-fastrtps-cpp - version: 6.2.2 + size: 10263 + timestamp: 1675827446986 +- name: ros-humble-rcutils + version: 5.1.2 manager: conda platform: win-64 dependencies: - ros-humble-fastrtps: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rmw-fastrtps-shared-cpp: '*' - ros-humble-rcutils: '*' - ros-humble-fastcdr: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros-humble-tracetools: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rmw-dds-common: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ament-cmake: '*' - ros-humble-rosidl-cmake: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-fastrtps-cmake-module: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-fastrtps-cpp-6.2.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcutils-5.1.2-py310ha45506e_3.tar.bz2 hash: - md5: 989c4a257f458ccd62e6437d3a0135c3 - sha256: d8e7b6aa6bb9e9e3d53043ec6a542e4bd8a9e93142a011f60f52c1fb5833c94b + md5: 0cd02d38bba6f614e3ac20cc42ad9bee + sha256: fe39dee68592445a7e0ebc7160f95a57d1789746e81d8987802c0dff99722f17 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 137632 - timestamp: 1675796102187 -- name: ros-humble-image-geometry - version: 3.2.1 + size: 102944 + timestamp: 1675775406057 +- name: ros-humble-rmw + version: 6.1.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - py-opencv: '>=4.6.0,<5.0a0' + ros-humble-rcutils: '*' + ros-humble-rosidl-runtime-c: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-image-geometry-3.2.1-py310h6fa8c79_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-6.1.1-py310ha45506e_3.tar.bz2 hash: - md5: a0f3b5bef3798e5b91971c7e7081d1c0 - sha256: 3813d6debf839647d3ff5e934569f212fdd7dede98efe905747d8ab2b68b7d03 + md5: 9952d5b87489fecc8508d9f55b53f646 + sha256: 46d04ff0605e5f0edcb829edb93e71ba1c6446cf13ae7d66e7c5e424f76a0e80 optional: false category: main - build: py310h6fa8c79_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 50795 - timestamp: 1675798637307 -- name: ros-humble-sensor-msgs - version: 4.2.3 + size: 75103 + timestamp: 1675779427823 +- name: ros-humble-example-interfaces + version: 0.9.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' - ros-humble-builtin-interfaces: '*' + ros-humble-action-msgs: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-sensor-msgs-4.2.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-example-interfaces-0.9.3-py310ha45506e_3.tar.bz2 hash: - md5: a18875e4e769e9de782eca5c230322a5 - sha256: f200cbd85146b03c41fab6b6a8cfac9c091a102fcbd118b44548dceb937a0fb0 + md5: 2fd044aca67f9e0464c00529b2829112 + sha256: 6ff1f8dbb9e28c91e52cc9e5fa1fba85b6bfa9c6b31cf663244b7573a00c13cf optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 449455 - timestamp: 1675796411500 -- name: ros-humble-nav-msgs - version: 4.2.3 + size: 362274 + timestamp: 1675831872102 +- name: ros-humble-rosidl-default-runtime + version: 1.2.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-std-msgs: '*' - ros2-distro-mutex: 0.3.* humble ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' - ros-humble-builtin-interfaces: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rosidl-runtime-c: '*' ros-humble-ros-workspace: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' + ros-humble-rosidl-generator-py: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rosidl-typesupport-c: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-rosidl-typesupport-cpp: '*' + ros-humble-rosidl-typesupport-introspection-c: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-nav-msgs-4.2.3-py310ha45506e_3.tar.bz2 + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-default-runtime-1.2.0-py310ha45506e_3.tar.bz2 hash: - md5: 2497bf5dcf216464563985aa8a26d7b7 - sha256: ac0aacdc263bb9a068840e092b242a746b6fa44d5c0417456f3bb1ef6f6aa23e + md5: 95b75b5fa683eb8cb398f8e8daf4ac15 + sha256: c6fb3adee991bd1aca47db9326a52d8f9443c6f0bddaaffaa164ffa087e1864e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 194910 - timestamp: 1675795532233 -- name: ros-humble-launch - version: 1.0.4 + size: 10112 + timestamp: 1675786168191 +- name: ros-humble-builtin-interfaces + version: 1.2.1 manager: conda platform: win-64 dependencies: - importlib-metadata: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-osrf-pycommon: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - lark-parser: '*' - pyyaml: '*' - ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-launch-1.0.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-builtin-interfaces-1.2.1-py310ha45506e_3.tar.bz2 hash: - md5: 1d38bd10fa06877eaa328b428b30744a - sha256: 43d07e8d9b1dff7889cb2a2740a3c5fbbbc20aecdd3429f2c91aee6332deb7e4 + md5: cd2dcee23e6227d50dcd1d602793704e + sha256: ef77b4a27032ac99fccbe7a327930cdf15875021dd246bd3ca2a7ff91e636d5b optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 264624 - timestamp: 1675763075439 -- name: ros-humble-robot-state-publisher - version: 3.0.2 + size: 71194 + timestamp: 1675787964207 +- name: ros-humble-message-filters + version: 4.3.2 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-tf2-ros: '*' - ros-humble-kdl-parser: '*' - ros-humble-std-msgs: '*' - ros-humble-urdf: '*' - ucrt: '>=10.0.20348.0' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' - ros-humble-orocos-kdl-vendor: '*' + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' + ros-humble-rcutils: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-robot-state-publisher-3.0.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-message-filters-4.3.2-py310ha45506e_3.tar.bz2 hash: - md5: 5c4cf4170084bf84ef493c8f4facf3b5 - sha256: a65c314556806d53ca91ef8a1e7453a15cc0f49ded149e94aaf34265b437baae + md5: 922cb593af816f16631faf91732d14fc + sha256: 07842400f0f32267ccaaa3a9a7270b4bf41b2ec85cad6409caadaf3b79f4ec73 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 164986 - timestamp: 1675815633141 -- name: ros-humble-sdl2-vendor - version: 3.1.0 + size: 55390 + timestamp: 1675810921401 +- name: ros-humble-pcl-msgs + version: 1.0.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rosidl-default-runtime: '*' + ros-humble-sensor-msgs: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - sdl2: '>=2.26.3,<3.0a0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-sdl2-vendor-3.1.0-py310hd28ba6e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pcl-msgs-1.0.0-py310ha45506e_3.tar.bz2 hash: - md5: eeaf46fa01643fc1c20d39efe7a423e8 - sha256: ebe4d226e67f090319b387808da7bff750d09a7a56fef15b5c84336cbd204e4f + md5: a99d12afe2650c3662fdcdcab28caeb7 + sha256: 9e2d9ea91bd57f05fee9c951c505affdc3a659c8470f7e8455d0dedfddb5029a optional: false category: main - build: py310hd28ba6e_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9585 - timestamp: 1675831939685 + size: 132914 + timestamp: 1675798404319 - name: ros-humble-lifecycle-msgs version: 1.2.1 manager: conda @@ -31714,665 +31242,587 @@ package: build_number: 3 size: 72454 timestamp: 1675807334494 -- name: ros-humble-message-filters - version: 4.3.2 +- name: ros-humble-sdl2-vendor + version: 3.1.0 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' - ros-humble-builtin-interfaces: '*' + sdl2: '>=2.26.3,<3.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-message-filters-4.3.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-sdl2-vendor-3.1.0-py310hd28ba6e_3.tar.bz2 hash: - md5: 922cb593af816f16631faf91732d14fc - sha256: 07842400f0f32267ccaaa3a9a7270b4bf41b2ec85cad6409caadaf3b79f4ec73 + md5: eeaf46fa01643fc1c20d39efe7a423e8 + sha256: ebe4d226e67f090319b387808da7bff750d09a7a56fef15b5c84336cbd204e4f optional: false category: main - build: py310ha45506e_3 + build: py310hd28ba6e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 55390 - timestamp: 1675810921401 -- name: ros-humble-pcl-msgs - version: 1.0.0 + size: 9585 + timestamp: 1675831939685 +- name: ros-humble-rclcpp-action + version: 16.0.3 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - ros-humble-sensor-msgs: '*' - ros-humble-std-msgs: '*' + ros-humble-rcl-action: '*' + ros-humble-ament-cmake: '*' + ros-humble-rcpputils: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' + ros-humble-action-msgs: '*' + ros-humble-rosidl-runtime-c: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pcl-msgs-1.0.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rclcpp-action-16.0.3-py310ha45506e_3.tar.bz2 hash: - md5: a99d12afe2650c3662fdcdcab28caeb7 - sha256: 9e2d9ea91bd57f05fee9c951c505affdc3a659c8470f7e8455d0dedfddb5029a + md5: a63410d64023f01a292f9e5c47854756 + sha256: ca8a716b6d807669ca91941a2f41a0b91b9ca81696eda7f306a2cd448962e9b6 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 132914 - timestamp: 1675798404319 -- name: ros-humble-geometry2 - version: 0.25.2 + size: 79074 + timestamp: 1675807794192 +- name: ros-humble-ament-index-python + version: 1.4.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-tf2: '*' - ros-humble-tf2-kdl: '*' - ros-humble-tf2-ros: '*' - ros-humble-tf2-py: '*' - ros-humble-tf2-sensor-msgs: '*' - ros-humble-tf2-tools: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - ros-humble-tf2-bullet: '*' - ros-humble-tf2-geometry-msgs: '*' - ros-humble-tf2-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-tf2-eigen-kdl: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - ros-humble-tf2-eigen: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-geometry2-0.25.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-index-python-1.4.0-py310ha45506e_3.tar.bz2 hash: - md5: ecabfca8101c87dfd53c0950bc843ede - sha256: bc5acc11eb51979316c5f141c106ac3cc14a3b6783aa98d2fdd72e3da13ca6f2 + md5: cdb87a887bfe14d93fe720e5525ab860 + sha256: 9a9aa47123b995c52b7ca69225ac4ecc872ed8ac7c8d3ea63b92ad3963d891ca optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10615 - timestamp: 1675817950510 -- name: ros-humble-kdl-parser - version: 2.6.4 + size: 61926 + timestamp: 1675762207922 +- name: ros-humble-image-geometry + version: 3.2.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-orocos-kdl-vendor: '*' - ros-humble-urdf: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' - ros-humble-urdfdom-headers: '*' + py-opencv: '>=4.6.0,<5.0a0' ros-humble-ros-workspace: '*' - vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-kdl-parser-2.6.4-py310ha45506e_3.tar.bz2 + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-image-geometry-3.2.1-py310h6fa8c79_3.tar.bz2 hash: - md5: b0300e66e95096da09092f44df3fb281 - sha256: f753ebdae97931109820f8bbb4454adaad1eb445062d8c37a932858a01c2a644 + md5: a0f3b5bef3798e5b91971c7e7081d1c0 + sha256: 3813d6debf839647d3ff5e934569f212fdd7dede98efe905747d8ab2b68b7d03 optional: false category: main - build: py310ha45506e_3 + build: py310h6fa8c79_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 43216 - timestamp: 1675783624265 -- name: ros-humble-ros-core - version: 0.10.0 + size: 50795 + timestamp: 1675798637307 +- name: ros-humble-rmw-fastrtps-cpp + version: 6.2.2 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp-action: '*' + ros-humble-fastrtps: '*' python: '*' - ros-humble-ament-index-cpp: '*' - ros-humble-ament-lint-auto: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-ament-cmake-gtest: '*' - ros-humble-launch-testing: '*' - ros-humble-ament-cmake-ros: '*' - ros-humble-launch-xml: '*' - ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-sros2: '*' - ros-humble-rclcpp-lifecycle: '*' - ros-humble-rclpy: '*' - vc: '>=14.2,<15' - ros-humble-ros2launch: '*' - ros-humble-rosidl-default-generators: '*' - ros-humble-launch-testing-ament-cmake: '*' - ros-humble-launch-testing-ros: '*' - ros-humble-launch-yaml: '*' python_abi: 3.10.* *_cp310 - ros-humble-sros2-cmake: '*' - ros-humble-ament-cmake-pytest: '*' + ros-humble-rcpputils: '*' + ros-humble-rmw-fastrtps-shared-cpp: '*' + ros-humble-rcutils: '*' + ros-humble-fastcdr: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' + ros-humble-tracetools: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rmw-dds-common: '*' ucrt: '>=10.0.20348.0' - ros-humble-rcl-lifecycle: '*' - ros-humble-ament-index-python: '*' - ros-humble-launch-ros: '*' - ros-humble-pluginlib: '*' - ros-humble-ros-environment: '*' - ros-humble-ament-lint-common: '*' - ros-humble-ament-cmake-auto: '*' ros-humble-ament-cmake: '*' + ros-humble-rosidl-cmake: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-cmake-gmock: '*' - ros-humble-launch: '*' - ros-humble-ros2cli-common-extensions: '*' - ros-humble-class-loader: '*' - ros-humble-common-interfaces: '*' + ros-humble-fastrtps-cmake-module: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ros-core-0.10.0-py310ha45506e_3.tar.bz2 + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-fastrtps-cpp-6.2.2-py310ha45506e_3.tar.bz2 hash: - md5: 1bb69be679f84ca79b8fc81b2db4a2d5 - sha256: 07f51b262d72a1367b3823e3175e9d4f9ea27f157ddf5f169b6ff54c6c460f58 + md5: 989c4a257f458ccd62e6437d3a0135c3 + sha256: d8e7b6aa6bb9e9e3d53043ec6a542e4bd8a9e93142a011f60f52c1fb5833c94b optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10823 - timestamp: 1675826076240 -- name: ros-humble-rosbag2 - version: 0.15.4 + size: 137632 + timestamp: 1675796102187 +- name: ros-humble-launch-xml + version: 1.0.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ros2bag: '*' - ros-humble-rosbag2-compression: '*' - ros-humble-rosbag2-storage-default-plugins: '*' - ros-humble-rosbag2-compression-zstd: '*' - ucrt: '>=10.0.20348.0' - ros-humble-shared-queues-vendor: '*' - ros-humble-rosbag2-transport: '*' - ros-humble-ros-workspace: '*' - ros-humble-sqlite3-vendor: '*' - ros-humble-rosbag2-storage: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-rosbag2-cpp: '*' vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rosbag2-py: '*' + ros-humble-launch: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosbag2-0.15.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-launch-xml-1.0.4-py310ha45506e_3.tar.bz2 hash: - md5: 08f62014f90d2db5afc5ab25e3d3521a - sha256: d5fb811435c9e35f0e66ff646be1320880ca35d766a621e73198e50a50c8b122 + md5: 1a581331e2943300f799bac549d8dd54 + sha256: 39378347c9ffb04dfa827455c35b4a5b338094899527721e4a7f362fbf4d5f49 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10263 - timestamp: 1675827446986 -- name: ros-humble-urdf - version: 2.6.0 + size: 16313 + timestamp: 1675765329569 +- name: ros-humble-ament-cmake + version: 1.3.3 manager: conda platform: win-64 dependencies: + vs2015_runtime: '>=14.29.30139' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-urdf-parser-plugin: '*' - ros-humble-tinyxml2-vendor: '*' - ros2-distro-mutex: 0.3.* humble + ros-humble-ament-cmake-gen-version-h: '*' + ros-humble-ament-cmake-python: '*' + ros-humble-ament-cmake-export-link-flags: '*' + ros-humble-ament-cmake-core: '*' + ros-humble-ament-cmake-export-dependencies: '*' ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + ros-humble-ament-cmake-export-include-directories: '*' + ros-humble-ament-cmake-test: '*' + ros-humble-ament-cmake-export-definitions: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-ament-cmake-export-libraries: '*' + ros-humble-ament-cmake-export-targets: '*' + cmake: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-urdfdom-headers: '*' + ros-humble-ament-cmake-libraries: '*' + ros-humble-ament-cmake-target-dependencies: '*' + ros-humble-ament-cmake-version: '*' vc: '>=14.2,<15' - ros-humble-pluginlib: '*' - ros-humble-ros-workspace: '*' - ros-humble-urdfdom: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-urdf-2.6.0-py310ha45506e_3.tar.bz2 + ros-humble-ament-cmake-export-interfaces: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: 1f94a0ede4ce4454ac55665b15febc05 - sha256: d04e38dbf6c84d40cf5eeedfe4c21ca32d3cccac95d11a4661f78c4065c03955 + md5: 416f8a56ccf8f2ae493f26346c35dd52 + sha256: a2b897f40d9c02e7f8749ce0f2809b31a4c379a5869a3bd19b91d48c08d3fc4e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 100108 - timestamp: 1675783393032 -- name: ros-humble-rqt-action - version: 2.0.1 + size: 10117 + timestamp: 1675761923700 +- name: ros-humble-action-msgs + version: 1.2.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-rqt-msg: '*' - ros-humble-rqt-gui: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - ros-humble-rqt-py-common: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - vc: '>=14.2,<15' + ros-humble-unique-identifier-msgs: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-action-2.0.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-action-msgs-1.2.1-py310ha45506e_3.tar.bz2 hash: - md5: d2699e9d310e7ff158d0e71ac1f37d22 - sha256: 1aa263cf4143bc482f6e6384f1728e72ea16e1e343296d590e0726035e8e14a7 + md5: c321952964a78691d1b089e0f5d4e19d + sha256: e9e9df51328c3c01fe7a79d91058a07e9ef670d7b058732f5f3be08f76e6ae86 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 54382 - timestamp: 1675902969002 -- name: ros-humble-rqt-bag - version: 1.1.4 + size: 118748 + timestamp: 1675790164029 +- name: ros-humble-ament-index-cpp + version: 1.4.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rosbag2-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-bag-1.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-index-cpp-1.4.0-py310ha45506e_3.tar.bz2 hash: - md5: 93ccafcbd64f037499f72c35a0a00ca8 - sha256: 296f0b2f280dde83fedfab6831fc55cd76945b0873adbe6e2ea283fc742d3327 + md5: 3eea0385230382971c1d0093a02fcefd + sha256: e2b9b508b8a23ebf6ac18153c89cc6c4151be7472d4de2eb2ff2a5e0e9cff092 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 148296 - timestamp: 1675896387501 -- name: ros-humble-rqt-bag-plugins - version: 1.1.4 + size: 38835 + timestamp: 1675771582212 +- name: ros-humble-std-srvs + version: 4.2.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-plot: '*' - ros-humble-rqt-gui: '*' - ros-humble-std-msgs: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - pycairo: '*' - ros-humble-rqt-bag: '*' - ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' - ros-humble-rclpy: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - pillow: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rosbag2: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-bag-plugins-1.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-std-srvs-4.2.3-py310ha45506e_3.tar.bz2 hash: - md5: 345db5492c47cafce3640d41d698bf8a - sha256: 75aad522739458ff4a4a4be96a6d34c44aebe6c4a0760df34cfb1090eccbae66 + md5: c6a0019a1a5ce0c40c0b454f1ec7bf86 + sha256: c487138474020ee273c1d5c2e5a41c020798032e6ee8d13e8d9ac9aa6881013d optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 45368 - timestamp: 1675899475691 -- name: ros-humble-rqt-console - version: 2.0.2 + size: 103924 + timestamp: 1675788381658 +- name: ros-humble-rcl + version: 5.3.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 ros-humble-rcl-interfaces: '*' - ros-humble-rqt-gui: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ament-index-python: '*' + ros-humble-tracetools: '*' + ros-humble-rcutils: '*' + ros-humble-rcl-logging-interface: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-rclpy: '*' + ucrt: '>=10.0.20348.0' + ros-humble-rcl-logging-spdlog: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - ros-humble-rqt-py-common: '*' - ros-humble-rqt-gui-py: '*' + ros-humble-rcl-yaml-param-parser: '*' + ros-humble-rmw-implementation: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-console-2.0.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-5.3.2-py310ha45506e_3.tar.bz2 hash: - md5: c993b0af3e7de52408da99294515d78a - sha256: 0a392f2124a27fbe346c30800326ce24fa8a2cb3696e6e21669e14a2bfa45cb6 + md5: 4847237faa6e38164be8773fdb2dd075 + sha256: 214d5b9dc880e56e0e514f729b8a7d775749d3d65a2a2fcab3f2c0bd1eb2ff50 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 136277 - timestamp: 1675896965917 -- name: ros-humble-rqt-graph - version: 1.3.0 + size: 152052 + timestamp: 1675801387425 +- name: ros-humble-rcl-interfaces + version: 1.2.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-qt-dotgraph: '*' - ros-humble-rqt-gui: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - ros-humble-ament-index-python: '*' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-graph-1.3.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-interfaces-1.2.1-py310ha45506e_3.tar.bz2 hash: - md5: 43bc8a61a1c778a6b1d2d119aa5ac2f0 - sha256: 53920768051ddb82ad3ba651c0e2c83c5ae774d12058ec428e61f097fb5e57f1 + md5: fe5a6bf9b6017cdb4778c755b4c71ae6 + sha256: 8be0d5db2d59c923bc3733c88ee63858641d7396960237d8dff8b51b1e165280 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 121015 - timestamp: 1675896122817 -- name: ros-humble-rqt-image-view - version: 1.2.0 + size: 326440 + timestamp: 1675790731993 +- name: ros-humble-rcl-yaml-param-parser + version: 5.3.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui-cpp: '*' - ros-humble-rqt-gui: '*' - qt-main: '>=5.15.8,<5.16.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - ros-humble-qt-gui-cpp: '*' - ros-humble-image-transport: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ros-humble-libyaml-vendor: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-cv-bridge: '*' + ucrt: '>=10.0.20348.0' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + yaml: '>=0.2.5,<0.3.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-image-view-1.2.0-py310ha45506e_3.tar.bz2 + yaml-cpp: '>=0.7.0,<0.8.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-yaml-param-parser-5.3.2-py310ha45506e_3.tar.bz2 hash: - md5: ec33ed55d01631d843ba854cdc4c1d1a - sha256: aca7b9e2a808e2245d83b2bcca4dfcfbf5d62560db180f3e34d9c659d439ac93 + md5: ed2df385d93f7f7653aeac0aa17f8aa9 + sha256: 693efdb0deb15dc7b5daa19f2414ec9646b280564a6965d595ccbd1864e230be optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 11183 - timestamp: 1675899304128 -- name: ros-humble-rqt-msg - version: 1.2.0 + size: 37791 + timestamp: 1675781470272 +- name: ros-humble-rosgraph-msgs + version: 1.2.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-console: '*' - ros-humble-rqt-gui: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - ros-humble-rclpy: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - catkin_pkg: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rqt-py-common: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-msg-1.2.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosgraph-msgs-1.2.1-py310ha45506e_3.tar.bz2 hash: - md5: 6e56df1e13d30a847ca2cf8d54cf7835 - sha256: 4abbf0251b9dacd74ef8b91c6b9312a1ebfec1dcac271775fe42b47f6d724cbb + md5: fea148d96825cf80dbb3520a04113181 + sha256: 14cd8b0982ffae7d82852f6d67a78e318d8b65851e7eb64353e8ceca0b722a67 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 67768 - timestamp: 1675899101602 -- name: ros-humble-rqt-plot - version: 1.1.2 + size: 63463 + timestamp: 1675790282671 +- name: ros-humble-rcl-action + version: 5.3.2 manager: conda platform: win-64 dependencies: + vs2015_runtime: '>=14.29.30139' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' - ros-humble-std-msgs: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - ros-humble-qt-gui-py-common: '*' - matplotlib-base: '*' - ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - catkin_pkg: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-rqt-py-common: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-plot-1.1.2-py310ha45506e_3.tar.bz2 + ros-humble-action-msgs: '*' + ros-humble-rcl: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-action-5.3.2-py310ha45506e_3.tar.bz2 hash: - md5: ab29dacb3545e0fd77c8c9a6c4a121b6 - sha256: 56377513f1bb565ba23d13c125d44871e73ed5f8a82b9b735bbcfbbfc044e119 + md5: dd5fbf257e2f98525ffce12cc12dd74f + sha256: c23084108bd3a0965bf78ad7b34de92af734858b7ac14c64794e6be544b82d00 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 118963 - timestamp: 1675896324413 -- name: ros-humble-rqt-publisher - version: 1.5.0 + size: 59680 + timestamp: 1675803221022 +- name: ros-humble-rosidl-runtime-c + version: 3.1.4 manager: conda platform: win-64 dependencies: - vc: '>=14.2,<15' python: '*' python_abi: 3.10.* *_cp310 - vs2015_runtime: '>=14.29.30139' - ros-humble-rqt-gui: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-typesupport-interface: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - catkin_pkg: '*' + ros-humble-rcutils: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-qt-gui-py-common: '*' - ros-humble-rqt-py-common: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-publisher-1.5.0-py310ha45506e_3.tar.bz2 + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-runtime-c-3.1.4-py310ha45506e_3.tar.bz2 hash: - md5: 0109a913dd60e9a8f972682b98a43ee6 - sha256: 1b11b2df3dcc381a379436d2746a9ad255cc51137f34ca2dd84d8e8b3521d402 + md5: f03e4e765eaf587642e5c33f68f9e281 + sha256: bd030029a2e4658c06d7ceb1d17370a1a54b1a72828ab283d5f5bfa28d287fa8 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 84181 - timestamp: 1675896039512 -- name: ros-humble-rqt-py-common - version: 1.1.4 + size: 33682 + timestamp: 1675777529678 +- name: ros-humble-rcl-logging-interface + version: 2.3.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-qt-gui: '*' - numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-py-common-1.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-logging-interface-2.3.1-py310ha45506e_3.tar.bz2 hash: - md5: 3a7bd0ff1520a44e4e47e6f7886ebca4 - sha256: 0ad38b535f900843909689147c2362343bb4106ce512df93f60c32edeeb510e7 + md5: 4a285cc6858d10bbead93c7f13c0f47e + sha256: 812b2c57a62b405c62e5704f143002c26d68e962ae91abfd36ecdb6258695161 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 63964 - timestamp: 1675848330809 -- name: ros-humble-rqt-py-console - version: 1.0.2 + size: 20242 + timestamp: 1675779160190 +- name: ros-humble-rmw-implementation + version: 2.8.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' - ros-humble-qt-gui: '*' + ros-humble-ament-index-cpp: '*' + ros-humble-rcpputils: '*' + ros-humble-rmw-implementation-cmake: '*' ucrt: '>=10.0.20348.0' - ros-humble-ament-index-python: '*' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' - ros-humble-qt-gui-py-common: '*' - ros-humble-rclpy: '*' - vc: '>=14.2,<15' + ros-humble-rmw-connextdds: '*' + ros-humble-rmw-fastrtps-cpp: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - ros-humble-rqt-gui-py: '*' + ros-humble-rmw-fastrtps-dynamic-cpp: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-py-console-1.0.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-implementation-2.8.2-py310ha45506e_3.tar.bz2 hash: - md5: e6981ec3a273ab6fae7d5fd21db1c9e0 - sha256: 92cb71a08d1fa4fb1005c56e2f673a91ef4d074c7c7186c3c2e7676807ab04f0 + md5: e87ca04a74ca9d2d905d0681ffa068f2 + sha256: 480cf61ae2d948e4fea1580a83c03542ae5adc287374b7cbe9e79875f77a7e5d optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 62512 - timestamp: 1675895968953 -- name: ros-humble-rqt-reconfigure - version: 1.1.1 + size: 37706 + timestamp: 1675798113655 +- name: ros-humble-unique-identifier-msgs + version: 2.2.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-console: '*' - ros-humble-rqt-gui: '*' - ucrt: '>=10.0.20348.0' - pyyaml: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' - ros-humble-qt-gui-py-common: '*' - ros-humble-rclpy: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rqt-py-common: '*' - ros-humble-python-qt-binding: '*' - ros-humble-rqt-gui-py: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-reconfigure-1.1.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-unique-identifier-msgs-2.2.1-py310ha45506e_3.tar.bz2 hash: - md5: 2813d1418624c2f45081f9ddf55d4836 - sha256: 6a389ac84285efb76120e34ce536e2fffdf27d702905f448b32a2736ec590ade + md5: 639c278b3d1682c952ce87c571d099e7 + sha256: fb176366e1488a96a315ca03ea012ba0747830f446fa3adf9cdfc736c81dcd03 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 122860 - timestamp: 1675899405209 -- name: ros-humble-rqt-service-caller - version: 1.0.5 + size: 65048 + timestamp: 1675787844147 +- name: ros-humble-rpyutils + version: 0.2.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rqt-py-common: '*' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-service-caller-1.0.5-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rpyutils-0.2.1-py310ha45506e_3.tar.bz2 hash: - md5: 79e89beccf551895412fef4448ac0719 - sha256: 57c079bf89ba44aa13f532f3b97d26efb9f436908e55eb56866b0419b6fd43d2 + md5: f9f984866dcd95e99f67440fe715046f + sha256: b7e55fb25afce6a53c0d4f2a3dd29e7d7d05ec46cba38e106a44ca59ed592de3 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 71929 - timestamp: 1675896700601 -- name: ros-humble-rqt-shell - version: 1.0.2 + size: 12109 + timestamp: 1675763481288 +- name: ros-humble-rcl-lifecycle + version: 5.3.2 manager: conda platform: win-64 dependencies: @@ -32380,666 +31830,602 @@ package: python: '*' python_abi: 3.10.* *_cp310 vs2015_runtime: '>=14.29.30139' - ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-qt-gui: '*' + ros-humble-lifecycle-msgs: '*' + ros-humble-tracetools: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - catkin_pkg: '*' + ros-humble-rcl: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - ros-humble-qt-gui-py-common: '*' + ros-humble-rosidl-runtime-c: '*' ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-shell-1.0.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-lifecycle-5.3.2-py310ha45506e_3.tar.bz2 hash: - md5: 970a1dccbdb6f98a034e4b3753a7d65a - sha256: bce757bc802d09cf890f5d0667e71002a6a636963bc94f6e96c449aaf52bc7d8 + md5: e8e55367aea4414f043ae0a4793a1e16 + sha256: cce416a5975e68cb86ea6d596507e310b586712a5e9c31711474151c78150834 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 68305 - timestamp: 1675896589640 -- name: ros-humble-rqt-srv - version: 1.0.3 + size: 36281 + timestamp: 1675803123115 +- name: ros-humble-composition-interfaces + version: 1.2.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' - ros-humble-rqt-msg: '*' - ros-humble-rqt-gui: '*' + ros-humble-rcl-interfaces: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-srv-1.0.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-composition-interfaces-1.2.1-py310ha45506e_3.tar.bz2 hash: - md5: 7e7a476bfdbaac41d881e06aa24ffdde - sha256: b9237e8ff0b8406589b4cd8b1217dea828c141a06b005e451792f0c80dee896f + md5: 6673bd062bfd98e98033a787397d964a + sha256: f0adfa79a94033c30c6e1e4f48a0eb826141fb7991e7e07be0f495a91360c07b optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 54389 - timestamp: 1675902892776 -- name: ros-humble-rqt-topic - version: 1.5.0 + size: 137266 + timestamp: 1675793475582 +- name: ros-humble-osrf-pycommon + version: 2.0.2 manager: conda platform: win-64 dependencies: + importlib-metadata: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - ros-humble-rqt-py-common: '*' ros-humble-ros-workspace: '*' - ros-humble-rqt-gui-py: '*' - vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-topic-1.5.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-osrf-pycommon-2.0.2-py310ha45506e_3.tar.bz2 hash: - md5: 4074054dd5c004923c91d4369c8ce2e0 - sha256: 3135f07f1695ae7ac0193aad817c4e93ef8df7eb6056c3ff869c23793fcabb1d + md5: a4df0421b3db170ca2d858135b2a35f8 + sha256: 8e41569c9af62899e28648ec98106201df606dc25f71c6e39a88a208556bec4d optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 78027 - timestamp: 1675896467771 -- name: ros-humble-ignition-math6-vendor - version: 0.0.2 + size: 65721 + timestamp: 1675734674013 +- name: ros-humble-libstatistics-collector + version: 1.3.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - libignition-math6: '>=6.13.0,<7.0a0' + ros-humble-rcpputils: '*' + ros-humble-rosidl-default-runtime: '*' + ros-humble-std-msgs: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ignition-cmake2-vendor: '*' + ros-humble-rcl: '*' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' + ros-humble-statistics-msgs: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ignition-math6-vendor-0.0.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-libstatistics-collector-1.3.0-py310ha45506e_3.tar.bz2 hash: - md5: 048a7d6c7e8680fc419afc93a0e75a81 - sha256: 8556a889d94b07bc5cfc02fd0665a74c1857e60289a23c2d25605f7c79ae6bca + md5: 02bb2695414b7b69008b348f1eb04915 + sha256: 39038c73c0e793f8b71b36a2d387d413036f5087967dc9624e17c1081b832d5c optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 7339 - timestamp: 1675845200451 -- name: ros-humble-image-transport - version: 3.1.5 + size: 38360 + timestamp: 1675803033229 +- name: ros-humble-rcpputils + version: 2.4.0 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-message-filters: '*' + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' - ros-humble-pluginlib: '*' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-image-transport-3.1.5-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcpputils-2.4.0-py310ha45506e_3.tar.bz2 hash: - md5: 169faa2addd3dbcb8f218c0fb0b35415 - sha256: 32c60027fa0d113dec2ffc099066687cd66f7304a5ae2ff9c9cf03ed7a2ca2a6 + md5: 0cac8117818ad0da0e6dd364e8e17201 + sha256: cbe33a494fee5eec002dd06526a3fede082f2e46672ab625ec5b112ff0ff7073 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 406190 - timestamp: 1675813095890 -- name: ros-humble-interactive-markers - version: 2.3.2 + size: 58302 + timestamp: 1675777625057 +- name: ros-humble-rosidl-runtime-cpp + version: 3.1.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-tf2: '*' - ucrt: '>=10.0.20348.0' - ros-humble-rmw: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - ros-humble-tf2-geometry-msgs: '*' - ros-humble-rclcpp: '*' - ros-humble-rclpy: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-visualization-msgs: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-interactive-markers-2.3.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-runtime-cpp-3.1.4-py310ha45506e_3.tar.bz2 hash: - md5: 37e7b7956b835457151bd57aa3361e19 - sha256: 3d17099036b100fc903823c4029d798e68c51f62fa37825a988fee83b1ee717e + md5: 930ac2e40fbdd9f5da8f1e55d42835d3 + sha256: 53e73809111f147977a0f55c802c4f2e41df3d48ee6e80b6616308214c22d221 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 196530 - timestamp: 1675841701420 -- name: ros-humble-laser-geometry - version: 2.4.0 + size: 18781 + timestamp: 1675778327937 +- name: ros-humble-rosidl-typesupport-c + version: 2.0.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-tf2: '*' - ucrt: '>=10.0.20348.0' + ros-humble-rcpputils: '*' + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + ros-humble-rcutils: '*' + ros-humble-rosidl-typesupport-interface: '*' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-sensor-msgs: '*' - ros-humble-sensor-msgs-py: '*' - ros-humble-eigen3-cmake-module: '*' - ros-humble-rclpy: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' + ucrt: '>=10.0.20348.0' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' numpy: '>=1.21.6,<2.0a0' + ros-humble-rosidl-typesupport-introspection-c: '*' vs2015_runtime: '>=14.29.30139' - eigen: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-laser-geometry-2.4.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-c-2.0.0-py310ha45506e_3.tar.bz2 hash: - md5: e057febc2c017482433f36f77c74d9c9 - sha256: a7149d31051e4a84f95e580e25859ebb64ab4ef2ba56f8310738706b8adc67dc + md5: 01b95b0888cf15cd812c8f881a7f3fe8 + sha256: 91287839fc3a38f6ba347d1f0d8b55ba8744f1d621b8e49850e228c62ce51e31 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 41718 - timestamp: 1675808111649 -- name: ros-humble-map-msgs - version: 2.1.0 + size: 35039 + timestamp: 1675785187828 +- name: ros-humble-rosidl-typesupport-cpp + version: 2.0.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-nav-msgs: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-sensor-msgs: '*' - ros-humble-std-msgs: '*' - ros2-distro-mutex: 0.3.* humble + ros-humble-rcpputils: '*' + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + ros-humble-rcutils: '*' + ros-humble-rosidl-typesupport-interface: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rosidl-typesupport-c: '*' + ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-ros-workspace: '*' + numpy: '>=1.21.6,<2.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-map-msgs-2.1.0-py310ha45506e_3.tar.bz2 + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-cpp-2.0.0-py310ha45506e_3.tar.bz2 hash: - md5: d314e0791e74ed71b64456f1390b4f27 - sha256: 49b5c56d29c0570dfa298a9474719c90cf357e04e34d24b0d280ffd163f7a0e3 + md5: e465a748f2539896f6fda0695fecb96e + sha256: c11b4639a39b14f15527efad39dd9f4f90ef93e238608393973aabed15c9e33e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 197633 - timestamp: 1675834163029 -- name: ros-humble-pluginlib - version: 5.1.0 + size: 34351 + timestamp: 1675785285104 +- name: ros-humble-statistics-msgs + version: 1.2.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-rcpputils: '*' - ros-humble-tinyxml2-vendor: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' - vc: '>=14.2,<15' + ros-humble-builtin-interfaces: '*' ros-humble-ros-workspace: '*' - ros-humble-class-loader: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pluginlib-5.1.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-statistics-msgs-1.2.1-py310ha45506e_3.tar.bz2 hash: - md5: c15168ebb7bc0f72fd489f4fdf20665f - sha256: 05a139edefef22e4fb50090e47311bd5d5f87027479ff4a66e4ec2ac83408ebc + md5: 489150b64f76847c8f7f693e433c888f + sha256: 190909d25993e0b069906db52257bc86bd9018318e790bab9025dd3f840ef801 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 27076 - timestamp: 1675781619444 -- name: ros-humble-resource-retriever - version: 3.1.1 + size: 96371 + timestamp: 1675790162404 +- name: ros-humble-tracetools + version: 4.1.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - ros-humble-libcurl-vendor: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-resource-retriever-3.1.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tracetools-4.1.1-py310ha45506e_3.tar.bz2 hash: - md5: 73d37184c568acc959fd8a9284788cca - sha256: c15cffde7da83dfef6a3cafe32493ea134baa1cfbd97182b272a20cb37dd59b1 + md5: ea333a9b500491e85a9c60282e961084 + sha256: ce8576650516611fdb8f761a8fb7ea85e41e984c7d7bd13f6636fe9c33021a33 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 30665 - timestamp: 1675841696588 -- name: ros-humble-rviz-common - version: 11.2.5 + size: 15569 + timestamp: 1675772883679 +- name: ros-humble-class-loader + version: 2.2.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-tf2: '*' - ros-humble-tf2-ros: '*' - ros-humble-std-msgs: '*' - qt-main: '>=5.15.6,<5.16.0a0' - ros-humble-urdf: '*' - ucrt: '>=10.0.20348.0' - ros-humble-rviz-rendering: '*' - ros-humble-pluginlib: '*' - ros-humble-resource-retriever: '*' - ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-sensor-msgs: '*' - ros-humble-tf2-geometry-msgs: '*' - ros-humble-yaml-cpp-vendor: '*' - ros-humble-tinyxml2-vendor: '*' - ros-humble-message-filters: '*' + ros-humble-rcpputils: '*' + ros-humble-console-bridge-vendor: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' vc: '>=14.2,<15' - ros-humble-rviz-ogre-vendor: '*' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ros-workspace: '*' + console_bridge: '>=1.0.2,<1.1.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-common-11.2.5-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-class-loader-2.2.0-py310haec4aa5_3.tar.bz2 hash: - md5: b9c5d948f26ac993192efb35d19027e1 - sha256: e5d37ebd20b3e83fdb12032fe99598fda2927b7d703621d40eeb239e62c3ce36 + md5: f8e509357aa91006854380675ca06602 + sha256: 71f96e8aee1e57540f946d52d246842a1b485742dfe524df268de001a0d4f850 optional: false category: main - build: py310ha45506e_3 + build: py310haec4aa5_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 623558 - timestamp: 1675849031534 -- name: ros-humble-rviz-ogre-vendor - version: 11.2.5 + size: 55528 + timestamp: 1675779252811 +- name: ros-humble-tinyxml2-vendor + version: 0.7.5 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - libzlib: '>=1.2.13,<1.3.0a0' - freeimage: '>=3.18.0,<3.19.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-ros-workspace: '*' - pugixml: '>=1.11.4,<1.12.0a0' - assimp: '>=5.2.5,<5.2.6.0a0' - freetype: '>=2.12.1,<3.0a0' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - zziplib: '>=0.13.69,<0.14.0a0' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - xorg-libx11: '*' + ros-humble-ros-workspace: '*' + tinyxml2: '>=9.0.0,<10.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-ogre-vendor-11.2.5-py310hecfa9c1_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tinyxml2-vendor-0.7.5-py310h3073ef2_3.tar.bz2 hash: - md5: 3c54a9dcebd1a6d3f1abe4410e92fbbb - sha256: 6998b11628a4087939fa7496a095ef63089e65bcd3b095779a9273b2e3fd555a + md5: f5533378df391c53269d216c79351996 + sha256: 3a61293fe1de3b0339be337fcb3ac5625043f79790b1822201507a067a42e7cb optional: false category: main - build: py310hecfa9c1_3 + build: py310h3073ef2_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 5170502 - timestamp: 1675833882372 -- name: ros-humble-rviz-rendering - version: 11.2.5 + size: 10510 + timestamp: 1675763130254 +- name: ros-humble-yaml-cpp-vendor + version: 8.0.2 manager: conda platform: win-64 dependencies: - glew: '>=2.1.0,<2.2.0a0' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-index-cpp: '*' - qt-main: '>=5.15.6,<5.16.0a0' - ucrt: '>=10.0.20348.0' - ros-humble-rviz-assimp-vendor: '*' - ros-humble-ros-workspace: '*' - ros-humble-resource-retriever: '*' - ros-humble-eigen3-cmake-module: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rviz-ogre-vendor: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - eigen: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-rendering-11.2.5-py310hef9c4db_3.tar.bz2 + yaml-cpp: '>=0.7.0,<0.8.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-yaml-cpp-vendor-8.0.2-py310ha45506e_3.tar.bz2 hash: - md5: 023e4023629a7cbcad02474febebe76f - sha256: 44b796c2ce3e0dd5c33ed0833649fb82648c1a412f9b4a438ebc595b88f1cda4 + md5: 1342d4866278e23d40969d87a30cd6a5 + sha256: 60ca68da16d1f8f936c4ce43b1617cae98fd0090f804908cfb517745f3d5530c optional: false category: main - build: py310hef9c4db_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 940007 - timestamp: 1675845100018 -- name: ros-humble-tf2 - version: 0.25.2 + size: 9222 + timestamp: 1675763200153 +- name: assimp + version: 5.2.5 manager: conda platform: win-64 dependencies: - vs2015_runtime: '>=14.29.30139' - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-console-bridge-vendor: '*' - ros2-distro-mutex: 0.3.* humble + zlib: '>=1.2.12,<1.3.0a0' + boost-cpp: '>=1.78.0,<1.78.1.0a0' + libzlib: '>=1.2.12,<1.3.0a0' vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - console_bridge: '>=1.0.2,<1.1.0a0' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-0.25.2-py310haec4aa5_3.tar.bz2 + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/assimp-5.2.5-h4dcb625_0.tar.bz2 hash: - md5: fdd265c7c3af13c2ca446f62295c2eed - sha256: 06a59faedeceb7478b38779ab1a0ffb28c9b2e890ca8f8ee7b239dd35fecd713 + md5: 7554b2316e9956f914222d7f820e8b23 + sha256: 330194a1c9b0fb31f589b36100b17af9de6a35d973c5a5bd669e9472af4f9015 optional: false category: main - build: py310haec4aa5_3 - arch: x86_64 + build: h4dcb625_0 subdir: win-64 - build_number: 3 - size: 108962 - timestamp: 1675796198002 -- name: ros-humble-tf2-geometry-msgs - version: 0.25.2 + build_number: 0 + license: Modified BSD + license_family: BSD + size: 2265473 + timestamp: 1663092692351 +- name: ros-humble-urdfdom-headers + version: 1.0.6 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-tf2: '*' - ros-humble-orocos-kdl-vendor: '*' - ros-humble-tf2-ros: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-tf2-ros-py: '*' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-geometry-msgs-0.25.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-urdfdom-headers-1.0.6-py310ha45506e_3.tar.bz2 hash: - md5: a017c2b5ad1f2e1fcbe0bddbe984a227 - sha256: 2db9be9e542c3ec23018dc968f55da5e329038be84dbc30b02c3dd38679e023c + md5: 99e4f10e88a7e21adcb150837ad97bb7 + sha256: ef50247dcbea8d678c8f746c9887f14eadaed8ef4614521dc1e6209906d255a3 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 30415 - timestamp: 1675815072538 -- name: ros-humble-tf2-ros - version: 0.25.2 + size: 19419 + timestamp: 1675722420677 +- name: ros-humble-urdf-parser-plugin + version: 2.6.0 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp-action: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-tf2: '*' - ucrt: '>=10.0.20348.0' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - ros-humble-rclcpp: '*' - ros-humble-geometry-msgs: '*' - ros-humble-tf2-msgs: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-message-filters: '*' vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rclcpp-components: '*' + ros-humble-urdfdom-headers: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-ros-0.25.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-urdf-parser-plugin-2.6.0-py310ha45506e_3.tar.bz2 hash: - md5: 369762faeab7c8e0d31da042e6528639 - sha256: f8d346603f6ff9c903ed9295e11c87fabffd89774fb29bb6c3660003cfe56784 + md5: 183c0edc5105876aa32f43eabb1b8086 + sha256: 2f85e8d3c6e255c0e91f9260aca1a71d0c49324c9c4d28b876f31cfb4ab5e9fd optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 301670 - timestamp: 1675813570708 -- name: ros-humble-visualization-msgs - version: 4.2.3 + size: 13040 + timestamp: 1675773021644 +- name: ros-humble-urdfdom + version: 3.0.2 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rosidl-default-runtime: '*' - ros-humble-sensor-msgs: '*' - ros-humble-std-msgs: '*' + ros-humble-console-bridge-vendor: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' - ros-humble-builtin-interfaces: '*' + ros-humble-tinyxml-vendor: '*' + ros-humble-urdfdom-headers: '*' ros-humble-ros-workspace: '*' + tinyxml: '*' + console_bridge: '>=1.0.2,<1.1.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-visualization-msgs-4.2.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-urdfdom-3.0.2-py310haec4aa5_3.tar.bz2 hash: - md5: 0fe9e6530c8b47dbc9df63c396165fe4 - sha256: 0649fcf037fe0bbdfff876ec45f1ffdd210bfd401bacaa8d0a2cd945503eee59 + md5: 00145403dfce35e55b23dce9b2312ba0 + sha256: e56a97e3539d55bb51d42b3304661d290c5abd0dfd48dba3be7ece05dd3c0a34 optional: false category: main - build: py310ha45506e_3 + build: py310haec4aa5_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 282336 - timestamp: 1675798347684 -- name: ros-humble-ament-package - version: 0.14.0 + size: 122290 + timestamp: 1675775569091 +- name: ros-humble-ignition-cmake2-vendor + version: 0.0.2 manager: conda platform: win-64 dependencies: - importlib-metadata: '*' python: '*' python_abi: 3.10.* *_cp310 ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - setuptools: '*' - importlib_resources: '*' + libignition-cmake2: '>=2.16.0,<3.0a0' numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-package-0.14.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ignition-cmake2-vendor-0.0.2-py310ha45506e_3.tar.bz2 hash: - md5: ab88743972ea928b23caecf8aad2d024 - sha256: c4c3759e27218e114f458eb0aa50c0d1666f4ff2a459768710d19b40548520ff + md5: c5b6776552054d5b68cd5bcc814be09a + sha256: 9b74268ce6fb89b7e1aa5f14f5c363f1ed29e84f83f9f07d51448035e3ccddb4 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 37172 - timestamp: 1675719950646 -- name: ros-humble-rosidl-adapter - version: 3.1.4 + size: 7285 + timestamp: 1675841967733 +- name: ros-humble-eigen3-cmake-module + version: 0.1.1 manager: conda platform: win-64 dependencies: - empy: '*' python: '*' python_abi: 3.10.* *_cp310 ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-adapter-3.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-eigen3-cmake-module-0.1.1-py310ha45506e_3.tar.bz2 hash: - md5: 4d8e57f1a605ccad04409a3f325b4223 - sha256: b1c1019930deb08223d07d33f39d02420060d7653c60b449b0a0360f80ced192 + md5: b99fecadfc6303766ad9c96071435e86 + sha256: e846a9d9dce62e6aa35418bc950fe1de7fc215f6c9f1a91f228bdcf98f1378d3 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 57188 - timestamp: 1675771746647 -- name: ros-humble-ament-cmake-gmock - version: 1.3.3 + size: 9799 + timestamp: 1675766896026 +- name: ros-humble-sensor-msgs-py + version: 4.2.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake-test: '*' - gmock: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-cmake-gtest: '*' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - ros-humble-gmock-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-gmock-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-sensor-msgs-py-4.2.3-py310ha45506e_3.tar.bz2 hash: - md5: cc9b41a562552abf7d4338c51064ca6d - sha256: d32a40dc3ff4678f99b8c427b6a87b300b5f6cfd6371aa31c7ae5adf56c48f5b + md5: 3387aebb99b42572b601f5bbeb4dbb3d + sha256: 1970e84031c4fd4efb8f9d9ced69e276fb4c3a7f213496118b4e28b5c8d20edd optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 11999 - timestamp: 1675759819349 -- name: ros-humble-ament-cmake-gtest - version: 1.3.3 + size: 24666 + timestamp: 1675798178957 +- name: ros-humble-libcurl-vendor + version: 3.1.1 manager: conda platform: win-64 dependencies: python: '*' + libcurl: '>=7.87.0,<8.0a0' + pkg-config: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake-test: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - gtest: '*' - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' - ros-humble-gtest-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-gtest-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-libcurl-vendor-3.1.1-py310hd7741ce_3.tar.bz2 hash: - md5: 3e96332e936be1f7a849f63d1ccce778 - sha256: 34547a13dd9e5b8dcc668672ec78363b608a703a5e15a9081e0e8d74681999d1 + md5: 0c59ea551313e1a40bb9f61a62a41229 + sha256: 44ecf1d66579d99d3b0dd8a088feefb54a4e453512985e4e4a851813ee75f4c4 optional: false category: main - build: py310ha45506e_3 + build: py310hd7741ce_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 12584 - timestamp: 1675756335646 -- name: ros-humble-ament-cmake-pytest - version: 1.3.3 + size: 9737 + timestamp: 1675831749071 +- name: ros-humble-rviz-assimp-vendor + version: 11.2.5 manager: conda platform: win-64 dependencies: + assimp: '>=5.2.5,<5.2.6.0a0' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake-test: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - pytest: '*' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-pytest-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-assimp-vendor-11.2.5-py310h9d4f851_3.tar.bz2 hash: - md5: 1f363c50f09d186ded3a18164d6b8813 - sha256: 4ff95fcf0d1c52efeef226a0f75f9759dad26d62ce8cdc7d6ce9fd707b116b17 + md5: e393200d28318ae28b451f366faa5e62 + sha256: a6d41d510b7c7b95a27324013ad69bbf963a83d08ec736ef505ba9fb202b59a0 optional: false category: main - build: py310ha45506e_3 + build: py310h9d4f851_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 12027 - timestamp: 1675754201387 -- name: ros-humble-domain-coordinator - version: 0.10.0 + size: 9845 + timestamp: 1675833997078 +- name: ros-humble-console-bridge-vendor + version: 1.4.1 manager: conda platform: win-64 dependencies: @@ -33050,398 +32436,402 @@ package: ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' + console_bridge: '>=1.0.2,<1.1.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-domain-coordinator-0.10.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-console-bridge-vendor-1.4.1-py310haec4aa5_3.tar.bz2 hash: - md5: c08e1ae04d3c1a6798ff6fd59af3db81 - sha256: 90421ce2b3a186fd2682e16506c5db453c3ec11e29c8c3a851e92896269d4e61 + md5: 9bc4ed07c109a00bbf2cd2e171db23ab + sha256: b95ca6e7056949c9d58e7945cad99ea2e214862dcc3c5ea63375953212f50c72 optional: false category: main - build: py310ha45506e_3 + build: py310haec4aa5_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10262 - timestamp: 1675760502474 -- name: ros-humble-ament-cmake-include-directories - version: 1.3.3 + size: 9358 + timestamp: 1675772948293 +- name: ros-humble-orocos-kdl-vendor + version: 0.2.5 manager: conda platform: win-64 dependencies: python: '*' + orocos-kdl: '>=1.5.1,<1.6.0a0' python_abi: 3.10.* *_cp310 + ros-humble-eigen3-cmake-module: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-include-directories-1.3.3-py310ha45506e_3.tar.bz2 + eigen: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-orocos-kdl-vendor-0.2.5-py310ha45506e_3.tar.bz2 hash: - md5: 7c930ee2af50ca64e27b23115114ca1f - sha256: b0ecbbba4dd33b7c7f097e9709fe709c367389ef1b007ce4bcc91121dabe5477 + md5: 0f5896fcdb4a6273173d899e3d21c774 + sha256: d69e43e19e5b7358b89b99efda78abc3d2eb1b7a339ac4047509a764a56c117b optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10015 - timestamp: 1675721882477 -- name: ros-humble-rmw-connextdds - version: 0.11.1 + size: 10001 + timestamp: 1675771736696 +- name: ros-humble-tf2-ros-py + version: 0.25.2 manager: conda platform: win-64 dependencies: + ros-humble-tf2-msgs: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rmw-connextdds-common: '*' - ros-humble-ament-cmake: '*' + ros-humble-geometry-msgs: '*' + ros-humble-rclpy: '*' + ros-humble-sensor-msgs: '*' + ros-humble-std-msgs: '*' + ros-humble-tf2-py: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-connextdds-0.11.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-ros-py-0.25.2-py310ha45506e_3.tar.bz2 hash: - md5: 7c7d1beac19adeddcdd2b75902212408 - sha256: 40497949d27c5ac20e9d1adf42e85fb16963a576ee4162a003f1abc26e84d83e + md5: d1b850e4ab0c969218e1689ae0cd209d + sha256: 0d8ff02685860b2514d0c98857804f1b1d0003d337f0e750bff1bde77a9dd323 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9712 - timestamp: 1675793170 -- name: ros-humble-rmw-fastrtps-dynamic-cpp - version: 6.2.2 + size: 38124 + timestamp: 1675811092689 +- name: ros-humble-tf2-msgs + version: 0.25.2 manager: conda platform: win-64 dependencies: - ros-humble-fastrtps: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rmw-fastrtps-shared-cpp: '*' - ros-humble-rcutils: '*' - ros-humble-fastcdr: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rmw-dds-common: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ament-cmake: '*' + ros-humble-geometry-msgs: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-fastrtps-cmake-module: '*' - ros-humble-rosidl-typesupport-introspection-c: '*' + ros-humble-action-msgs: '*' + ros-humble-builtin-interfaces: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-msgs-0.25.2-py310ha45506e_3.tar.bz2 hash: - md5: 1cb96fb30ff50ca56ef52bf28f31cb69 - sha256: 8bbfc8f183d8ee4717906c2ad206496c763b58fa09a6ed458bf80d03fa841a32 + md5: b4450a6dbe4a0171c1a15734a3912864 + sha256: f85181324324ecb0dbbd3c436db3696145386af787194da43aeff8aa057d2cfd optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 176139 - timestamp: 1675795973315 -- name: ros-humble-rmw-implementation-cmake - version: 6.1.1 + size: 168857 + timestamp: 1675796544236 +- name: ros-humble-python-qt-binding + version: 1.1.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + qt-main: '>=5.15.6,<5.16.0a0' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' + pyqt: '>=5.15.7,<5.16.0a0' + pyqt-builder: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-implementation-cmake-6.1.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-python-qt-binding-1.1.1-py310ha45506e_3.tar.bz2 hash: - md5: 6ff52cb7f459f66090237b00a7c97fcb - sha256: 9b56d1f3f0671f68c564d4895368827d5f916d3560d5ddc239b3e249c4338a30 + md5: a80afbbaa537e8727b04223751eac841 + sha256: b3d98728b5ef3bea98de772643620851cb6e98140b14e42ff20cb5297e19170b optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 12323 - timestamp: 1675771838834 -- name: ros-humble-spdlog-vendor - version: 1.3.1 + size: 32295 + timestamp: 1675831671768 +- name: ros-humble-rqt-gui + version: 1.1.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' + ros-humble-python-qt-binding: '*' + catkin_pkg: '*' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' + ucrt: '>=10.0.20348.0' vs2015_runtime: '>=14.29.30139' - spdlog: '>=1.11.0,<1.12.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-spdlog-vendor-1.3.1-py310h5cedc13_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-gui-1.1.4-py310ha45506e_3.tar.bz2 hash: - md5: ce4acb9535b9ebb232978f45f7e5535a - sha256: 32481d4c86e5674bc34ea3088cbe6fd140adc9623698911c5c295f80dd847b7e + md5: 01e81e801c4ae3f4f5a7dba81e48b64c + sha256: 3dccda3bb325e02731e7e3352ce3760cfbc4bb4a3c9824099cc655ccfa7b46a1 optional: false category: main - build: py310h5cedc13_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9208 - timestamp: 1675771647685 -- name: ros-humble-class-loader - version: 2.2.0 + size: 157184 + timestamp: 1675847922524 +- name: ros-humble-rqt-gui-py + version: 1.1.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-console-bridge-vendor: '*' + ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - console_bridge: '>=1.0.2,<1.1.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-class-loader-2.2.0-py310haec4aa5_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-gui-py-1.1.4-py310ha45506e_3.tar.bz2 hash: - md5: f8e509357aa91006854380675ca06602 - sha256: 71f96e8aee1e57540f946d52d246842a1b485742dfe524df268de001a0d4f850 + md5: bf342a6af0b52f3fb6bb592224544536 + sha256: 514eac8b5c730058c56090871879bdaec9e5a91cfe1bccb459fe1d064d71c485 optional: false category: main - build: py310haec4aa5_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 55528 - timestamp: 1675779252811 -- name: ros-humble-composition-interfaces - version: 1.2.1 + size: 15898 + timestamp: 1675890305418 +- name: ros-humble-rosbag2-py + version: 0.15.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcl-interfaces: '*' - ros-humble-rosidl-default-runtime: '*' + ros-humble-rosbag2-storage: '*' + ros-humble-rosbag2-compression: '*' + ros-humble-rpyutils: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-rosbag2-cpp: '*' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' + ros-humble-rosbag2-transport: '*' ros-humble-ros-workspace: '*' + ros-humble-pybind11-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-composition-interfaces-1.2.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosbag2-py-0.15.4-py310ha45506e_3.tar.bz2 hash: - md5: 6673bd062bfd98e98033a787397d964a - sha256: f0adfa79a94033c30c6e1e4f48a0eb826141fb7991e7e07be0f495a91360c07b + md5: ac566ff62f64570a8ef4adfdcc2acdc5 + sha256: 8d615d31028c02355d3bf78c04d981df7155030f24d159bc4851f8b8ea4b0912 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 137266 - timestamp: 1675793475582 -- name: ros-humble-rcl-lifecycle - version: 5.3.2 + size: 445004 + timestamp: 1675826237278 +- name: ros-humble-qt-dotgraph + version: 2.2.2 manager: conda platform: win-64 dependencies: - vc: '>=14.2,<15' + pydot: '*' python: '*' python_abi: 3.10.* *_cp310 - vs2015_runtime: '>=14.29.30139' ros2-distro-mutex: 0.3.* humble - ros-humble-lifecycle-msgs: '*' - ros-humble-tracetools: '*' + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcl: '*' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' + ros-humble-python-qt-binding: '*' ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-lifecycle-5.3.2-py310ha45506e_3.tar.bz2 + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-qt-dotgraph-2.2.2-py310ha45506e_3.tar.bz2 hash: - md5: e8e55367aea4414f043ae0a4793a1e16 - sha256: cce416a5975e68cb86ea6d596507e310b586712a5e9c31711474151c78150834 + md5: e44e1ba0ad444da962c6546ac31211ad + sha256: e52985460d258506d2f882bb1881318dd920e8ce55124b694ba6288965e6abd9 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 36281 - timestamp: 1675803123115 -- name: ros-humble-osrf-pycommon - version: 2.0.2 + size: 46376 + timestamp: 1675841310321 +- name: ros-humble-cv-bridge + version: 3.2.1 manager: conda platform: win-64 dependencies: - importlib-metadata: '*' + boost: '>=1.78.0,<1.78.1.0a0' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + py-opencv: '>=4.6.0,<5.0a0' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-osrf-pycommon-2.0.2-py310ha45506e_3.tar.bz2 + libopencv: '>=4.6.0,<4.6.1.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-cv-bridge-3.2.1-py310h9afa7c5_3.tar.bz2 hash: - md5: a4df0421b3db170ca2d858135b2a35f8 - sha256: 8e41569c9af62899e28648ec98106201df606dc25f71c6e39a88a208556bec4d + md5: b6de398e64bac004c5774d8894e614b5 + sha256: d3f3b807bbc3963528088522d1742cd6e1115ce2db6a5e9b407ab908f0f2e83a optional: false category: main - build: py310ha45506e_3 + build: py310h9afa7c5_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 65721 - timestamp: 1675734674013 -- name: ros-humble-fastrtps - version: 2.6.4 + size: 134383 + timestamp: 1675798779409 +- name: ros-humble-qt-gui-cpp + version: 2.2.2 manager: conda platform: win-64 dependencies: python: '*' - openssl: '>=3.0.8,<4.0a0' python_abi: 3.10.* *_cp310 - ros-humble-foonathan-memory-vendor: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-rcpputils: '*' + qt-main: '>=5.15.8,<5.16.0a0' + ros-humble-qt-gui: '*' ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-fastcdr: '*' + pep517: '*' + ros-humble-pluginlib: '*' ros-humble-ros-workspace: '*' - tinyxml2: '>=9.0.0,<10.0a0' + vc: '>=14.2,<15' + ros-humble-tinyxml2-vendor: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + pyqt-builder: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-fastrtps-2.6.4-py310h3b33bf3_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-qt-gui-cpp-2.2.2-py310ha45506e_3.tar.bz2 hash: - md5: a0c95e80abc6c3bb23d522c205b52e37 - sha256: 2c1e6ec7f7e129fc00118f4a24b72d1fe5b51052901119cacde415fb2584478f + md5: 1a31cbbb2cdf95d137d57edeba6463ab + sha256: e552f4258c5d799d1172b8a861c00816f0082649c0f26bebacf9741baf3deef6 optional: false category: main - build: py310h3b33bf3_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 2896132 - timestamp: 1675860469843 -- name: ros-humble-rmw-dds-common - version: 1.6.0 + size: 10826 + timestamp: 1675846522904 +- name: ros-humble-rqt-gui-cpp + version: 1.1.4 manager: conda platform: win-64 dependencies: + ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + qt-main: '>=5.15.8,<5.16.0a0' + ros-humble-qt-gui: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + ros-humble-pluginlib: '*' + ros-humble-qt-gui-cpp: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-dds-common-1.6.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-gui-cpp-1.1.4-py310ha45506e_3.tar.bz2 hash: - md5: 34783e791df82f0205f11b46e327cb32 - sha256: 60c223c778a89363c8c4c93c09b20c1a36bfd66380fcbf7fb1a1ccf843463702 + md5: a10aad9dc8628db9e71c5ce6bf1f9c8a + sha256: 3ca7e8c65b3c5ab14e6e72f70bdba69e197627d77c5b13d412de18808de8ce02 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 142902 - timestamp: 1675788093659 -- name: ros-humble-rmw-fastrtps-shared-cpp - version: 6.2.2 + size: 10476 + timestamp: 1675897056160 +- name: ros-humble-qt-gui-py-common + version: 2.2.2 manager: conda platform: win-64 dependencies: - ros-humble-fastrtps: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-tracetools: '*' - ros-humble-rcutils: '*' - ros-humble-fastcdr: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ucrt: '>=10.0.20348.0' - ros-humble-rmw-dds-common: '*' - ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-fastrtps-cmake-module: '*' - ros-humble-rosidl-typesupport-introspection-c: '*' + ros-humble-python-qt-binding: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-fastrtps-shared-cpp-6.2.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-qt-gui-py-common-2.2.2-py310ha45506e_3.tar.bz2 hash: - md5: 8cdb30d214d7371d9931a30ee8df9856 - sha256: 60952d14a154904ea6cbadf6848270db852d09cfcc2b9de2af63dcbe71b71602 + md5: c53c09b8d6273e31998383c13fee6139 + sha256: 48fa7ab4d9e4dbdf31b9377fd0c6144c0577be91a9e72b9834776c6f53e6f70e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 229541 - timestamp: 1675790397933 -- name: ros-humble-orocos-kdl-vendor - version: 0.2.5 + size: 27509 + timestamp: 1675840373178 +- name: ros-humble-qt-gui + version: 2.2.2 manager: conda platform: win-64 dependencies: + vs2015_runtime: '>=14.29.30139' python: '*' - orocos-kdl: '>=1.5.1,<1.6.0a0' python_abi: 3.10.* *_cp310 - ros-humble-eigen3-cmake-module: '*' + ros-humble-tango-icons-vendor: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + qt-main: '>=5.15.6,<5.16.0a0' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ros-humble-python-qt-binding: '*' + catkin_pkg: '*' + pyqt: '>=5.15.7,<5.16.0a0' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - eigen: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-orocos-kdl-vendor-0.2.5-py310ha45506e_3.tar.bz2 + vc: '>=14.2,<15' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-qt-gui-2.2.2-py310ha45506e_3.tar.bz2 hash: - md5: 0f5896fcdb4a6273173d899e3d21c774 - sha256: d69e43e19e5b7358b89b99efda78abc3d2eb1b7a339ac4047509a764a56c117b + md5: 56215d795256d36f429e68f51598bfe0 + sha256: 3efc58ef9a04b5421818906bbf8243c314f51d238f0aa2f8302789bc7e7d5a88 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10001 - timestamp: 1675771736696 + size: 176085 + timestamp: 1675845295157 - name: ros-humble-tf2-bullet version: 0.25.2 manager: conda @@ -33559,35 +32949,6 @@ package: build_number: 3 size: 20713 timestamp: 1675815787480 -- name: ros-humble-tf2-msgs - version: 0.25.2 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rosidl-default-runtime: '*' - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - ros-humble-action-msgs: '*' - ros-humble-builtin-interfaces: '*' - ros-humble-ros-workspace: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-msgs-0.25.2-py310ha45506e_3.tar.bz2 - hash: - md5: b4450a6dbe4a0171c1a15734a3912864 - sha256: f85181324324ecb0dbbd3c436db3696145386af787194da43aeff8aa057d2cfd - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 168857 - timestamp: 1675796544236 - name: ros-humble-tf2-py version: 0.25.2 manager: conda @@ -33666,72 +33027,162 @@ package: ros-humble-tf2-ros-py: '*' ros-humble-ros-workspace: '*' vc: '>=14.2,<15' - graphviz: '*' + graphviz: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-tools-0.25.2-py310ha45506e_3.tar.bz2 + hash: + md5: fefdfd57af637b283da3194d9e8a0707 + sha256: e3da2c513be5a5e6a8283e20da6735d43a0e9648e8360ddb4e5d635dfefd074b + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 58046 + timestamp: 1675813615653 +- name: ros-humble-ament-cmake-ros + version: 0.10.0 + manager: conda + platform: win-64 + dependencies: + ros-humble-domain-coordinator: '*' + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros-humble-ament-cmake-pytest: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ament-cmake-gmock: '*' + ros-humble-ament-cmake-gtest: '*' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-ros-0.10.0-py310ha45506e_3.tar.bz2 + hash: + md5: aef4010801839e4d420e0b4668c2194b + sha256: ae23f8157b7dd22f4a7d2ed6b6e2204767f84d7d997393d371dad662e5a03d76 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 13194 + timestamp: 1675771671658 +- name: ros-humble-ament-cmake-auto + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ament-cmake-gtest: '*' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-auto-1.3.3-py310ha45506e_3.tar.bz2 + hash: + md5: 350f564d41762ead10cb6a9f15dfdd43 + sha256: dbff53c58fb0bdca1b779ebf6b96afe192466dbc3faf627ada54d034ff3022cb + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 13124 + timestamp: 1675762905026 +- name: ros-humble-ament-cmake-gmock + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake-test: '*' + gmock: '*' + ros2-distro-mutex: 0.3.* humble + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ament-cmake-gtest: '*' + vc: '>=14.2,<15' + ros-humble-ros-workspace: '*' + ros-humble-gmock-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-tools-0.25.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-gmock-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: fefdfd57af637b283da3194d9e8a0707 - sha256: e3da2c513be5a5e6a8283e20da6735d43a0e9648e8360ddb4e5d635dfefd074b + md5: cc9b41a562552abf7d4338c51064ca6d + sha256: d32a40dc3ff4678f99b8c427b6a87b300b5f6cfd6371aa31c7ae5adf56c48f5b optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 58046 - timestamp: 1675813615653 -- name: ros-humble-urdfdom-headers - version: 1.0.6 + size: 11999 + timestamp: 1675759819349 +- name: ros-humble-ament-cmake-gtest + version: 1.3.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake-test: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + gtest: '*' numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' + ros-humble-gtest-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-urdfdom-headers-1.0.6-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-gtest-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: 99e4f10e88a7e21adcb150837ad97bb7 - sha256: ef50247dcbea8d678c8f746c9887f14eadaed8ef4614521dc1e6209906d255a3 + md5: 3e96332e936be1f7a849f63d1ccce778 + sha256: 34547a13dd9e5b8dcc668672ec78363b608a703a5e15a9081e0e8d74681999d1 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 19419 - timestamp: 1675722420677 -- name: ros-humble-ament-cmake-auto + size: 12584 + timestamp: 1675756335646 +- name: ros-humble-ament-cmake-pytest version: 1.3.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' + ros-humble-ament-cmake-test: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-ament-cmake-gtest: '*' + pytest: '*' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-auto-1.3.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-pytest-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: 350f564d41762ead10cb6a9f15dfdd43 - sha256: dbff53c58fb0bdca1b779ebf6b96afe192466dbc3faf627ada54d034ff3022cb + md5: 1f363c50f09d186ded3a18164d6b8813 + sha256: 4ff95fcf0d1c52efeef226a0f75f9759dad26d62ce8cdc7d6ce9fd707b116b17 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 13124 - timestamp: 1675762905026 + size: 12027 + timestamp: 1675754201387 - name: ros-humble-ament-lint-auto version: 0.12.5 manager: conda @@ -34261,37 +33712,6 @@ package: build_number: 3 size: 200301 timestamp: 1675816237458 -- name: ros-humble-rosbag2-py - version: 0.15.4 - manager: conda - platform: win-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosbag2-storage: '*' - ros-humble-rosbag2-compression: '*' - ros-humble-rpyutils: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-rosbag2-cpp: '*' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' - ros-humble-rosbag2-transport: '*' - ros-humble-ros-workspace: '*' - ros-humble-pybind11-vendor: '*' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosbag2-py-0.15.4-py310ha45506e_3.tar.bz2 - hash: - md5: ac566ff62f64570a8ef4adfdcc2acdc5 - sha256: 8d615d31028c02355d3bf78c04d981df7155030f24d159bc4851f8b8ea4b0912 - optional: false - category: main - build: py310ha45506e_3 - arch: x86_64 - subdir: win-64 - build_number: 3 - size: 445004 - timestamp: 1675826237278 - name: ros-humble-rosbag2-storage version: 0.15.4 manager: conda @@ -34438,295 +33858,675 @@ package: build_number: 3 size: 10492 timestamp: 1675763269418 -- name: ros-humble-tinyxml2-vendor - version: 0.7.5 +- name: ros-humble-rosidl-generator-py + version: 0.14.4 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rpyutils: '*' + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-parser: '*' + ros-humble-rosidl-typesupport-interface: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ament-index-python: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-generator-c: '*' + ros-humble-rosidl-typesupport-c: '*' + ros-humble-ament-cmake: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-python-cmake-module: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-generator-py-0.14.4-py310ha45506e_3.tar.bz2 + hash: + md5: a574f4fdc321639e8366a2f12d3b9dd2 + sha256: 92dc68f2da9d2871ca4c5b8bec5a6f28bc9f1e2dd548e756c856cd42279fd964 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 44029 + timestamp: 1675785362939 +- name: ros-humble-rosidl-typesupport-fastrtps-c + version: 2.2.0 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-typesupport-interface: '*' + ucrt: '>=10.0.20348.0' + ros-humble-fastcdr: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-ament-index-python: '*' + ros-humble-ament-cmake-ros: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-generator-c: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-fastrtps-cmake-module: '*' + vs2015_runtime: '>=14.29.30139' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.0-py310ha45506e_3.tar.bz2 + hash: + md5: 44f2c1d3ee99061c6a49cf39a6294830 + sha256: 7abae49fe7c29f00227fc11a1454d1fd0eaf17a1cc937d0b03435debabf18dad + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 35104 + timestamp: 1675783502595 +- name: ros-humble-rosidl-typesupport-fastrtps-cpp + version: 2.2.0 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-typesupport-interface: '*' + ucrt: '>=10.0.20348.0' + ros-humble-fastcdr: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-ament-index-python: '*' + ros-humble-ament-cmake-ros: '*' + ros-humble-rosidl-generator-cpp: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-fastrtps-cmake-module: '*' + vs2015_runtime: '>=14.29.30139' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.0-py310ha45506e_3.tar.bz2 + hash: + md5: 1861e756af06448b637f0bc2428624b4 + sha256: 3e1b501b69ed762a23d95f025cf92249ca6e2f1b1d5adb929a0061212de0ad9f + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 35884 + timestamp: 1675783282003 +- name: ros-humble-rosidl-typesupport-introspection-c + version: 3.1.4 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-parser: '*' + numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-introspection-c-3.1.4-py310ha45506e_3.tar.bz2 + hash: + md5: 990670b6cc4dfbdc67840dace677a11e + sha256: cc0a9a614a9e6de9652d4003a02315fbc9094b91be9ec679e7a1ad6992959287 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 58473 + timestamp: 1675779514893 +- name: ros-humble-rosidl-typesupport-introspection-cpp + version: 3.1.4 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-cli: '*' + ros-humble-rosidl-parser: '*' + ros-humble-rosidl-typesupport-interface: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-ament-cmake: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-rosidl-typesupport-introspection-c: '*' + vs2015_runtime: '>=14.29.30139' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.4-py310ha45506e_3.tar.bz2 + hash: + md5: b5b894fe73c06a9ea6ac1b8e9a384b43 + sha256: 6936615d2570b5e953e36c01f204084487e2c45f3d7bc67b5622ca545240635a + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 32906 + timestamp: 1675781380 +- name: ros-humble-rosidl-cmake + version: 3.1.4 + manager: conda + platform: win-64 + dependencies: + empy: '*' + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ros-humble-rosidl-parser: '*' + numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-adapter: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-cmake-3.1.4-py310ha45506e_3.tar.bz2 + hash: + md5: bfc90c07882de6c1038182fe1ba6bf3a + sha256: e0efe236bcbb644ffcd1f68c39a65748a9d458824e32938ea58a19909d1fae4a + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 26118 + timestamp: 1675775468056 +- name: ros-humble-fastcdr + version: 1.0.24 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-fastcdr-1.0.24-py310ha45506e_3.tar.bz2 + hash: + md5: 0a1224155cdd5732d37910efc607bd5e + sha256: dda3a476299b7a20d991340db742f7c3c7bb10013c6e0cd3c5fa9839abffc448 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 66926 + timestamp: 1675722374689 +- name: ros-humble-fastrtps-cmake-module + version: 2.2.0 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-fastrtps-cmake-module-2.2.0-py310ha45506e_3.tar.bz2 + hash: + md5: e62a5db3a31f077c0de7d553ee6f27a7 + sha256: a37d049712dd47d6ed3b64e24c2ce9015c94407d078e51028f286a7e5fddba37 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 10334 + timestamp: 1675770430577 +- name: ros-humble-fastrtps + version: 2.6.4 manager: conda platform: win-64 dependencies: python: '*' + openssl: '>=3.0.8,<4.0a0' python_abi: 3.10.* *_cp310 + ros-humble-foonathan-memory-vendor: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + ros-humble-fastcdr: '*' ros-humble-ros-workspace: '*' tinyxml2: '>=9.0.0,<10.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tinyxml2-vendor-0.7.5-py310h3073ef2_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-fastrtps-2.6.4-py310h3b33bf3_3.tar.bz2 hash: - md5: f5533378df391c53269d216c79351996 - sha256: 3a61293fe1de3b0339be337fcb3ac5625043f79790b1822201507a067a42e7cb + md5: a0c95e80abc6c3bb23d522c205b52e37 + sha256: 2c1e6ec7f7e129fc00118f4a24b72d1fe5b51052901119cacde415fb2584478f optional: false category: main - build: py310h3073ef2_3 + build: py310h3b33bf3_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10510 - timestamp: 1675763130254 -- name: ros-humble-urdf-parser-plugin - version: 2.6.0 + size: 2896132 + timestamp: 1675860469843 +- name: ros-humble-rmw-dds-common + version: 1.6.0 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-rosidl-default-runtime: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-urdfdom-headers: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-urdf-parser-plugin-2.6.0-py310ha45506e_3.tar.bz2 + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-dds-common-1.6.0-py310ha45506e_3.tar.bz2 hash: - md5: 183c0edc5105876aa32f43eabb1b8086 - sha256: 2f85e8d3c6e255c0e91f9260aca1a71d0c49324c9c4d28b876f31cfb4ab5e9fd + md5: 34783e791df82f0205f11b46e327cb32 + sha256: 60c223c778a89363c8c4c93c09b20c1a36bfd66380fcbf7fb1a1ccf843463702 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 142902 + timestamp: 1675788093659 +- name: ros-humble-rmw-fastrtps-shared-cpp + version: 6.2.2 + manager: conda + platform: win-64 + dependencies: + ros-humble-fastrtps: '*' + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-tracetools: '*' + ros-humble-rcutils: '*' + ros-humble-fastcdr: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ucrt: '>=10.0.20348.0' + ros-humble-rmw-dds-common: '*' + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-fastrtps-cmake-module: '*' + ros-humble-rosidl-typesupport-introspection-c: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-fastrtps-shared-cpp-6.2.2-py310ha45506e_3.tar.bz2 + hash: + md5: 8cdb30d214d7371d9931a30ee8df9856 + sha256: 60952d14a154904ea6cbadf6848270db852d09cfcc2b9de2af63dcbe71b71602 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 229541 + timestamp: 1675790397933 +- name: ros-humble-ament-cmake-core + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-ament-package: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + cmake: '*' + numpy: '>=1.21.6,<2.0a0' + catkin_pkg: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-core-1.3.3-py310ha45506e_3.tar.bz2 + hash: + md5: e9c3dcc3f512a129ced17dc698074689 + sha256: dc389f7ac62795a1849e42a6ab553f7e9dab04f626c9d425c9dcbd9943035670 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 32593 + timestamp: 1675720021452 +- name: ros-humble-ament-cmake-export-definitions + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-definitions-1.3.3-py310ha45506e_3.tar.bz2 + hash: + md5: 41cc5f60e84b0cce50117bf1d3ace804 + sha256: 872cddb3702cef17f4e31af6f66bfdb935efeca06f5e8864e9adc2faa81aa98a + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 10128 + timestamp: 1675721624236 +- name: ros-humble-ament-cmake-export-dependencies + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ament-cmake-libraries: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-dependencies-1.3.3-py310ha45506e_3.tar.bz2 + hash: + md5: b61ed756f3b0e231ed0416d52a7f6384 + sha256: 57aa3cb42b8eabecf70cf3928a967837f82abe72e87fef5fbdc2280e2366f910 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 10947 + timestamp: 1675732999411 +- name: ros-humble-ament-cmake-export-include-directories + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-include-directories-1.3.3-py310ha45506e_3.tar.bz2 + hash: + md5: 3e62d13144091d9ff4d219171115c39b + sha256: e5dd413f0ed25e17b4a468b070e311df67340f52470a6e0eae865ed59bfa1817 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 13040 - timestamp: 1675773021644 -- name: ros-humble-urdfdom - version: 3.0.2 + size: 10483 + timestamp: 1675721557148 +- name: ros-humble-ament-cmake-export-interfaces + version: 1.3.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-console-bridge-vendor: '*' ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + ros-humble-ament-cmake-export-libraries: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-tinyxml-vendor: '*' - ros-humble-urdfdom-headers: '*' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' ros-humble-ros-workspace: '*' - tinyxml: '*' - console_bridge: '>=1.0.2,<1.1.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-urdfdom-3.0.2-py310haec4aa5_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-interfaces-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: 00145403dfce35e55b23dce9b2312ba0 - sha256: e56a97e3539d55bb51d42b3304661d290c5abd0dfd48dba3be7ece05dd3c0a34 + md5: 99ec299577dffe29a2bbbdd3ba4db93e + sha256: d02bc42c1932ca2da26cc4180fb97f80fd4e63fb0e2fb03b0b27a780f23cbf60 optional: false category: main - build: py310haec4aa5_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 122290 - timestamp: 1675775569091 -- name: ros-humble-python-qt-binding - version: 1.1.1 + size: 10590 + timestamp: 1675734156011 +- name: ros-humble-ament-cmake-export-libraries + version: 1.3.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.6,<5.16.0a0' - ucrt: '>=10.0.20348.0' - numpy: '>=1.21.6,<2.0a0' vc: '>=14.2,<15' - pyqt: '>=5.15.7,<5.16.0a0' - pyqt-builder: '*' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-python-qt-binding-1.1.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-libraries-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: a80afbbaa537e8727b04223751eac841 - sha256: b3d98728b5ef3bea98de772643620851cb6e98140b14e42ff20cb5297e19170b + md5: 59f5b0ce10bf01df205d486adba52cd6 + sha256: c1d432054fec3d390937664b024e311dcb23ba096031edf7da0ad3c9735b89d1 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 32295 - timestamp: 1675831671768 -- name: ros-humble-rqt-gui - version: 1.1.4 + size: 12148 + timestamp: 1675721356499 +- name: ros-humble-ament-cmake-export-link-flags + version: 1.3.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rclpy: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ros-humble-qt-gui: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - catkin_pkg: '*' - ros-humble-ament-index-python: '*' - ros-humble-ros-workspace: '*' ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-gui-1.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-link-flags-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: 01e81e801c4ae3f4f5a7dba81e48b64c - sha256: 3dccda3bb325e02731e7e3352ce3760cfbc4bb4a3c9824099cc655ccfa7b46a1 + md5: 7a2f3a62d0c3ebe1dee3608a6a597629 + sha256: e61e532b3c5224815931c1d674d76f26fb7bdf38f69d0973fdcb7d4ebc9e7d92 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 157184 - timestamp: 1675847922524 -- name: ros-humble-rqt-gui-py - version: 1.1.4 + size: 10057 + timestamp: 1675721489442 +- name: ros-humble-ament-cmake-export-targets + version: 1.3.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rqt-gui: '*' ros2-distro-mutex: 0.3.* humble - ros-humble-qt-gui: '*' + ros-humble-ament-cmake-export-libraries: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-gui-py-1.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-export-targets-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: bf342a6af0b52f3fb6bb592224544536 - sha256: 514eac8b5c730058c56090871879bdaec9e5a91cfe1bccb459fe1d064d71c485 + md5: 6fabdb80dc7c99f73163271b46f3ce16 + sha256: 853a144f3b84a0560bd3fb2700aecf9752dc770cbb84018585dcc3711adb75e0 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 15898 - timestamp: 1675890305418 -- name: ros-humble-qt-dotgraph - version: 2.2.2 + size: 10572 + timestamp: 1675734095011 +- name: ros-humble-ament-cmake-gen-version-h + version: 1.3.3 manager: conda platform: win-64 dependencies: - pydot: '*' python: '*' python_abi: 3.10.* *_cp310 ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-qt-dotgraph-2.2.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-gen-version-h-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: e44e1ba0ad444da962c6546ac31211ad - sha256: e52985460d258506d2f882bb1881318dd920e8ce55124b694ba6288965e6abd9 + md5: c0e8748a5f69b897082648fd3a34f953 + sha256: 73dc2a6f15450ffaa73a6f81ef0de61d7ef4b90e38ed2fc995c98ecf71097d8e optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 46376 - timestamp: 1675841310321 -- name: ros-humble-cv-bridge - version: 3.2.1 + size: 12469 + timestamp: 1675759761399 +- name: ros-humble-ament-cmake-libraries + version: 1.3.3 manager: conda platform: win-64 dependencies: - boost: '>=1.78.0,<1.78.1.0a0' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - py-opencv: '>=4.6.0,<5.0a0' - ros-humble-ament-index-python: '*' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - libopencv: '>=4.6.0,<4.6.1.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-cv-bridge-3.2.1-py310h9afa7c5_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-libraries-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: b6de398e64bac004c5774d8894e614b5 - sha256: d3f3b807bbc3963528088522d1742cd6e1115ce2db6a5e9b407ab908f0f2e83a + md5: cbb7267695bf614ee0bdcae05e06c6a0 + sha256: 1c230438cf34e3fd7b6678fba7f89064eefaefc51c61a48d2293f7e8d8c1b63b optional: false category: main - build: py310h9afa7c5_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 134383 - timestamp: 1675798779409 -- name: ros-humble-qt-gui-cpp - version: 2.2.2 + size: 10364 + timestamp: 1675721808618 +- name: ros-humble-ament-cmake-python + version: 1.3.3 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - qt-main: '>=5.15.8,<5.16.0a0' - ros-humble-qt-gui: '*' - ucrt: '>=10.0.20348.0' - pep517: '*' - ros-humble-pluginlib: '*' - ros-humble-ros-workspace: '*' - vc: '>=14.2,<15' - ros-humble-tinyxml2-vendor: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - pyqt-builder: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-qt-gui-cpp-2.2.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-python-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: 1a31cbbb2cdf95d137d57edeba6463ab - sha256: e552f4258c5d799d1172b8a861c00816f0082649c0f26bebacf9741baf3deef6 + md5: 4fd7a49510f0a6b1ae1b58832dea62d3 + sha256: 46d999fc186fbc58d6ef65d18e9d254a6407715e8770948bdf9e796434fea2c3 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10826 - timestamp: 1675846522904 -- name: ros-humble-rqt-gui-cpp - version: 1.1.4 + size: 12422 + timestamp: 1675721671743 +- name: ros-humble-ament-cmake-target-dependencies + version: 1.3.3 manager: conda platform: win-64 dependencies: - ros-humble-rclcpp: '*' python: '*' python_abi: 3.10.* *_cp310 ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.8,<5.16.0a0' - ros-humble-qt-gui: '*' + ros-humble-ament-cmake-include-directories: '*' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' + ros-humble-ament-cmake-libraries: '*' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - ros-humble-pluginlib: '*' - ros-humble-qt-gui-cpp: '*' ros-humble-ros-workspace: '*' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rqt-gui-cpp-1.1.4-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-target-dependencies-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: a10aad9dc8628db9e71c5ce6bf1f9c8a - sha256: 3ca7e8c65b3c5ab14e6e72f70bdba69e197627d77c5b13d412de18808de8ce02 + md5: b4c30e41ee93f2f3772d386e994ef9aa + sha256: 356ff78a634d8fe729bf0d71bfd6192ee37c21ec138ad5a3d4c11beac72b8fca optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10476 - timestamp: 1675897056160 -- name: ros-humble-qt-gui-py-common - version: 2.2.2 + size: 11529 + timestamp: 1675734036273 +- name: ros-humble-ament-cmake-test + version: 1.3.3 manager: conda platform: win-64 dependencies: @@ -34734,83 +34534,81 @@ package: python_abi: 3.10.* *_cp310 ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - ros-humble-ament-index-python: '*' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-qt-gui-py-common-2.2.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-test-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: c53c09b8d6273e31998383c13fee6139 - sha256: 48fa7ab4d9e4dbdf31b9377fd0c6144c0577be91a9e72b9834776c6f53e6f70e + md5: 80c8f06fd60f2e473ebda9cdc4c80380 + sha256: fbf2064da9f063eafe90626b3e89c776a55c41c03a64306d6c402b73243cdef1 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 27509 - timestamp: 1675840373178 -- name: ros-humble-qt-gui - version: 2.2.2 + size: 28248 + timestamp: 1675733979298 +- name: ros-humble-ament-cmake-version + version: 1.3.3 manager: conda platform: win-64 dependencies: - vs2015_runtime: '>=14.29.30139' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-tango-icons-vendor: '*' ros2-distro-mutex: 0.3.* humble - qt-main: '>=5.15.6,<5.16.0a0' - ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' - ros-humble-python-qt-binding: '*' - catkin_pkg: '*' - pyqt: '>=5.15.7,<5.16.0a0' - ros-humble-ament-index-python: '*' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-qt-gui-2.2.2-py310ha45506e_3.tar.bz2 + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-version-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: 56215d795256d36f429e68f51598bfe0 - sha256: 3efc58ef9a04b5421818906bbf8243c314f51d238f0aa2f8302789bc7e7d5a88 + md5: 3c9de2f62507b3e093cf09d67b6bfd4c + sha256: 1a77926196c96a8018a960c72c8d7cc9ca21bba90ea7dcfa3fd03229746dd1f4 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 176085 - timestamp: 1675845295157 -- name: ros-humble-ignition-cmake2-vendor - version: 0.0.2 + size: 9906 + timestamp: 1675721421080 +- name: ros-humble-rcl-logging-spdlog + version: 2.3.1 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-spdlog-vendor: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - libignition-cmake2: '>=2.16.0,<3.0a0' - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-rcl-logging-interface: '*' + ros-humble-rcutils: '*' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ignition-cmake2-vendor-0.0.2-py310ha45506e_3.tar.bz2 + spdlog: '>=1.11.0,<1.12.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rcl-logging-spdlog-2.3.1-py310h5cedc13_3.tar.bz2 hash: - md5: c5b6776552054d5b68cd5bcc814be09a - sha256: 9b74268ce6fb89b7e1aa5f14f5c363f1ed29e84f83f9f07d51448035e3ccddb4 + md5: ced0ae509a1cc3c58681c4f457f18abe + sha256: ae21607d1dcfc41548bccf707ecef6e1dd81ef76be0bef58423695d027425fcd optional: false category: main - build: py310ha45506e_3 + build: py310h5cedc13_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 7285 - timestamp: 1675841967733 -- name: ros-humble-eigen3-cmake-module - version: 0.1.1 + size: 24300 + timestamp: 1675781558083 +- name: ros-humble-libyaml-vendor + version: 1.2.2 manager: conda platform: win-64 dependencies: @@ -34820,150 +34618,168 @@ package: vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + yaml: '>=0.2.5,<0.3.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-eigen3-cmake-module-0.1.1-py310ha45506e_3.tar.bz2 + yaml-cpp: '>=0.7.0,<0.8.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-libyaml-vendor-1.2.2-py310ha45506e_3.tar.bz2 hash: - md5: b99fecadfc6303766ad9c96071435e86 - sha256: e846a9d9dce62e6aa35418bc950fe1de7fc215f6c9f1a91f228bdcf98f1378d3 + md5: cabebf1bf2f55be3f149a6211146bb9b + sha256: 47a19974117dc0cbe9a173e7d501144b41ba448eaab226278bc9bbd73ed55bd2 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9799 - timestamp: 1675766896026 -- name: ros-humble-sensor-msgs-py - version: 4.2.3 + size: 12236 + timestamp: 1675779606021 +- name: ros-humble-rosidl-typesupport-interface + version: 3.1.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-sensor-msgs: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-sensor-msgs-py-4.2.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-typesupport-interface-3.1.4-py310ha45506e_3.tar.bz2 hash: - md5: 3387aebb99b42572b601f5bbeb4dbb3d - sha256: 1970e84031c4fd4efb8f9d9ced69e276fb4c3a7f213496118b4e28b5c8d20edd + md5: 9cdd550d90d2e2cd6077938e05affc5c + sha256: 9c50fafa59337013c2b997bd22b2f874b2cde8b94fb9e9fa46bf4b9926381b3d optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 24666 - timestamp: 1675798178957 -- name: ros-humble-libcurl-vendor - version: 3.1.1 + size: 11671 + timestamp: 1675770348345 +- name: ros-humble-rmw-connextdds + version: 0.11.1 manager: conda platform: win-64 dependencies: python: '*' - libcurl: '>=7.87.0,<8.0a0' - pkg-config: '*' python_abi: 3.10.* *_cp310 + ros-humble-rmw-connextdds-common: '*' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-libcurl-vendor-3.1.1-py310hd7741ce_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-connextdds-0.11.1-py310ha45506e_3.tar.bz2 hash: - md5: 0c59ea551313e1a40bb9f61a62a41229 - sha256: 44ecf1d66579d99d3b0dd8a088feefb54a4e453512985e4e4a851813ee75f4c4 + md5: 7c7d1beac19adeddcdd2b75902212408 + sha256: 40497949d27c5ac20e9d1adf42e85fb16963a576ee4162a003f1abc26e84d83e optional: false category: main - build: py310hd7741ce_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9737 - timestamp: 1675831749071 -- name: ros-humble-yaml-cpp-vendor - version: 8.0.2 + size: 9712 + timestamp: 1675793170 +- name: ros-humble-rmw-fastrtps-dynamic-cpp + version: 6.2.2 manager: conda platform: win-64 dependencies: + ros-humble-fastrtps: '*' python: '*' python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-rmw-fastrtps-shared-cpp: '*' + ros-humble-rcutils: '*' + ros-humble-fastcdr: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rmw-dds-common: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-ros-workspace: '*' + ros-humble-fastrtps-cmake-module: '*' + ros-humble-rosidl-typesupport-introspection-c: '*' vs2015_runtime: '>=14.29.30139' - yaml-cpp: '>=0.7.0,<0.8.0a0' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-yaml-cpp-vendor-8.0.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.2-py310ha45506e_3.tar.bz2 hash: - md5: 1342d4866278e23d40969d87a30cd6a5 - sha256: 60ca68da16d1f8f936c4ce43b1617cae98fd0090f804908cfb517745f3d5530c + md5: 1cb96fb30ff50ca56ef52bf28f31cb69 + sha256: 8bbfc8f183d8ee4717906c2ad206496c763b58fa09a6ed458bf80d03fa841a32 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9222 - timestamp: 1675763200153 -- name: assimp - version: 5.2.5 + size: 176139 + timestamp: 1675795973315 +- name: ros-humble-rmw-implementation-cmake + version: 6.1.1 manager: conda platform: win-64 dependencies: - zlib: '>=1.2.12,<1.3.0a0' - boost-cpp: '>=1.78.0,<1.78.1.0a0' - libzlib: '>=1.2.12,<1.3.0a0' + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/assimp-5.2.5-h4dcb625_0.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-implementation-cmake-6.1.1-py310ha45506e_3.tar.bz2 hash: - md5: 7554b2316e9956f914222d7f820e8b23 - sha256: 330194a1c9b0fb31f589b36100b17af9de6a35d973c5a5bd669e9472af4f9015 + md5: 6ff52cb7f459f66090237b00a7c97fcb + sha256: 9b56d1f3f0671f68c564d4895368827d5f916d3560d5ddc239b3e249c4338a30 optional: false category: main - build: h4dcb625_0 + build: py310ha45506e_3 + arch: x86_64 subdir: win-64 - build_number: 0 - license: Modified BSD - license_family: BSD - size: 2265473 - timestamp: 1663092692351 -- name: ros-humble-rviz-assimp-vendor - version: 11.2.5 + build_number: 3 + size: 12323 + timestamp: 1675771838834 +- name: ros-humble-rosidl-cli + version: 3.1.4 manager: conda platform: win-64 dependencies: - assimp: '>=5.2.5,<5.2.6.0a0' + importlib-metadata: '*' python: '*' python_abi: 3.10.* *_cp310 + argcomplete: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rviz-assimp-vendor-11.2.5-py310h9d4f851_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-cli-3.1.4-py310ha45506e_3.tar.bz2 hash: - md5: e393200d28318ae28b451f366faa5e62 - sha256: a6d41d510b7c7b95a27324013ad69bbf963a83d08ec736ef505ba9fb202b59a0 + md5: 628ea51c0386772058fd2a2c9154777a + sha256: 1e95aebe068cb0159f04182cb06d8310cd8245a831e8f4abd5646b4d253aafd8 optional: false category: main - build: py310h9d4f851_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9845 - timestamp: 1675833997078 -- name: ros-humble-console-bridge-vendor - version: 1.4.1 + size: 75206 + timestamp: 1675763419351 +- name: ros-humble-tinyxml-vendor + version: 0.8.3 manager: conda platform: win-64 dependencies: @@ -34973,54 +34789,49 @@ package: vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' + tinyxml: '*' ros-humble-ros-workspace: '*' - console_bridge: '>=1.0.2,<1.1.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-console-bridge-vendor-1.4.1-py310haec4aa5_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tinyxml-vendor-0.8.3-py310ha45506e_3.tar.bz2 hash: - md5: 9bc4ed07c109a00bbf2cd2e171db23ab - sha256: b95ca6e7056949c9d58e7945cad99ea2e214862dcc3c5ea63375953212f50c72 + md5: feea0a10ecd1c46eecca170264fd97e8 + sha256: fe2186494a1b81389998c5220e7d8c45bc91b4aa30591b72190121fedc28ab61 optional: false category: main - build: py310haec4aa5_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9358 - timestamp: 1675772948293 -- name: ros-humble-tf2-ros-py - version: 0.25.2 + size: 10282 + timestamp: 1675763065864 +- name: ros-humble-pybind11-vendor + version: 2.4.2 manager: conda platform: win-64 dependencies: - ros-humble-tf2-msgs: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-geometry-msgs: '*' - ros-humble-rclpy: '*' - ros-humble-sensor-msgs: '*' - ros-humble-std-msgs: '*' - ros-humble-tf2-py: '*' + pybind11: '*' ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' vc: '>=14.2,<15' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tf2-ros-py-0.25.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pybind11-vendor-2.4.2-py310ha45506e_3.tar.bz2 hash: - md5: d1b850e4ab0c969218e1689ae0cd209d - sha256: 0d8ff02685860b2514d0c98857804f1b1d0003d337f0e750bff1bde77a9dd323 + md5: 7949c5a55c034b4be4272f5cf3de036a + sha256: 3a3d8411c965271fbbb68011caa3ae49df7757404a6f509fc7c8934c91ad434f optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 38124 - timestamp: 1675811092689 -- name: ros-humble-gmock-vendor - version: 1.10.9004 + size: 8962 + timestamp: 1675763002100 +- name: ros-humble-tango-icons-vendor + version: 0.1.1 manager: conda platform: win-64 dependencies: @@ -35031,22 +34842,21 @@ package: ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' - ros-humble-gtest-vendor: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-gmock-vendor-1.10.9004-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tango-icons-vendor-0.1.1-py310ha45506e_3.tar.bz2 hash: - md5: 2d64f9342e67dd11e60ee1973592308f - sha256: da934f583dee4c33ef2417928a8e4e99e8183dd4a4864efe8d07ab11ed20e561 + md5: 186e3d91ee00b3a8e4ad8d3325022ed7 + sha256: bfcfa6ec95c4fa551b91fb7f88a7f97e4596f81d3be342d405b55e1e845507b9 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 99019 - timestamp: 1675756444061 -- name: ros-humble-gtest-vendor - version: 1.10.9004 + size: 1034500 + timestamp: 1675841530846 +- name: ros-humble-domain-coordinator + version: 0.10.0 manager: conda platform: win-64 dependencies: @@ -35058,58 +34868,46 @@ package: numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-gtest-vendor-1.10.9004-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-domain-coordinator-0.10.0-py310ha45506e_3.tar.bz2 hash: - md5: 8d812bd51f33a61872d19953417b0690 - sha256: ca91fd66fd0cea66745ae9780cd7995fd9d5849c6645aecdcac1f3f1bba02504 + md5: c08e1ae04d3c1a6798ff6fd59af3db81 + sha256: 90421ce2b3a186fd2682e16506c5db453c3ec11e29c8c3a851e92896269d4e61 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 186976 - timestamp: 1675721734138 -- name: ros-humble-rmw-connextdds-common - version: 0.11.1 + size: 10262 + timestamp: 1675760502474 +- name: ros-humble-gmock-vendor + version: 1.10.9004 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros-humble-rcpputils: '*' - ros-humble-rti-connext-dds-cmake-module: '*' - ros-humble-rcutils: '*' - ros-humble-fastcdr: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - ros-humble-rosidl-typesupport-fastrtps-c: '*' - ros-humble-rosidl-typesupport-introspection-cpp: '*' - ros-humble-rosidl-typesupport-fastrtps-cpp: '*' - ros-humble-rmw-dds-common: '*' - ucrt: '>=10.0.20348.0' - ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - ros-humble-rosidl-typesupport-introspection-c: '*' + ros-humble-ros-workspace: '*' + ros-humble-gtest-vendor: '*' vs2015_runtime: '>=14.29.30139' - ros-humble-rosidl-runtime-cpp: '*' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-connextdds-common-0.11.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-gmock-vendor-1.10.9004-py310ha45506e_3.tar.bz2 hash: - md5: 288d2322f308048f20da4505d613bb0b - sha256: ea89ce2c5cd90c6a9d7b732f7e066c3e4f28c8c6b554c0fe744fbaaccecc72ed + md5: 2d64f9342e67dd11e60ee1973592308f + sha256: da934f583dee4c33ef2417928a8e4e99e8183dd4a4864efe8d07ab11ed20e561 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 30355 - timestamp: 1675790494314 -- name: ros-humble-foonathan-memory-vendor - version: 1.2.0 + size: 99019 + timestamp: 1675756444061 +- name: ros-humble-gtest-vendor + version: 1.10.9004 manager: conda platform: win-64 dependencies: @@ -35118,23 +34916,21 @@ package: ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' - cmake: '*' - foonathan-memory: '>=0.7.2,<0.7.3.0a0' numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-foonathan-memory-vendor-1.2.0-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-gtest-vendor-1.10.9004-py310ha45506e_3.tar.bz2 hash: - md5: 73bad8b3a9c8f2ce62ed50ee4c6f8590 - sha256: 2043db06544b72b536b46f631932e9b069a80e5df5e93615b571bfccc0aec678 + md5: 8d812bd51f33a61872d19953417b0690 + sha256: ca91fd66fd0cea66745ae9780cd7995fd9d5849c6645aecdcac1f3f1bba02504 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 8235 - timestamp: 1675767739280 + size: 186976 + timestamp: 1675721734138 - name: ros-humble-ament-cmake-copyright version: 0.12.5 manager: conda @@ -35493,6 +35289,31 @@ package: build_number: 3 size: 128246 timestamp: 1675795919432 +- name: ros-humble-python-cmake-module + version: 0.10.0 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-python-cmake-module-0.10.0-py310ha45506e_3.tar.bz2 + hash: + md5: 19a2865c69deccd4dbe88a9795b62788 + sha256: bce807a7034a3196e228c5069029bc6bb090f181b425d159295fbf9b0bcc5a74 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 11372 + timestamp: 1675770366525 - name: ros-humble-ros2action version: 0.18.5 manager: conda @@ -35876,58 +35697,96 @@ package: build_number: 3 size: 62642 timestamp: 1675813643110 -- name: ros-humble-zstd-vendor - version: 0.15.4 +- name: ros-humble-rosidl-generator-c + version: 3.1.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - vc: '>=14.2,<15' + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + ros-humble-rcutils: '*' + ros-humble-rosidl-parser: '*' + ros-humble-ament-index-python: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-typesupport-interface: '*' ucrt: '>=10.0.20348.0' + ros-humble-rosidl-cmake: '*' + vc: '>=14.2,<15' + ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-generator-c-3.1.4-py310ha45506e_3.tar.bz2 + hash: + md5: b2747d24744af445c82bc7e14d429682 + sha256: a7372cb76f35ecdced6d2bbeaf9d0ab283f4340b0b03f2018971f8c324049527 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 57658 + timestamp: 1675779344329 +- name: ros-humble-rosidl-generator-cpp + version: 3.1.4 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + ros-humble-rosidl-parser: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ament-index-python: '*' ros-humble-ros-workspace: '*' - zstd: '>=1.5.2,<1.6.0a0' + ros-humble-rosidl-generator-c: '*' + ros-humble-rosidl-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-zstd-vendor-0.15.4-py310h1059200_3.tar.bz2 + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-generator-cpp-3.1.4-py310ha45506e_3.tar.bz2 hash: - md5: 86065428a54a2a057da08301b1fd48ab - sha256: 6bdbb546a31ff838a98e04bae80fc8ce2c7a71385fff01c168a712359797fe3c + md5: f7c2c417c0b0ef99c7ba08353e723b90 + sha256: 1a0898409ea984c153ba48de4fbdd7cc30d25164641f2d92ca02ec05666021e4 optional: false category: main - build: py310h1059200_3 + build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 9811 - timestamp: 1675763143637 -- name: ros-humble-pybind11-vendor - version: 2.4.2 + size: 34826 + timestamp: 1675780331163 +- name: ros-humble-zstd-vendor + version: 0.15.4 manager: conda platform: win-64 dependencies: python: '*' python_abi: 3.10.* *_cp310 - pybind11: '*' ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - vc: '>=14.2,<15' ros-humble-ros-workspace: '*' + zstd: '>=1.5.2,<1.6.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-pybind11-vendor-2.4.2-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-zstd-vendor-0.15.4-py310h1059200_3.tar.bz2 hash: - md5: 7949c5a55c034b4be4272f5cf3de036a - sha256: 3a3d8411c965271fbbb68011caa3ae49df7757404a6f509fc7c8934c91ad434f + md5: 86065428a54a2a057da08301b1fd48ab + sha256: 6bdbb546a31ff838a98e04bae80fc8ce2c7a71385fff01c168a712359797fe3c optional: false category: main - build: py310ha45506e_3 + build: py310h1059200_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 8962 - timestamp: 1675763002100 + size: 9811 + timestamp: 1675763143637 - name: ros-humble-keyboard-handler version: 0.0.5 manager: conda @@ -35980,8 +35839,8 @@ package: build_number: 3 size: 192062 timestamp: 1675790452535 -- name: ros-humble-tinyxml-vendor - version: 0.8.3 +- name: ros-humble-rosidl-parser + version: 3.1.4 manager: conda platform: win-64 dependencies: @@ -35991,23 +35850,52 @@ package: vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' numpy: '>=1.21.6,<2.0a0' - tinyxml: '*' + lark-parser: '*' ros-humble-ros-workspace: '*' + ros-humble-rosidl-adapter: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tinyxml-vendor-0.8.3-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-parser-3.1.4-py310ha45506e_3.tar.bz2 hash: - md5: feea0a10ecd1c46eecca170264fd97e8 - sha256: fe2186494a1b81389998c5220e7d8c45bc91b4aa30591b72190121fedc28ab61 + md5: e750305bd2e5d326366d91a80a164672 + sha256: 58bf61824add724a9d1fddb1c0170ccdc432f566b8d34aa0953305a42abb0bd3 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 10282 - timestamp: 1675763065864 -- name: ros-humble-tango-icons-vendor - version: 0.1.1 + size: 53188 + timestamp: 1675772812422 +- name: ros-humble-rosidl-adapter + version: 3.1.4 + manager: conda + platform: win-64 + dependencies: + empy: '*' + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rosidl-adapter-3.1.4-py310ha45506e_3.tar.bz2 + hash: + md5: 4d8e57f1a605ccad04409a3f325b4223 + sha256: b1c1019930deb08223d07d33f39d02420060d7653c60b449b0a0360f80ced192 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 57188 + timestamp: 1675771746647 +- name: ros-humble-foonathan-memory-vendor + version: 1.2.0 manager: conda platform: win-64 dependencies: @@ -36016,47 +35904,140 @@ package: ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' + cmake: '*' + foonathan-memory: '>=0.7.2,<0.7.3.0a0' numpy: '>=1.21.6,<2.0a0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-tango-icons-vendor-0.1.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-foonathan-memory-vendor-1.2.0-py310ha45506e_3.tar.bz2 hash: - md5: 186e3d91ee00b3a8e4ad8d3325022ed7 - sha256: bfcfa6ec95c4fa551b91fb7f88a7f97e4596f81d3be342d405b55e1e845507b9 + md5: 73bad8b3a9c8f2ce62ed50ee4c6f8590 + sha256: 2043db06544b72b536b46f631932e9b069a80e5df5e93615b571bfccc0aec678 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 1034500 - timestamp: 1675841530846 -- name: ros-humble-rti-connext-dds-cmake-module - version: 0.11.1 + size: 8235 + timestamp: 1675767739280 +- name: ros-humble-ament-package + version: 0.14.0 manager: conda platform: win-64 dependencies: + importlib-metadata: '*' python: '*' python_abi: 3.10.* *_cp310 - ros-humble-ament-cmake: '*' ros2-distro-mutex: 0.3.* humble vc: '>=14.2,<15' + setuptools: '*' + importlib_resources: '*' + numpy: '>=1.21.6,<2.0a0' ucrt: '>=10.0.20348.0' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-package-0.14.0-py310ha45506e_3.tar.bz2 + hash: + md5: ab88743972ea928b23caecf8aad2d024 + sha256: c4c3759e27218e114f458eb0aa50c0d1666f4ff2a459768710d19b40548520ff + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 37172 + timestamp: 1675719950646 +- name: ros-humble-ament-cmake-include-directories + version: 1.3.3 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ros-humble-ament-cmake-core: '*' numpy: '>=1.21.6,<2.0a0' + ucrt: '>=10.0.20348.0' ros-humble-ros-workspace: '*' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rti-connext-dds-cmake-module-0.11.1-py310ha45506e_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-ament-cmake-include-directories-1.3.3-py310ha45506e_3.tar.bz2 hash: - md5: 941558f44f162965fecaa8814c317407 - sha256: 228f84204b347c326d88e8f2fb91bd62680c4152d8475c280ef4ab3106c0c1b7 + md5: 7c930ee2af50ca64e27b23115114ca1f + sha256: b0ecbbba4dd33b7c7f097e9709fe709c367389ef1b007ce4bcc91121dabe5477 optional: false category: main build: py310ha45506e_3 arch: x86_64 subdir: win-64 build_number: 3 - size: 14478 - timestamp: 1675771756390 + size: 10015 + timestamp: 1675721882477 +- name: ros-humble-spdlog-vendor + version: 1.3.1 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + spdlog: '>=1.11.0,<1.12.0a0' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-spdlog-vendor-1.3.1-py310h5cedc13_3.tar.bz2 + hash: + md5: ce4acb9535b9ebb232978f45f7e5535a + sha256: 32481d4c86e5674bc34ea3088cbe6fd140adc9623698911c5c295f80dd847b7e + optional: false + category: main + build: py310h5cedc13_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 9208 + timestamp: 1675771647685 +- name: ros-humble-rmw-connextdds-common + version: 0.11.1 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rcpputils: '*' + ros-humble-rti-connext-dds-cmake-module: '*' + ros-humble-rcutils: '*' + ros-humble-fastcdr: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + ros-humble-rosidl-typesupport-fastrtps-c: '*' + ros-humble-rosidl-typesupport-introspection-cpp: '*' + ros-humble-rosidl-typesupport-fastrtps-cpp: '*' + ros-humble-rmw-dds-common: '*' + ucrt: '>=10.0.20348.0' + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + ros-humble-rosidl-typesupport-introspection-c: '*' + vs2015_runtime: '>=14.29.30139' + ros-humble-rosidl-runtime-cpp: '*' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rmw-connextdds-common-0.11.1-py310ha45506e_3.tar.bz2 + hash: + md5: 288d2322f308048f20da4505d613bb0b + sha256: ea89ce2c5cd90c6a9d7b732f7e066c3e4f28c8c6b554c0fe744fbaaccecc72ed + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 30355 + timestamp: 1675790494314 - name: ros-humble-ament-copyright version: 0.12.5 manager: conda @@ -36294,6 +36275,32 @@ package: build_number: 3 size: 30228 timestamp: 1675794355605 +- name: ros-humble-rti-connext-dds-cmake-module + version: 0.11.1 + manager: conda + platform: win-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + numpy: '>=1.21.6,<2.0a0' + ros-humble-ros-workspace: '*' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/robostack-staging/win-64/ros-humble-rti-connext-dds-cmake-module-0.11.1-py310ha45506e_3.tar.bz2 + hash: + md5: 941558f44f162965fecaa8814c317407 + sha256: 228f84204b347c326d88e8f2fb91bd62680c4152d8475c280ef4ab3106c0c1b7 + optional: false + category: main + build: py310ha45506e_3 + arch: x86_64 + subdir: win-64 + build_number: 3 + size: 14478 + timestamp: 1675771756390 - name: ros-humble-ament-lint version: 0.12.5 manager: conda @@ -36506,42 +36513,42 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.36.32532' - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_16.conda + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda hash: - md5: d3efb6bb0e11b1f97cf313413d80f027 - sha256: 43b4b3e0a80b213cf9fc1f9b5a7cf54e59a4035aaf2f0ec0d94260de172fd3e0 + md5: 4618046c39f7c81861e53ded842e738a + sha256: 5ecbd731dc7f13762d67be0eadc47eb7f14713005e430d9b5fc680e965ac0f81 optional: false category: main - build: h05e6639_16 + build: h05e6639_17 subdir: win-64 - build_number: 16 + build_number: 17 license: BSD-3-Clause license_family: BSD - size: 17137 - timestamp: 1687559691769 + size: 17207 + timestamp: 1688020635322 - name: vc14_runtime version: 14.36.32532 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hfdfe4a8_16.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hfdfe4a8_17.conda hash: - md5: 4a7ead1af5bfda5dc94ef403d8814eeb - sha256: 32b8f542510e71accdcf12130170d2206315e6359ace890227f75484022e17df + md5: 91c1ecaf3996889532fc0456178b1058 + sha256: e76986c555647347a0185e646ef65625dabed60da255f6b30367df8bd6dc6cd8 optional: false category: main - build: hfdfe4a8_16 + build: hfdfe4a8_17 subdir: win-64 - build_number: 16 + build_number: 17 constrains: - - vs2015_runtime 14.36.32532.* *_16 + - vs2015_runtime 14.36.32532.* *_17 license: LicenseRef-ProprietaryMicrosoft license_family: Proprietary - size: 740963 - timestamp: 1687559673113 + size: 740599 + timestamp: 1688020615962 - name: numpy - version: 1.25.0 + version: 1.25.1 manager: conda platform: win-64 dependencies: @@ -36553,10 +36560,10 @@ package: libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.25.0-py310hd02465a_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.25.1-py310hd02465a_0.conda hash: - md5: 63be5dd380067c6db32243e6ca56e8e8 - sha256: 2acd83d05b9095927dd7b147ac14140f13a97b45bdac1762d97f2009b2dfda77 + md5: 922f75b8698c5b9909bf03c658898117 + sha256: 25e07d23dd78641537082fd9b0c4183784fcc1d84c65f207d6e2e7ede7702c8f optional: false category: main build: py310hd02465a_0 @@ -36565,9 +36572,8 @@ package: constrains: - numpy-base <0a0 license: BSD-3-Clause - license_family: BSD - size: 5954500 - timestamp: 1687056952296 + size: 5985520 + timestamp: 1688887651966 - name: python version: 3.10.12 manager: conda @@ -36835,28 +36841,28 @@ package: size: 840772 timestamp: 1684265331419 - name: importlib_resources - version: 5.12.0 + version: 6.0.0 manager: conda platform: win-64 dependencies: python: '>=3.7' zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.0.0-pyhd8ed1ab_0.conda hash: - md5: e5fd2260a231ee63b6969f4801082f2b - sha256: 091cca3e010f7a7353152f0abda2d68cfd83ddde80a15e974d9e18b2047e7be2 + md5: acf36c4210f71dbf45a83409a9b5ff4d + sha256: cfdc0bb498d6957e360181947b8f07c1128606e9fc27eb4b8aca421857d4127a optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 constrains: - - importlib-resources >=5.12.0,<5.12.1.0a0 + - importlib-resources >=6.0.0,<6.0.1.0a0 license: Apache-2.0 license_family: APACHE noarch: python - size: 31030 - timestamp: 1676919099370 + size: 27488 + timestamp: 1688813652372 - name: cryptography version: 41.0.1 manager: conda @@ -37002,25 +37008,25 @@ package: size: 151082 timestamp: 1666773233639 - name: graphviz - version: 8.0.5 + version: 8.1.0 manager: conda platform: win-64 dependencies: getopt-win32: '>=0.1,<0.2.0a0' gts: '>=0.7.6,<0.8.0a0' - libglib: '>=2.76.2,<3.0a0' + libglib: '>=2.76.4,<3.0a0' cairo: '>=1.16.0,<2.0a0' - libwebp-base: '>=1.3.0,<2.0a0' + libwebp-base: '>=1.3.1,<2.0a0' libgd: '>=2.3.3,<2.4.0a0' libexpat: '>=2.5.0,<3.0a0' ucrt: '>=10.0.20348.0' pango: '>=1.50.14,<2.0a0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/graphviz-8.0.5-h51cb2cd_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/graphviz-8.1.0-h51cb2cd_0.conda hash: - md5: ddd4c41fe063b15f4b8e0632dce89ef6 - sha256: d5cf66c5979bb970484157bd5b9131c4958f1ba572567080ee09f6bc229515dd + md5: 9210fb205efeb651d866bcd4eef3733d + sha256: c66094624459b4c2703076d67bdf2bdfdd5bcbe694451b1362504804812c7bb8 optional: false category: main build: h51cb2cd_0 @@ -37028,8 +37034,8 @@ package: build_number: 0 license: EPL-1.0 license_family: Other - size: 1146403 - timestamp: 1683369004719 + size: 1150268 + timestamp: 1688770656907 - name: libexpat version: 2.5.0 manager: conda @@ -37050,29 +37056,56 @@ package: license_family: MIT size: 138689 timestamp: 1680190844101 +- name: libglib + version: 2.76.4 + manager: conda + platform: win-64 + dependencies: + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' + vc: '>=14.2,<15' + libiconv: '>=1.17,<2.0a0' + ucrt: '>=10.0.20348.0' + libzlib: '>=1.2.13,<1.3.0a0' + gettext: '>=0.21.1,<1.0a0' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.76.4-he8f3873_0.conda + hash: + md5: 8c3f24acdc0403eeb3fb42ab75e8a659 + sha256: 4d7b96d0ed8b46df5ccd5de7e726c1ed81c9dc4526460e7608d9dbdbb8ac18f5 + optional: false + category: main + build: he8f3873_0 + subdir: win-64 + build_number: 0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2612308 + timestamp: 1688695049371 - name: libwebp-base - version: 1.3.0 + version: 1.3.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.0-hcfcfb64_0.conda + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.1-hcfcfb64_0.conda hash: - md5: 381a3645c51cbf478872899b16490318 - sha256: 9355940270db76592a1cdbcb840740afb5f6b81d167ac4f2cb0fbb2c37397566 + md5: f89e765213cac556a8ed72ba8c1b5071 + sha256: 1652438917a14bf67c1dc5a94a431f45fece7837c016a7144979a50924faa1b7 optional: false category: main build: hcfcfb64_0 subdir: win-64 build_number: 0 constrains: - - libwebp 1.3.0 + - libwebp 1.3.1 license: BSD-3-Clause license_family: BSD - size: 268368 - timestamp: 1678667185248 + size: 268638 + timestamp: 1688047352914 - name: getopt-win32 version: '0.1' manager: conda @@ -37118,6 +37151,66 @@ package: license: LGPL-2.1-or-later size: 441841 timestamp: 1677859377005 +- name: gettext + version: 0.21.1 + manager: conda + platform: win-64 + dependencies: + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2 + hash: + md5: 299d4fd6798a45337042ff5a48219e5f + sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616 + optional: false + category: main + build: h5728263_0 + subdir: win-64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 5579416 + timestamp: 1665676022441 +- name: libiconv + version: '1.17' + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2 + hash: + md5: 050119977a86e4856f0416e2edcf81bb + sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1 + optional: false + category: main + build: h8ffe710_0 + subdir: win-64 + build_number: 0 + license: GPL and LGPL + size: 714518 + timestamp: 1652702326553 +- name: pcre2 + version: '10.40' + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2 + hash: + md5: 2519de0d9620dc2bc7e19caf6867136d + sha256: 5833c63548e4fae91da6d77739eab7dc9bf6542e43f105826b23c01bfdd9cb57 + optional: false + category: main + build: h17e33f8_0 + subdir: win-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 2001630 + timestamp: 1665563527916 - name: fonts-conda-ecosystem version: '1' manager: conda @@ -37212,25 +37305,6 @@ package: noarch: generic size: 4102 timestamp: 1566932280397 -- name: libiconv - version: '1.17' - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2 - hash: - md5: 050119977a86e4856f0416e2edcf81bb - sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1 - optional: false - category: main - build: h8ffe710_0 - subdir: win-64 - build_number: 0 - license: GPL and LGPL - size: 714518 - timestamp: 1652702326553 - name: font-ttf-dejavu-sans-mono version: '2.37' manager: conda @@ -37270,16 +37344,16 @@ package: size: 1961279 timestamp: 1566932680646 - name: importlib-metadata - version: 6.7.0 + version: 6.8.0 manager: conda platform: win-64 dependencies: python: '>=3.8' zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.7.0-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda hash: - md5: ba3786c6846e46038fe60c785d46dc81 - sha256: 1ffffc30dc67d8329d47c6d22de726cfd28d7ed236bca54f52fc0bdcd0a53fc7 + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf optional: false category: main build: pyha770c72_0 @@ -37288,8 +37362,8 @@ package: license: Apache-2.0 license_family: APACHE noarch: python - size: 25884 - timestamp: 1687138526439 + size: 25910 + timestamp: 1688754651944 - name: cmake version: 3.26.4 manager: conda @@ -37311,6 +37385,46 @@ package: license_family: BSD size: 15107993 timestamp: 1684462053404 +- name: yaml + version: 0.2.5 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + hash: + md5: adbfb9f45d1004a26763652246a33764 + sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 + optional: false + category: main + build: h8ffe710_2 + subdir: win-64 + build_number: 2 + license: MIT + license_family: MIT + size: 63274 + timestamp: 1641347623319 +- name: yaml-cpp + version: 0.7.0 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.7.0-h63175ca_2.tar.bz2 + hash: + md5: 27c8a78ba0cd18268cfc7b04c5512162 + sha256: b26b8ea17d1f8146c66c1b7b6acec3c759c2207a2e691e69a2a7cccdd2e1acae + optional: false + category: main + build: h63175ca_2 + subdir: win-64 + build_number: 2 + license: MIT + license_family: MIT + size: 148637 + timestamp: 1664346448401 - name: eigen version: 3.4.0 manager: conda @@ -37454,6 +37568,28 @@ package: license_family: BSD size: 31331880 timestamp: 1673222852995 +- name: libxslt + version: 1.1.37 + manager: conda + platform: win-64 + dependencies: + libxml2: '>=2.10.3,<2.11.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.37-h0192164_0.tar.bz2 + hash: + md5: 58a3caeeb5827ce15243ec89791d0caa + sha256: ebd0ae412487548e77c146efdf9b1026c1d029c5397f79ce32406743d7bcee1a + optional: false + category: main + build: h0192164_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 517287 + timestamp: 1666902730512 - name: pydocstyle version: 6.3.0 manager: conda @@ -37604,48 +37740,6 @@ package: license_family: BSD size: 530818 timestamp: 1623789181657 -- name: spdlog - version: 1.11.0 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - fmt: '>=9.1.0,<10.0a0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/spdlog-1.11.0-hfbadfc6_1.conda - hash: - md5: 6799a53c4a333d953a97cc9e679d505a - sha256: 3ed18858d6da3c3f2e69a0ca5273cc450687b3d0c1e08861d3180ef8f2023749 - optional: false - category: main - build: hfbadfc6_1 - subdir: win-64 - build_number: 1 - license: MIT - license_family: MIT - size: 183547 - timestamp: 1673570552089 -- name: fmt - version: 9.1.0 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30037' - url: https://conda.anaconda.org/conda-forge/win-64/fmt-9.1.0-h181d51b_0.tar.bz2 - hash: - md5: 31a20cf261b2bd0a76d670db1b3e6fa1 - sha256: b4882f05294a46949cf4d15e4b2c50f29257b0d042d7d8184e4722b392d71193 - optional: false - category: main - build: h181d51b_0 - subdir: win-64 - build_number: 0 - license: MIT - license_family: MIT - size: 185870 - timestamp: 1661662536794 - name: pybind11 version: 2.10.4 manager: conda @@ -37705,20 +37799,20 @@ package: ucrt: '>=10.0.20348.0' libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_6.conda + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_7.conda hash: - md5: 62826565682d013b3e2346aaf7bded0e - sha256: ef23b2eb748b0b2139755e5a20d49a642340af1313017918dc91b4a4ce8f3bd9 + md5: f3c3879d8cda1c5a6885435dd48a470e + sha256: 33e8fb73dee10740f00d4a450ad2d7f6d90692ca781480fa18fa70fd417d53ad optional: false category: main - build: h12be248_6 + build: h12be248_7 subdir: win-64 - build_number: 6 + build_number: 7 license: BSD-3-Clause license_family: BSD - size: 288404 - timestamp: 1674245855297 + size: 289661 + timestamp: 1688722138074 - name: empy version: 3.3.4 manager: conda @@ -37786,46 +37880,46 @@ package: license_family: BSD size: 110934 timestamp: 1666961260220 -- name: packaging - version: '23.1' +- name: argcomplete + version: 3.1.1 manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.1.1-pyhd8ed1ab_0.conda hash: - md5: 91cda59e66e1e4afe9476f8ef98f5c30 - sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 + md5: 964bace0c38ce4733851a2a29679e3f9 + sha256: 1fe9b55d3daeb26ac404ec51f106ce8792d7d6548810ca87600cd9b9e9cfbd6e optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 license: Apache-2.0 - license_family: APACHE + license_family: Apache noarch: python - size: 46098 - timestamp: 1681337144376 -- name: argcomplete - version: 3.1.1 + size: 39430 + timestamp: 1686587564613 +- name: packaging + version: '23.1' manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.1.1-pyhd8ed1ab_0.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda hash: - md5: 964bace0c38ce4733851a2a29679e3f9 - sha256: 1fe9b55d3daeb26ac404ec51f106ce8792d7d6548810ca87600cd9b9e9cfbd6e + md5: 91cda59e66e1e4afe9476f8ef98f5c30 + sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 license: Apache-2.0 - license_family: Apache + license_family: APACHE noarch: python - size: 39430 - timestamp: 1686587564613 + size: 46098 + timestamp: 1681337144376 - name: netifaces version: 0.11.0 manager: conda @@ -37866,66 +37960,48 @@ package: license: Zlib size: 249248 timestamp: 1661195878787 -- name: lark-parser - version: 0.12.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 2d1f963b23792b269635b9b32bee1913 - sha256: 5a1b0fb3c9e6ba7f8c5788d0bc90aadc85f88371ba261c07edf951805988f89a - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 79371 - timestamp: 1630320889981 -- name: yaml - version: 0.2.5 +- name: spdlog + version: 1.11.0 manager: conda platform: win-64 dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + ucrt: '>=10.0.20348.0' + fmt: '>=9.1.0,<10.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/spdlog-1.11.0-hfbadfc6_1.conda hash: - md5: adbfb9f45d1004a26763652246a33764 - sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 + md5: 6799a53c4a333d953a97cc9e679d505a + sha256: 3ed18858d6da3c3f2e69a0ca5273cc450687b3d0c1e08861d3180ef8f2023749 optional: false category: main - build: h8ffe710_2 + build: hfbadfc6_1 subdir: win-64 - build_number: 2 + build_number: 1 license: MIT license_family: MIT - size: 63274 - timestamp: 1641347623319 -- name: yaml-cpp - version: 0.7.0 + size: 183547 + timestamp: 1673570552089 +- name: fmt + version: 9.1.0 manager: conda platform: win-64 dependencies: vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.7.0-h63175ca_2.tar.bz2 + vs2015_runtime: '>=14.29.30037' + url: https://conda.anaconda.org/conda-forge/win-64/fmt-9.1.0-h181d51b_0.tar.bz2 hash: - md5: 27c8a78ba0cd18268cfc7b04c5512162 - sha256: b26b8ea17d1f8146c66c1b7b6acec3c759c2207a2e691e69a2a7cccdd2e1acae + md5: 31a20cf261b2bd0a76d670db1b3e6fa1 + sha256: b4882f05294a46949cf4d15e4b2c50f29257b0d042d7d8184e4722b392d71193 optional: false category: main - build: h63175ca_2 + build: h181d51b_0 subdir: win-64 - build_number: 2 + build_number: 0 license: MIT license_family: MIT - size: 148637 - timestamp: 1664346448401 + size: 185870 + timestamp: 1661662536794 - name: libcurl version: 7.88.1 manager: conda @@ -38132,18 +38208,18 @@ package: size: 469830 timestamp: 1648739797996 - name: libwebp - version: 1.3.0 + version: 1.3.1 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - libwebp-base: '>=1.3.0,<2.0a0' + vc14_runtime: '>=14.29.30139' + libwebp-base: '>=1.3.1,<2.0a0' vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-1.3.0-hcfcfb64_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-1.3.1-hcfcfb64_0.conda hash: - md5: 0c1f2c4b45406631c600ec22ca9523fc - sha256: 9100912fc7f8f9772299ca44801c3a44e129e01e9e7acf9210d01aa43e25f19e + md5: cc9d668f51da7f6506185ab1130bcd57 + sha256: 79d42a947ab7b51a4cb64ce730410f2b84738de3bbc4fc718ab07d099c43ae42 optional: false category: main build: hcfcfb64_0 @@ -38151,8 +38227,8 @@ package: build_number: 0 license: BSD-3-Clause license_family: BSD - size: 70132 - timestamp: 1678730912305 + size: 70852 + timestamp: 1688059798914 - name: boost version: 1.78.0 manager: conda @@ -38334,996 +38410,580 @@ package: license_family: MIT size: 717332 timestamp: 1671092419752 -- name: libzlib - version: 1.2.13 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda - hash: - md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 - sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 - optional: false - category: main - build: hcfcfb64_5 - subdir: win-64 - build_number: 5 - constrains: - - zlib 1.2.13 *_5 - license: Zlib - license_family: Other - size: 55800 - timestamp: 1686575452215 -- name: zlib - version: 1.2.13 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - libzlib: ==1.2.13 hcfcfb64_5 - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda - hash: - md5: a318e8622e11663f645cc7fa3260f462 - sha256: 0f91b719c7558046bcd37fdc7ae4b9eb2b7a8e335beb8b59ae7ccb285a46aa46 - optional: false - category: main - build: hcfcfb64_5 - subdir: win-64 - build_number: 5 - license: Zlib - license_family: Other - size: 107711 - timestamp: 1686575474476 -- name: freetype - version: 2.12.1 - manager: conda - platform: win-64 - dependencies: - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda - hash: - md5: 1b513009cd012591f3fdc9e03a74ec0a - sha256: fe027235660d9dfe7889c350a51e96bc0134c3f408827a4c58c4b0557409984c - optional: false - category: main - build: h546665d_1 - subdir: win-64 - build_number: 1 - license: GPL-2.0-only and LicenseRef-FreeType - size: 497412 - timestamp: 1669233360876 -- name: freeimage - version: 3.18.0 - manager: conda - platform: win-64 - dependencies: - libpng: '>=1.6.37,<1.7.0a0' - openjpeg: '>=2.5.0,<2.6.0a0' - jpeg: '>=9e,<10a' - libwebp-base: '>=1.2.4,<2.0a0' - jxrlib: '>=1.1,<1.2.0a0' - imath: '>=3.1.5,<3.1.7.0a0' - libraw: '>=0.20.2,<0.21.0a0' - libtiff: '>=4.4.0,<4.5.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - openexr: '>=3.1.5,<3.2.0a0' - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/freeimage-3.18.0-h064cf08_10.tar.bz2 - hash: - md5: 9bab8e4c97a41234e63371529b347622 - sha256: bdf05e49f432bfa9ae28648e71e323d5eea64b5d2aba12a211b6ed2c09d7190a - optional: false - category: main - build: h064cf08_10 - subdir: win-64 - build_number: 10 - license: GPLv2 OR GPLv3 OR FreeImage - size: 705568 - timestamp: 1660371909329 -- name: openjpeg - version: 2.5.0 - manager: conda - platform: win-64 - dependencies: - libtiff: '>=4.4.0,<4.5.0a0' - libpng: '>=1.6.37,<1.7.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-hc9384bd_1.tar.bz2 - hash: - md5: a6834096f8d834339eca7ef4d23bcc44 - sha256: 20bca4de8475314dc20561435ca0f6186d03502ff9914ac27be69826885dde48 - optional: false - category: main - build: hc9384bd_1 - subdir: win-64 - build_number: 1 - license: BSD-2-Clause - license_family: BSD - size: 262527 - timestamp: 1660348164930 -- name: imath - version: 3.1.6 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/imath-3.1.6-h12be248_1.conda - hash: - md5: 2f7ef30af1ef6d3bc7c81edcf70a98f3 - sha256: e77ae520b2f4cae0b55a1b999ae423150b08ed457d02d71b535725e1fe267e99 - optional: false - category: main - build: h12be248_1 - subdir: win-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 158705 - timestamp: 1668913732684 -- name: libraw - version: 0.20.2 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - lcms2: '>=2.14,<3.0a0' - jpeg: '>=9e,<10a' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libraw-0.20.2-h3eb7d9d_2.conda - hash: - md5: e7db04711cfe6ffa9bfb62969754e557 - sha256: fdd2422a0b25cd969e4c868525ad4c53b2834a0fe73c0e37a15696abb2dfcaca - optional: false - category: main - build: h3eb7d9d_2 - subdir: win-64 - build_number: 2 - license: LGPL-2.1-only - license_family: LGPL - size: 596072 - timestamp: 1668874235773 -- name: lcms2 - version: '2.14' - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - libtiff: '>=4.4.0,<4.5.0a0' - jpeg: '>=9e,<10a' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.14-h90d422f_0.tar.bz2 - hash: - md5: a0deec92aa16fca7bf5a6717d05f88ee - sha256: 1e79c0c2ca28f00d2b171655ced23baf630aa87eca550ded775311c6dac04758 - optional: false - category: main - build: h90d422f_0 - subdir: win-64 - build_number: 0 - license: MIT - license_family: MIT - size: 1012014 - timestamp: 1667333104724 -- name: openexr - version: 3.1.5 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - imath: '>=3.1.5,<3.1.7.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/openexr-3.1.5-h97333cc_2.conda - hash: - md5: d93264c58f3898804a4e53f1020de79b - sha256: 022c79c4b78c485b82a3373e4fc617698b7a1ccde29445fc0a81b55159144361 - optional: false - category: main - build: h97333cc_2 - subdir: win-64 - build_number: 2 - license: BSD-3-Clause - license_family: BSD - size: 1153882 - timestamp: 1678282541704 -- name: boost-cpp - version: 1.78.0 - manager: conda - platform: win-64 - dependencies: - zstd: '>=1.5.2,<1.6.0a0' - bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/boost-cpp-1.78.0-h9f4b32c_3.conda - hash: - md5: 09805934b78b0cd1a28d9e72a2a4778b - sha256: bf4d718e17cb115ea27d52bc84b3dff963b7ade2dda01ddb7088372833092517 - optional: false - category: main - build: h9f4b32c_3 - subdir: win-64 - build_number: 3 - constrains: - - libboost <0 - license: BSL-1.0 - size: 15777694 - timestamp: 1680720350413 -- name: loguru - version: 0.7.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - win32_setctime: '>=1.0.0' - colorama: '>=0.3.4' - url: https://conda.anaconda.org/conda-forge/win-64/loguru-0.7.0-py310h5588dad_0.conda - hash: - md5: 418204da701dc43d8992ba8131c17848 - sha256: d32391a4ca2d54917d41740df32171b6437ca7a667ed3abcfb52de842c177ad6 - optional: false - category: main - build: py310h5588dad_0 - subdir: win-64 - build_number: 0 - license: MIT - license_family: MIT - size: 94945 - timestamp: 1681126536943 -- name: wslink - version: 1.11.0 +- name: lark-parser + version: 0.12.0 manager: conda platform: win-64 dependencies: python: '>=3.6' - aiohttp: <4 - url: https://conda.anaconda.org/conda-forge/noarch/wslink-1.11.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: 70f4b52c0e703936aa1812d8b14a5bb2 - sha256: 11dd5e6c5062e788160167e2a64fcbbb2c7ec825e28d628a9e7771172e039de7 + md5: 2d1f963b23792b269635b9b32bee1913 + sha256: 5a1b0fb3c9e6ba7f8c5788d0bc90aadc85f88371ba261c07edf951805988f89a optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 31744 - timestamp: 1686354338531 -- name: jpeg - version: 9e - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/jpeg-9e-hcfcfb64_3.conda - hash: - md5: 824f1e030d224e9e376a4655032fdbc7 - sha256: 7ee2ecbb5fe11566601e612fa463fc2060e55083d9cb1eb05c58e30a9e110b41 - optional: false - category: main - build: hcfcfb64_3 - subdir: win-64 - build_number: 3 - constrains: - - libjpeg-turbo <0.0.0a - license: IJG - size: 289378 - timestamp: 1676178492989 -- name: expat - version: 2.5.0 - manager: conda - platform: win-64 - dependencies: - libexpat: ==2.5.0 h63175ca_1 - url: https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h63175ca_1.conda - hash: - md5: 87c77fe1b445aedb5c6d207dd236fa3e - sha256: 3bcd88290cd462d5573c2923c796599d0dece2ff9d9c9d6c914d31e9c5881aaf - optional: false - category: main - build: h63175ca_1 - subdir: win-64 - build_number: 1 - license: MIT - license_family: MIT - size: 226571 - timestamp: 1680190888036 -- name: libtiff - version: 4.4.0 - manager: conda - platform: win-64 - dependencies: - libdeflate: '>=1.14,<1.15.0a0' - jpeg: '>=9e,<10a' - vc: '>=14.2,<15' - libzlib: '>=1.2.13,<1.3.0a0' - ucrt: '>=10.0.20348.0' - xz: '>=5.2.6,<6.0a0' - lerc: '>=4.0.0,<5.0a0' - vs2015_runtime: '>=14.29.30139' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.4.0-hc4f729c_5.conda - hash: - md5: fe00c2f95c1215e355c34094b00480d7 - sha256: dfa7f848f1e4bb24ed800968984638b2353728c439e4964f597aa9f31733370b - optional: false - category: main - build: hc4f729c_5 - subdir: win-64 - build_number: 5 - license: HPND - size: 806281 - timestamp: 1671301044886 -- name: lerc - version: 4.0.0 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30037' - url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 - hash: - md5: 1900cb3cab5055833cfddb0ba233b074 - sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 - optional: false - category: main - build: h63175ca_0 - subdir: win-64 - build_number: 0 - license: Apache-2.0 - license_family: Apache - size: 194365 - timestamp: 1657977692274 -- name: libdeflate - version: '1.14' - manager: conda - platform: win-64 - dependencies: - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.14-hcfcfb64_0.tar.bz2 - hash: - md5: 4366e00d3270eb229c026920474a6dda - sha256: c8b156fc81006234cf898f933b06bed8bb475970cb7983d0eceaf90db65beb8b - optional: false - category: main - build: hcfcfb64_0 - subdir: win-64 - build_number: 0 license: MIT license_family: MIT - size: 74947 - timestamp: 1662888915427 -- name: libignition-math6 - version: 6.14.0 - manager: conda - platform: win-64 - dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - pybind11-abi: ==4 - vc: '>=14.2,<15' - libignition-cmake2: '>=2.16.0,<3.0a0' - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - eigen: '*' - url: https://conda.anaconda.org/conda-forge/win-64/libignition-math6-6.14.0-py310h595d6f7_0.conda - hash: - md5: 48d2de981419c2d45d8fe2192ce557ef - sha256: d229f4c2ab38b4e62ee826d854c90c29c85a47da0e0f3a2d041731b8ab109c0e - optional: false - category: main - build: py310h595d6f7_0 - subdir: win-64 - build_number: 0 - license: Apache-2.0 - license_family: APACHE - size: 708784 - timestamp: 1682365040354 -- name: matplotlib-base - version: 3.7.1 - manager: conda - platform: win-64 - dependencies: - cycler: '>=0.10' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - kiwisolver: '>=1.0.1' - pyparsing: '>=2.3.1' - ucrt: '>=10.0.20348.0' - python-dateutil: '>=2.7' - certifi: '>=2020.06.20' - contourpy: '>=1.0.1' - fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' - vc: '>=14.2,<15' - numpy: '>=1.21.6,<2.0a0' - pillow: '>=6.2.0' - packaging: '>=20.0' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.1-py310h51140c5_0.conda - hash: - md5: d8c42a72d04ad1b93ba7269e9949738e - sha256: 61975c0453d6e624c110cfec008eac14fb3fa268466a01f4257c6f280006c2fa - optional: false - category: main - build: py310h51140c5_0 - subdir: win-64 - build_number: 0 - license: LicenseRef-PSF-2.0 and CC0-1.0 - license_family: PSF - size: 6750651 - timestamp: 1678136142226 -- name: pillow - version: 9.2.0 + noarch: python + size: 79371 + timestamp: 1630320889981 +- name: libzlib + version: 1.2.13 manager: conda platform: win-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - openjpeg: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - freetype: '>=2.12.1,<3.0a0' - jpeg: '>=9e,<10a' - libwebp-base: '>=1.2.4,<2.0a0' - libtiff: '>=4.4.0,<4.5.0a0' - libxcb: '>=1.13,<1.14.0a0' - lcms2: '>=2.12,<3.0a0' - tk: '>=8.6.12,<8.7.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pillow-9.2.0-py310hd4fb230_3.tar.bz2 + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda hash: - md5: 96a1ddd65392fb64636dd8311f862e14 - sha256: 8d8e0df565b8f3c886792fc7b58d8b50344f891e289df825199c3b257a3f9db9 + md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 + sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 optional: false category: main - build: py310hd4fb230_3 + build: hcfcfb64_5 subdir: win-64 - build_number: 3 - license: LicenseRef-PIL - size: 47521952 - timestamp: 1666921062949 -- name: pycairo - version: 1.24.0 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 55800 + timestamp: 1686575452215 +- name: zlib + version: 1.2.13 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - cairo: '>=1.16.0,<2.0a0' + libzlib: ==1.2.13 hcfcfb64_5 vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pycairo-1.24.0-py310h42c1a3e_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda hash: - md5: 4d70b5a0e88832e4746d44fe19d372e7 - sha256: 0bf5dbc638ba179a8ca3b65486d8ca14c288125a24bb26772d62a27cc702aeb0 + md5: a318e8622e11663f645cc7fa3260f462 + sha256: 0f91b719c7558046bcd37fdc7ae4b9eb2b7a8e335beb8b59ae7ccb285a46aa46 optional: false category: main - build: py310h42c1a3e_0 + build: hcfcfb64_5 subdir: win-64 - build_number: 0 - license: LGPL-2.1-only OR MPL-1.1 - size: 100469 - timestamp: 1687180784465 -- name: sdl2 - version: 2.26.5 + build_number: 5 + license: Zlib + license_family: Other + size: 107711 + timestamp: 1686575474476 +- name: freetype + version: 2.12.1 manager: conda platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/sdl2-2.26.5-h63175ca_0.conda + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda hash: - md5: 620fcad9da41516d395411099908bb3b - sha256: 4ebc9b29b04b2087dfff77ecbe6d7fc7e95c7223ed0447966f3a0aa1f007e8af + md5: 1b513009cd012591f3fdc9e03a74ec0a + sha256: fe027235660d9dfe7889c350a51e96bc0134c3f408827a4c58c4b0557409984c optional: false category: main - build: h63175ca_0 + build: h546665d_1 subdir: win-64 - build_number: 0 - license: Zlib - size: 2211251 - timestamp: 1680736427464 -- name: pygments - version: 2.15.1 + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 497412 + timestamp: 1669233360876 +- name: freeimage + version: 3.18.0 manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.15.1-pyhd8ed1ab_0.conda + libpng: '>=1.6.37,<1.7.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + jpeg: '>=9e,<10a' + libwebp-base: '>=1.2.4,<2.0a0' + jxrlib: '>=1.1,<1.2.0a0' + imath: '>=3.1.5,<3.1.7.0a0' + libraw: '>=0.20.2,<0.21.0a0' + libtiff: '>=4.4.0,<4.5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openexr: '>=3.1.5,<3.2.0a0' + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/freeimage-3.18.0-h064cf08_10.tar.bz2 hash: - md5: d316679235612869eba305aa7d41d9bf - sha256: 1bddeb54863c77ed5613b535a3e06a3a16b55786301a5e28c9bf011656bda686 + md5: 9bab8e4c97a41234e63371529b347622 + sha256: bdf05e49f432bfa9ae28648e71e323d5eea64b5d2aba12a211b6ed2c09d7190a optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: BSD-2-Clause - license_family: BSD - noarch: python - size: 840719 - timestamp: 1681904335148 -- name: toml - version: 0.10.2 + build: h064cf08_10 + subdir: win-64 + build_number: 10 + license: GPLv2 OR GPLv3 OR FreeImage + size: 705568 + timestamp: 1660371909329 +- name: openjpeg + version: 2.5.0 manager: conda platform: win-64 dependencies: - python: '>=2.7' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + libtiff: '>=4.4.0,<4.5.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-hc9384bd_1.tar.bz2 hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + md5: a6834096f8d834339eca7ef4d23bcc44 + sha256: 20bca4de8475314dc20561435ca0f6186d03502ff9914ac27be69826885dde48 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 18433 - timestamp: 1604308660817 -- name: sip - version: 6.7.9 + build: hc9384bd_1 + subdir: win-64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 262527 + timestamp: 1660348164930 +- name: imath + version: 3.1.6 manager: conda platform: win-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - vc: '>=14.2,<15' - tomli: '*' ucrt: '>=10.0.20348.0' - ply: '*' - packaging: '*' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/sip-6.7.9-py310h00ffb61_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/imath-3.1.6-h12be248_1.conda hash: - md5: a249b5eefc4c36146ade59e2b237b7fd - sha256: 300d6da8641aed7d9baf63e2d7fe99383bdb7c1215834932283579e5a7c1b1ae + md5: 2f7ef30af1ef6d3bc7c81edcf70a98f3 + sha256: e77ae520b2f4cae0b55a1b999ae423150b08ed457d02d71b535725e1fe267e99 optional: false category: main - build: py310h00ffb61_0 + build: h12be248_1 subdir: win-64 - build_number: 0 - license: GPL-3.0-only - license_family: GPL - size: 502724 - timestamp: 1681995656012 -- name: ply - version: '3.11' + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 158705 + timestamp: 1668913732684 +- name: libraw + version: 0.20.2 manager: conda platform: win-64 dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 + ucrt: '>=10.0.20348.0' + vs2015_runtime: '>=14.29.30139' + lcms2: '>=2.14,<3.0a0' + jpeg: '>=9e,<10a' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + url: https://conda.anaconda.org/conda-forge/win-64/libraw-0.20.2-h3eb7d9d_2.conda hash: - md5: 7205635cd71531943440fbfe3b6b5727 - sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 + md5: e7db04711cfe6ffa9bfb62969754e557 + sha256: fdd2422a0b25cd969e4c868525ad4c53b2834a0fe73c0e37a15696abb2dfcaca optional: false category: main - build: py_1 - subdir: noarch - build_number: 1 - license: BSD 3-clause - license_family: BSD - noarch: python - size: 44837 - timestamp: 1530963184592 -- name: tomli - version: 2.0.1 + build: h3eb7d9d_2 + subdir: win-64 + build_number: 2 + license: LGPL-2.1-only + license_family: LGPL + size: 596072 + timestamp: 1668874235773 +- name: lcms2 + version: '2.14' manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + ucrt: '>=10.0.20348.0' + libtiff: '>=4.4.0,<4.5.0a0' + jpeg: '>=9e,<10a' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.14-h90d422f_0.tar.bz2 hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + md5: a0deec92aa16fca7bf5a6717d05f88ee + sha256: 1e79c0c2ca28f00d2b171655ced23baf630aa87eca550ded775311c6dac04758 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h90d422f_0 + subdir: win-64 build_number: 0 license: MIT license_family: MIT - noarch: python - size: 15940 - timestamp: 1644342331069 -- name: rospkg - version: 1.5.0 + size: 1012014 + timestamp: 1667333104724 +- name: openexr + version: 3.1.5 manager: conda platform: win-64 dependencies: - python: '>=3.6' - pyyaml: '*' - catkin_pkg: '*' - distro: '*' - url: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.5.0-pyhd8ed1ab_0.conda + ucrt: '>=10.0.20348.0' + vs2015_runtime: '>=14.29.30139' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + imath: '>=3.1.5,<3.1.7.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/openexr-3.1.5-h97333cc_2.conda hash: - md5: 15f4f2f2538f7746a9c4c9f3ba783f49 - sha256: 1ad1b4ce441a35dc86c13d8683ed2f052e4df8d8c3f5ced86d5e4735d596f940 + md5: d93264c58f3898804a4e53f1020de79b + sha256: 022c79c4b78c485b82a3373e4fc617698b7a1ccde29445fc0a81b55159144361 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build: h97333cc_2 + subdir: win-64 + build_number: 2 license: BSD-3-Clause license_family: BSD - noarch: python - size: 31031 - timestamp: 1679367764497 -- name: libglib - version: 2.76.3 + size: 1153882 + timestamp: 1678282541704 +- name: boost-cpp + version: 1.78.0 manager: conda platform: win-64 dependencies: - pcre2: '>=10.40,<10.41.0a0' - libffi: '>=3.4,<4.0a0' - vc: '>=14.2,<15' - libiconv: '>=1.17,<2.0a0' - ucrt: '>=10.0.20348.0' + zstd: '>=1.5.2,<1.6.0a0' + bzip2: '>=1.0.8,<2.0a0' libzlib: '>=1.2.13,<1.3.0a0' - gettext: '>=0.21.1,<1.0a0' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.76.3-he8f3873_0.conda + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/boost-cpp-1.78.0-h9f4b32c_3.conda hash: - md5: 4695e6acaf4790170161048d56cb51fc - sha256: 170d42dcf0c73f5846dfb0c4a241c065cd9830c644d98042f076f25c309e7571 + md5: 09805934b78b0cd1a28d9e72a2a4778b + sha256: bf4d718e17cb115ea27d52bc84b3dff963b7ade2dda01ddb7088372833092517 optional: false category: main - build: he8f3873_0 + build: h9f4b32c_3 subdir: win-64 - build_number: 0 + build_number: 3 constrains: - - glib 2.76.3 *_0 - license: LGPL-2.1-or-later - size: 2599048 - timestamp: 1684848450372 -- name: gettext - version: 0.21.1 + - libboost <0 + license: BSL-1.0 + size: 15777694 + timestamp: 1680720350413 +- name: loguru + version: 0.7.0 manager: conda platform: win-64 dependencies: - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2 + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + win32_setctime: '>=1.0.0' + colorama: '>=0.3.4' + url: https://conda.anaconda.org/conda-forge/win-64/loguru-0.7.0-py310h5588dad_0.conda hash: - md5: 299d4fd6798a45337042ff5a48219e5f - sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616 + md5: 418204da701dc43d8992ba8131c17848 + sha256: d32391a4ca2d54917d41740df32171b6437ca7a667ed3abcfb52de842c177ad6 optional: false category: main - build: h5728263_0 + build: py310h5588dad_0 subdir: win-64 build_number: 0 - license: LGPL-2.1-or-later AND GPL-3.0-or-later - size: 5579416 - timestamp: 1665676022441 -- name: pcre2 - version: '10.40' + license: MIT + license_family: MIT + size: 94945 + timestamp: 1681126536943 +- name: wslink + version: 1.11.1 manager: conda platform: win-64 dependencies: - ucrt: '>=10.0.20348.0' - bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2 + python: '>=3.6' + aiohttp: <4 + url: https://conda.anaconda.org/conda-forge/noarch/wslink-1.11.1-pyhd8ed1ab_0.conda hash: - md5: 2519de0d9620dc2bc7e19caf6867136d - sha256: 5833c63548e4fae91da6d77739eab7dc9bf6542e43f105826b23c01bfdd9cb57 + md5: 0d0113b67472cea3da288838ebc80acb + sha256: 656947c8457d5ac06f11dc1da904ac7ac8ac8edf81323ee9794a3d51ace79ff3 optional: false category: main - build: h17e33f8_0 - subdir: win-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 license: BSD-3-Clause license_family: BSD - size: 2001630 - timestamp: 1665563527916 -- name: cairo - version: 1.16.0 + noarch: python + size: 31753 + timestamp: 1688102076761 +- name: jpeg + version: 9e manager: conda platform: win-64 dependencies: - icu: '>=70.1,<71.0a0' - libpng: '>=1.6.38,<1.7.0a0' - libglib: '>=2.72.1,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.12,<1.3.0a0' + ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' - zlib: '>=1.2.12,<1.3.0a0' - fontconfig: '>=2.13.96,<3.0a0' - fonts-conda-ecosystem: '*' - pixman: '>=0.40.0,<1.0a0' vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-hd694305_1014.tar.bz2 - hash: - md5: 91f08ed9ff25a969ddd06237454dae0d - sha256: 9f61fd45d0c9d27bd5e2bf4eeb3662d97691dc7d08b4007060776ce91f1a0d35 - optional: false - category: main - build: hd694305_1014 - subdir: win-64 - build_number: 1014 - license: LGPL-2.1-only or MPL-1.1 - size: 2374487 - timestamp: 1663568619012 -- name: pixman - version: 0.40.0 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/jpeg-9e-hcfcfb64_3.conda hash: - md5: 32b45d3fcffddc84cc1a014a0b5f0d58 - sha256: 7f0ceed590a717ddc7612f67657119df1e6df0d031a822b570d741a89a3ba784 + md5: 824f1e030d224e9e376a4655032fdbc7 + sha256: 7ee2ecbb5fe11566601e612fa463fc2060e55083d9cb1eb05c58e30a9e110b41 optional: false category: main - build: h8ffe710_0 + build: hcfcfb64_3 subdir: win-64 - build_number: 0 - license: MIT - license_family: MIT - size: 493231 - timestamp: 1604342509224 -- name: xorg-libxpm - version: 3.5.16 + build_number: 3 + constrains: + - libjpeg-turbo <0.0.0a + license: IJG + size: 289378 + timestamp: 1676178492989 +- name: expat + version: 2.5.0 manager: conda platform: win-64 dependencies: - xorg-libxt: '>=1.2.1,<2.0a0' - xorg-xextproto: '>=7.3.0,<8.0a0' - xorg-xproto: '*' - m2w64-gcc-libs-core: '*' - m2w64-gcc-libs: '*' - xorg-libx11: '>=1.8.4,<2.0a0' - xorg-libxext: '>=1.3.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.16-hcd874cb_0.conda + libexpat: ==2.5.0 h63175ca_1 + url: https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h63175ca_1.conda hash: - md5: e74445e2a4ad70fc358ae2bf87c20f41 - sha256: 28cda9130ae2988a45d5cf995e47213271b71712e3d96e50557173d106d05d05 + md5: 87c77fe1b445aedb5c6d207dd236fa3e + sha256: 3bcd88290cd462d5573c2923c796599d0dece2ff9d9c9d6c914d31e9c5881aaf optional: false category: main - build: hcd874cb_0 + build: h63175ca_1 subdir: win-64 - build_number: 0 + build_number: 1 license: MIT license_family: MIT - size: 194317 - timestamp: 1685308054284 -- name: m2w64-gcc-libs - version: 5.3.0 + size: 226571 + timestamp: 1680190888036 +- name: libogg + version: 1.3.4 manager: conda platform: win-64 dependencies: - m2w64-libwinpthread-git: '*' - msys2-conda-epoch: '>=20160418' - m2w64-gcc-libs-core: '*' - m2w64-gcc-libgfortran: '*' - m2w64-gmp: '*' - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 hash: - md5: fe759119b8b3bfa720b8762c6fdc35de - sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa + md5: 04286d905a0dcb7f7d4a12bdfe02516d + sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 optional: false category: main - build: '7' + build: h8ffe710_1 subdir: win-64 - build_number: 7 - license: GPL3+, partial:GCCRLE, partial:LGPL2+ - size: 532390 - timestamp: 1608163512830 -- name: m2w64-gcc-libs-core - version: 5.3.0 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 35187 + timestamp: 1610382533961 +- name: libxml2 + version: 2.10.4 manager: conda platform: win-64 dependencies: - msys2-conda-epoch: '>=20160418' - m2w64-gmp: '*' - m2w64-libwinpthread-git: '*' - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + ucrt: '>=10.0.20348.0' + vs2015_runtime: '>=14.29.30139' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.4-hc3477c8_0.conda hash: - md5: 4289d80fb4d272f1f3b56cfe87ac90bd - sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 + md5: d9869d2d502cca6b6f73dd7030696b3c + sha256: 2c582c303e6030d21a0753bb3b39a6fa1fd694f280bdbdc7b7bfbe8a9707fbec optional: false category: main - build: '7' + build: hc3477c8_0 subdir: win-64 - build_number: 7 - license: GPL3+, partial:GCCRLE, partial:LGPL2+ - size: 219240 - timestamp: 1608163481341 -- name: xorg-libx11 - version: 1.8.4 + build_number: 0 + license: MIT + license_family: MIT + size: 1753318 + timestamp: 1681226471147 +- name: lz4-c + version: 1.9.4 manager: conda platform: win-64 dependencies: - xorg-xproto: '*' - libxcb: '>=1.13,<1.14.0a0' - xorg-kbproto: '*' - m2w64-gcc-libs-core: '*' - m2w64-gcc-libs: '*' - xorg-xextproto: '>=7.3.0,<8.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.4-hcd874cb_0.conda + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda hash: - md5: ebdb02b455647e13fa697da89d9bdf84 - sha256: 0885d36278dd9fa1c996a813e917ebb32c05f4c102527de0088f9cc22d72bf28 + md5: e34720eb20a33fc3bfb8451dd837ab7a + sha256: a0954b4b1590735ea5f3d0f4579c3883f8ac837387afd5b398b241fda85124ab optional: false category: main - build: hcd874cb_0 + build: hcfcfb64_0 subdir: win-64 build_number: 0 - license: MIT - license_family: MIT - size: 816786 - timestamp: 1677612161147 -- name: m2w64-gcc-libgfortran - version: 5.3.0 + license: BSD-2-Clause + license_family: BSD + size: 134235 + timestamp: 1674728465431 +- name: libtiff + version: 4.4.0 manager: conda platform: win-64 dependencies: - m2w64-gcc-libs-core: '*' - msys2-conda-epoch: '>=20160418' - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 - hash: - md5: 066552ac6b907ec6d72c0ddab29050dc - sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 + libdeflate: '>=1.14,<1.15.0a0' + jpeg: '>=9e,<10a' + vc: '>=14.2,<15' + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + xz: '>=5.2.6,<6.0a0' + lerc: '>=4.0.0,<5.0a0' + vs2015_runtime: '>=14.29.30139' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.4.0-hc4f729c_5.conda + hash: + md5: fe00c2f95c1215e355c34094b00480d7 + sha256: dfa7f848f1e4bb24ed800968984638b2353728c439e4964f597aa9f31733370b optional: false category: main - build: '6' + build: hc4f729c_5 subdir: win-64 - build_number: 6 - license: GPL, LGPL, FDL, custom - size: 350687 - timestamp: 1608163451316 -- name: m2w64-gmp - version: 6.1.0 + build_number: 5 + license: HPND + size: 806281 + timestamp: 1671301044886 +- name: lerc + version: 4.0.0 manager: conda platform: win-64 dependencies: - msys2-conda-epoch: '>=20160418' - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30037' + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 hash: - md5: 53a1c73e1e3d185516d7e3af177596d9 - sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 + md5: 1900cb3cab5055833cfddb0ba233b074 + sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 optional: false category: main - build: '2' + build: h63175ca_0 subdir: win-64 - build_number: 2 - license: LGPL3 - size: 743501 - timestamp: 1608163782057 -- name: m2w64-libwinpthread-git - version: 5.0.0.4634.697f757 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 194365 + timestamp: 1657977692274 +- name: libdeflate + version: '1.14' manager: conda platform: win-64 dependencies: - msys2-conda-epoch: '>=20160418' - url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.14-hcfcfb64_0.tar.bz2 hash: - md5: 774130a326dee16f1ceb05cc687ee4f0 - sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 + md5: 4366e00d3270eb229c026920474a6dda + sha256: c8b156fc81006234cf898f933b06bed8bb475970cb7983d0eceaf90db65beb8b optional: false category: main - build: '2' + build: hcfcfb64_0 subdir: win-64 - build_number: 2 - license: MIT, BSD - size: 31928 - timestamp: 1608166099896 -- name: msys2-conda-epoch - version: '20160418' + build_number: 0 + license: MIT + license_family: MIT + size: 74947 + timestamp: 1662888915427 +- name: libignition-math6 + version: 6.14.0 manager: conda platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + pybind11-abi: ==4 + vc: '>=14.2,<15' + libignition-cmake2: '>=2.16.0,<3.0a0' + ucrt: '>=10.0.20348.0' + vs2015_runtime: '>=14.29.30139' + eigen: '*' + url: https://conda.anaconda.org/conda-forge/win-64/libignition-math6-6.14.0-py310h595d6f7_0.conda hash: - md5: b0309b72560df66f71a9d5e34a5efdfa - sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 + md5: 48d2de981419c2d45d8fe2192ce557ef + sha256: d229f4c2ab38b4e62ee826d854c90c29c85a47da0e0f3a2d041731b8ab109c0e optional: false category: main - build: '1' + build: py310h595d6f7_0 subdir: win-64 - build_number: 1 - size: 3227 - timestamp: 1608166968312 -- name: pyparsing - version: 3.1.0 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 708784 + timestamp: 1682365040354 +- name: matplotlib-base + version: 3.7.2 manager: conda platform: win-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.0-pyhd8ed1ab_0.conda + cycler: '>=0.10' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + kiwisolver: '>=1.0.1' + pyparsing: '>=2.3.1,<3.1' + vc14_runtime: '>=14.29.30139' + ucrt: '>=10.0.20348.0' + python-dateutil: '>=2.7' + certifi: '>=2020.6.20' + contourpy: '>=1.0.1' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + vc: '>=14.2,<15' + numpy: '>=1.21.6,<2.0a0' + pillow: '>=6.2.0' + packaging: '>=20.0' + url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.7.2-py310h51140c5_0.conda hash: - md5: d3ed087d1f7f8f5590e8e87b57a8ce64 - sha256: 18e3bd52c64f23bbc7c200fd2fc4152dd29423936dc43e8f129cb43f1af0136c + md5: f485fd7d59c2719f79aa4323caa5f1e3 + sha256: 8a42826b6b9ca21817a5c100cbe5a85c62dac7f39284531d314e7836cd9ad939 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: py310h51140c5_0 + subdir: win-64 build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 88865 - timestamp: 1687132145260 -- name: libxml2 - version: 2.10.4 + license: LicenseRef-PSF-2.0 and CC0-1.0 + license_family: PSF + size: 6713212 + timestamp: 1688685587479 +- name: sip + version: 6.7.9 manager: conda platform: win-64 dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + vc: '>=14.2,<15' + tomli: '*' ucrt: '>=10.0.20348.0' + ply: '*' + packaging: '*' vs2015_runtime: '>=14.29.30139' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.10.4-hc3477c8_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/sip-6.7.9-py310h00ffb61_0.conda hash: - md5: d9869d2d502cca6b6f73dd7030696b3c - sha256: 2c582c303e6030d21a0753bb3b39a6fa1fd694f280bdbdc7b7bfbe8a9707fbec + md5: a249b5eefc4c36146ade59e2b237b7fd + sha256: 300d6da8641aed7d9baf63e2d7fe99383bdb7c1215834932283579e5a7c1b1ae optional: false category: main - build: hc3477c8_0 + build: py310h00ffb61_0 subdir: win-64 build_number: 0 - license: MIT - license_family: MIT - size: 1753318 - timestamp: 1681226471147 -- name: libxslt - version: 1.1.37 + license: GPL-3.0-only + license_family: GPL + size: 502724 + timestamp: 1681995656012 +- name: ply + version: '3.11' manager: conda platform: win-64 dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.37-h0192164_0.tar.bz2 + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 hash: - md5: 58a3caeeb5827ce15243ec89791d0caa - sha256: ebd0ae412487548e77c146efdf9b1026c1d029c5397f79ce32406743d7bcee1a + md5: 7205635cd71531943440fbfe3b6b5727 + sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 optional: false category: main - build: h0192164_0 - subdir: win-64 - build_number: 0 - license: MIT - license_family: MIT - size: 517287 - timestamp: 1666902730512 + build: py_1 + subdir: noarch + build_number: 1 + license: BSD 3-clause + license_family: BSD + noarch: python + size: 44837 + timestamp: 1530963184592 - name: cffi version: 1.15.1 manager: conda @@ -39348,6 +39008,54 @@ package: license_family: MIT size: 233694 timestamp: 1671180126037 +- name: cairo + version: 1.16.0 + manager: conda + platform: win-64 + dependencies: + icu: '>=70.1,<71.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libglib: '>=2.72.1,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + vc: '>=14.2,<15' + zlib: '>=1.2.12,<1.3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '*' + pixman: '>=0.40.0,<1.0a0' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-hd694305_1014.tar.bz2 + hash: + md5: 91f08ed9ff25a969ddd06237454dae0d + sha256: 9f61fd45d0c9d27bd5e2bf4eeb3662d97691dc7d08b4007060776ce91f1a0d35 + optional: false + category: main + build: hd694305_1014 + subdir: win-64 + build_number: 1014 + license: LGPL-2.1-only or MPL-1.1 + size: 2374487 + timestamp: 1663568619012 +- name: pixman + version: 0.40.0 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2 + hash: + md5: 32b45d3fcffddc84cc1a014a0b5f0d58 + sha256: 7f0ceed590a717ddc7612f67657119df1e6df0d031a822b570d741a89a3ba784 + optional: false + category: main + build: h8ffe710_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 493231 + timestamp: 1604342509224 - name: gts version: 0.7.6 manager: conda @@ -39433,67 +39141,6 @@ package: license_family: BSD size: 266806 timestamp: 1685838242099 -- name: bzip2 - version: 1.0.8 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 - hash: - md5: 7c03c66026944073040cb19a4f3ec3c9 - sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 - optional: false - category: main - build: h8ffe710_4 - subdir: win-64 - build_number: 4 - license: bzip2-1.0.6 - license_family: BSD - size: 152247 - timestamp: 1606605223049 -- name: libxcb - version: '1.13' - manager: conda - platform: win-64 - dependencies: - xorg-libxau: '*' - m2w64-gcc-libs: '*' - pthread-stubs: '*' - xorg-libxdmcp: '*' - url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.13-hcd874cb_1004.tar.bz2 - hash: - md5: a6d7fd030532378ecb6ba435cd9f8234 - sha256: a6fe7468ed3b9898f7beaa75f7e3adff9c7b96b39a36a3f8399c37223ec6a9e8 - optional: false - category: main - build: hcd874cb_1004 - subdir: win-64 - build_number: 1004 - license: MIT - license_family: MIT - size: 1340194 - timestamp: 1636659621965 -- name: xorg-xextproto - version: 7.3.0 - manager: conda - platform: win-64 - dependencies: - m2w64-gcc-libs: '*' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda - hash: - md5: 6e6c2639620e436bddb7c040cd4f3adb - sha256: 04c0a08fd34fa33406c20f729e8f9cc40e8fd898072b952a5c14280fcf26f2e6 - optional: false - category: main - build: hcd874cb_1003 - subdir: win-64 - build_number: 1003 - license: MIT - license_family: MIT - size: 31034 - timestamp: 1677037259999 - name: pybind11-abi version: '4' manager: conda @@ -39513,6 +39160,26 @@ package: noarch: generic size: 9906 timestamp: 1610372835205 +- name: pyparsing + version: 3.0.9 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2 + hash: + md5: e8fbc1b54b25f4b08281467bc13b70cc + sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 81321 + timestamp: 1652235496915 - name: python-dateutil version: 2.8.2 manager: conda @@ -39573,6 +39240,37 @@ package: noarch: python size: 152383 timestamp: 1683450391501 +- name: pillow + version: 9.2.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + openjpeg: '>=2.5.0,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + freetype: '>=2.12.1,<3.0a0' + jpeg: '>=9e,<10a' + libwebp-base: '>=1.2.4,<2.0a0' + libtiff: '>=4.4.0,<4.5.0a0' + libxcb: '>=1.13,<1.14.0a0' + lcms2: '>=2.12,<3.0a0' + tk: '>=8.6.12,<8.7.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/pillow-9.2.0-py310hd4fb230_3.tar.bz2 + hash: + md5: 96a1ddd65392fb64636dd8311f862e14 + sha256: 8d8e0df565b8f3c886792fc7b58d8b50344f891e289df825199c3b257a3f9db9 + optional: false + category: main + build: py310hd4fb230_3 + subdir: win-64 + build_number: 3 + license: LicenseRef-PIL + size: 47521952 + timestamp: 1666921062949 - name: kiwisolver version: 1.4.4 manager: conda @@ -39646,6 +39344,141 @@ package: license_family: BSD size: 173015 timestamp: 1686734298268 +- name: libxcb + version: '1.13' + manager: conda + platform: win-64 + dependencies: + xorg-libxau: '*' + m2w64-gcc-libs: '*' + pthread-stubs: '*' + xorg-libxdmcp: '*' + url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.13-hcd874cb_1004.tar.bz2 + hash: + md5: a6d7fd030532378ecb6ba435cd9f8234 + sha256: a6fe7468ed3b9898f7beaa75f7e3adff9c7b96b39a36a3f8399c37223ec6a9e8 + optional: false + category: main + build: hcd874cb_1004 + subdir: win-64 + build_number: 1004 + license: MIT + license_family: MIT + size: 1340194 + timestamp: 1636659621965 +- name: m2w64-gcc-libs + version: 5.3.0 + manager: conda + platform: win-64 + dependencies: + m2w64-libwinpthread-git: '*' + msys2-conda-epoch: '>=20160418' + m2w64-gcc-libs-core: '*' + m2w64-gcc-libgfortran: '*' + m2w64-gmp: '*' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + hash: + md5: fe759119b8b3bfa720b8762c6fdc35de + sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa + optional: false + category: main + build: '7' + subdir: win-64 + build_number: 7 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 532390 + timestamp: 1608163512830 +- name: m2w64-gcc-libs-core + version: 5.3.0 + manager: conda + platform: win-64 + dependencies: + msys2-conda-epoch: '>=20160418' + m2w64-gmp: '*' + m2w64-libwinpthread-git: '*' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + hash: + md5: 4289d80fb4d272f1f3b56cfe87ac90bd + sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 + optional: false + category: main + build: '7' + subdir: win-64 + build_number: 7 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 219240 + timestamp: 1608163481341 +- name: m2w64-gcc-libgfortran + version: 5.3.0 + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libs-core: '*' + msys2-conda-epoch: '>=20160418' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 + hash: + md5: 066552ac6b907ec6d72c0ddab29050dc + sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 + optional: false + category: main + build: '6' + subdir: win-64 + build_number: 6 + license: GPL, LGPL, FDL, custom + size: 350687 + timestamp: 1608163451316 +- name: m2w64-gmp + version: 6.1.0 + manager: conda + platform: win-64 + dependencies: + msys2-conda-epoch: '>=20160418' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + hash: + md5: 53a1c73e1e3d185516d7e3af177596d9 + sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 + optional: false + category: main + build: '2' + subdir: win-64 + build_number: 2 + license: LGPL3 + size: 743501 + timestamp: 1608163782057 +- name: m2w64-libwinpthread-git + version: 5.0.0.4634.697f757 + manager: conda + platform: win-64 + dependencies: + msys2-conda-epoch: '>=20160418' + url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 + hash: + md5: 774130a326dee16f1ceb05cc687ee4f0 + sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 + optional: false + category: main + build: '2' + subdir: win-64 + build_number: 2 + license: MIT, BSD + size: 31928 + timestamp: 1608166099896 +- name: msys2-conda-epoch + version: '20160418' + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + hash: + md5: b0309b72560df66f71a9d5e34a5efdfa + sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 + optional: false + category: main + build: '1' + subdir: win-64 + build_number: 1 + size: 3227 + timestamp: 1608166968312 - name: ffmpeg version: 5.1.2 manager: conda @@ -39828,47 +39661,6 @@ package: license_family: MIT size: 111109 timestamp: 1686045874658 -- name: libogg - version: 1.3.4 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 - hash: - md5: 04286d905a0dcb7f7d4a12bdfe02516d - sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 - optional: false - category: main - build: h8ffe710_1 - subdir: win-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 35187 - timestamp: 1610382533961 -- name: lz4-c - version: 1.9.4 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda - hash: - md5: e34720eb20a33fc3bfb8451dd837ab7a - sha256: a0954b4b1590735ea5f3d0f4579c3883f8ac837387afd5b398b241fda85124ab - optional: false - category: main - build: hcfcfb64_0 - subdir: win-64 - build_number: 0 - license: BSD-2-Clause - license_family: BSD - size: 134235 - timestamp: 1674728465431 - name: tbb version: 2021.9.0 manager: conda @@ -40083,6 +39875,26 @@ package: license_family: MIT size: 116578 timestamp: 1661171599353 +- name: bzip2 + version: 1.0.8 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 + hash: + md5: 7c03c66026944073040cb19a4f3ec3c9 + sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 + optional: false + category: main + build: h8ffe710_4 + subdir: win-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 152247 + timestamp: 1606605223049 - name: libaec version: 1.0.6 manager: conda @@ -40183,26 +39995,6 @@ package: license_family: BSD size: 260615 timestamp: 1606824019288 -- name: libffi - version: 3.4.2 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 - hash: - md5: 2c96d1b6915b408893f9472569dee135 - sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 - optional: false - category: main - build: h8ffe710_5 - subdir: win-64 - build_number: 5 - license: MIT - license_family: MIT - size: 42063 - timestamp: 1636489106777 - name: libcblas version: 3.9.0 manager: conda @@ -40338,6 +40130,26 @@ package: license: JasPer 2.0 size: 628911 timestamp: 1674879446989 +- name: libffi + version: 3.4.2 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + hash: + md5: 2c96d1b6915b408893f9472569dee135 + sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 + optional: false + category: main + build: h8ffe710_5 + subdir: win-64 + build_number: 5 + license: MIT + license_family: MIT + size: 42063 + timestamp: 1636489106777 - name: ca-certificates version: 2023.5.7 manager: conda @@ -40365,23 +40177,23 @@ package: libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' ucrt: '>=10.0.20348.0' - gstreamer: ==1.22.4 hb4038d2_0 + gstreamer: ==1.22.4 hb4038d2_1 gettext: '>=0.21.1,<1.0a0' vc14_runtime: '>=14.29.30139' libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.4-h001b923_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.4-h001b923_1.conda hash: - md5: 2c402e044af28ad8eccf03031c5c34c4 - sha256: e173661c30f46d2baac980320cc53ce5f86c2d48994d895d39cdec7af825b878 + md5: ce797dd3d60901f6260e84e84674c829 + sha256: 796b63de19fa87c76583e0253e02796937d635d98701976390494589b5109d54 optional: false category: main - build: h001b923_0 + build: h001b923_1 subdir: win-64 - build_number: 0 + build_number: 1 license: LGPL-2.0-or-later license_family: LGPL - size: 2035218 - timestamp: 1687713712559 + size: 2034245 + timestamp: 1688582747778 - name: gstreamer version: 1.22.4 manager: conda @@ -40394,66 +40206,66 @@ package: libiconv: '>=1.17,<2.0a0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.4-hb4038d2_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.4-hb4038d2_1.conda hash: - md5: ead79af9af7587ca3f685fed4966a881 - sha256: c8473fd20f328fcb1840ce402fc3876b004e14370cb9509ae0220ffad3fce14e + md5: 42f53931331420f6b748f91ef356a558 + sha256: 5f9e74b2114872ed0ababbeaf5915a59729d1cc993a453de7584eaece1ddab91 optional: false category: main - build: hb4038d2_0 + build: hb4038d2_1 subdir: win-64 - build_number: 0 + build_number: 1 license: LGPL-2.0-or-later license_family: LGPL - size: 1934119 - timestamp: 1687713550074 + size: 1936654 + timestamp: 1688582544317 - name: glib - version: 2.76.3 + version: 2.76.4 manager: conda platform: win-64 dependencies: - glib-tools: ==2.76.3 h12be248_0 + glib-tools: ==2.76.4 h12be248_0 python: '*' - libglib: ==2.76.3 he8f3873_0 + libglib: ==2.76.4 he8f3873_0 libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' ucrt: '>=10.0.20348.0' gettext: '>=0.21.1,<1.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/glib-2.76.3-h12be248_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/glib-2.76.4-h12be248_0.conda hash: - md5: fa3f1af2dc70e0d00a755667a741fad3 - sha256: 6c6f526cc153feeee786daf16f2790a8ff4478fde752b2d0d3619c884f00b898 + md5: 4d7ae53ee4b7e08f3fbd1d3a7efd4812 + sha256: 96457df6c2cb42ec32c25a135ca1232e740f21fe20216e54024df9274f5ae4ad optional: false category: main build: h12be248_0 subdir: win-64 build_number: 0 license: LGPL-2.1-or-later - size: 499267 - timestamp: 1684848581285 + size: 499494 + timestamp: 1688695170322 - name: glib-tools - version: 2.76.3 + version: 2.76.4 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - libglib: ==2.76.3 he8f3873_0 + libglib: ==2.76.4 he8f3873_0 libzlib: '>=1.2.13,<1.3.0a0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.76.3-h12be248_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.76.4-h12be248_0.conda hash: - md5: 3015483cb3ffa200d51aac3c691fcda0 - sha256: 10cc47bc9194e42ea984e437e3d99c794d5d6e7c5ac2994716054fcbcf65d33a + md5: 88237d3ddd338164196043cb7e927246 + sha256: f90981fd787047c1b355bdaa9a981a5822152d3121f696d532ed29d51acc1507 optional: false category: main build: h12be248_0 subdir: win-64 build_number: 0 license: LGPL-2.1-or-later - size: 145860 - timestamp: 1684848520399 + size: 145910 + timestamp: 1688695112953 - name: libclang version: 15.0.7 manager: conda @@ -40517,26 +40329,26 @@ package: noarch: generic size: 117580 timestamp: 1680041306008 -- name: distro - version: 1.8.0 +- name: tomli + version: 2.0.1 manager: conda platform: win-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/distro-1.8.0-pyhd8ed1ab_0.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 hash: - md5: 67999c5465064480fa8016d00ac768f6 - sha256: 0d01c4da6d4f0a935599210f82ac0630fa9aeb4fc37cbbc78043a932a39ec4f3 + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f optional: false category: main build: pyhd8ed1ab_0 subdir: noarch build_number: 0 - license: Apache-2.0 - license_family: APACHE + license: MIT + license_family: MIT noarch: python - size: 40854 - timestamp: 1675116355989 + size: 15940 + timestamp: 1644342331069 - name: pyflakes version: 3.0.1 manager: conda @@ -40615,16 +40427,36 @@ package: noarch: python size: 14259 timestamp: 1620240338595 +- name: toml + version: 0.10.2 + manager: conda + platform: win-64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 18433 + timestamp: 1604308660817 - name: zipp - version: 3.15.0 + version: 3.16.0 manager: conda platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.0-pyhd8ed1ab_0.conda hash: - md5: 13018819ca8f5b7cc675a8faf1f5fedf - sha256: 241de30545299be9bcea3addf8a2c22a3b3d4ba6730890e150ab690ac937a3d2 + md5: 8be65b18d05ecd2801964e69c42f4fca + sha256: de563512a84818e5b367414e68985196dfb40964c12147fc731a6645f2e029e5 optional: false category: main build: pyhd8ed1ab_0 @@ -40633,18 +40465,18 @@ package: license: MIT license_family: MIT noarch: python - size: 17197 - timestamp: 1677313561776 + size: 17482 + timestamp: 1688903060076 - name: exceptiongroup - version: 1.1.1 + version: 1.1.2 manager: conda platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.2-pyhd8ed1ab_0.conda hash: - md5: 7312299d7a0ea4993159229b7d2dceb2 - sha256: f073c3ba993912f1c0027bc34a54975642885f0a4cd5f9dc42a17ca945df2c18 + md5: de4cb3384374e1411f0454edcf546cdb + sha256: 7b23ea0169fa6e7c3a0867d96d9eacd312759f83e5d83ad0fcc93e85379c16ae optional: false category: main build: pyhd8ed1ab_0 @@ -40653,8 +40485,8 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 18929 - timestamp: 1678703786698 + size: 19043 + timestamp: 1688381208754 - name: iniconfig version: 2.0.0 manager: conda @@ -40744,52 +40576,93 @@ package: license: LicenseRef-Public-Domain-Dedictation and BSD-2-Clause and LicenseRef-PSF-2.1.1 and GPL-3.0-or-later size: 772862 timestamp: 1684325082785 -- name: xorg-libxext - version: 1.3.4 +- name: xorg-libx11 + version: 1.8.4 manager: conda platform: win-64 dependencies: + xorg-xproto: '*' + libxcb: '>=1.13,<1.14.0a0' + xorg-kbproto: '*' + m2w64-gcc-libs-core: '*' m2w64-gcc-libs: '*' - xorg-libx11: '>=1.7.2,<2.0a0' - xorg-xextproto: '*' - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda + xorg-xextproto: '>=7.3.0,<8.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.4-hcd874cb_0.conda hash: - md5: 2aa695ac3c56193fd8d526e3b511e021 - sha256: 829320f05866ea1cc51924828427f215f4d0db093e748a662e3bb68b764785a4 + md5: ebdb02b455647e13fa697da89d9bdf84 + sha256: 0885d36278dd9fa1c996a813e917ebb32c05f4c102527de0088f9cc22d72bf28 optional: false category: main - build: hcd874cb_2 + build: hcd874cb_0 subdir: win-64 - build_number: 2 + build_number: 0 license: MIT license_family: MIT - size: 221821 - timestamp: 1677038179908 -- name: xorg-libxt - version: 1.3.0 + size: 816786 + timestamp: 1677612161147 +- name: pycairo + version: 1.24.0 manager: conda platform: win-64 dependencies: - xorg-libx11: '>=1.8.4,<2.0a0' - xorg-xproto: '*' - xorg-kbproto: '*' - m2w64-gcc-libs-core: '*' - m2w64-gcc-libs: '*' - xorg-libice: 1.0.* - xorg-libsm: 1.2.* - url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_0.conda + ucrt: '>=10.0.20348.0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + cairo: '>=1.16.0,<2.0a0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/pycairo-1.24.0-py310h42c1a3e_0.conda hash: - md5: f7db1a67cd97a9bd0f59ee6997a77159 - sha256: 62fea8b73c5d69850c91f7282617d77ce8c89bf8304bb53f9394e660874b33bf + md5: 4d70b5a0e88832e4746d44fe19d372e7 + sha256: 0bf5dbc638ba179a8ca3b65486d8ca14c288125a24bb26772d62a27cc702aeb0 optional: false category: main - build: hcd874cb_0 + build: py310h42c1a3e_0 subdir: win-64 build_number: 0 - license: MIT - license_family: MIT - size: 671917 - timestamp: 1685497583038 + license: LGPL-2.1-only OR MPL-1.1 + size: 100469 + timestamp: 1687180784465 +- name: sdl2 + version: 2.26.5 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/sdl2-2.26.5-h63175ca_0.conda + hash: + md5: 620fcad9da41516d395411099908bb3b + sha256: 4ebc9b29b04b2087dfff77ecbe6d7fc7e95c7223ed0447966f3a0aa1f007e8af + optional: false + category: main + build: h63175ca_0 + subdir: win-64 + build_number: 0 + license: Zlib + size: 2211251 + timestamp: 1680736427464 +- name: pygments + version: 2.15.1 + manager: conda + platform: win-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.15.1-pyhd8ed1ab_0.conda + hash: + md5: d316679235612869eba305aa7d41d9bf + sha256: 1bddeb54863c77ed5613b535a3e06a3a16b55786301a5e28c9bf011656bda686 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 840719 + timestamp: 1681904335148 - name: pycparser version: '2.21' manager: conda @@ -40810,6 +40683,54 @@ package: noarch: python size: 102747 timestamp: 1636257201998 +- name: rospkg + version: 1.5.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + pyyaml: '*' + catkin_pkg: '*' + distro: '*' + url: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.5.0-pyhd8ed1ab_0.conda + hash: + md5: 15f4f2f2538f7746a9c4c9f3ba783f49 + sha256: 1ad1b4ce441a35dc86c13d8683ed2f052e4df8d8c3f5ced86d5e4735d596f940 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 31031 + timestamp: 1679367764497 +- name: xorg-libxpm + version: 3.5.16 + manager: conda + platform: win-64 + dependencies: + xorg-libxt: '>=1.2.1,<2.0a0' + xorg-xextproto: '>=7.3.0,<8.0a0' + xorg-xproto: '*' + m2w64-gcc-libs-core: '*' + m2w64-gcc-libs: '*' + xorg-libx11: '>=1.8.4,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.16-hcd874cb_0.conda + hash: + md5: e74445e2a4ad70fc358ae2bf87c20f41 + sha256: 28cda9130ae2988a45d5cf995e47213271b71712e3d96e50557173d106d05d05 + optional: false + category: main + build: hcd874cb_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 194317 + timestamp: 1685308054284 - name: attrs version: 23.1.0 manager: conda @@ -40873,15 +40794,15 @@ package: size: 12730 timestamp: 1667935912504 - name: charset-normalizer - version: 3.1.0 + version: 3.2.0 manager: conda platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 optional: false category: main build: pyhd8ed1ab_0 @@ -40890,8 +40811,8 @@ package: license: MIT license_family: MIT noarch: python - size: 44914 - timestamp: 1678108997608 + size: 45686 + timestamp: 1688813585878 - name: multidict version: 6.0.4 manager: conda @@ -41022,6 +40943,7 @@ package: subdir: win-64 build_number: 9 license: MIT + license_family: MIT size: 20278 timestamp: 1687886707104 - name: brotli-bin @@ -41044,6 +40966,7 @@ package: subdir: win-64 build_number: 9 license: MIT + license_family: MIT size: 22498 timestamp: 1687886681486 - name: libbrotlidec @@ -41065,6 +40988,7 @@ package: subdir: win-64 build_number: 9 license: MIT + license_family: MIT size: 32397 timestamp: 1687886606813 - name: libbrotlienc @@ -41086,6 +41010,7 @@ package: subdir: win-64 build_number: 9 license: MIT + license_family: MIT size: 235953 timestamp: 1687886643790 - name: libbrotlicommon @@ -41106,6 +41031,7 @@ package: subdir: win-64 build_number: 9 license: MIT + license_family: MIT size: 72530 timestamp: 1687886570242 - name: unicodedata2 @@ -41198,6 +41124,25 @@ package: license_family: BSD size: 145998 timestamp: 1660348014066 +- name: xorg-xextproto + version: 7.3.0 + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libs: '*' + url: https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda + hash: + md5: 6e6c2639620e436bddb7c040cd4f3adb + sha256: 04c0a08fd34fa33406c20f729e8f9cc40e8fd898072b952a5c14280fcf26f2e6 + optional: false + category: main + build: hcd874cb_1003 + subdir: win-64 + build_number: 1003 + license: MIT + license_family: MIT + size: 31034 + timestamp: 1677037259999 - name: freeglut version: 3.2.2 manager: conda @@ -41237,16 +41182,36 @@ package: license_family: Proprietary size: 2571975 timestamp: 1681819121435 +- name: distro + version: 1.8.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/distro-1.8.0-pyhd8ed1ab_0.conda + hash: + md5: 67999c5465064480fa8016d00ac768f6 + sha256: 0d01c4da6d4f0a935599210f82ac0630fa9aeb4fc37cbbc78043a932a39ec4f3 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 40854 + timestamp: 1675116355989 - name: typing-extensions - version: 4.6.3 + version: 4.7.1 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.6.3 pyha770c72_0 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.6.3-hd8ed1ab_0.conda + typing_extensions: ==4.7.1 pyha770c72_0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda hash: - md5: 3876f650ed7d0f95d70fa4b647621909 - sha256: d2334dab270e13182403cc3a394e3da8e7acb409e94059a6d9223d2ac053f90a + md5: f96688577f1faa58096d06a45136afa2 + sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d optional: false category: main build: hd8ed1ab_0 @@ -41255,18 +41220,18 @@ package: license: PSF-2.0 license_family: PSF noarch: python - size: 10040 - timestamp: 1685705090608 + size: 10080 + timestamp: 1688315729011 - name: typing_extensions - version: 4.6.3 + version: 4.7.1 manager: conda platform: win-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.6.3-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda hash: - md5: 4a3014a4d107d15475d106b751c4e352 - sha256: 90a8d56c8015af1575d504d5f77d95a806cd999fc178a06ab51a349f1f744672 + md5: c39d6a09fe819de4951c2642629d9115 + sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1 optional: false category: main build: pyha770c72_0 @@ -41275,8 +41240,54 @@ package: license: PSF-2.0 license_family: PSF noarch: python - size: 34905 - timestamp: 1685705083612 + size: 36321 + timestamp: 1688315719627 +- name: xorg-libxext + version: 1.3.4 + manager: conda + platform: win-64 + dependencies: + m2w64-gcc-libs: '*' + xorg-libx11: '>=1.7.2,<2.0a0' + xorg-xextproto: '*' + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda + hash: + md5: 2aa695ac3c56193fd8d526e3b511e021 + sha256: 829320f05866ea1cc51924828427f215f4d0db093e748a662e3bb68b764785a4 + optional: false + category: main + build: hcd874cb_2 + subdir: win-64 + build_number: 2 + license: MIT + license_family: MIT + size: 221821 + timestamp: 1677038179908 +- name: xorg-libxt + version: 1.3.0 + manager: conda + platform: win-64 + dependencies: + xorg-libx11: '>=1.8.4,<2.0a0' + xorg-xproto: '*' + xorg-kbproto: '*' + m2w64-gcc-libs-core: '*' + m2w64-gcc-libs: '*' + xorg-libice: 1.0.* + xorg-libsm: 1.2.* + url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_0.conda + hash: + md5: f7db1a67cd97a9bd0f59ee6997a77159 + sha256: 62fea8b73c5d69850c91f7282617d77ce8c89bf8304bb53f9394e660874b33bf + optional: false + category: main + build: hcd874cb_0 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + size: 671917 + timestamp: 1685497583038 - name: idna version: '3.4' manager: conda @@ -41303,21 +41314,21 @@ package: platform: win-64 dependencies: vc14_runtime: '>=14.36.32532' - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_16.conda + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda hash: - md5: ae80d948fa55a0cc6010bd0df91797a4 - sha256: 1409730a75f37838414030997fe839cf33fb67d77da2dd0b02a0a1d166cef257 + md5: 67ff6791f235bb606659bf2a5c169191 + sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6 optional: false category: main - build: h64f974e_16 + build: h64f974e_17 subdir: win-64 - build_number: 16 + build_number: 17 track_features: - vc14 license: BSD-3-Clause license_family: BSD - size: 17150 - timestamp: 1687559686939 + size: 17176 + timestamp: 1688020629925 - name: pkg-config version: 0.29.2 manager: conda @@ -41775,6 +41786,7 @@ package: ros-humble-urdf: '*' qt-main: '>=5.15.6,<5.16.0a0' ros-humble-ignition-math6-vendor: '*' + xorg-libxext: '*' ros-humble-interactive-markers: '*' ros-humble-pluginlib: '*' ros-humble-image-transport: '*' @@ -41794,7 +41806,6 @@ package: ros-humble-rviz-ogre-vendor: '*' ros-humble-visualization-msgs: '*' xorg-libx11: '*' - xorg-libxext: '*' url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rviz-default-plugins-11.2.5-py310h5aa156f_3.tar.bz2 hash: md5: a17cbd7929fe702fe097bb78c4043ccd @@ -41847,29 +41858,6 @@ package: build_number: 3 size: 13451 timestamp: 1675850917975 -- name: ros-humble-ros-workspace - version: 1.0.2 - manager: conda - platform: osx-64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: '*' - __osx: '>=10.14' - python_abi: 3.10.* *_cp310 - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-ros-workspace-1.0.2-py310h5aa156f_3.tar.bz2 - hash: - md5: b48542a5b4100eee405f3c5cb7f19ede - sha256: a8953e5ef0f5073c5aa5fef7b2217398a4837dbcc43e67d7e68715c2e7b9336a - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 26851 - timestamp: 1675631554584 - name: ros-humble-ros-base version: 0.10.0 manager: conda @@ -42920,6 +42908,29 @@ package: build_number: 3 size: 92058 timestamp: 1675683964372 +- name: ros-humble-ros-workspace + version: 1.0.2 + manager: conda + platform: osx-64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: '*' + __osx: '>=10.14' + python_abi: 3.10.* *_cp310 + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-ros-workspace-1.0.2-py310h5aa156f_3.tar.bz2 + hash: + md5: b48542a5b4100eee405f3c5cb7f19ede + sha256: a8953e5ef0f5073c5aa5fef7b2217398a4837dbcc43e67d7e68715c2e7b9336a + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 26851 + timestamp: 1675631554584 - name: ros-humble-turtlesim version: 1.4.2 manager: conda @@ -44364,32 +44375,6 @@ package: build_number: 3 size: 11746 timestamp: 1675847480574 -- name: ros-humble-example-interfaces - version: 0.9.3 - manager: conda - platform: osx-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - __osx: '>=10.14' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-action-msgs: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-example-interfaces-0.9.3-py310h5aa156f_3.tar.bz2 - hash: - md5: ff0ea1ff3c0dbdbc4b4d38eff6574b09 - sha256: d03a0e0440e3fb673f1fa545a1b8a797da1ee557974f0826cb0fde3827ab105e - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 331589 - timestamp: 1675653365914 - name: ros-humble-rcutils version: 5.1.2 manager: conda @@ -44440,6 +44425,32 @@ package: build_number: 3 size: 68257 timestamp: 1675647767091 +- name: ros-humble-example-interfaces + version: 0.9.3 + manager: conda + platform: osx-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-default-runtime: '*' + __osx: '>=10.14' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-action-msgs: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-example-interfaces-0.9.3-py310h5aa156f_3.tar.bz2 + hash: + md5: ff0ea1ff3c0dbdbc4b4d38eff6574b09 + sha256: d03a0e0440e3fb673f1fa545a1b8a797da1ee557974f0826cb0fde3827ab105e + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 331589 + timestamp: 1675653365914 - name: ros-humble-rosidl-default-runtime version: 1.2.0 manager: conda @@ -45063,61 +45074,6 @@ package: build_number: 3 size: 28918 timestamp: 1675646960723 -- name: ros-humble-unique-identifier-msgs - version: 2.2.1 - manager: conda - platform: osx-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - ros-humble-rosidl-default-runtime: '*' - __osx: '>=10.14' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-unique-identifier-msgs-2.2.1-py310h5aa156f_3.tar.bz2 - hash: - md5: 36f0ed7977aba414c4ae80a183c9f538 - sha256: 732a173b3a6c375921df81fa2074b1764d6884092f1baefd0c2a63d3ecd511c3 - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 48163 - timestamp: 1675651151971 -- name: ros-humble-rcl-lifecycle - version: 5.3.2 - manager: conda - platform: osx-64 - dependencies: - python: '*' - python_abi: 3.10.* *_cp310 - __osx: '>=10.14' - ros2-distro-mutex: 0.3.* humble - ros-humble-lifecycle-msgs: '*' - ros-humble-tracetools: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-rcl: '*' - ros-humble-rcutils: '*' - ros-humble-rmw: '*' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-runtime-c: '*' - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rcl-lifecycle-5.3.2-py310h5aa156f_3.tar.bz2 - hash: - md5: ba747c12c35df4678613d10f8a2b302d - sha256: 16156edc0c2231603f14eec4787f4a1edd61a0b2586a604926654173fe3c6ff8 - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 30853 - timestamp: 1675657591772 - name: ros-humble-rcl-logging-interface version: 2.3.1 manager: conda @@ -45175,6 +45131,31 @@ package: build_number: 3 size: 27926 timestamp: 1675655298537 +- name: ros-humble-unique-identifier-msgs + version: 2.2.1 + manager: conda + platform: osx-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + ros-humble-rosidl-default-runtime: '*' + __osx: '>=10.14' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-unique-identifier-msgs-2.2.1-py310h5aa156f_3.tar.bz2 + hash: + md5: 36f0ed7977aba414c4ae80a183c9f538 + sha256: 732a173b3a6c375921df81fa2074b1764d6884092f1baefd0c2a63d3ecd511c3 + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 48163 + timestamp: 1675651151971 - name: ros-humble-rpyutils version: 0.2.1 manager: conda @@ -45199,6 +45180,36 @@ package: build_number: 3 size: 12450 timestamp: 1675639107708 +- name: ros-humble-rcl-lifecycle + version: 5.3.2 + manager: conda + platform: osx-64 + dependencies: + python: '*' + python_abi: 3.10.* *_cp310 + __osx: '>=10.14' + ros2-distro-mutex: 0.3.* humble + ros-humble-lifecycle-msgs: '*' + ros-humble-tracetools: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-rcl: '*' + ros-humble-rcutils: '*' + ros-humble-rmw: '*' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-runtime-c: '*' + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rcl-lifecycle-5.3.2-py310h5aa156f_3.tar.bz2 + hash: + md5: ba747c12c35df4678613d10f8a2b302d + sha256: 16156edc0c2231603f14eec4787f4a1edd61a0b2586a604926654173fe3c6ff8 + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 30853 + timestamp: 1675657591772 - name: ros-humble-composition-interfaces version: 1.2.1 manager: conda @@ -46352,6 +46363,35 @@ package: build_number: 3 size: 16581 timestamp: 1675720027100 +- name: ros-humble-ament-cmake-ros + version: 0.10.0 + manager: conda + platform: osx-64 + dependencies: + ros-humble-domain-coordinator: '*' + python: '*' + python_abi: 3.10.* *_cp310 + __osx: '>=10.14' + ros-humble-ament-cmake: '*' + ros-humble-ament-cmake-pytest: '*' + ros2-distro-mutex: 0.3.* humble + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ament-cmake-gmock: '*' + ros-humble-ament-cmake-gtest: '*' + ros-humble-ros-workspace: '*' + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-ament-cmake-ros-0.10.0-py310h5aa156f_3.tar.bz2 + hash: + md5: 4d6c5b2338e99c0472d716dca226b7bb + sha256: 4cb1c89709b3abbc5f458b6e9732e28dbf0ddeb358e7aeb9532684c4fa35b070 + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 14571 + timestamp: 1675644345289 - name: ros-humble-ament-cmake-auto version: 1.3.3 manager: conda @@ -46460,35 +46500,6 @@ package: build_number: 3 size: 13356 timestamp: 1675637149280 -- name: ros-humble-ament-cmake-ros - version: 0.10.0 - manager: conda - platform: osx-64 - dependencies: - ros-humble-domain-coordinator: '*' - python: '*' - python_abi: 3.10.* *_cp310 - __osx: '>=10.14' - ros-humble-ament-cmake: '*' - ros-humble-ament-cmake-pytest: '*' - ros2-distro-mutex: 0.3.* humble - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-ament-cmake-gmock: '*' - ros-humble-ament-cmake-gtest: '*' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-ament-cmake-ros-0.10.0-py310h5aa156f_3.tar.bz2 - hash: - md5: 4d6c5b2338e99c0472d716dca226b7bb - sha256: 4cb1c89709b3abbc5f458b6e9732e28dbf0ddeb358e7aeb9532684c4fa35b070 - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 14571 - timestamp: 1675644345289 - name: ros-humble-ament-lint-auto version: 0.12.5 manager: conda @@ -47312,6 +47323,34 @@ package: build_number: 3 size: 29025 timestamp: 1675648389812 +- name: ros-humble-rosidl-cmake + version: 3.1.4 + manager: conda + platform: osx-64 + dependencies: + empy: '*' + python: '*' + python_abi: 3.10.* *_cp310 + __osx: '>=10.14' + ros-humble-ament-cmake: '*' + ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-parser: '*' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-adapter: '*' + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rosidl-cmake-3.1.4-py310h5aa156f_3.tar.bz2 + hash: + md5: 89b4504bb4ba9ea7f7a031d13a9d3fae + sha256: 1191c0fc1937294504064471c22ca7fb51486a401c48f2e3e4f1819a4a7219a9 + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 27307 + timestamp: 1675646163088 - name: ros-humble-fastcdr version: 1.0.24 manager: conda @@ -47336,6 +47375,30 @@ package: build_number: 3 size: 52707 timestamp: 1675634215116 +- name: ros-humble-fastrtps-cmake-module + version: 2.2.0 + manager: conda + platform: osx-64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: '*' + __osx: '>=10.14' + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-fastrtps-cmake-module-2.2.0-py310h5aa156f_3.tar.bz2 + hash: + md5: b2b2a773dd5266261ee2fce02bc15733 + sha256: c898e772f32c2561f7b453051ab953b6e72409443109643fa7f06a8953eb564d + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 11721 + timestamp: 1675644026586 - name: ros-humble-fastrtps version: 2.6.4 manager: conda @@ -47364,30 +47427,6 @@ package: build_number: 3 size: 2941737 timestamp: 1675859266779 -- name: ros-humble-fastrtps-cmake-module - version: 2.2.0 - manager: conda - platform: osx-64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: '*' - __osx: '>=10.14' - python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-fastrtps-cmake-module-2.2.0-py310h5aa156f_3.tar.bz2 - hash: - md5: b2b2a773dd5266261ee2fce02bc15733 - sha256: c898e772f32c2561f7b453051ab953b6e72409443109643fa7f06a8953eb564d - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 11721 - timestamp: 1675644026586 - name: ros-humble-rmw-dds-common version: 1.6.0 manager: conda @@ -47452,34 +47491,6 @@ package: build_number: 3 size: 191160 timestamp: 1675652205709 -- name: ros-humble-rosidl-cmake - version: 3.1.4 - manager: conda - platform: osx-64 - dependencies: - empy: '*' - python: '*' - python_abi: 3.10.* *_cp310 - __osx: '>=10.14' - ros-humble-ament-cmake: '*' - ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-parser: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - ros-humble-rosidl-adapter: '*' - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rosidl-cmake-3.1.4-py310h5aa156f_3.tar.bz2 - hash: - md5: 89b4504bb4ba9ea7f7a031d13a9d3fae - sha256: 1191c0fc1937294504064471c22ca7fb51486a401c48f2e3e4f1819a4a7219a9 - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 27307 - timestamp: 1675646163088 - name: ros-humble-ament-cmake-core version: 1.3.3 manager: conda @@ -48138,6 +48149,30 @@ package: build_number: 3 size: 1027192 timestamp: 1675644022757 +- name: ros-humble-domain-coordinator + version: 0.10.0 + manager: conda + platform: osx-64 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: '*' + __osx: '>=10.14' + python_abi: 3.10.* *_cp310 + ros-humble-ros-workspace: '*' + ros2-distro-mutex: 0.3.* humble + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-domain-coordinator-0.10.0-py310h5aa156f_3.tar.bz2 + hash: + md5: 4ecba4acf7dc030d6e38ece009d3b8bb + sha256: 5605cf49765ff1881cc928220012b7d8d65217e2bac089dedd4f7b551c05c3fb + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 10596 + timestamp: 1675638042166 - name: ros-humble-gmock-vendor version: 1.10.9004 manager: conda @@ -48187,30 +48222,6 @@ package: build_number: 3 size: 184899 timestamp: 1675632519526 -- name: ros-humble-domain-coordinator - version: 0.10.0 - manager: conda - platform: osx-64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python: '*' - __osx: '>=10.14' - python_abi: 3.10.* *_cp310 - ros-humble-ros-workspace: '*' - ros2-distro-mutex: 0.3.* humble - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-domain-coordinator-0.10.0-py310h5aa156f_3.tar.bz2 - hash: - md5: 4ecba4acf7dc030d6e38ece009d3b8bb - sha256: 5605cf49765ff1881cc928220012b7d8d65217e2bac089dedd4f7b551c05c3fb - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 10596 - timestamp: 1675638042166 - name: ros-humble-ament-cmake-copyright version: 0.12.5 manager: conda @@ -49097,22 +49108,49 @@ package: __osx: '>=10.14' ros2-distro-mutex: 0.3.* humble numpy: '>=1.21.6,<2.0a0' - lark-parser: '*' + lark-parser: '*' + libcxx: '>=14.0.6' + ros-humble-ros-workspace: '*' + ros-humble-rosidl-adapter: '*' + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rosidl-parser-3.1.4-py310h5aa156f_3.tar.bz2 + hash: + md5: 2fcf56cec9c19b87af42f1c7c9345b5b + sha256: d68b75fa6863cf0217f58e2ef0718fc92809493f025857fd63d020aea4098789 + optional: false + category: main + build: py310h5aa156f_3 + arch: x86_64 + subdir: osx-64 + build_number: 3 + size: 54257 + timestamp: 1675645384528 +- name: ros-humble-rosidl-adapter + version: 3.1.4 + manager: conda + platform: osx-64 + dependencies: + empy: '*' + python: '*' + python_abi: 3.10.* *_cp310 + __osx: '>=10.14' + ros2-distro-mutex: 0.3.* humble + ros-humble-rosidl-cli: '*' + ros-humble-ament-cmake-core: '*' + numpy: '>=1.21.6,<2.0a0' libcxx: '>=14.0.6' ros-humble-ros-workspace: '*' - ros-humble-rosidl-adapter: '*' - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rosidl-parser-3.1.4-py310h5aa156f_3.tar.bz2 + url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rosidl-adapter-3.1.4-py310h5aa156f_3.tar.bz2 hash: - md5: 2fcf56cec9c19b87af42f1c7c9345b5b - sha256: d68b75fa6863cf0217f58e2ef0718fc92809493f025857fd63d020aea4098789 + md5: 6efa27b079789d3796ba8eca384bcc1a + sha256: ac62ba765eb9b06be82b2f449b2b1d1d35c474e2438aeff860d0211d438c137c optional: false category: main build: py310h5aa156f_3 arch: x86_64 subdir: osx-64 build_number: 3 - size: 54257 - timestamp: 1675645384528 + size: 58448 + timestamp: 1675644403368 - name: ros-humble-foonathan-memory-vendor version: 1.2.0 manager: conda @@ -49139,33 +49177,6 @@ package: build_number: 3 size: 8728 timestamp: 1675641949720 -- name: ros-humble-rosidl-adapter - version: 3.1.4 - manager: conda - platform: osx-64 - dependencies: - empy: '*' - python: '*' - python_abi: 3.10.* *_cp310 - __osx: '>=10.14' - ros2-distro-mutex: 0.3.* humble - ros-humble-rosidl-cli: '*' - ros-humble-ament-cmake-core: '*' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - ros-humble-ros-workspace: '*' - url: https://conda.anaconda.org/robostack-staging/osx-64/ros-humble-rosidl-adapter-3.1.4-py310h5aa156f_3.tar.bz2 - hash: - md5: 6efa27b079789d3796ba8eca384bcc1a - sha256: ac62ba765eb9b06be82b2f449b2b1d1d35c474e2438aeff860d0211d438c137c - optional: false - category: main - build: py310h5aa156f_3 - arch: x86_64 - subdir: osx-64 - build_number: 3 - size: 58448 - timestamp: 1675644403368 - name: ros-humble-ament-package version: 0.14.0 manager: conda @@ -49769,49 +49780,538 @@ package: sha256: 5ad9f5e96e6770bfc8b0a826f48835e7f337c2d2e9512d76027a62f9c120b2a3 optional: false category: main - build: ha978bb4_0 + build: ha978bb4_0 + subdir: osx-64 + build_number: 0 + license: zlib-acknowledgement + size: 271689 + timestamp: 1669075890643 +- name: nspr + version: '4.35' + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda + hash: + md5: a9e56c98d13d8b7ce72bf4357317c29b + sha256: da6e19bd0ff31e219760e647cfe1cc499a8cdfaff305f06c56d495ca062b86de + optional: false + category: main + build: hea0b92c_0 + subdir: osx-64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 230071 + timestamp: 1669785313586 +- name: libcxx + version: 16.0.6 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + hash: + md5: 7d6972792161077908b62971802f289a + sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + optional: false + category: main + build: hd57cbcb_0 + subdir: osx-64 + build_number: 0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1142172 + timestamp: 1686896907750 +- name: python_abi + version: '3.10' + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-3_cp310.conda + hash: + md5: 42da9b0138e911cd5b2f75b0278e26dc + sha256: 0a66852c47be6b28b70bde29891a71d047730c723355d44b0da48db79fb99eb1 + optional: false + category: main + build: 3_cp310 + subdir: osx-64 + build_number: 3 + constrains: + - python 3.10.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 5765 + timestamp: 1669071919130 +- name: setuptools + version: 61.0.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-64/setuptools-61.0.0-py310h2ec42d9_0.tar.bz2 + hash: + md5: 0bba18f15cdbb786a4bd03e26b404e48 + sha256: b39e3b16bf487e6863b0d7d50c6f73deb143e7636e57e7e2a4ae0e9a61e72804 + optional: false + category: main + build: py310h2ec42d9_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 1341285 + timestamp: 1648243853476 +- name: numpy + version: 1.25.1 + manager: conda + platform: osx-64 + dependencies: + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + liblapack: '>=3.9.0,<4.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libblas: '>=3.9.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.25.1-py310h7451ae0_0.conda + hash: + md5: 525db32fd93b63f2f7ca3ece8576b9c8 + sha256: 32fe99f86e998169999514fb7f96695fdec9215bd0e7061425c1b4e399ca2cae + optional: false + category: main + build: py310h7451ae0_0 + subdir: osx-64 + build_number: 0 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + size: 6378643 + timestamp: 1688887678910 +- name: python + version: 3.10.12 + manager: conda + platform: osx-64 + dependencies: + tzdata: '*' + openssl: '>=3.1.1,<4.0a0' + readline: '>=8.2,<9.0a0' + libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.42.0,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + xz: '>=5.2.6,<6.0a0' + tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + ncurses: '>=6.4,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.12-had23ca6_0_cpython.conda + hash: + md5: 351b8aa0687f3510620cf06ad11229f4 + sha256: cbf1b9cf9bdba639675a1431a053f3f2babb73ca6b4329cf72dcf9cd45a29cc8 + optional: false + category: main + build: had23ca6_0_cpython + subdir: osx-64 + build_number: 0 + constrains: + - python_abi 3.10.* *_cp310 + license: Python-2.0 + size: 13065974 + timestamp: 1687560536470 +- name: readline + version: '8.2' + manager: conda + platform: osx-64 + dependencies: + ncurses: '>=6.3,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + hash: + md5: f17f77f2acf4d344734bda76829ce14e + sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 + optional: false + category: main + build: h9e318b2_1 + subdir: osx-64 + build_number: 1 + license: GPL-3.0-only + license_family: GPL + size: 255870 + timestamp: 1679532707590 +- name: tk + version: 8.6.12 + manager: conda + platform: osx-64 + dependencies: + libzlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 + hash: + md5: 8e9480d9c47061db2ed1b4ecce519a7f + sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 + optional: false + category: main + build: h5dbffcc_0 + subdir: osx-64 + build_number: 0 + license: TCL + license_family: BSD + size: 3531016 + timestamp: 1645032719565 +- name: ncurses + version: '6.4' + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda + hash: + md5: c3dbae2411164d9b02c69090a9a91857 + sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd + optional: false + category: main + build: hf0c8a7f_0 + subdir: osx-64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 828118 + timestamp: 1686077056765 +- name: xz + version: 5.2.6 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + hash: + md5: a72f9d4ea13d55d745ff1ed594747f10 + sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 + optional: false + category: main + build: h775f41a_0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 238119 + timestamp: 1660346964847 +- name: libsqlite + version: 3.42.0 + manager: conda + platform: osx-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.42.0-h58db7d2_0.conda + hash: + md5: a7d3b44b7b0c9901ac7813b7a0462893 + sha256: 182689f4b1a5ed638cd615c7774e1a9974842bc127c59173f1d25e31a8795eef + optional: false + category: main + build: h58db7d2_0 + subdir: osx-64 + build_number: 0 + license: Unlicense + size: 878744 + timestamp: 1684265213849 +- name: catkin_pkg + version: 0.5.2 + manager: conda + platform: osx-64 + dependencies: + setuptools: '*' + python: '>=3.6' + python-dateutil: '*' + pyparsing: '>=1.5.7' + docutils: '*' + url: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-0.5.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 023308d75d557ab1ce66bf99a2988d9b + sha256: fbb30218baeceeabaa49fcd3e053b928899d4f78fb5dea131ee550de3e377d42 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 51088 + timestamp: 1653705145099 +- name: pyqt-builder + version: 1.15.1 + manager: conda + platform: osx-64 + dependencies: + sip: '*' + python: '>=3.6' + toml: '*' + packaging: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.1-pyhd8ed1ab_0.conda + hash: + md5: d124f91fd155fee0bd3d56e656917622 + sha256: 15b5fcae4530c1a7ba8dd32d3b249486f60f51b2342e21aa010852923f677405 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: GPL-3.0-only + license_family: GPL + noarch: python + size: 2962795 + timestamp: 1685604062805 +- name: pyqt + version: 5.15.7 + manager: conda + platform: osx-64 + dependencies: + pyqt5-sip: ==12.11.0 py310h415000c_3 + python: '>=3.10,<3.11.0a0' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + sip: '>=6.7.5,<6.8.0a0' + qt-main: '>=5.15.6,<5.16.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pyqt-5.15.7-py310hdd03f62_3.conda + hash: + md5: c652959992036327b71a2d5ff593cf72 + sha256: 42a3c561ff6c81416b2b37db0a53c0698b637e474b46d8e9f6f9a84635718ec2 + optional: false + category: main + build: py310hdd03f62_3 + subdir: osx-64 + build_number: 3 + constrains: + - __osx >=10.13 + license: GPL-3.0-only + license_family: GPL + size: 4069826 + timestamp: 1674671318262 +- name: pyqt5-sip + version: 12.11.0 + manager: conda + platform: osx-64 + dependencies: + sip: '*' + python: '>=3.10,<3.11.0a0' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + toml: '*' + packaging: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/pyqt5-sip-12.11.0-py310h415000c_3.conda + hash: + md5: 6c56916bf99c55b1f57a53ed689f2561 + sha256: c03844f8939bc8d02f902b2b5e0cede89177739ff7db1295363b33dc23ee8e8d + optional: false + category: main + build: py310h415000c_3 + subdir: osx-64 + build_number: 3 + license: GPL-3.0-only + license_family: GPL + size: 74371 + timestamp: 1674667044106 +- name: console_bridge + version: 1.0.2 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=12.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/console_bridge-1.0.2-hbb4e6a2_1.tar.bz2 + hash: + md5: cf47b840afb14c99a0a89fc2dacc91df + sha256: 88f45553af795d551c796e3bb2c29138df1cd99085108e27607f4cb5ce4949ee + optional: false + category: main + build: hbb4e6a2_1 + subdir: osx-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 17516 + timestamp: 1648912742997 +- name: tinyxml2 + version: 9.0.0 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=11.1.0' + url: https://conda.anaconda.org/conda-forge/osx-64/tinyxml2-9.0.0-he49afe7_2.tar.bz2 + hash: + md5: fc07884cc7d34420ec5faade388a3737 + sha256: c9ac1e0d959dfe0fd870305bd8439d6e9ab35fdd63b428676a1661251990dddf + optional: false + category: main + build: he49afe7_2 + subdir: osx-64 + build_number: 2 + license: Zlib + size: 108413 + timestamp: 1639147979263 +- name: sqlite + version: 3.42.0 + manager: conda + platform: osx-64 + dependencies: + readline: '>=8.2,<9.0a0' + ncurses: '>=6.3,<7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libsqlite: ==3.42.0 h58db7d2_0 + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.42.0-h2b0dec6_0.conda + hash: + md5: 6c22b83608a6e3bd324ab29d3092592f + sha256: ff811793c293cf861746c95fe97ad5384e917bf473337d05283afdadb3b50bc9 + optional: false + category: main + build: h2b0dec6_0 + subdir: osx-64 + build_number: 0 + license: Unlicense + size: 874057 + timestamp: 1684265240963 +- name: importlib_resources + version: 6.0.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.7' + zipp: '>=3.1.0' + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.0.0-pyhd8ed1ab_0.conda + hash: + md5: acf36c4210f71dbf45a83409a9b5ff4d + sha256: cfdc0bb498d6957e360181947b8f07c1128606e9fc27eb4b8aca421857d4127a + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + constrains: + - importlib-resources >=6.0.0,<6.0.1.0a0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 27488 + timestamp: 1688813652372 +- name: cryptography + version: 41.0.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + openssl: '>=3.1.1,<4.0a0' + cffi: '>=1.12' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-41.0.1-py310ha1817de_0.conda + hash: + md5: f66541237ec50c9d89228ded177b8d65 + sha256: 0d73ef9738465c357e40ad9f17d0bd5b266ed0c21191d177736074237c9d53ac + optional: false + category: main + build: py310ha1817de_0 + subdir: osx-64 + build_number: 0 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + size: 1205126 + timestamp: 1685660194364 +- name: lxml + version: 4.9.2 + manager: conda + platform: osx-64 + dependencies: + libxml2: '>=2.10.3,<2.11.0a0' + libxslt: '>=1.1.37,<2.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/lxml-4.9.2-py310h0b20c97_0.conda + hash: + md5: c1cafb603c324934f8b6b87cc5dc5380 + sha256: bafbfaf6241d61108fe174756b1e17ee9929dd7e927ab3a33016eb0e7ebc7f04 + optional: false + category: main + build: py310h0b20c97_0 + subdir: osx-64 + build_number: 0 + license: BSD-3-Clause and GPL-2.0-only and ZPL-2.0 and LicenseRef-ElementTree + size: 1288952 + timestamp: 1671013882731 +- name: libxslt + version: 1.1.37 + manager: conda + platform: osx-64 + dependencies: + libxml2: '>=2.10.3,<2.11.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.37-h5d22bc9_0.tar.bz2 + hash: + md5: 532015104e2167790a59430b5e10dd7f + sha256: 7e913f313f928bb86a5f3572de66e990d0653e251aee55b9985cd9aad4446765 + optional: false + category: main + build: h5d22bc9_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 241900 + timestamp: 1666902529719 +- name: cffi + version: 1.15.1 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + pycparser: '*' + libffi: '>=3.4,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py310ha78151a_3.conda + hash: + md5: 652082e4a6cf9d26e43d0d362590c276 + sha256: 67aa2bf58a98ed9e5bd693233f1de3cf7d499e9520dec7cbea0ee71e4d8f6895 + optional: false + category: main + build: py310ha78151a_3 subdir: osx-64 - build_number: 0 - license: zlib-acknowledgement - size: 271689 - timestamp: 1669075890643 -- name: nspr - version: '4.35' + build_number: 3 + license: MIT + license_family: MIT + size: 220512 + timestamp: 1671179677921 +- name: openssl + version: 3.1.1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda + ca-certificates: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.1-h8a1eda9_1.conda hash: - md5: a9e56c98d13d8b7ce72bf4357317c29b - sha256: da6e19bd0ff31e219760e647cfe1cc499a8cdfaff305f06c56d495ca062b86de + md5: c7822d6ee74e34af1fd74365cfd18983 + sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 optional: false category: main - build: hea0b92c_0 + build: h8a1eda9_1 subdir: osx-64 - build_number: 0 - license: MPL-2.0 - license_family: MOZILLA - size: 230071 - timestamp: 1669785313586 -- name: libcxx - version: 16.0.6 + build_number: 1 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2326872 + timestamp: 1685518213128 +- name: krb5 + version: 1.20.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + libedit: '>=3.1.20191231,<4.0a0' + libcxx: '>=14.0.6' + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: db11fa2968ef0837288fe2d7f5b77a50 + sha256: 41cfbf4c5cdb4a32eb5319943113d7ef1edb894ea0a5464233e510b59450c824 optional: false category: main - build: hd57cbcb_0 + build: h049b76e_0 subdir: osx-64 build_number: 0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 1142172 - timestamp: 1686896907750 + license: MIT + license_family: MIT + size: 1127291 + timestamp: 1671092045705 - name: libzlib version: 1.2.13 manager: conda @@ -49851,24 +50351,23 @@ package: license_family: Other size: 90764 timestamp: 1686575574678 -- name: libsqlite - version: 3.42.0 +- name: ca-certificates + version: 2023.5.7 manager: conda platform: osx-64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.42.0-h58db7d2_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda hash: - md5: a7d3b44b7b0c9901ac7813b7a0462893 - sha256: 182689f4b1a5ed638cd615c7774e1a9974842bc127c59173f1d25e31a8795eef + md5: b704e4b79ba0d887c4870b7b09d6a4df + sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c optional: false category: main - build: h58db7d2_0 + build: h8857fd0_0 subdir: osx-64 build_number: 0 - license: Unlicense - size: 878744 - timestamp: 1684265213849 + license: ISC + size: 148522 + timestamp: 1683451939937 - name: gst-plugins-base version: 1.22.4 manager: conda @@ -49878,24 +50377,24 @@ package: libglib: '>=2.76.3,<3.0a0' libvorbis: '>=1.3.7,<1.4.0a0' libzlib: '>=1.2.13,<1.3.0a0' - gstreamer: ==1.22.4 h840fbdc_0 + gstreamer: ==1.22.4 h840fbdc_1 gettext: '>=0.21.1,<1.0a0' libcxx: '>=15.0.7' libopus: '>=1.3.1,<2.0a0' libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/gst-plugins-base-1.22.4-hb5d3a86_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gst-plugins-base-1.22.4-hb5d3a86_1.conda hash: - md5: 3ddc9bb14daecff3a86233f07e0d472a - sha256: ef79b53e2a69ffba4fd089d461502049c955ca8d677aa7d5452b3dd87723521a + md5: 504bc1e992fc2d59e55cbd0102e117b0 + sha256: ade088cd9e124e033f56926ab97012a9a0af186251d7d904005476900eb3da9d optional: false category: main - build: hb5d3a86_0 + build: hb5d3a86_1 subdir: osx-64 - build_number: 0 + build_number: 1 license: LGPL-2.0-or-later license_family: LGPL - size: 2386123 - timestamp: 1687713886222 + size: 2381560 + timestamp: 1688582599498 - name: gstreamer version: 1.22.4 manager: conda @@ -49906,44 +50405,19 @@ package: libcxx: '>=15.0.7' libglib: '>=2.76.3,<3.0a0' libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/gstreamer-1.22.4-h840fbdc_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gstreamer-1.22.4-h840fbdc_1.conda hash: - md5: a24d0265742fe6614ca8d1186c0d8a42 - sha256: 20014fd8c3a42094b8127f1a06c57c9c47115343fa721baae245b984def4ff60 + md5: 659321735840756bc2c6ba7195ed9d8b + sha256: 362e945e55e729d11351b760622d25049272178ef1dc6f74c5d7e518ca3f2ed3 optional: false category: main - build: h840fbdc_0 + build: h840fbdc_1 subdir: osx-64 - build_number: 0 + build_number: 1 license: LGPL-2.0-or-later license_family: LGPL - size: 1795710 - timestamp: 1687713586690 -- name: libglib - version: 2.76.3 - manager: conda - platform: osx-64 - dependencies: - gettext: '>=0.21.1,<1.0a0' - libcxx: '>=15.0.7' - pcre2: '>=10.40,<10.41.0a0' - libffi: '>=3.4,<4.0a0' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.76.3-hc62aa5d_0.conda - hash: - md5: 3687b3c1d257dec787418281cfc58358 - sha256: b9396d779ed9c12e4777500497f87414629e943f2f433d059f3378f8d5d4f57e - optional: false - category: main - build: hc62aa5d_0 - subdir: osx-64 - build_number: 0 - constrains: - - glib 2.76.3 *_0 - license: LGPL-2.1-or-later - size: 2475625 - timestamp: 1684848705854 + size: 1798656 + timestamp: 1688582317740 - name: gettext version: 0.21.1 manager: conda @@ -49962,29 +50436,6 @@ package: license: LGPL-2.1-or-later AND GPL-3.0-or-later size: 4153781 timestamp: 1665674106245 -- name: glib - version: 2.76.3 - manager: conda - platform: osx-64 - dependencies: - glib-tools: ==2.76.3 h7d26f99_0 - python: '*' - gettext: '>=0.21.1,<1.0a0' - libcxx: '>=15.0.7' - libglib: ==2.76.3 hc62aa5d_0 - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/glib-2.76.3-h7d26f99_0.conda - hash: - md5: a062952a59c0a26adb18899ac6472a7e - sha256: a143518370c1627707e6be19ec738116fd6e4a5838a42b8df0aa516615a016f4 - optional: false - category: main - build: h7d26f99_0 - subdir: osx-64 - build_number: 0 - license: LGPL-2.1-or-later - size: 481774 - timestamp: 1684848870265 - name: libiconv version: '1.17' manager: conda @@ -50002,46 +50453,6 @@ package: license: GPL and LGPL size: 1378276 timestamp: 1652702364402 -- name: pcre2 - version: '10.40' - manager: conda - platform: osx-64 - dependencies: - libzlib: '>=1.2.12,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2 - hash: - md5: e0f80c8f3a0352a54eddfe59cd2b25b1 - sha256: 60265b48c96decbea89a19a7bc34be88d9b95d4725fd4dbdae158529c601875a - optional: false - category: main - build: h1c4e4bc_0 - subdir: osx-64 - build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 2552113 - timestamp: 1665563254214 -- name: glib-tools - version: 2.76.3 - manager: conda - platform: osx-64 - dependencies: - libglib: ==2.76.3 hc62aa5d_0 - libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.76.3-h7d26f99_0.conda - hash: - md5: 43d414c01245d3655df3115c078b90d8 - sha256: a95d455634ccfb35631932171489a41a9868718fb7a9c558829f6cb3aa0d5584 - optional: false - category: main - build: h7d26f99_0 - subdir: osx-64 - build_number: 0 - license: LGPL-2.1-or-later - size: 97433 - timestamp: 1684848787409 - name: jpeg version: 9e manager: conda @@ -50061,60 +50472,94 @@ package: license: IJG size: 231847 timestamp: 1676177453517 -- name: libffi - version: 3.4.2 +- name: libglib + version: 2.76.4 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + dependencies: + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=15.0.7' + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.76.4-hc62aa5d_0.conda hash: - md5: ccb34fb14960ad8b125962d3d79b31a9 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + md5: 05c728fccc40277119bf94cf08e38384 + sha256: 8d53545974278511739df2711b59087eb7c991fb0e278864a8f5a21db04fd961 optional: false category: main - build: h0d85af4_5 + build: hc62aa5d_0 subdir: osx-64 - build_number: 5 - license: MIT - license_family: MIT - size: 51348 - timestamp: 1636488394370 -- name: libopus - version: 1.3.1 + build_number: 0 + constrains: + - glib 2.76.4 *_0 + license: LGPL-2.1-or-later + size: 2460888 + timestamp: 1688694812686 +- name: pcre2 + version: '10.40' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 + dependencies: + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2 hash: - md5: 380b9ea5f6a7a277e6c1ac27d034369b - sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 + md5: e0f80c8f3a0352a54eddfe59cd2b25b1 + sha256: 60265b48c96decbea89a19a7bc34be88d9b95d4725fd4dbdae158529c601875a optional: false category: main - build: hc929b4f_1 + build: h1c4e4bc_0 subdir: osx-64 - build_number: 1 + build_number: 0 license: BSD-3-Clause license_family: BSD - size: 279983 - timestamp: 1606823633642 -- name: libogg - version: 1.3.4 + size: 2552113 + timestamp: 1665563254214 +- name: glib + version: 2.76.4 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.4-h35c211d_1.tar.bz2 + dependencies: + glib-tools: ==2.76.4 h7d26f99_0 + python: '*' + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=15.0.7' + libglib: ==2.76.4 hc62aa5d_0 + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/glib-2.76.4-h7d26f99_0.conda hash: - md5: a7ab4b53ef18c598ffaa597230bc3ba1 - sha256: e3cec0c66d352d822b7a90db8edbc62f237fca079b6044e5b27f6ca529f7d9d9 + md5: 4176982aebeacb4f6914ea5528dc2853 + sha256: 415a4a82d9c4f0e9688025125c6e48b640e80ef7f2e6fb2077b5c9c062742f38 optional: false category: main - build: h35c211d_1 + build: h7d26f99_0 subdir: osx-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 207262 - timestamp: 1610382038748 + build_number: 0 + license: LGPL-2.1-or-later + size: 481095 + timestamp: 1688694947566 +- name: glib-tools + version: 2.76.4 + manager: conda + platform: osx-64 + dependencies: + libglib: ==2.76.4 hc62aa5d_0 + libzlib: '>=1.2.13,<1.3.0a0' + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.76.4-h7d26f99_0.conda + hash: + md5: 6a8b2c5e964467242058c27bace19c7f + sha256: 72473b42349eeb3b1693c80a611eee71f532add9de3ab617b6891c07b09bd79a + optional: false + category: main + build: h7d26f99_0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 97504 + timestamp: 1688694880377 - name: libpq version: '15.3' manager: conda @@ -50143,19 +50588,19 @@ package: libcxx: '>=15.0.7' openssl: '>=3.1.1,<4.0a0' libzlib: '>=1.2.13,<1.3.0a0' - mysql-common: ==8.0.33 hc6116ba_0 + mysql-common: ==8.0.33 hc6116ba_1 zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-8.0.33-haa61052_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-8.0.33-haa61052_1.conda hash: - md5: 8e35f9a9a8965c8c29e9f678e290ac7f - sha256: 9665dc412d9b975b790c54c4e7c277e7c73de3b9846244c4094fce266ef7fad3 + md5: b1ba5ec2e4a774e8e4887f0f7592b574 + sha256: 4af3a969518d0558b13d458901018220c69207e82d2a2a945c563778541fb356 optional: false category: main - build: haa61052_0 + build: haa61052_1 subdir: osx-64 - build_number: 0 - size: 1496094 - timestamp: 1687219305227 + build_number: 1 + size: 1496531 + timestamp: 1688286781208 - name: mysql-common version: 8.0.33 manager: conda @@ -50163,17 +50608,17 @@ package: dependencies: libcxx: '>=15.0.7' openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/mysql-common-8.0.33-hc6116ba_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/mysql-common-8.0.33-hc6116ba_1.conda hash: - md5: a4cd3c3df486b393d71ad75dd8d7c11f - sha256: b5c5c3e4a4b3b5f11e3711c34d007c05e99bfbf9329f5ec3a2dcafab2a85cbb4 + md5: bfbfd93ef846f67d53f40bcf28b91621 + sha256: 72cc42ab185b275c888d15d06b28e4d81e48c32af782188aea37020c4329452c optional: false category: main - build: hc6116ba_0 + build: hc6116ba_1 subdir: osx-64 - build_number: 0 - size: 761555 - timestamp: 1687219180772 + build_number: 1 + size: 772572 + timestamp: 1688286690135 - name: nss version: '3.89' manager: conda @@ -50202,187 +50647,312 @@ package: platform: osx-64 dependencies: libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-h829000d_7.conda hash: - md5: 40a188783d3c425bdccc9ae9104acbb8 - sha256: f845dafb0b488703ce81e25b6f27ed909ee9061b730c172e6b084fcf7156231f + md5: b274ec4dbf15a6e20900e397610567a0 + sha256: 8d6768da7c3170693c0649188e7575474046f8610d8074903cf84e403e3411e8 optional: false category: main - build: hbc0c0cd_6 + build: h829000d_7 subdir: osx-64 - build_number: 6 + build_number: 7 license: BSD-3-Clause license_family: BSD - size: 408722 - timestamp: 1674245014688 -- name: python_abi - version: '3.10' + size: 405881 + timestamp: 1688722093601 +- name: tzdata + version: 2023c manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-3_cp310.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: - md5: 42da9b0138e911cd5b2f75b0278e26dc - sha256: 0a66852c47be6b28b70bde29891a71d047730c723355d44b0da48db79fb99eb1 + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main - build: 3_cp310 + build: h71feb2d_0 + subdir: noarch + build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 +- name: libffi + version: 3.4.2 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + hash: + md5: ccb34fb14960ad8b125962d3d79b31a9 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + optional: false + category: main + build: h0d85af4_5 subdir: osx-64 - build_number: 3 + build_number: 5 + license: MIT + license_family: MIT + size: 51348 + timestamp: 1636488394370 +- name: libblas + version: 3.9.0 + manager: conda + platform: osx-64 + dependencies: + libopenblas: '>=0.3.23,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-17_osx64_openblas.conda + hash: + md5: 65299527582e2449b05d27fcf8352125 + sha256: d2439e4f7bbe0814128d080a01f8435875cc423543184ca0096087308631d73e + optional: false + category: main + build: 17_osx64_openblas + subdir: osx-64 + build_number: 17 constrains: - - python 3.10.* *_cpython + - liblapacke 3.9.0 17_osx64_openblas + - libcblas 3.9.0 17_osx64_openblas + - blas * openblas + - liblapack 3.9.0 17_osx64_openblas license: BSD-3-Clause license_family: BSD - size: 5765 - timestamp: 1669071919130 -- name: setuptools - version: 61.0.0 + size: 14710 + timestamp: 1685930987689 +- name: libopenblas + version: 0.3.23 manager: conda platform: osx-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/setuptools-61.0.0-py310h2ec42d9_0.tar.bz2 + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.23-openmp_h429af6e_0.conda hash: - md5: 0bba18f15cdbb786a4bd03e26b404e48 - sha256: b39e3b16bf487e6863b0d7d50c6f73deb143e7636e57e7e2a4ae0e9a61e72804 + md5: 7000a828e29608e4f57e662b5502d2c9 + sha256: fb1ba347e07145807fb1688c78b115d5eb2f4775d9eb6d991d49cb88eef174b7 optional: false category: main - build: py310h2ec42d9_0 + build: openmp_h429af6e_0 subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - size: 1341285 - timestamp: 1648243853476 -- name: numpy - version: 1.25.0 + constrains: + - openblas >=0.3.23,<0.3.24.0a0 + license: BSD-3-Clause + license_family: BSD + size: 6018665 + timestamp: 1681400118468 +- name: liblapack + version: 3.9.0 manager: conda platform: osx-64 dependencies: - libcblas: '>=3.9.0,<4.0a0' - libcxx: '>=15.0.7' - liblapack: '>=3.9.0,<4.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libblas: '>=3.9.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.25.0-py310h7451ae0_0.conda + libblas: ==3.9.0 17_osx64_openblas + url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-17_osx64_openblas.conda hash: - md5: 9accbca17b11eed20ee32b57189e9e66 - sha256: b897d4d4ab581a22faba563c38981114bf16eb0eecc906b20421c96299def30f + md5: 6ab83532872bf3659613638589dd10af + sha256: 7ce76f3e9578b62fbd88c094f343c1b09ec3466afccfc08347d31742e6831e97 optional: false category: main - build: py310h7451ae0_0 + build: 17_osx64_openblas subdir: osx-64 - build_number: 0 + build_number: 17 constrains: - - numpy-base <0a0 + - liblapacke 3.9.0 17_osx64_openblas + - libcblas 3.9.0 17_osx64_openblas + - blas * openblas license: BSD-3-Clause license_family: BSD - size: 6488143 - timestamp: 1687056994270 -- name: python - version: 3.10.12 + size: 14619 + timestamp: 1685931022827 +- name: libcblas + version: 3.9.0 manager: conda platform: osx-64 dependencies: - tzdata: '*' - openssl: '>=3.1.1,<4.0a0' - readline: '>=8.2,<9.0a0' - libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.42.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - xz: '>=5.2.6,<6.0a0' - tk: '>=8.6.12,<8.7.0a0' - bzip2: '>=1.0.8,<2.0a0' - ncurses: '>=6.4,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.12-had23ca6_0_cpython.conda + libblas: ==3.9.0 17_osx64_openblas + url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-17_osx64_openblas.conda hash: - md5: 351b8aa0687f3510620cf06ad11229f4 - sha256: cbf1b9cf9bdba639675a1431a053f3f2babb73ca6b4329cf72dcf9cd45a29cc8 + md5: 380151ca00704172b242a63701b7bf8a + sha256: 5c85941b55a8e897e11188ab66900eb3d83c87f6bdd0b88856733f8510fa4c91 optional: false category: main - build: had23ca6_0_cpython + build: 17_osx64_openblas subdir: osx-64 - build_number: 0 + build_number: 17 constrains: - - python_abi 3.10.* *_cp310 - license: Python-2.0 - size: 13065974 - timestamp: 1687560536470 -- name: readline - version: '8.2' + - liblapacke 3.9.0 17_osx64_openblas + - blas * openblas + - liblapack 3.9.0 17_osx64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14614 + timestamp: 1685931005294 +- name: packaging + version: '23.1' manager: conda platform: osx-64 dependencies: - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda hash: - md5: f17f77f2acf4d344734bda76829ce14e - sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 + md5: 91cda59e66e1e4afe9476f8ef98f5c30 + sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 optional: false category: main - build: h9e318b2_1 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 46098 + timestamp: 1681337144376 +- name: toml + version: 0.10.2 + manager: conda + platform: osx-64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 18433 + timestamp: 1604308660817 +- name: sip + version: 6.7.9 + manager: conda + platform: osx-64 + dependencies: + ply: '*' + libcxx: '>=15.0.7' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + packaging: '*' + tomli: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/sip-6.7.9-py310h9e9d8ca_0.conda + hash: + md5: 5aae43762f6fe7bbdd3e0e2bbd567999 + sha256: f6ebbdc44064289812091840d0a2ec06fb2af485a264a2a37057404aeb79be90 + optional: false + category: main + build: py310h9e9d8ca_0 subdir: osx-64 - build_number: 1 + build_number: 0 license: GPL-3.0-only license_family: GPL - size: 255870 - timestamp: 1679532707590 -- name: tk - version: 8.6.12 + size: 483805 + timestamp: 1681995477454 +- name: ply + version: '3.11' manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 hash: - md5: 8e9480d9c47061db2ed1b4ecce519a7f - sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 + md5: 7205635cd71531943440fbfe3b6b5727 + sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 optional: false category: main - build: h5dbffcc_0 - subdir: osx-64 - build_number: 0 - license: TCL + build: py_1 + subdir: noarch + build_number: 1 + license: BSD 3-clause license_family: BSD - size: 3531016 - timestamp: 1645032719565 -- name: ncurses - version: '6.4' + noarch: python + size: 44837 + timestamp: 1530963184592 +- name: zipp + version: 3.16.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.0-pyhd8ed1ab_0.conda + hash: + md5: 8be65b18d05ecd2801964e69c42f4fca + sha256: de563512a84818e5b367414e68985196dfb40964c12147fc731a6645f2e029e5 + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 17482 + timestamp: 1688903060076 +- name: pyparsing + version: 3.1.0 + manager: conda + platform: osx-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.0-pyhd8ed1ab_0.conda + hash: + md5: d3ed087d1f7f8f5590e8e87b57a8ce64 + sha256: 18e3bd52c64f23bbc7c200fd2fc4152dd29423936dc43e8f129cb43f1af0136c + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 88865 + timestamp: 1687132145260 +- name: python-dateutil + version: 2.8.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda + dependencies: + python: '>=3.6' + six: '>=1.5' + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 hash: - md5: c3dbae2411164d9b02c69090a9a91857 - sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da optional: false category: main - build: hf0c8a7f_0 - subdir: osx-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: X11 AND BSD-3-Clause - size: 828118 - timestamp: 1686077056765 -- name: xz - version: 5.2.6 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 245987 + timestamp: 1626286448716 +- name: docutils + version: 0.20.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + dependencies: + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-64/docutils-0.20.1-py310h2ec42d9_0.conda hash: - md5: a72f9d4ea13d55d745ff1ed594747f10 - sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 + md5: 8a265c138482db77a8d4b257fb6793a0 + sha256: ac73a3cb4bfc45e83a2aaa87c246286c7369fa31c517c0feca264be4a33da178 optional: false category: main - build: h775f41a_0 + build: py310h2ec42d9_0 subdir: osx-64 build_number: 0 - license: LGPL-2.1 and GPL-2.0 - size: 238119 - timestamp: 1660346964847 + license: LicenseRef-Public-Domain-Dedictation and BSD-2-Clause and LicenseRef-PSF-2.1.1 and GPL-3.0-or-later + size: 724233 + timestamp: 1684324667442 - name: pyyaml version: '6.0' manager: conda @@ -50574,16 +51144,16 @@ package: size: 225590 timestamp: 1623788896633 - name: importlib-metadata - version: 6.7.0 + version: 6.8.0 manager: conda platform: osx-64 dependencies: python: '>=3.8' zipp: '>=0.5' - url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.7.0-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda hash: - md5: ba3786c6846e46038fe60c785d46dc81 - sha256: 1ffffc30dc67d8329d47c6d22de726cfd28d7ed236bca54f52fc0bdcd0a53fc7 + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf optional: false category: main build: pyha770c72_0 @@ -50592,89 +51162,8 @@ package: license: Apache-2.0 license_family: APACHE noarch: python - size: 25884 - timestamp: 1687138526439 -- name: openssl - version: 3.1.1 - manager: conda - platform: osx-64 - dependencies: - ca-certificates: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.1-h8a1eda9_1.conda - hash: - md5: c7822d6ee74e34af1fd74365cfd18983 - sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 - optional: false - category: main - build: h8a1eda9_1 - subdir: osx-64 - build_number: 1 - constrains: - - pyopenssl >=22.1 - license: Apache-2.0 - license_family: Apache - size: 2326872 - timestamp: 1685518213128 -- name: krb5 - version: 1.20.1 - manager: conda - platform: osx-64 - dependencies: - libedit: '>=3.1.20191231,<4.0a0' - libcxx: '>=14.0.6' - openssl: '>=3.0.7,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda - hash: - md5: db11fa2968ef0837288fe2d7f5b77a50 - sha256: 41cfbf4c5cdb4a32eb5319943113d7ef1edb894ea0a5464233e510b59450c824 - optional: false - category: main - build: h049b76e_0 - subdir: osx-64 - build_number: 0 - license: MIT - license_family: MIT - size: 1127291 - timestamp: 1671092045705 -- name: spdlog - version: 1.11.0 - manager: conda - platform: osx-64 - dependencies: - fmt: '>=9.1.0,<10.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.11.0-ha64ae7f_1.conda - hash: - md5: 8b00e15d634ebcee2fe170332f6c70ad - sha256: db5089e41cae0a9b56435e78e00ee5369c8c65c379864cd84527b7ab76a97502 - optional: false - category: main - build: ha64ae7f_1 - subdir: osx-64 - build_number: 1 - license: MIT - license_family: MIT - size: 197848 - timestamp: 1673570432138 -- name: fmt - version: 9.1.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.4' - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-9.1.0-hb8565cd_0.tar.bz2 - hash: - md5: 310d897883dbdd88555d6321a4c2e6e8 - sha256: 4891b66c94df8a346010caefb5d92df5e367be87ef0dea35a15d988f39a82719 - optional: false - category: main - build: hb8565cd_0 - subdir: osx-64 - build_number: 0 - license: MIT - license_family: MIT - size: 182984 - timestamp: 1661661243069 + size: 25910 + timestamp: 1688754651944 - name: pybind11 version: 2.10.4 manager: conda @@ -50722,30 +51211,6 @@ package: license_family: BSD size: 168856 timestamp: 1679012773033 -- name: catkin_pkg - version: 0.5.2 - manager: conda - platform: osx-64 - dependencies: - setuptools: '*' - python: '>=3.6' - python-dateutil: '*' - pyparsing: '>=1.5.7' - docutils: '*' - url: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-0.5.2-pyhd8ed1ab_0.tar.bz2 - hash: - md5: 023308d75d557ab1ce66bf99a2988d9b - sha256: fbb30218baeceeabaa49fcd3e053b928899d4f78fb5dea131ee550de3e377d42 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 51088 - timestamp: 1653705145099 - name: empy version: 3.3.4 manager: conda @@ -50766,29 +51231,6 @@ package: noarch: python size: 40210 timestamp: 1586444722817 -- name: importlib_resources - version: 5.12.0 - manager: conda - platform: osx-64 - dependencies: - python: '>=3.7' - zipp: '>=3.1.0' - url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda - hash: - md5: e5fd2260a231ee63b6969f4801082f2b - sha256: 091cca3e010f7a7353152f0abda2d68cfd83ddde80a15e974d9e18b2047e7be2 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - constrains: - - importlib-resources >=5.12.0,<5.12.1.0a0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 31030 - timestamp: 1676919099370 - name: psutil version: 5.9.5 manager: conda @@ -50833,26 +51275,6 @@ package: license_family: BSD size: 81324 timestamp: 1666961169966 -- name: packaging - version: '23.1' - manager: conda - platform: osx-64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda - hash: - md5: 91cda59e66e1e4afe9476f8ef98f5c30 - sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 46098 - timestamp: 1681337144376 - name: argcomplete version: 3.1.1 manager: conda @@ -50961,44 +51383,45 @@ package: license: Zlib size: 151598 timestamp: 1661195637038 -- name: lark-parser - version: 0.12.0 +- name: spdlog + version: 1.11.0 manager: conda platform: osx-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_0.tar.bz2 + fmt: '>=9.1.0,<10.0a0' + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.11.0-ha64ae7f_1.conda hash: - md5: 2d1f963b23792b269635b9b32bee1913 - sha256: 5a1b0fb3c9e6ba7f8c5788d0bc90aadc85f88371ba261c07edf951805988f89a + md5: 8b00e15d634ebcee2fe170332f6c70ad + sha256: db5089e41cae0a9b56435e78e00ee5369c8c65c379864cd84527b7ab76a97502 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 + build: ha64ae7f_1 + subdir: osx-64 + build_number: 1 license: MIT license_family: MIT - noarch: python - size: 79371 - timestamp: 1630320889981 -- name: yaml - version: 0.2.5 + size: 197848 + timestamp: 1673570432138 +- name: fmt + version: 9.1.0 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + dependencies: + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-64/fmt-9.1.0-hb8565cd_0.tar.bz2 hash: - md5: d7e08fcf8259d742156188e8762b4d20 - sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 + md5: 310d897883dbdd88555d6321a4c2e6e8 + sha256: 4891b66c94df8a346010caefb5d92df5e367be87ef0dea35a15d988f39a82719 optional: false category: main - build: h0d85af4_2 + build: hb8565cd_0 subdir: osx-64 - build_number: 2 + build_number: 0 license: MIT license_family: MIT - size: 84237 - timestamp: 1641347062780 + size: 182984 + timestamp: 1661661243069 - name: yaml-cpp version: 0.7.0 manager: conda @@ -51018,25 +51441,6 @@ package: license_family: MIT size: 142698 timestamp: 1664346093148 -- name: console_bridge - version: 1.0.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=12.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/console_bridge-1.0.2-hbb4e6a2_1.tar.bz2 - hash: - md5: cf47b840afb14c99a0a89fc2dacc91df - sha256: 88f45553af795d551c796e3bb2c29138df1cd99085108e27607f4cb5ce4949ee - optional: false - category: main - build: hbb4e6a2_1 - subdir: osx-64 - build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 17516 - timestamp: 1648912742997 - name: libcurl version: 7.88.1 manager: conda @@ -51103,56 +51507,6 @@ package: license_family: APACHE size: 270554 timestamp: 1670579018355 -- name: pyqt - version: 5.15.7 - manager: conda - platform: osx-64 - dependencies: - pyqt5-sip: ==12.11.0 py310h415000c_3 - python: '>=3.10,<3.11.0a0' - libcxx: '>=14.0.6' - python_abi: 3.10.* *_cp310 - sip: '>=6.7.5,<6.8.0a0' - qt-main: '>=5.15.6,<5.16.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pyqt-5.15.7-py310hdd03f62_3.conda - hash: - md5: c652959992036327b71a2d5ff593cf72 - sha256: 42a3c561ff6c81416b2b37db0a53c0698b637e474b46d8e9f6f9a84635718ec2 - optional: false - category: main - build: py310hdd03f62_3 - subdir: osx-64 - build_number: 3 - constrains: - - __osx >=10.13 - license: GPL-3.0-only - license_family: GPL - size: 4069826 - timestamp: 1674671318262 -- name: pyqt5-sip - version: 12.11.0 - manager: conda - platform: osx-64 - dependencies: - sip: '*' - python: '>=3.10,<3.11.0a0' - libcxx: '>=14.0.6' - python_abi: 3.10.* *_cp310 - toml: '*' - packaging: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/pyqt5-sip-12.11.0-py310h415000c_3.conda - hash: - md5: 6c56916bf99c55b1f57a53ed689f2561 - sha256: c03844f8939bc8d02f902b2b5e0cede89177739ff7db1295363b33dc23ee8e8d - optional: false - category: main - build: py310h415000c_3 - subdir: osx-64 - build_number: 3 - license: GPL-3.0-only - license_family: GPL - size: 74371 - timestamp: 1674667044106 - name: xorg-libx11 version: 1.8.4 manager: conda @@ -51283,29 +51637,6 @@ package: license_family: MIT size: 43076 timestamp: 1677037100444 -- name: pyqt-builder - version: 1.15.1 - manager: conda - platform: osx-64 - dependencies: - sip: '*' - python: '>=3.6' - toml: '*' - packaging: '*' - url: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.1-pyhd8ed1ab_0.conda - hash: - md5: d124f91fd155fee0bd3d56e656917622 - sha256: 15b5fcae4530c1a7ba8dd32d3b249486f60f51b2342e21aa010852923f677405 - optional: false - category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: GPL-3.0-only - license_family: GPL - noarch: python - size: 2962795 - timestamp: 1685604062805 - name: pep517 version: 0.13.0 manager: conda @@ -51384,6 +51715,29 @@ package: license_family: Apache size: 25599592 timestamp: 1671410008820 +- name: liblapacke + version: 3.9.0 + manager: conda + platform: osx-64 + dependencies: + libcblas: ==3.9.0 17_osx64_openblas + libblas: ==3.9.0 17_osx64_openblas + liblapack: ==3.9.0 17_osx64_openblas + url: https://conda.anaconda.org/conda-forge/osx-64/liblapacke-3.9.0-17_osx64_openblas.conda + hash: + md5: 5f3d6e4e634e7f1747bdd3fc35f230e5 + sha256: f05576f58d8923c704967641a67e4079085c4b00e2f9eaec31a282df13a97182 + optional: false + category: main + build: 17_osx64_openblas + subdir: osx-64 + build_number: 17 + constrains: + - blas * openblas + license: BSD-3-Clause + license_family: BSD + size: 14625 + timestamp: 1685931041523 - name: harfbuzz version: 6.0.0 manager: conda @@ -51428,265 +51782,153 @@ package: license_family: BSD size: 1899415 timestamp: 1670987986867 -- name: eigen - version: 3.4.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h940c156_0.tar.bz2 - hash: - md5: f47a426ed1340c966f539c42187e3331 - sha256: 16a1b30fb2ee932211274cfeab1fe92700822c87eeb2e5f256ab82b82c8e0092 - optional: false - category: main - build: h940c156_0 - subdir: osx-64 - build_number: 0 - license: MPL-2.0 - license_family: MOZILLA - size: 1261157 - timestamp: 1630134623300 -- name: bullet - version: '3.24' - manager: conda - platform: osx-64 - dependencies: - bullet-cpp: ==3.24 hcd8b382_0 - numpy: '*' - python: '*' - pybullet: ==3.24 py310hcd8b382_0 - url: https://conda.anaconda.org/conda-forge/osx-64/bullet-3.24-ha188af9_0.conda - hash: - md5: 9855765e0272c5be4d001c215f47dc73 - sha256: a1eacfc9eb8a90dcc2a56930057abf4cd380863f2fcb180bf9109f8fec5b3daf - optional: false - category: main - build: ha188af9_0 - subdir: osx-64 - build_number: 0 - license: Zlib - size: 9983 - timestamp: 1683008125074 -- name: bullet-cpp - version: '3.24' - manager: conda - platform: osx-64 - dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - python_abi: 3.10.* *_cp310 - xorg-libx11: '>=1.8.4,<2.0a0' - xorg-libxext: '>=1.3.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/bullet-cpp-3.24-hcd8b382_0.conda - hash: - md5: d49d188bbd97604b1c1b5f505480311b - sha256: 6ad7863339991ff165a6147ab24a465e23c8a221f64df882a6f3ba9052d6bf06 - optional: false - category: main - build: hcd8b382_0 - subdir: osx-64 - build_number: 0 - license: Zlib - size: 40220400 - timestamp: 1683007479748 -- name: pybullet - version: '3.24' +- name: boost + version: 1.78.0 manager: conda platform: osx-64 dependencies: - bullet-cpp: ==3.24 hcd8b382_0 numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' + libcxx: '>=14.0.4' + boost-cpp: 1.78.0.* python: '>=3.10,<3.11.0a0' python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/pybullet-3.24-py310hcd8b382_0.conda - hash: - md5: 5dc180b1ed87d3911756d9e397cc7400 - sha256: 425b9ced67c928f5dc6e6575447551c916228e608ddc3380eef0fa98f1044463 - optional: false - category: main - build: py310hcd8b382_0 - subdir: osx-64 - build_number: 0 - license: Zlib - size: 62618417 - timestamp: 1683008038830 -- name: orocos-kdl - version: 1.5.1 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - eigen: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/orocos-kdl-1.5.1-hf0c8a7f_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/boost-1.78.0-py310h3e792ce_4.tar.bz2 hash: - md5: 1c23c6bee65462cb79604e72e7238eb1 - sha256: 00323b45fcda6dfbcbdbef7e8d7764044499136be939eae34a01ea1313c9f18d + md5: b3a79375b569d56f7d95548acd408b17 + sha256: 62c5ac0fba0f89e8b23aa12b53b0b8a0fd34c84d3d64d4a5c245274987582ffc optional: false category: main - build: hf0c8a7f_4 + build: py310h3e792ce_4 subdir: osx-64 build_number: 4 - license: LGPL-2.1-or-later - license_family: LGPL - size: 353232 - timestamp: 1669072684665 -- name: tinyxml2 - version: 9.0.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/tinyxml2-9.0.0-he49afe7_2.tar.bz2 - hash: - md5: fc07884cc7d34420ec5faade388a3737 - sha256: c9ac1e0d959dfe0fd870305bd8439d6e9ab35fdd63b428676a1661251990dddf - optional: false - category: main - build: he49afe7_2 - subdir: osx-64 - build_number: 2 - license: Zlib - size: 108413 - timestamp: 1639147979263 -- name: glew - version: 2.1.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=11.0.0' - url: https://conda.anaconda.org/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2 - hash: - md5: 6b753c8c7e4c46a8eb17b6f1781f958a - sha256: 1d114d93fd4bf043aa6fccc550379c0ac0a48461633cd1e1e49abe55be8562df - optional: false - category: main - build: h046ec9c_2 - subdir: osx-64 - build_number: 2 - license: BSD-3-Clause - license_family: BSD - size: 708867 - timestamp: 1607113212595 -- name: freetype - version: 2.12.1 + license: BSL-1.0 + size: 331473 + timestamp: 1666986459859 +- name: pydot + version: 1.4.2 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + pyparsing: '>=2.1.4' + graphviz: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/pydot-1.4.2-py310h2ec42d9_3.tar.bz2 hash: - md5: 852224ea3e8991a8342228eab274840e - sha256: 0aea2b93d0da8bf022501857de93f2fc0e362fabcd83c4579be8d8f5bc3e17cb + md5: 70b74c0b2233a61842bae7e309c4a503 + sha256: dc9dda73c9a09e1d8a51a9d549bf01727252060c47d55eecbd94232f941d677c optional: false category: main - build: h3f81eb7_1 - subdir: osx-64 - build_number: 1 - license: GPL-2.0-only and LicenseRef-FreeType - size: 599569 - timestamp: 1669233263749 -- name: freeimage - version: 3.18.0 + build: py310h2ec42d9_3 + subdir: osx-64 + build_number: 3 + license: MIT + license_family: MIT + size: 44551 + timestamp: 1666825988255 +- name: pytest + version: 7.4.0 manager: conda platform: osx-64 dependencies: - libpng: '>=1.6.37,<1.7.0a0' - openjpeg: '>=2.5.0,<2.6.0a0' - jpeg: '>=9e,<10a' - jxrlib: '>=1.1,<1.2.0a0' - imath: '>=3.1.5,<3.1.7.0a0' - libwebp-base: '>=1.2.4,<2.0a0' - libraw: '>=0.20.2,<0.21.0a0' - libcxx: '>=13.0.1' - libtiff: '>=4.4.0,<4.5.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - openexr: '>=3.1.5,<3.2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-haafd79f_10.tar.bz2 + exceptiongroup: '>=1.0.0rc8' + python: '>=3.7' + tomli: '>=1.0.0' + pluggy: '>=0.12,<2.0' + iniconfig: '*' + colorama: '*' + packaging: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.0-pyhd8ed1ab_0.conda hash: - md5: 7cd8ca7c7ebbc1c50d7c7920bd405c2b - sha256: 755c5e5226988582c4197f6151e6fa421bef9c21c6ac6c096f2c4e889343328f + md5: 3cfe9b9e958e7238a386933c75d190db + sha256: 52b2eb4e8d0380d92d45643d0c9706725e691ce8404dab4c2db4aaf58e48a23c optional: false category: main - build: haafd79f_10 - subdir: osx-64 - build_number: 10 - license: GPLv2 OR GPLv3 OR FreeImage - size: 470022 - timestamp: 1660371781655 -- name: imath - version: 3.1.6 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + constrains: + - pytest-faulthandler >=2 + license: MIT + license_family: MIT + noarch: python + size: 243695 + timestamp: 1687692277221 +- name: gtest + version: 1.13.0 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.6-hbc0c0cd_1.conda + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-64/gtest-1.13.0-h1c7c39f_1.conda hash: - md5: 14b541e6ba0d755c0cefcd32c591ab0d - sha256: 3846c29b0824f34d544e923dd89dfc0b07b0210e3340c96696a69e8ad8502903 + md5: 7cd5bfba1f09abeea2af5929cc5674d9 + sha256: 440451a38a6fa1919e28aefb1e6312de4882a2a336e2892b7254d52436c03533 optional: false category: main - build: hbc0c0cd_1 + build: h1c7c39f_1 subdir: osx-64 build_number: 1 + constrains: + - gmock 1.13.0 license: BSD-3-Clause license_family: BSD - size: 153408 - timestamp: 1668913806180 -- name: boost-cpp - version: 1.78.0 + size: 374570 + timestamp: 1682410154219 +- name: gmock + version: 1.13.0 manager: conda platform: osx-64 dependencies: - xz: '>=5.2.6,<6.0a0' - libcxx: '>=12.0.1' - bzip2: '>=1.0.8,<2.0a0' - icu: '>=70.1,<71.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.78.0-h31500c2_2.conda + gtest: ==1.13.0 h1c7c39f_1 + url: https://conda.anaconda.org/conda-forge/osx-64/gmock-1.13.0-h694c41f_1.conda hash: - md5: 6bd95c41e38d1f7e83e4be3619245807 - sha256: 5db86a66a10d4dc201a16f6613c7af0215bada1f858e03e92c31d1f2dcea045a + md5: f19f0d96eead21a37c1fb9a1c835b918 + sha256: 81654c164fca8ff6199c449abda7e3786b80739e4b061043026bc63d77824afb optional: false category: main - build: h31500c2_2 + build: h694c41f_1 subdir: osx-64 - build_number: 2 - constrains: - - libboost <0 - license: BSL-1.0 - size: 15323603 - timestamp: 1680713181098 -- name: cairo - version: 1.16.0 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 7048 + timestamp: 1682410174546 +- name: graphviz + version: 7.0.5 manager: conda platform: osx-64 dependencies: - icu: '>=70.1,<71.0a0' - libpng: '>=1.6.38,<1.7.0a0' - libglib: '>=2.72.1,<3.0a0' + gts: '>=0.7.6,<0.8.0a0' + cairo: '>=1.16.0,<2.0a0' + gdk-pixbuf: '>=2.42.8,<3.0a0' + expat: '>=2.5.0,<3.0a0' + libgd: '>=2.3.3,<2.4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + pango: '>=1.50.12,<2.0a0' + libtool: '*' + librsvg: '>=2.54.4,<3.0a0' + libglib: '>=2.74.1,<3.0a0' freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - zlib: '>=1.2.12,<1.3.0a0' - fontconfig: '>=2.13.96,<3.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + gtk2: '*' + zlib: '*' + fontconfig: '>=2.14.1,<3.0a0' + libcxx: '>=14.0.6' fonts-conda-ecosystem: '*' - pixman: '>=0.40.0,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h904041c_1014.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/graphviz-7.0.5-hc51f7b9_0.conda hash: - md5: 2e7b4350178ed52bb6fd2b1ecbeeed4f - sha256: a41a819cf32b87492098332c9f2a2c4b1055489efdad4a8be75a086ffc8573c5 + md5: 589501e7b16648c032a537b6a0870dbe + sha256: 1bec07e748dd6727aa09b29bc4965743d2a595083ecfbae7266f0c12be1c0c99 optional: false category: main - build: h904041c_1014 + build: hc51f7b9_0 subdir: osx-64 - build_number: 1014 - license: LGPL-2.1-only or MPL-1.1 - size: 1422180 - timestamp: 1663568512323 + build_number: 0 + license: EPL-1.0 + license_family: Other + size: 4593311 + timestamp: 1672450555602 - name: fonts-conda-ecosystem version: '1' manager: conda @@ -51707,24 +51949,60 @@ package: noarch: generic size: 3667 timestamp: 1566974674465 -- name: pixman - version: 0.40.0 +- name: libgd + version: 2.3.3 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2 + dependencies: + icu: '>=70.1,<71.0a0' + libpng: '>=1.6.37,<1.7.0a0' + libiconv: '>=1.16,<2.0.0a0' + freetype: '>=2.10.4,<3.0a0' + jpeg: '>=9e,<10a' + expat: '>=2.4.8,<3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + libtiff: '>=4.3.0,<4.5.0a0' + libwebp: '*' + fonts-conda-ecosystem: '*' + libwebp-base: '>=1.2.2,<2.0a0' + libzlib: '>=1.2.11,<1.3.0a0' + zlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h1e214de_3.tar.bz2 hash: - md5: 09a583a6f172715be21d93aaa1b42d71 - sha256: 50646988679b823958bd99983a9e66fce58a7368fa2bab5712efb5c7ce6199af + md5: 350af2b75c58dc16985fa97298469143 + sha256: 08f89c01eb8b14cb25e9a9de5adc7ea1c126621a7c42f4df92b732eb9175373f optional: false category: main - build: hbcb3906_0 + build: h1e214de_3 + subdir: osx-64 + build_number: 3 + license: GD + license_family: BSD + size: 245185 + timestamp: 1648740044157 +- name: librsvg + version: 2.54.4 + manager: conda + platform: osx-64 + dependencies: + libxml2: '>=2.9.14,<2.11.0a0' + gettext: '>=0.19.8.1,<1.0a0' + pango: '>=1.50.7,<1.51.0a0' + libglib: '>=2.70.2,<3.0a0' + cairo: '>=1.16.0,<2.0.0a0' + gdk-pixbuf: '>=2.42.8,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.54.4-h3d48ba6_0.tar.bz2 + hash: + md5: 1a106d9119086f73b5f88c650f700210 + sha256: 8ab676414eae45a5090cd3ea7560f154b6b627381993e3acae903d1878d89d9f + optional: false + category: main + build: h3d48ba6_0 subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - size: 629262 - timestamp: 1604342792761 + license: LGPL-2.1-or-later + size: 7603230 + timestamp: 1656553915939 - name: fonts-conda-forge version: '1' manager: conda @@ -51786,1260 +52064,1178 @@ package: noarch: generic size: 1961279 timestamp: 1566932680646 -- name: expat - version: 2.5.0 - manager: conda - platform: osx-64 - dependencies: - libexpat: ==2.5.0 hf0c8a7f_1 - url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda - hash: - md5: e12630038077877cbb6c7851e139c17c - sha256: 15c04a5a690b337b50fb7550cce057d843cf94dd0109d576ec9bc3448a8571d0 - optional: false - category: main - build: hf0c8a7f_1 - subdir: osx-64 - build_number: 1 - license: MIT - license_family: MIT - size: 120323 - timestamp: 1680191057827 -- name: libuv - version: 1.44.2 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.44.2-hac89ed1_0.tar.bz2 - hash: - md5: 958fa9add5701462a6c91e3774425ea1 - sha256: c9f8e0884c1557ad886b4389688f8005a655392bd8b90007b0bab463193bfd3a - optional: false - category: main - build: hac89ed1_0 - subdir: osx-64 - build_number: 0 - license: MIT - license_family: MIT - size: 451617 - timestamp: 1657719849300 -- name: rhash - version: 1.4.3 +- name: libwebp-base + version: 1.2.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.3-hac89ed1_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.2.4-h775f41a_0.tar.bz2 hash: - md5: 503cbfbbda92c68b918adb8f8c13afaa - sha256: 39ea9d1e6736d710bf9b56d6ce262c82064946ffada5e4c9459121a51e442381 + md5: 28807bef802a354f9c164e7ab242c5cb + sha256: ca3eb817054ac2942802b6b51dc671ab2af6564da329bebcb2538cdb31b59fa1 optional: false category: main - build: hac89ed1_0 + build: h775f41a_0 subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - size: 198435 - timestamp: 1655256475820 -- name: libcblas - version: 3.9.0 - manager: conda - platform: osx-64 - dependencies: - libblas: ==3.9.0 17_osx64_openblas - url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-17_osx64_openblas.conda - hash: - md5: 380151ca00704172b242a63701b7bf8a - sha256: 5c85941b55a8e897e11188ab66900eb3d83c87f6bdd0b88856733f8510fa4c91 - optional: false - category: main - build: 17_osx64_openblas - subdir: osx-64 - build_number: 17 - constrains: - - liblapacke 3.9.0 17_osx64_openblas - - blas * openblas - - liblapack 3.9.0 17_osx64_openblas - license: BSD-3-Clause - license_family: BSD - size: 14614 - timestamp: 1685931005294 -- name: libblas - version: 3.9.0 - manager: conda - platform: osx-64 - dependencies: - libopenblas: '>=0.3.23,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-17_osx64_openblas.conda - hash: - md5: 65299527582e2449b05d27fcf8352125 - sha256: d2439e4f7bbe0814128d080a01f8435875cc423543184ca0096087308631d73e - optional: false - category: main - build: 17_osx64_openblas - subdir: osx-64 - build_number: 17 constrains: - - liblapacke 3.9.0 17_osx64_openblas - - libcblas 3.9.0 17_osx64_openblas - - blas * openblas - - liblapack 3.9.0 17_osx64_openblas + - libwebp 1.2.4 license: BSD-3-Clause license_family: BSD - size: 14710 - timestamp: 1685930987689 -- name: liblapacke - version: 3.9.0 + size: 393830 + timestamp: 1659984180146 +- name: libwebp + version: 1.2.4 manager: conda platform: osx-64 dependencies: - libcblas: ==3.9.0 17_osx64_openblas - libblas: ==3.9.0 17_osx64_openblas - liblapack: ==3.9.0 17_osx64_openblas - url: https://conda.anaconda.org/conda-forge/osx-64/liblapacke-3.9.0-17_osx64_openblas.conda + libtiff: '>=4.4.0,<4.5.0a0' + libpng: '>=1.6.37,<1.7.0a0' + giflib: '>=5.2.1,<5.3.0a0' + jpeg: '>=9e,<10a' + libwebp-base: '>=1.2.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-1.2.4-hfa4350a_0.tar.bz2 hash: - md5: 5f3d6e4e634e7f1747bdd3fc35f230e5 - sha256: f05576f58d8923c704967641a67e4079085c4b00e2f9eaec31a282df13a97182 + md5: d3b5a56369701e6a11bf300ba3394391 + sha256: c6a856ac02735726e85cc30fc4c47576e9fd175891359d320a2d8de3eca5dbe9 optional: false category: main - build: 17_osx64_openblas + build: hfa4350a_0 subdir: osx-64 - build_number: 17 - constrains: - - blas * openblas + build_number: 0 license: BSD-3-Clause license_family: BSD - size: 14625 - timestamp: 1685931041523 -- name: liblapack - version: 3.9.0 + size: 86478 + timestamp: 1660329723547 +- name: libopus + version: 1.3.1 manager: conda platform: osx-64 - dependencies: - libblas: ==3.9.0 17_osx64_openblas - url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-17_osx64_openblas.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 hash: - md5: 6ab83532872bf3659613638589dd10af - sha256: 7ce76f3e9578b62fbd88c094f343c1b09ec3466afccfc08347d31742e6831e97 + md5: 380b9ea5f6a7a277e6c1ac27d034369b + sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 optional: false category: main - build: 17_osx64_openblas + build: hc929b4f_1 subdir: osx-64 - build_number: 17 - constrains: - - liblapacke 3.9.0 17_osx64_openblas - - libcblas 3.9.0 17_osx64_openblas - - blas * openblas + build_number: 1 license: BSD-3-Clause license_family: BSD - size: 14619 - timestamp: 1685931022827 -- name: libopenblas - version: 0.3.23 + size: 279983 + timestamp: 1606823633642 +- name: libogg + version: 1.3.4 manager: conda platform: osx-64 - dependencies: - libgfortran: 5.* - libgfortran5: '>=11.3.0' - llvm-openmp: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.23-openmp_h429af6e_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.4-h35c211d_1.tar.bz2 hash: - md5: 7000a828e29608e4f57e662b5502d2c9 - sha256: fb1ba347e07145807fb1688c78b115d5eb2f4775d9eb6d991d49cb88eef174b7 + md5: a7ab4b53ef18c598ffaa597230bc3ba1 + sha256: e3cec0c66d352d822b7a90db8edbc62f237fca079b6044e5b27f6ca529f7d9d9 optional: false category: main - build: openmp_h429af6e_0 + build: h35c211d_1 subdir: osx-64 - build_number: 0 - constrains: - - openblas >=0.3.23,<0.3.24.0a0 + build_number: 1 license: BSD-3-Clause license_family: BSD - size: 6018665 - timestamp: 1681400118468 -- name: ffmpeg - version: 5.1.2 - manager: conda - platform: osx-64 - dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - openh264: '>=2.3.1,<2.3.2.0a0' - svt-av1: '>=1.4.1,<1.4.2.0a0' - x265: '>=3.5,<3.6.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - x264: '>=1!164.3095,<1!165' - aom: '>=3.5.0,<3.6.0a0' - gnutls: '>=3.7.8,<3.8.0a0' - libopus: '>=1.3.1,<2.0a0' - lame: '>=3.100,<3.101.0a0' - gmp: '>=6.2.1,<7.0a0' - libvpx: '>=1.11.0,<1.12.0a0' - freetype: '>=2.12.1,<3.0a0' - libiconv: '>=1.17,<2.0a0' - fontconfig: '>=2.14.1,<3.0a0' - bzip2: '>=1.0.8,<2.0a0' - libcxx: '>=14.0.6' - fonts-conda-ecosystem: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-5.1.2-gpl_h8b4fe81_106.conda - hash: - md5: 3c62afa3457aeb6f058b40f1f41f772a - sha256: d66538e157e4ff918eaa1ea90843cdf1b7a05c72beb3ea5d75155b488f92ac1a - optional: false - category: main - build: gpl_h8b4fe81_106 - subdir: osx-64 - build_number: 106 - license: GPL-2.0-or-later - license_family: GPL - size: 9781864 - timestamp: 1674567519891 -- name: gmp - version: 6.2.1 + size: 207262 + timestamp: 1610382038748 +- name: xorg-xextproto + version: 7.3.0 manager: conda platform: osx-64 - dependencies: - libcxx: '>=10.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-xextproto-7.3.0-hb7f2c08_1003.conda hash: - md5: dedc96914428dae572a39e69ee2a392f - sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 + md5: e4db268e1dc61ab3dcbbb302f6519f66 + sha256: 53f1690e46c31c93f9899c6e6524bd1ddd4c8928caff5570b1d30e4ed89858f6 optional: false category: main - build: h2e338ed_0 + build: hb7f2c08_1003 subdir: osx-64 - build_number: 0 - license: GPL-2.0-or-later AND LGPL-3.0-or-later - size: 792127 - timestamp: 1605751675650 -- name: gnutls - version: 3.7.8 + build_number: 1003 + license: MIT + license_family: MIT + size: 30477 + timestamp: 1677037035675 +- name: libxcb + version: '1.13' manager: conda platform: osx-64 dependencies: - p11-kit: '>=0.24.1,<0.25.0a0' - gettext: '>=0.19.8.1,<1.0a0' - libidn2: '>=2,<3.0a0' - libcxx: '>=14.0.4' - nettle: '>=3.8.1,<3.9.0a0' - libtasn1: '>=4.19.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.8-h207c4f0_0.tar.bz2 + xorg-libxau: '*' + pthread-stubs: '*' + xorg-libxdmcp: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2 hash: - md5: 3886476538060824c0258316fd5bb828 - sha256: dc309e4c24689deb19596a745e0a31519adcf65c16bc349e23c140ee6ffb8f94 + md5: eb7860935e14aec936065cbc21a1a962 + sha256: 00e962ea91deae3dbed221c960c3bffab4172d87bc883b615298333fe336a5c6 optional: false category: main - build: h207c4f0_0 + build: h0d85af4_1004 subdir: osx-64 - build_number: 0 - license: LGPL-2.1-or-later - license_family: LGPL - size: 2228721 - timestamp: 1664446079954 -- name: aom - version: 3.5.0 + build_number: 1004 + license: MIT + license_family: MIT + size: 312424 + timestamp: 1636659262210 +- name: tomli + version: 2.0.1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.4' - url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.5.0-hf0c8a7f_0.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 hash: - md5: 9110390ac33346f643e26051a92de5ce - sha256: 16ccdf58e3b8b3f446d53780964730e51c57ef11f87b64a4535d9f5a8904f39c + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f optional: false category: main - build: hf0c8a7f_0 - subdir: osx-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: BSD-2-Clause - license_family: BSD - size: 3370097 - timestamp: 1663809123485 -- name: svt-av1 - version: 1.4.1 + license: MIT + license_family: MIT + noarch: python + size: 15940 + timestamp: 1644342331069 +- name: pyflakes + version: 3.0.1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-1.4.1-hf0c8a7f_0.conda + python: 2.7.*|>=3.5 + url: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.0.1-pyhd8ed1ab_0.conda hash: - md5: 86739428e1e1c8882fe14067a7ac371a - sha256: 3f59db2777727b335d51248b90cd37834635fde46215ede876fadae7320e6bc8 + md5: 44b7d77d96560c93e0e11437a3c35254 + sha256: 1a6fd59626b360ef498d8cd61b4a8a3ef771a385f97c6f574fccaa100a8bb99e optional: false category: main - build: hf0c8a7f_0 - subdir: osx-64 + build: pyhd8ed1ab_0 + subdir: noarch build_number: 0 - license: BSD-2-Clause - license_family: BSD - size: 2413709 - timestamp: 1670989070228 -- name: nettle - version: 3.8.1 + license: MIT + license_family: MIT + noarch: python + size: 57427 + timestamp: 1669320032089 +- name: font-ttf-inconsolata + version: '3.000' manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/nettle-3.8.1-h96f3785_1.tar.bz2 - hash: - md5: 99558b9df4c337a0bf82bc8e0090533a - sha256: d8b3ffa9595e04a28c7cecb482548c868ec1d5d1937a40ac508ff97d0343d3dc - optional: false - category: main - build: h96f3785_1 - subdir: osx-64 - build_number: 1 - license: GPL 2 and LGPL3 - license_family: GPL - size: 547875 - timestamp: 1659085424759 -- name: libtasn1 - version: 4.19.0 + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + optional: false + category: main + build: h77eed37_0 + subdir: noarch + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 96530 + timestamp: 1620479909603 +- name: font-ttf-source-code-pro + version: '2.038' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libtasn1-4.19.0-hb7f2c08_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 hash: - md5: 73f67fb011b4477b101a95a082c74f0a - sha256: 4197c155fb460fae65288c6c098c39f22495a53838356d29b79b31b8e33486dc + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 optional: false category: main - build: hb7f2c08_0 - subdir: osx-64 + build: h77eed37_0 + subdir: noarch build_number: 0 - license: GPL-3.0-or-later - license_family: GPL - size: 118785 - timestamp: 1661325967954 -- name: p11-kit - version: 0.24.1 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 700814 + timestamp: 1620479612257 +- name: six + version: 1.16.0 manager: conda platform: osx-64 dependencies: - libffi: '>=3.4.2,<3.5.0a0' - libtasn1: '>=4.18.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/p11-kit-0.24.1-h65f8906_0.tar.bz2 + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 hash: - md5: e936a0ee28be948846108582f00e2d61 - sha256: e16fbaadb2714c0965cb76de32fe7d13a21874cec02c97efef8ac51f4fda86fc + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 optional: false category: main - build: h65f8906_0 - subdir: osx-64 + build: pyh6c4a22f_0 + subdir: noarch build_number: 0 license: MIT license_family: MIT - size: 834487 - timestamp: 1654869241699 -- name: pcl - version: 1.12.1 + noarch: python + size: 14259 + timestamp: 1620240338595 +- name: colorama + version: 0.4.6 manager: conda platform: osx-64 dependencies: - flann: '>=1.9.1,<1.9.2.0a0' - glew: '>=2.1.0,<2.2.0a0' - libpng: '>=1.6.38,<1.7.0a0' - __osx: '>=10.12' - vtk: '>=9.2.2,<9.2.3.0a0' - qt-main: '>=5.15.6,<5.16.0a0' - libcxx: '>=14.0.4' - boost-cpp: '>=1.78.0,<1.78.1.0a0' - qhull: '>=2020.2,<2020.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pcl-1.12.1-h21768ba_4.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 hash: - md5: 1323f069a43a6a907f4ab9be341f0945 - sha256: 57ae802401af46fed62caad42a8d2a14d27d43451792fa1287e97b380784944c + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 optional: false category: main - build: h21768ba_4 - subdir: osx-64 - build_number: 4 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 license: BSD-3-Clause license_family: BSD - size: 20273663 - timestamp: 1665478821232 -- name: hdf5 - version: 1.12.2 + noarch: python + size: 25170 + timestamp: 1666700778190 +- name: exceptiongroup + version: 1.1.2 manager: conda platform: osx-64 dependencies: - libgfortran: 5.* - libcxx: '>=13.0.1' - libaec: '>=1.0.6,<2.0a0' - libcurl: '>=7.87.0,<9.0a0' - libgfortran5: '>=9.5.0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.0.7,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_h48135f9_101.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.2-pyhd8ed1ab_0.conda hash: - md5: 2ee4811ba5f72f7f12f69b3ec2d6cd96 - sha256: 8a74bdb6ca70ce7d702652e3e670cef2384b25a0fbe97b5abaab7df60aaf2b2d + md5: de4cb3384374e1411f0454edcf546cdb + sha256: 7b23ea0169fa6e7c3a0867d96d9eacd312759f83e5d83ad0fcc93e85379c16ae optional: false category: main - build: nompi_h48135f9_101 - subdir: osx-64 - build_number: 101 - license: LicenseRef-HDF5 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause license_family: BSD - size: 3175698 - timestamp: 1671626349179 -- name: flann - version: 1.9.1 + noarch: python + size: 19043 + timestamp: 1688381208754 +- name: iniconfig + version: 2.0.0 manager: conda platform: osx-64 dependencies: - hdf5: '>=1.12.2,<1.12.3.0a0' - libcxx: '>=13.0.1' - llvm-openmp: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/flann-1.9.1-h56de9e4_1011.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda hash: - md5: 2443ed6880c986491c1006af6c33394c - sha256: 5b5ae6cebfae0dba92379138ff5f424f4c1a15b1a3b4ec6a0dd16c28130754ca + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 optional: false category: main - build: h56de9e4_1011 - subdir: osx-64 - build_number: 1011 - license: BSD-3-Clause - license_family: BSD - size: 2990613 - timestamp: 1660524440314 -- name: jasper - version: 2.0.33 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11101 + timestamp: 1673103208955 +- name: pluggy + version: 1.2.0 manager: conda platform: osx-64 dependencies: - jpeg: '>=9e,<10a' - url: https://conda.anaconda.org/conda-forge/osx-64/jasper-2.0.33-h7c6fec8_1.conda + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.2.0-pyhd8ed1ab_0.conda hash: - md5: 6a9f90232c6b3b37b28e816899cdacbe - sha256: 837a856f623eee39ac136e1cfae0eb3853533a0c0f1f6780af7c3493c090f98e + md5: 7263924c642d22e311d9e59b839f1b33 + sha256: ff1f70e0bd50693be7e2bad0efb2539f5dcc5ec4d638e787e703f28098e72de4 optional: false category: main - build: h7c6fec8_1 - subdir: osx-64 - build_number: 1 - license: JasPer 2.0 - size: 649540 - timestamp: 1674879061988 -- name: libtiff - version: 4.4.0 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 21528 + timestamp: 1687776483210 +- name: eigen + version: 3.4.0 manager: conda platform: osx-64 dependencies: - libdeflate: '>=1.14,<1.15.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - jpeg: '>=9e,<10a' - libwebp-base: '>=1.2.4,<2.0a0' - xz: '>=5.2.6,<6.0a0' - libcxx: '>=14.0.6' - lerc: '>=4.0.0,<5.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.4.0-h6268bbc_5.conda + libcxx: '>=11.1.0' + url: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h940c156_0.tar.bz2 hash: - md5: 551fc78ba147767ea5905d0746e2fbb5 - sha256: 7ccfb5aba44657875ff18d27654d84a5c7f6daf8cd840b5524359c7926b02e7a + md5: f47a426ed1340c966f539c42187e3331 + sha256: 16a1b30fb2ee932211274cfeab1fe92700822c87eeb2e5f256ab82b82c8e0092 optional: false category: main - build: h6268bbc_5 + build: h940c156_0 subdir: osx-64 - build_number: 5 - license: HPND - size: 453311 - timestamp: 1671300830301 -- name: lerc - version: 4.0.0 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 1261157 + timestamp: 1630134623300 +- name: bullet + version: '3.24' manager: conda platform: osx-64 dependencies: - libcxx: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + bullet-cpp: ==3.24 hcd8b382_0 + numpy: '*' + python: '*' + pybullet: ==3.24 py310hcd8b382_0 + url: https://conda.anaconda.org/conda-forge/osx-64/bullet-3.24-ha188af9_0.conda hash: - md5: f9d6a4c82889d5ecedec1d90eb673c55 - sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 + md5: 9855765e0272c5be4d001c215f47dc73 + sha256: a1eacfc9eb8a90dcc2a56930057abf4cd380863f2fcb180bf9109f8fec5b3daf optional: false category: main - build: hb486fe8_0 + build: ha188af9_0 subdir: osx-64 build_number: 0 - license: Apache-2.0 - license_family: Apache - size: 290319 - timestamp: 1657977526749 -- name: libdeflate - version: '1.14' + license: Zlib + size: 9983 + timestamp: 1683008125074 +- name: bullet-cpp + version: '3.24' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.14-hb7f2c08_0.tar.bz2 + dependencies: + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + xorg-libx11: '>=1.8.4,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/bullet-cpp-3.24-hcd8b382_0.conda hash: - md5: ce2a6075114c9b64ad8cace52492feee - sha256: 0153de9987fa6e8dd5be45920470d579af433d4560bfd77318a72b3fd75fb6dc + md5: d49d188bbd97604b1c1b5f505480311b + sha256: 6ad7863339991ff165a6147ab24a465e23c8a221f64df882a6f3ba9052d6bf06 optional: false category: main - build: hb7f2c08_0 + build: hcd8b382_0 subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - size: 86607 - timestamp: 1662888589675 -- name: libwebp-base - version: 1.3.0 + license: Zlib + size: 40220400 + timestamp: 1683007479748 +- name: pybullet + version: '3.24' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.0-hb7f2c08_0.conda + dependencies: + bullet-cpp: ==3.24 hcd8b382_0 + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-64/pybullet-3.24-py310hcd8b382_0.conda hash: - md5: 18981e4c840126d6118d8952485fea51 - sha256: 5ed0b7f127f578ddd28e3af86af278df8d5341416935a09ae772a57579cbb11b + md5: 5dc180b1ed87d3911756d9e397cc7400 + sha256: 425b9ced67c928f5dc6e6575447551c916228e608ddc3380eef0fa98f1044463 optional: false category: main - build: hb7f2c08_0 + build: py310hcd8b382_0 subdir: osx-64 build_number: 0 - constrains: - - libwebp 1.3.0 - license: BSD-3-Clause - license_family: BSD - size: 345913 - timestamp: 1678666635398 -- name: ca-certificates - version: 2023.5.7 + license: Zlib + size: 62618417 + timestamp: 1683008038830 +- name: orocos-kdl + version: 1.5.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda + dependencies: + libcxx: '>=14.0.6' + eigen: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/orocos-kdl-1.5.1-hf0c8a7f_4.conda hash: - md5: b704e4b79ba0d887c4870b7b09d6a4df - sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c + md5: 1c23c6bee65462cb79604e72e7238eb1 + sha256: 00323b45fcda6dfbcbdbef7e8d7764044499136be939eae34a01ea1313c9f18d optional: false category: main - build: h8857fd0_0 + build: hf0c8a7f_4 subdir: osx-64 - build_number: 0 - license: ISC - size: 148522 - timestamp: 1683451939937 -- name: xorg-xextproto - version: 7.3.0 + build_number: 4 + license: LGPL-2.1-or-later + license_family: LGPL + size: 353232 + timestamp: 1669072684665 +- name: lark-parser + version: 0.12.0 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-xextproto-7.3.0-hb7f2c08_1003.conda + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_0.tar.bz2 hash: - md5: e4db268e1dc61ab3dcbbb302f6519f66 - sha256: 53f1690e46c31c93f9899c6e6524bd1ddd4c8928caff5570b1d30e4ed89858f6 + md5: 2d1f963b23792b269635b9b32bee1913 + sha256: 5a1b0fb3c9e6ba7f8c5788d0bc90aadc85f88371ba261c07edf951805988f89a optional: false category: main - build: hb7f2c08_1003 - subdir: osx-64 - build_number: 1003 + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 license: MIT license_family: MIT - size: 30477 - timestamp: 1677037035675 -- name: libxcb - version: '1.13' + noarch: python + size: 79371 + timestamp: 1630320889981 +- name: yaml + version: 0.2.5 manager: conda platform: osx-64 - dependencies: - xorg-libxau: '*' - pthread-stubs: '*' - xorg-libxdmcp: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.13-h0d85af4_1004.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 hash: - md5: eb7860935e14aec936065cbc21a1a962 - sha256: 00e962ea91deae3dbed221c960c3bffab4172d87bc883b615298333fe336a5c6 + md5: d7e08fcf8259d742156188e8762b4d20 + sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 optional: false category: main - build: h0d85af4_1004 + build: h0d85af4_2 subdir: osx-64 - build_number: 1004 + build_number: 2 license: MIT license_family: MIT - size: 312424 - timestamp: 1636659262210 -- name: tzdata - version: 2023c + size: 84237 + timestamp: 1641347062780 +- name: glew + version: 2.1.0 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + dependencies: + libcxx: '>=11.0.0' + url: https://conda.anaconda.org/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2 hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: 6b753c8c7e4c46a8eb17b6f1781f958a + sha256: 1d114d93fd4bf043aa6fccc550379c0ac0a48461633cd1e1e49abe55be8562df optional: false category: main - build: h71feb2d_0 - subdir: noarch - build_number: 0 - license: LicenseRef-Public-Domain - noarch: generic - size: 117580 - timestamp: 1680041306008 -- name: boost - version: 1.78.0 + build: h046ec9c_2 + subdir: osx-64 + build_number: 2 + license: BSD-3-Clause + license_family: BSD + size: 708867 + timestamp: 1607113212595 +- name: freetype + version: 2.12.1 manager: conda platform: osx-64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.4' - boost-cpp: 1.78.0.* - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/boost-1.78.0-py310h3e792ce_4.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda hash: - md5: b3a79375b569d56f7d95548acd408b17 - sha256: 62c5ac0fba0f89e8b23aa12b53b0b8a0fd34c84d3d64d4a5c245274987582ffc + md5: 852224ea3e8991a8342228eab274840e + sha256: 0aea2b93d0da8bf022501857de93f2fc0e362fabcd83c4579be8d8f5bc3e17cb optional: false category: main - build: py310h3e792ce_4 + build: h3f81eb7_1 subdir: osx-64 - build_number: 4 - license: BSL-1.0 - size: 331473 - timestamp: 1666986459859 -- name: pydot - version: 1.4.2 + build_number: 1 + license: GPL-2.0-only and LicenseRef-FreeType + size: 599569 + timestamp: 1669233263749 +- name: freeimage + version: 3.18.0 manager: conda platform: osx-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - pyparsing: '>=2.1.4' - graphviz: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/pydot-1.4.2-py310h2ec42d9_3.tar.bz2 + libpng: '>=1.6.37,<1.7.0a0' + openjpeg: '>=2.5.0,<2.6.0a0' + jpeg: '>=9e,<10a' + jxrlib: '>=1.1,<1.2.0a0' + imath: '>=3.1.5,<3.1.7.0a0' + libwebp-base: '>=1.2.4,<2.0a0' + libraw: '>=0.20.2,<0.21.0a0' + libcxx: '>=13.0.1' + libtiff: '>=4.4.0,<4.5.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + openexr: '>=3.1.5,<3.2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-haafd79f_10.tar.bz2 hash: - md5: 70b74c0b2233a61842bae7e309c4a503 - sha256: dc9dda73c9a09e1d8a51a9d549bf01727252060c47d55eecbd94232f941d677c + md5: 7cd8ca7c7ebbc1c50d7c7920bd405c2b + sha256: 755c5e5226988582c4197f6151e6fa421bef9c21c6ac6c096f2c4e889343328f optional: false category: main - build: py310h2ec42d9_3 + build: haafd79f_10 subdir: osx-64 - build_number: 3 - license: MIT - license_family: MIT - size: 44551 - timestamp: 1666825988255 -- name: sqlite - version: 3.42.0 + build_number: 10 + license: GPLv2 OR GPLv3 OR FreeImage + size: 470022 + timestamp: 1660371781655 +- name: boost-cpp + version: 1.78.0 manager: conda platform: osx-64 dependencies: - readline: '>=8.2,<9.0a0' - ncurses: '>=6.3,<7.0a0' + xz: '>=5.2.6,<6.0a0' + libcxx: '>=12.0.1' + bzip2: '>=1.0.8,<2.0a0' + icu: '>=70.1,<71.0a0' libzlib: '>=1.2.13,<1.3.0a0' - libsqlite: ==3.42.0 h58db7d2_0 - url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.42.0-h2b0dec6_0.conda + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.78.0-h31500c2_2.conda hash: - md5: 6c22b83608a6e3bd324ab29d3092592f - sha256: ff811793c293cf861746c95fe97ad5384e917bf473337d05283afdadb3b50bc9 + md5: 6bd95c41e38d1f7e83e4be3619245807 + sha256: 5db86a66a10d4dc201a16f6613c7af0215bada1f858e03e92c31d1f2dcea045a optional: false category: main - build: h2b0dec6_0 + build: h31500c2_2 subdir: osx-64 - build_number: 0 - license: Unlicense - size: 874057 - timestamp: 1684265240963 -- name: cryptography - version: 41.0.1 + build_number: 2 + constrains: + - libboost <0 + license: BSL-1.0 + size: 15323603 + timestamp: 1680713181098 +- name: libtiff + version: 4.4.0 manager: conda platform: osx-64 dependencies: - python: '>=3.10,<3.11.0a0' - openssl: '>=3.1.1,<4.0a0' - cffi: '>=1.12' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-41.0.1-py310ha1817de_0.conda + libdeflate: '>=1.14,<1.15.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + jpeg: '>=9e,<10a' + libwebp-base: '>=1.2.4,<2.0a0' + xz: '>=5.2.6,<6.0a0' + libcxx: '>=14.0.6' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.4.0-h6268bbc_5.conda hash: - md5: f66541237ec50c9d89228ded177b8d65 - sha256: 0d73ef9738465c357e40ad9f17d0bd5b266ed0c21191d177736074237c9d53ac + md5: 551fc78ba147767ea5905d0746e2fbb5 + sha256: 7ccfb5aba44657875ff18d27654d84a5c7f6daf8cd840b5524359c7926b02e7a optional: false category: main - build: py310ha1817de_0 + build: h6268bbc_5 subdir: osx-64 - build_number: 0 - license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT - license_family: BSD - size: 1205126 - timestamp: 1685660194364 -- name: lxml - version: 4.9.2 + build_number: 5 + license: HPND + size: 453311 + timestamp: 1671300830301 +- name: lerc + version: 4.0.0 manager: conda platform: osx-64 dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - libxslt: '>=1.1.37,<2.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/lxml-4.9.2-py310h0b20c97_0.conda + libcxx: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 hash: - md5: c1cafb603c324934f8b6b87cc5dc5380 - sha256: bafbfaf6241d61108fe174756b1e17ee9929dd7e927ab3a33016eb0e7ebc7f04 + md5: f9d6a4c82889d5ecedec1d90eb673c55 + sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 optional: false category: main - build: py310h0b20c97_0 + build: hb486fe8_0 subdir: osx-64 build_number: 0 - license: BSD-3-Clause and GPL-2.0-only and ZPL-2.0 and LicenseRef-ElementTree - size: 1288952 - timestamp: 1671013882731 -- name: libxslt - version: 1.1.37 + license: Apache-2.0 + license_family: Apache + size: 290319 + timestamp: 1657977526749 +- name: libdeflate + version: '1.14' manager: conda platform: osx-64 - dependencies: - libxml2: '>=2.10.3,<2.11.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.37-h5d22bc9_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.14-hb7f2c08_0.tar.bz2 hash: - md5: 532015104e2167790a59430b5e10dd7f - sha256: 7e913f313f928bb86a5f3572de66e990d0653e251aee55b9985cd9aad4446765 + md5: ce2a6075114c9b64ad8cace52492feee + sha256: 0153de9987fa6e8dd5be45920470d579af433d4560bfd77318a72b3fd75fb6dc optional: false category: main - build: h5d22bc9_0 + build: hb7f2c08_0 subdir: osx-64 build_number: 0 license: MIT license_family: MIT - size: 241900 - timestamp: 1666902529719 -- name: pytest - version: 7.4.0 + size: 86607 + timestamp: 1662888589675 +- name: giflib + version: 5.2.1 manager: conda platform: osx-64 - dependencies: - exceptiongroup: '>=1.0.0rc8' - python: '>=3.7' - tomli: '>=1.0.0' - pluggy: '>=0.12,<2.0' - iniconfig: '*' - colorama: '*' - packaging: '*' - url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.0-pyhd8ed1ab_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda hash: - md5: 3cfe9b9e958e7238a386933c75d190db - sha256: 52b2eb4e8d0380d92d45643d0c9706725e691ce8404dab4c2db4aaf58e48a23c + md5: aca150b0186836f893ebac79019e5498 + sha256: 47515e0874bcf67e438e1d5d093b074c1781f055067195f0d00a7790a56d446d optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - constrains: - - pytest-faulthandler >=2 + build: hb7f2c08_3 + subdir: osx-64 + build_number: 3 license: MIT license_family: MIT - noarch: python - size: 243695 - timestamp: 1687692277221 -- name: gtest - version: 1.13.0 + size: 76514 + timestamp: 1678717973971 +- name: cairo + version: 1.16.0 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-64/gtest-1.13.0-h1c7c39f_1.conda + icu: '>=70.1,<71.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libglib: '>=2.72.1,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + zlib: '>=1.2.12,<1.3.0a0' + fontconfig: '>=2.13.96,<3.0a0' + fonts-conda-ecosystem: '*' + pixman: '>=0.40.0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h904041c_1014.tar.bz2 hash: - md5: 7cd5bfba1f09abeea2af5929cc5674d9 - sha256: 440451a38a6fa1919e28aefb1e6312de4882a2a336e2892b7254d52436c03533 + md5: 2e7b4350178ed52bb6fd2b1ecbeeed4f + sha256: a41a819cf32b87492098332c9f2a2c4b1055489efdad4a8be75a086ffc8573c5 optional: false category: main - build: h1c7c39f_1 + build: h904041c_1014 subdir: osx-64 - build_number: 1 - constrains: - - gmock 1.13.0 - license: BSD-3-Clause - license_family: BSD - size: 374570 - timestamp: 1682410154219 -- name: gmock - version: 1.13.0 + build_number: 1014 + license: LGPL-2.1-only or MPL-1.1 + size: 1422180 + timestamp: 1663568512323 +- name: pixman + version: 0.40.0 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2 + hash: + md5: 09a583a6f172715be21d93aaa1b42d71 + sha256: 50646988679b823958bd99983a9e66fce58a7368fa2bab5712efb5c7ce6199af + optional: false + category: main + build: hbcb3906_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 629262 + timestamp: 1604342792761 +- name: expat + version: 2.5.0 manager: conda platform: osx-64 dependencies: - gtest: ==1.13.0 h1c7c39f_1 - url: https://conda.anaconda.org/conda-forge/osx-64/gmock-1.13.0-h694c41f_1.conda + libexpat: ==2.5.0 hf0c8a7f_1 + url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda hash: - md5: f19f0d96eead21a37c1fb9a1c835b918 - sha256: 81654c164fca8ff6199c449abda7e3786b80739e4b061043026bc63d77824afb + md5: e12630038077877cbb6c7851e139c17c + sha256: 15c04a5a690b337b50fb7550cce057d843cf94dd0109d576ec9bc3448a8571d0 optional: false category: main - build: h694c41f_1 + build: hf0c8a7f_1 subdir: osx-64 build_number: 1 - license: BSD-3-Clause - license_family: BSD - size: 7048 - timestamp: 1682410174546 -- name: graphviz - version: 2.42.3 + license: MIT + license_family: MIT + size: 120323 + timestamp: 1680191057827 +- name: libuv + version: 1.44.2 manager: conda platform: osx-64 - dependencies: - libtiff: '>=4.1.0,<4.5.0a0' - libcxx: '>=9.0.0' - libpng: '>=1.6.37,<1.7.0a0' - freetype: '>=2.9.1,<3.0a0' - jpeg: '>=9c,<10a' - zlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/graphviz-2.42.3-h98dfb87_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.44.2-hac89ed1_0.tar.bz2 hash: - md5: 1469180a4d2689b1a6a4496c20e3dc62 - sha256: 21b61f46a4ba1577d6021320406fd24226e3310e61557f25e7963bb8e702d155 + md5: 958fa9add5701462a6c91e3774425ea1 + sha256: c9f8e0884c1557ad886b4389688f8005a655392bd8b90007b0bab463193bfd3a optional: false category: main - build: h98dfb87_0 + build: hac89ed1_0 subdir: osx-64 build_number: 0 - license: EPL-1.0 - license_family: Other - size: 7420688 - timestamp: 1574771678627 -- name: pugixml - version: 1.11.4 + license: MIT + license_family: MIT + size: 451617 + timestamp: 1657719849300 +- name: rhash + version: 1.4.3 manager: conda platform: osx-64 - dependencies: - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.11.4-he965462_1.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.3-hac89ed1_0.tar.bz2 hash: - md5: f147ec845c13ddafae4abdb5430875bc - sha256: c7fb351da6d03536441158b1038474f73394767462722ce0aba31f4bfee12218 + md5: 503cbfbbda92c68b918adb8f8c13afaa + sha256: 39ea9d1e6736d710bf9b56d6ce262c82064946ffada5e4c9459121a51e442381 optional: false category: main - build: he965462_1 + build: hac89ed1_0 subdir: osx-64 - build_number: 1 + build_number: 0 license: MIT license_family: MIT - size: 93454 - timestamp: 1686045879684 -- name: libignition-math6 - version: 6.14.0 + size: 198435 + timestamp: 1655256475820 +- name: libgfortran5 + version: 12.2.0 manager: conda platform: osx-64 dependencies: - libignition-cmake2: '>=2.16.0,<3.0a0' - python: '>=3.10,<3.11.0a0' - libcxx: '>=14.0.6' - python_abi: 3.10.* *_cp310 - pybind11-abi: ==4 - eigen: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/libignition-math6-6.14.0-py310hdf71610_0.conda + llvm-openmp: '>=8.0.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda hash: - md5: fad4d1f0f4589fdf44e0301dd62f4f43 - sha256: f5f119a9b2cbb5545489999235cca87095cf1c6e3cd32b709855ec24c5963ecb + md5: 5a544130e584b1f204ac896ff071d5b3 + sha256: 42ae06bbb3cf7f7c3194482894f4287fad7bc39214d1a0dbf0c43f8efb8d3c1a optional: false category: main - build: py310hdf71610_0 + build: he409387_31 subdir: osx-64 - build_number: 0 - license: Apache-2.0 - license_family: APACHE - size: 1050950 - timestamp: 1682366379261 -- name: matplotlib-base - version: 3.7.1 + build_number: 31 + constrains: + - libgfortran 5.0.0 *_31 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1600291 + timestamp: 1678485061597 +- name: llvm-openmp + version: 16.0.6 manager: conda platform: osx-64 - dependencies: - cycler: '>=0.10' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - kiwisolver: '>=1.0.1' - __osx: '>=10.12' - pyparsing: '>=2.3.1' - python-dateutil: '>=2.7' - certifi: '>=2020.06.20' - contourpy: '>=1.0.1' - fonttools: '>=4.22.0' - freetype: '>=2.12.1,<3.0a0' - numpy: '>=1.21.6,<2.0a0' - libcxx: '>=14.0.6' - pillow: '>=6.2.0' - packaging: '>=20.0' - url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.1-py310he725631_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.6-hff08bdf_0.conda hash: - md5: 8b1caf6e250a7c8270711c301d8bcd2e - sha256: d65897175994c763913ee1871ff431234ef8264f05aaff5cfbb19187fd30a8cf + md5: 39a5227d906f75102bf8586741690128 + sha256: 0fbcf1c9e15dbb22d337063550ebcadbeb96b2a012e633f80255c8c720e4f832 optional: false category: main - build: py310he725631_0 + build: hff08bdf_0 subdir: osx-64 build_number: 0 - license: LicenseRef-PSF-2.0 and CC0-1.0 - license_family: PSF - size: 6717780 - timestamp: 1678135976097 -- name: pillow - version: 9.2.0 + constrains: + - openmp 16.0.6|16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 295823 + timestamp: 1686865427800 +- name: ffmpeg + version: 5.1.2 manager: conda platform: osx-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - openjpeg: '>=2.5.0,<3.0a0' + libxml2: '>=2.10.3,<2.11.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + svt-av1: '>=1.4.1,<1.4.2.0a0' + x265: '>=3.5,<3.6.0a0' libzlib: '>=1.2.13,<1.3.0a0' + x264: '>=1!164.3095,<1!165' + aom: '>=3.5.0,<3.6.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + libopus: '>=1.3.1,<2.0a0' + lame: '>=3.100,<3.101.0a0' + gmp: '>=6.2.1,<7.0a0' + libvpx: '>=1.11.0,<1.12.0a0' freetype: '>=2.12.1,<3.0a0' - jpeg: '>=9e,<10a' - libwebp-base: '>=1.2.4,<2.0a0' - libtiff: '>=4.4.0,<4.5.0a0' - libxcb: '>=1.13,<1.14.0a0' - lcms2: '>=2.12,<3.0a0' - tk: '>=8.6.12,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py310hffcf78b_3.tar.bz2 + libiconv: '>=1.17,<2.0a0' + fontconfig: '>=2.14.1,<3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libcxx: '>=14.0.6' + fonts-conda-ecosystem: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-5.1.2-gpl_h8b4fe81_106.conda hash: - md5: a7b7035e6aeace50e0023839f3f5beaa - sha256: a06836c203d0c848d89d48710856bacf8ca427b38653e9efd6543a5d5bcaa2a3 + md5: 3c62afa3457aeb6f058b40f1f41f772a + sha256: d66538e157e4ff918eaa1ea90843cdf1b7a05c72beb3ea5d75155b488f92ac1a optional: false category: main - build: py310hffcf78b_3 + build: gpl_h8b4fe81_106 subdir: osx-64 - build_number: 3 - license: LicenseRef-PIL - size: 47497959 - timestamp: 1666921014475 -- name: pycairo - version: 1.24.0 + build_number: 106 + license: GPL-2.0-or-later + license_family: GPL + size: 9781864 + timestamp: 1674567519891 +- name: gmp + version: 6.2.1 manager: conda platform: osx-64 dependencies: - cairo: '>=1.16.0,<2.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/pycairo-1.24.0-py310h0b97775_0.conda + libcxx: '>=10.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2 hash: - md5: 7dc4a0a3b2406f12bb239914c67266c8 - sha256: 87a231a1d6f0b56b4d04e2ed92c6b4205b32839e3caf8d11f09b5f5c58befe58 + md5: dedc96914428dae572a39e69ee2a392f + sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 optional: false category: main - build: py310h0b97775_0 + build: h2e338ed_0 subdir: osx-64 build_number: 0 - license: LGPL-2.1-only OR MPL-1.1 - size: 99853 - timestamp: 1687180615979 -- name: sdl2 - version: 2.26.5 + license: GPL-2.0-or-later AND LGPL-3.0-or-later + size: 792127 + timestamp: 1605751675650 +- name: gnutls + version: 3.7.8 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.26.5-hf0c8a7f_0.conda + p11-kit: '>=0.24.1,<0.25.0a0' + gettext: '>=0.19.8.1,<1.0a0' + libidn2: '>=2,<3.0a0' + libcxx: '>=14.0.4' + nettle: '>=3.8.1,<3.9.0a0' + libtasn1: '>=4.19.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.8-h207c4f0_0.tar.bz2 hash: - md5: cd1f00dcd5e7922e9d57cfbaf1115bd0 - sha256: 63a616aa3997c58dacbb0f6b721f629bb32c454042b6e0f786b17cd4ff80966f + md5: 3886476538060824c0258316fd5bb828 + sha256: dc309e4c24689deb19596a745e0a31519adcf65c16bc349e23c140ee6ffb8f94 optional: false category: main - build: hf0c8a7f_0 + build: h207c4f0_0 subdir: osx-64 build_number: 0 - license: Zlib - size: 1180736 - timestamp: 1680736409923 -- name: tomli - version: 2.0.1 + license: LGPL-2.1-or-later + license_family: LGPL + size: 2228721 + timestamp: 1664446079954 +- name: aom + version: 3.5.0 manager: conda platform: osx-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.5.0-hf0c8a7f_0.tar.bz2 hash: - md5: 5844808ffab9ebdb694585b50ba02a96 - sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + md5: 9110390ac33346f643e26051a92de5ce + sha256: 16ccdf58e3b8b3f446d53780964730e51c57ef11f87b64a4535d9f5a8904f39c optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: hf0c8a7f_0 + subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 15940 - timestamp: 1644342331069 -- name: pyflakes - version: 3.0.1 + license: BSD-2-Clause + license_family: BSD + size: 3370097 + timestamp: 1663809123485 +- name: svt-av1 + version: 1.4.1 manager: conda platform: osx-64 dependencies: - python: 2.7.*|>=3.5 - url: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.0.1-pyhd8ed1ab_0.conda + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-1.4.1-hf0c8a7f_0.conda hash: - md5: 44b7d77d96560c93e0e11437a3c35254 - sha256: 1a6fd59626b360ef498d8cd61b4a8a3ef771a385f97c6f574fccaa100a8bb99e + md5: 86739428e1e1c8882fe14067a7ac371a + sha256: 3f59db2777727b335d51248b90cd37834635fde46215ede876fadae7320e6bc8 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: hf0c8a7f_0 + subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 57427 - timestamp: 1669320032089 -- name: font-ttf-inconsolata - version: '3.000' + license: BSD-2-Clause + license_family: BSD + size: 2413709 + timestamp: 1670989070228 +- name: nettle + version: 3.8.1 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/nettle-3.8.1-h96f3785_1.tar.bz2 hash: - md5: 34893075a5c9e55cdafac56607368fc6 - sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + md5: 99558b9df4c337a0bf82bc8e0090533a + sha256: d8b3ffa9595e04a28c7cecb482548c868ec1d5d1937a40ac508ff97d0343d3dc optional: false category: main - build: h77eed37_0 - subdir: noarch - build_number: 0 - license: OFL-1.1 - license_family: Other - noarch: generic - size: 96530 - timestamp: 1620479909603 -- name: font-ttf-source-code-pro - version: '2.038' + build: h96f3785_1 + subdir: osx-64 + build_number: 1 + license: GPL 2 and LGPL3 + license_family: GPL + size: 547875 + timestamp: 1659085424759 +- name: libtasn1 + version: 4.19.0 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libtasn1-4.19.0-hb7f2c08_0.tar.bz2 hash: - md5: 4d59c254e01d9cde7957100457e2d5fb - sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + md5: 73f67fb011b4477b101a95a082c74f0a + sha256: 4197c155fb460fae65288c6c098c39f22495a53838356d29b79b31b8e33486dc optional: false category: main - build: h77eed37_0 - subdir: noarch + build: hb7f2c08_0 + subdir: osx-64 build_number: 0 - license: OFL-1.1 - license_family: Other - noarch: generic - size: 700814 - timestamp: 1620479612257 -- name: toml - version: 0.10.2 + license: GPL-3.0-or-later + license_family: GPL + size: 118785 + timestamp: 1661325967954 +- name: p11-kit + version: 0.24.1 manager: conda platform: osx-64 dependencies: - python: '>=2.7' - url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + libffi: '>=3.4.2,<3.5.0a0' + libtasn1: '>=4.18.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/p11-kit-0.24.1-h65f8906_0.tar.bz2 hash: - md5: f832c45a477c78bebd107098db465095 - sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + md5: e936a0ee28be948846108582f00e2d61 + sha256: e16fbaadb2714c0965cb76de32fe7d13a21874cec02c97efef8ac51f4fda86fc optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h65f8906_0 + subdir: osx-64 build_number: 0 license: MIT license_family: MIT - noarch: python - size: 18433 - timestamp: 1604308660817 -- name: sip - version: 6.7.9 + size: 834487 + timestamp: 1654869241699 +- name: pcl + version: 1.12.1 manager: conda platform: osx-64 dependencies: - ply: '*' - libcxx: '>=15.0.7' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - packaging: '*' - tomli: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/sip-6.7.9-py310h9e9d8ca_0.conda + flann: '>=1.9.1,<1.9.2.0a0' + glew: '>=2.1.0,<2.2.0a0' + libpng: '>=1.6.38,<1.7.0a0' + __osx: '>=10.12' + vtk: '>=9.2.2,<9.2.3.0a0' + qt-main: '>=5.15.6,<5.16.0a0' + libcxx: '>=14.0.4' + boost-cpp: '>=1.78.0,<1.78.1.0a0' + qhull: '>=2020.2,<2020.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pcl-1.12.1-h21768ba_4.tar.bz2 hash: - md5: 5aae43762f6fe7bbdd3e0e2bbd567999 - sha256: f6ebbdc44064289812091840d0a2ec06fb2af485a264a2a37057404aeb79be90 + md5: 1323f069a43a6a907f4ab9be341f0945 + sha256: 57ae802401af46fed62caad42a8d2a14d27d43451792fa1287e97b380784944c optional: false category: main - build: py310h9e9d8ca_0 + build: h21768ba_4 subdir: osx-64 - build_number: 0 - license: GPL-3.0-only - license_family: GPL - size: 483805 - timestamp: 1681995477454 -- name: ply - version: '3.11' + build_number: 4 + license: BSD-3-Clause + license_family: BSD + size: 20273663 + timestamp: 1665478821232 +- name: hdf5 + version: 1.12.2 + manager: conda + platform: osx-64 + dependencies: + libgfortran: 5.* + libcxx: '>=13.0.1' + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=7.87.0,<9.0a0' + libgfortran5: '>=9.5.0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.12.2-nompi_h48135f9_101.conda + hash: + md5: 2ee4811ba5f72f7f12f69b3ec2d6cd96 + sha256: 8a74bdb6ca70ce7d702652e3e670cef2384b25a0fbe97b5abaab7df60aaf2b2d + optional: false + category: main + build: nompi_h48135f9_101 + subdir: osx-64 + build_number: 101 + license: LicenseRef-HDF5 + license_family: BSD + size: 3175698 + timestamp: 1671626349179 +- name: flann + version: 1.9.1 manager: conda platform: osx-64 dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2 + hdf5: '>=1.12.2,<1.12.3.0a0' + libcxx: '>=13.0.1' + llvm-openmp: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/flann-1.9.1-h56de9e4_1011.tar.bz2 hash: - md5: 7205635cd71531943440fbfe3b6b5727 - sha256: 2cd6fae8f9cbc806b7f828f006ae4a83c23fac917cacfd73c37ce322d4324e53 + md5: 2443ed6880c986491c1006af6c33394c + sha256: 5b5ae6cebfae0dba92379138ff5f424f4c1a15b1a3b4ec6a0dd16c28130754ca optional: false category: main - build: py_1 - subdir: noarch - build_number: 1 - license: BSD 3-clause + build: h56de9e4_1011 + subdir: osx-64 + build_number: 1011 + license: BSD-3-Clause license_family: BSD - noarch: python - size: 44837 - timestamp: 1530963184592 -- name: zipp - version: 3.15.0 + size: 2990613 + timestamp: 1660524440314 +- name: jasper + version: 2.0.33 manager: conda platform: osx-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda + jpeg: '>=9e,<10a' + url: https://conda.anaconda.org/conda-forge/osx-64/jasper-2.0.33-h7c6fec8_1.conda hash: - md5: 13018819ca8f5b7cc675a8faf1f5fedf - sha256: 241de30545299be9bcea3addf8a2c22a3b3d4ba6730890e150ab690ac937a3d2 + md5: 6a9f90232c6b3b37b28e816899cdacbe + sha256: 837a856f623eee39ac136e1cfae0eb3853533a0c0f1f6780af7c3493c090f98e optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 17197 - timestamp: 1677313561776 -- name: colorama - version: 0.4.6 + build: h7c6fec8_1 + subdir: osx-64 + build_number: 1 + license: JasPer 2.0 + size: 649540 + timestamp: 1674879061988 +- name: xorg-libxau + version: 1.0.11 manager: conda platform: osx-64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda hash: - md5: 3faab06a954c2a04039983f2c4a50d99 - sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + md5: 9566b4c29274125b0266d0177b5eb97b + sha256: 8a2e398c4f06f10c64e69f56bcf3ddfa30b432201446a0893505e735b346619a optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: h0dc2134_0 + subdir: osx-64 build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 25170 - timestamp: 1666700778190 -- name: exceptiongroup - version: 1.1.1 + license: MIT + license_family: MIT + size: 13071 + timestamp: 1684638167647 +- name: pugixml + version: 1.11.4 manager: conda platform: osx-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.1-pyhd8ed1ab_0.conda + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.11.4-he965462_1.conda hash: - md5: 7312299d7a0ea4993159229b7d2dceb2 - sha256: f073c3ba993912f1c0027bc34a54975642885f0a4cd5f9dc42a17ca945df2c18 + md5: f147ec845c13ddafae4abdb5430875bc + sha256: c7fb351da6d03536441158b1038474f73394767462722ce0aba31f4bfee12218 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 18929 - timestamp: 1678703786698 -- name: iniconfig - version: 2.0.0 + build: he965462_1 + subdir: osx-64 + build_number: 1 + license: MIT + license_family: MIT + size: 93454 + timestamp: 1686045879684 +- name: libignition-math6 + version: 6.14.0 manager: conda platform: osx-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + libignition-cmake2: '>=2.16.0,<3.0a0' + python: '>=3.10,<3.11.0a0' + libcxx: '>=14.0.6' + python_abi: 3.10.* *_cp310 + pybind11-abi: ==4 + eigen: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/libignition-math6-6.14.0-py310hdf71610_0.conda hash: - md5: f800d2da156d08e289b14e87e43c1ae5 - sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + md5: fad4d1f0f4589fdf44e0301dd62f4f43 + sha256: f5f119a9b2cbb5545489999235cca87095cf1c6e3cd32b709855ec24c5963ecb optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: py310hdf71610_0 + subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 11101 - timestamp: 1673103208955 -- name: pluggy - version: 1.2.0 + license: Apache-2.0 + license_family: APACHE + size: 1050950 + timestamp: 1682366379261 +- name: matplotlib-base + version: 3.7.1 manager: conda platform: osx-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.2.0-pyhd8ed1ab_0.conda + cycler: '>=0.10' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + kiwisolver: '>=1.0.1' + __osx: '>=10.12' + pyparsing: '>=2.3.1' + python-dateutil: '>=2.7' + certifi: '>=2020.6.20' + contourpy: '>=1.0.1' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + numpy: '>=1.21.6,<2.0a0' + libcxx: '>=14.0.6' + pillow: '>=6.2.0' + packaging: '>=20.0' + url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.7.1-py310he725631_0.conda hash: - md5: 7263924c642d22e311d9e59b839f1b33 - sha256: ff1f70e0bd50693be7e2bad0efb2539f5dcc5ec4d638e787e703f28098e72de4 + md5: 8b1caf6e250a7c8270711c301d8bcd2e + sha256: d65897175994c763913ee1871ff431234ef8264f05aaff5cfbb19187fd30a8cf optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: py310he725631_0 + subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 21528 - timestamp: 1687776483210 -- name: pyparsing - version: 3.1.0 + license: LicenseRef-PSF-2.0 and CC0-1.0 + license_family: PSF + size: 6717780 + timestamp: 1678135976097 +- name: pillow + version: 9.2.0 manager: conda platform: osx-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.0-pyhd8ed1ab_0.conda + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + openjpeg: '>=2.5.0,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + freetype: '>=2.12.1,<3.0a0' + jpeg: '>=9e,<10a' + libwebp-base: '>=1.2.4,<2.0a0' + libtiff: '>=4.4.0,<4.5.0a0' + libxcb: '>=1.13,<1.14.0a0' + lcms2: '>=2.12,<3.0a0' + tk: '>=8.6.12,<8.7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pillow-9.2.0-py310hffcf78b_3.tar.bz2 hash: - md5: d3ed087d1f7f8f5590e8e87b57a8ce64 - sha256: 18e3bd52c64f23bbc7c200fd2fc4152dd29423936dc43e8f129cb43f1af0136c + md5: a7b7035e6aeace50e0023839f3f5beaa + sha256: a06836c203d0c848d89d48710856bacf8ca427b38653e9efd6543a5d5bcaa2a3 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 88865 - timestamp: 1687132145260 -- name: python-dateutil - version: 2.8.2 + build: py310hffcf78b_3 + subdir: osx-64 + build_number: 3 + license: LicenseRef-PIL + size: 47497959 + timestamp: 1666921014475 +- name: pycairo + version: 1.24.0 manager: conda platform: osx-64 dependencies: - python: '>=3.6' - six: '>=1.5' - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + cairo: '>=1.16.0,<2.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + url: https://conda.anaconda.org/conda-forge/osx-64/pycairo-1.24.0-py310h0b97775_0.conda hash: - md5: dd999d1cc9f79e67dbb855c8924c7984 - sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + md5: 7dc4a0a3b2406f12bb239914c67266c8 + sha256: 87a231a1d6f0b56b4d04e2ed92c6b4205b32839e3caf8d11f09b5f5c58befe58 optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch + build: py310h0b97775_0 + subdir: osx-64 build_number: 0 - license: Apache-2.0 - license_family: APACHE - noarch: python - size: 245987 - timestamp: 1626286448716 -- name: docutils - version: 0.20.1 + license: LGPL-2.1-only OR MPL-1.1 + size: 99853 + timestamp: 1687180615979 +- name: sdl2 + version: 2.26.5 manager: conda platform: osx-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/docutils-0.20.1-py310h2ec42d9_0.conda + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.26.5-hf0c8a7f_0.conda hash: - md5: 8a265c138482db77a8d4b257fb6793a0 - sha256: ac73a3cb4bfc45e83a2aaa87c246286c7369fa31c517c0feca264be4a33da178 + md5: cd1f00dcd5e7922e9d57cfbaf1115bd0 + sha256: 63a616aa3997c58dacbb0f6b721f629bb32c454042b6e0f786b17cd4ff80966f optional: false category: main - build: py310h2ec42d9_0 + build: hf0c8a7f_0 subdir: osx-64 build_number: 0 - license: LicenseRef-Public-Domain-Dedictation and BSD-2-Clause and LicenseRef-PSF-2.1.1 and GPL-3.0-or-later - size: 724233 - timestamp: 1684324667442 + license: Zlib + size: 1180736 + timestamp: 1680736409923 - name: pygments version: 2.15.1 manager: conda @@ -53060,6 +53256,26 @@ package: noarch: python size: 840719 timestamp: 1681904335148 +- name: pycparser + version: '2.21' + manager: conda + platform: osx-64 + dependencies: + python: 2.7.*|>=3.4 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + optional: false + category: main + build: pyhd8ed1ab_0 + subdir: noarch + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 102747 + timestamp: 1636257201998 - name: rospkg version: 1.5.0 manager: conda @@ -53083,6 +53299,76 @@ package: noarch: python size: 31031 timestamp: 1679367764497 +- name: gdk-pixbuf + version: 2.42.8 + manager: conda + platform: osx-64 + dependencies: + libtiff: '>=4.4.0,<4.5.0a0' + libpng: '>=1.6.38,<1.7.0a0' + libglib: '>=2.72.1,<3.0a0' + jpeg: '>=9e,<10a' + libzlib: '>=1.2.12,<1.3.0a0' + zlib: '>=1.2.12,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.8-h3648f77_1.tar.bz2 + hash: + md5: f709a0451aa786175db4c3cfa2af35cc + sha256: 9427baae9863773279861e2f59b6513bb458b0c4456ae41c6bfc505b65fd388b + optional: false + category: main + build: h3648f77_1 + subdir: osx-64 + build_number: 1 + license: LGPL-2.1-or-later + license_family: LGPL + size: 600213 + timestamp: 1663607148774 +- name: pango + version: 1.50.14 + manager: conda + platform: osx-64 + dependencies: + libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.74.1,<3.0a0' + cairo: '>=1.16.0,<2.0a0' + freetype: '>=2.12.1,<3.0a0' + fribidi: '>=1.0.10,<2.0a0' + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + harfbuzz: '>=6.0.0,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pango-1.50.14-hbd9bf65_0.conda + hash: + md5: 7de54d83e9c685b742e0a4d81b271de0 + sha256: 582928ea26ffb3c90ce9a6cd87a861ededee00ec42cbb399d9a73a4076b06184 + optional: false + category: main + build: hbd9bf65_0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1-or-later + size: 416039 + timestamp: 1677859334356 +- name: fontconfig + version: 2.14.2 + manager: conda + platform: osx-64 + dependencies: + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + expat: '>=2.5.0,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda + hash: + md5: 86cc5867dfbee4178118392bae4a3c89 + sha256: f63e6d1d6aef8ba6de4fc54d3d7898a153479888d40ffdf2e4cfad6f92679d34 + optional: false + category: main + build: h5bb23bf_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 237068 + timestamp: 1674829100063 - name: c-ares version: 1.19.1 manager: conda @@ -53142,49 +53428,67 @@ package: license_family: MIT size: 198339 timestamp: 1685497068751 -- name: cffi - version: 1.15.1 +- name: gtk2 + version: 2.24.33 manager: conda platform: osx-64 dependencies: - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - pycparser: '*' - libffi: '>=3.4,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py310ha78151a_3.conda + gettext: '>=0.19.8.1,<1.0a0' + pango: '>=1.50.3,<1.51.0a0' + libglib: '>=2.70.2,<3.0a0' + atk-1.0: '>=2.36.0' + cairo: '>=1.16.0,<2.0.0a0' + gdk-pixbuf: '>=2.42.6,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h7c1209e_2.tar.bz2 hash: - md5: 652082e4a6cf9d26e43d0d362590c276 - sha256: 67aa2bf58a98ed9e5bd693233f1de3cf7d499e9520dec7cbea0ee71e4d8f6895 + md5: 307614630946527e302b7dd042a5cfa2 + sha256: 4f5f5116c5c81a4bfcc01ea9eb9e489346a87d7248eb44963f6552ae0fb3a984 optional: false category: main - build: py310ha78151a_3 + build: h7c1209e_2 subdir: osx-64 - build_number: 3 - license: MIT - license_family: MIT - size: 220512 - timestamp: 1671179677921 -- name: fontconfig - version: 2.14.2 + build_number: 2 + license: LGPL-2.1-or-later + size: 7431224 + timestamp: 1642435517091 +- name: gts + version: 0.7.6 manager: conda platform: osx-64 dependencies: - freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - expat: '>=2.5.0,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda + libglib: '>=2.76.3,<3.0a0' + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-h53e17e3_4.conda hash: - md5: 86cc5867dfbee4178118392bae4a3c89 - sha256: f63e6d1d6aef8ba6de4fc54d3d7898a153479888d40ffdf2e4cfad6f92679d34 + md5: 848cc963fcfbd063c7a023024aa3bec0 + sha256: d5b82a36f7e9d7636b854e56d1b4fe01c4d895128a7b73e2ec6945b691ff3314 optional: false category: main - build: h5bb23bf_0 + build: h53e17e3_4 + subdir: osx-64 + build_number: 4 + license: LGPL-2.0-or-later + license_family: LGPL + size: 280972 + timestamp: 1686545425074 +- name: libtool + version: 2.4.7 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libtool-2.4.7-hf0c8a7f_0.conda + hash: + md5: 1f87b8f56ae1210c77f6133705ef24af + sha256: 0827bcf84a243ca6dd47901caa607262a0184d6048a7cf444b26aa8ee80eb066 + optional: false + category: main + build: hf0c8a7f_0 subdir: osx-64 build_number: 0 - license: MIT - license_family: MIT - size: 237068 - timestamp: 1674829100063 + license: GPL-2.0-or-later + license_family: GPL + size: 407170 + timestamp: 1672362058438 - name: libidn2 version: 2.3.4 manager: conda @@ -53333,6 +53637,26 @@ package: license_family: BSD size: 1254355 timestamp: 1678282565303 +- name: imath + version: 3.1.6 + manager: conda + platform: osx-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.6-hbc0c0cd_1.conda + hash: + md5: 14b541e6ba0d755c0cefcd32c591ab0d + sha256: 3846c29b0824f34d544e923dd89dfc0b07b0210e3340c96696a69e8ad8502903 + optional: false + category: main + build: hbc0c0cd_1 + subdir: osx-64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 153408 + timestamp: 1668913806180 - name: pybind11-abi version: '4' manager: conda @@ -53457,47 +53781,6 @@ package: license_family: BSD size: 215490 timestamp: 1686734270785 -- name: llvm-openmp - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.6-hff08bdf_0.conda - hash: - md5: 39a5227d906f75102bf8586741690128 - sha256: 0fbcf1c9e15dbb22d337063550ebcadbeb96b2a012e633f80255c8c720e4f832 - optional: false - category: main - build: hff08bdf_0 - subdir: osx-64 - build_number: 0 - constrains: - - openmp 16.0.6|16.0.6.* - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 295823 - timestamp: 1686865427800 -- name: libgfortran5 - version: 12.2.0 - manager: conda - platform: osx-64 - dependencies: - llvm-openmp: '>=8.0.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda - hash: - md5: 5a544130e584b1f204ac896ff071d5b3 - sha256: 42ae06bbb3cf7f7c3194482894f4287fad7bc39214d1a0dbf0c43f8efb8d3c1a - optional: false - category: main - build: he409387_31 - subdir: osx-64 - build_number: 31 - constrains: - - libgfortran 5.0.0 *_31 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 1600291 - timestamp: 1678485061597 - name: libaec version: 1.0.6 manager: conda @@ -53610,24 +53893,6 @@ package: license_family: GPL size: 3433205 timestamp: 1646610148268 -- name: xorg-libxau - version: 1.0.11 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda - hash: - md5: 9566b4c29274125b0266d0177b5eb97b - sha256: 8a2e398c4f06f10c64e69f56bcf3ddfa30b432201446a0893505e735b346619a - optional: false - category: main - build: h0dc2134_0 - subdir: osx-64 - build_number: 0 - license: MIT - license_family: MIT - size: 13071 - timestamp: 1684638167647 - name: qhull version: '2020.2' manager: conda @@ -53746,46 +54011,28 @@ package: noarch: python size: 40854 timestamp: 1675116355989 -- name: six - version: 1.16.0 - manager: conda - platform: osx-64 - dependencies: - python: '*' - url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - hash: - md5: e5f25f8dbc060e9a8d912e432202afc2 - sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 - optional: false - category: main - build: pyh6c4a22f_0 - subdir: noarch - build_number: 0 - license: MIT - license_family: MIT - noarch: python - size: 14259 - timestamp: 1620240338595 -- name: pycparser - version: '2.21' +- name: atk-1.0 + version: 2.38.0 manager: conda platform: osx-64 dependencies: - python: 2.7.*|>=3.4 - url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + libglib: '>=2.74.1,<3.0a0' + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h1d18e73_1.tar.bz2 hash: - md5: 076becd9e05608f8dc72757d5f3a91ff - sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + md5: 5a538295f97a484ee332aacc131718b5 + sha256: 7af1f86cfc85b1e57547e2a81c069095545ff6a52f3f8e15184df954dce446dd optional: false category: main - build: pyhd8ed1ab_0 - subdir: noarch - build_number: 0 - license: BSD-3-Clause - license_family: BSD - noarch: python - size: 102747 - timestamp: 1636257201998 + build: h1d18e73_1 + subdir: osx-64 + build_number: 1 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 367515 + timestamp: 1667421223751 - name: munkres version: 1.1.4 manager: conda @@ -53824,6 +54071,7 @@ package: subdir: osx-64 build_number: 9 license: MIT + license_family: MIT size: 20237 timestamp: 1687884767757 - name: brotli-bin @@ -53843,6 +54091,7 @@ package: subdir: osx-64 build_number: 9 license: MIT + license_family: MIT size: 17977 timestamp: 1687884724119 - name: libbrotlidec @@ -53861,6 +54110,7 @@ package: subdir: osx-64 build_number: 9 license: MIT + license_family: MIT size: 31929 timestamp: 1687884624094 - name: libbrotlienc @@ -53879,6 +54129,7 @@ package: subdir: osx-64 build_number: 9 license: MIT + license_family: MIT size: 279086 timestamp: 1687884674212 - name: libbrotlicommon @@ -53896,6 +54147,7 @@ package: subdir: osx-64 build_number: 9 license: MIT + license_family: MIT size: 69588 timestamp: 1687884586401 - name: unicodedata2 @@ -53939,16 +54191,16 @@ package: size: 95001 timestamp: 1681126543981 - name: wslink - version: 1.11.0 + version: 1.11.1 manager: conda platform: osx-64 dependencies: python: '>=3.6' aiohttp: <4 - url: https://conda.anaconda.org/conda-forge/noarch/wslink-1.11.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/wslink-1.11.1-pyhd8ed1ab_0.conda hash: - md5: 70f4b52c0e703936aa1812d8b14a5bb2 - sha256: 11dd5e6c5062e788160167e2a64fcbbb2c7ec825e28d628a9e7771172e039de7 + md5: 0d0113b67472cea3da288838ebc80acb + sha256: 656947c8457d5ac06f11dc1da904ac7ac8ac8edf81323ee9794a3d51ace79ff3 optional: false category: main build: pyhd8ed1ab_0 @@ -53957,8 +54209,8 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 31744 - timestamp: 1686354338531 + size: 31753 + timestamp: 1688102076761 - name: lz4-c version: 1.9.4 manager: conda @@ -54250,15 +54502,15 @@ package: size: 12730 timestamp: 1667935912504 - name: charset-normalizer - version: 3.1.0 + version: 3.2.0 manager: conda platform: osx-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: 313516e9a4b08b12dfb1e1cd390a96e3 + sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4 optional: false category: main build: pyhd8ed1ab_0 @@ -54267,8 +54519,8 @@ package: license: MIT license_family: MIT noarch: python - size: 44914 - timestamp: 1678108997608 + size: 45686 + timestamp: 1688813585878 - name: multidict version: 6.0.4 manager: conda @@ -54375,15 +54627,15 @@ package: size: 119721 timestamp: 1660347362313 - name: typing-extensions - version: 4.6.3 + version: 4.7.1 manager: conda platform: osx-64 dependencies: - typing_extensions: ==4.6.3 pyha770c72_0 - url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.6.3-hd8ed1ab_0.conda + typing_extensions: ==4.7.1 pyha770c72_0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda hash: - md5: 3876f650ed7d0f95d70fa4b647621909 - sha256: d2334dab270e13182403cc3a394e3da8e7acb409e94059a6d9223d2ac053f90a + md5: f96688577f1faa58096d06a45136afa2 + sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d optional: false category: main build: hd8ed1ab_0 @@ -54392,18 +54644,18 @@ package: license: PSF-2.0 license_family: PSF noarch: python - size: 10040 - timestamp: 1685705090608 + size: 10080 + timestamp: 1688315729011 - name: typing_extensions - version: 4.6.3 + version: 4.7.1 manager: conda platform: osx-64 dependencies: python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.6.3-pyha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda hash: - md5: 4a3014a4d107d15475d106b751c4e352 - sha256: 90a8d56c8015af1575d504d5f77d95a806cd999fc178a06ab51a349f1f744672 + md5: c39d6a09fe819de4951c2642629d9115 + sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1 optional: false category: main build: pyha770c72_0 @@ -54412,8 +54664,8 @@ package: license: PSF-2.0 license_family: PSF noarch: python - size: 34905 - timestamp: 1685705083612 + size: 36321 + timestamp: 1688315719627 - name: idna version: '3.4' manager: conda @@ -54434,192 +54686,6 @@ package: noarch: python size: 56742 timestamp: 1663625484114 -- name: bzip2 - version: 1.0.8 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 - hash: - md5: 37edc4e6304ca87316e160f5ca0bd1b5 - sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 - optional: false - category: main - build: h0d85af4_4 - subdir: osx-64 - build_number: 4 - license: bzip2-1.0.6 - license_family: BSD - size: 158829 - timestamp: 1618862580095 -- name: libgfortran - version: 5.0.0 - manager: conda - platform: osx-64 - dependencies: - libgfortran5: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_31.conda - hash: - md5: 97451338600bd9c5b535eb224ef6c471 - sha256: 55d3c81ce8cd931260c3cb8c85868e36223d2bd0d5e2f35a79503810ee172769 - optional: false - category: main - build: 11_3_0_h97931a8_31 - subdir: osx-64 - build_number: 31 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 160084 - timestamp: 1678485362631 -- name: graphite2 - version: 1.3.13 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=10.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h2e338ed_1001.tar.bz2 - hash: - md5: 5f6e7f98caddd0fc2d345b207531814c - sha256: 1dba68533e6888c5e2a7e37119a77d6f388fb82721c530ba3bd28d541828e59b - optional: false - category: main - build: h2e338ed_1001 - subdir: osx-64 - build_number: 1001 - license: LGPLv2 - size: 86556 - timestamp: 1604365555365 -- name: xorg-libxdmcp - version: 1.1.3 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2 - hash: - md5: 86ac76d6bf1cbb9621943eb3bd9ae36e - sha256: 485421c16f03a01b8ed09984e0b2ababdbb3527e1abf354ff7646f8329be905f - optional: false - category: main - build: h35c211d_0 - subdir: osx-64 - build_number: 0 - license: MIT - license_family: MIT - size: 17225 - timestamp: 1610071995461 -- name: pthread-stubs - version: '0.4' - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2 - hash: - md5: addd19059de62181cd11ae8f4ef26084 - sha256: 6e3900bb241bcdec513d4e7180fe9a19186c1a38f0b4080ed619d26014222c53 - optional: false - category: main - build: hc929b4f_1001 - subdir: osx-64 - build_number: 1001 - license: MIT - license_family: MIT - size: 5653 - timestamp: 1606147699844 -- name: libedit - version: 3.1.20191231 - manager: conda - platform: osx-64 - dependencies: - ncurses: '>=6.2,<7.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 - hash: - md5: 6016a8a1d0e63cac3de2c352cd40208b - sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 - optional: false - category: main - build: h0678c8f_2 - subdir: osx-64 - build_number: 2 - license: BSD-2-Clause - license_family: BSD - size: 105382 - timestamp: 1597616576726 -- name: libvorbis - version: 1.3.7 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=11.0.0' - libogg: '>=1.3.4,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2 - hash: - md5: fbbda1fede0aadaa252f6919148c4ce1 - sha256: fbcce1005efcd616e452dea07fe34893d8dd13c65628e74920eeb68ac549faf7 - optional: false - category: main - build: h046ec9c_0 - subdir: osx-64 - build_number: 0 - license: BSD-3-Clause - license_family: BSD - size: 254208 - timestamp: 1610609857389 -- name: xorg-kbproto - version: 1.0.7 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-kbproto-1.0.7-h35c211d_1002.tar.bz2 - hash: - md5: 41302c2bc60a15ca4a018775fd20b442 - sha256: ea4e792e48f28023668ce3e716ebee9b7d04e2d397d678f8f3aef4c7a66f4449 - optional: false - category: main - build: h35c211d_1002 - subdir: osx-64 - build_number: 1002 - license: MIT - license_family: MIT - size: 27396 - timestamp: 1610027854580 -- name: xorg-xproto - version: 7.0.31 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-xproto-7.0.31-h35c211d_1007.tar.bz2 - hash: - md5: e1b279e3b8c03f88a90e81480a8f319a - sha256: 433fa2cf3282e0e6f13cf5e73280cd1add4d3be76f19f2674cbd127c9ec70dd4 - optional: false - category: main - build: h35c211d_1007 - subdir: osx-64 - build_number: 1007 - license: MIT - license_family: MIT - size: 74832 - timestamp: 1607291623383 -- name: libclang - version: 13.0.1 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15.0.7' - libllvm13: '>=13.0.1,<13.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libclang-13.0.1-default_h255f2f3_1.conda - hash: - md5: 7ffe2879ebb140302889d22a1ec41d84 - sha256: 95d29fd75bf2d7930fdc458cf89eb55cc7702c5f6e1f282e66643e41057c745f - optional: false - category: main - build: default_h255f2f3_1 - subdir: osx-64 - build_number: 1 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 6874291 - timestamp: 1677801623061 - name: tinyxml version: 2.6.2 manager: conda @@ -54676,6 +54742,41 @@ package: license_family: GPL size: 84339 timestamp: 1617437185761 +- name: fribidi + version: 1.0.10 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 + hash: + md5: f1c6b41e0f56998ecd9a3e210faa1dc0 + sha256: 4f6db86ecc4984cd4ac88ca52030726c3cfd11a64dfb15c8602025ee3001a2b5 + optional: false + category: main + build: hbcb3906_0 + subdir: osx-64 + build_number: 0 + license: LGPL-2.1 + size: 65388 + timestamp: 1604417213 +- name: bzip2 + version: 1.0.8 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 + hash: + md5: 37edc4e6304ca87316e160f5ca0bd1b5 + sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 + optional: false + category: main + build: h0d85af4_4 + subdir: osx-64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 158829 + timestamp: 1618862580095 - name: libunistring version: 0.9.10 manager: conda @@ -54711,6 +54812,42 @@ package: license_family: MIT size: 9632 timestamp: 1614866616392 +- name: xorg-kbproto + version: 1.0.7 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-kbproto-1.0.7-h35c211d_1002.tar.bz2 + hash: + md5: 41302c2bc60a15ca4a018775fd20b442 + sha256: ea4e792e48f28023668ce3e716ebee9b7d04e2d397d678f8f3aef4c7a66f4449 + optional: false + category: main + build: h35c211d_1002 + subdir: osx-64 + build_number: 1002 + license: MIT + license_family: MIT + size: 27396 + timestamp: 1610027854580 +- name: xorg-xproto + version: 7.0.31 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-xproto-7.0.31-h35c211d_1007.tar.bz2 + hash: + md5: e1b279e3b8c03f88a90e81480a8f319a + sha256: 433fa2cf3282e0e6f13cf5e73280cd1add4d3be76f19f2674cbd127c9ec70dd4 + optional: false + category: main + build: h35c211d_1007 + subdir: osx-64 + build_number: 1007 + license: MIT + license_family: MIT + size: 74832 + timestamp: 1607291623383 - name: xorg-libice version: 1.0.10 manager: conda @@ -54748,6 +54885,26 @@ package: license_family: MIT size: 23016 timestamp: 1614876056050 +- name: libvorbis + version: 1.3.7 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=11.0.0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2 + hash: + md5: fbbda1fede0aadaa252f6919148c4ce1 + sha256: fbcce1005efcd616e452dea07fe34893d8dd13c65628e74920eeb68ac549faf7 + optional: false + category: main + build: h046ec9c_0 + subdir: osx-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 254208 + timestamp: 1610609857389 - name: xorg-randrproto version: 1.5.0 manager: conda @@ -54804,6 +54961,118 @@ package: license_family: LGPL size: 73640 timestamp: 1607158843927 +- name: libgfortran + version: 5.0.0 + manager: conda + platform: osx-64 + dependencies: + libgfortran5: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_31.conda + hash: + md5: 97451338600bd9c5b535eb224ef6c471 + sha256: 55d3c81ce8cd931260c3cb8c85868e36223d2bd0d5e2f35a79503810ee172769 + optional: false + category: main + build: 11_3_0_h97931a8_31 + subdir: osx-64 + build_number: 31 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 160084 + timestamp: 1678485362631 +- name: graphite2 + version: 1.3.13 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=10.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h2e338ed_1001.tar.bz2 + hash: + md5: 5f6e7f98caddd0fc2d345b207531814c + sha256: 1dba68533e6888c5e2a7e37119a77d6f388fb82721c530ba3bd28d541828e59b + optional: false + category: main + build: h2e338ed_1001 + subdir: osx-64 + build_number: 1001 + license: LGPLv2 + size: 86556 + timestamp: 1604365555365 +- name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2 + hash: + md5: 86ac76d6bf1cbb9621943eb3bd9ae36e + sha256: 485421c16f03a01b8ed09984e0b2ababdbb3527e1abf354ff7646f8329be905f + optional: false + category: main + build: h35c211d_0 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + size: 17225 + timestamp: 1610071995461 +- name: pthread-stubs + version: '0.4' + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2 + hash: + md5: addd19059de62181cd11ae8f4ef26084 + sha256: 6e3900bb241bcdec513d4e7180fe9a19186c1a38f0b4080ed619d26014222c53 + optional: false + category: main + build: hc929b4f_1001 + subdir: osx-64 + build_number: 1001 + license: MIT + license_family: MIT + size: 5653 + timestamp: 1606147699844 +- name: libedit + version: 3.1.20191231 + manager: conda + platform: osx-64 + dependencies: + ncurses: '>=6.2,<7.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + hash: + md5: 6016a8a1d0e63cac3de2c352cd40208b + sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 + optional: false + category: main + build: h0678c8f_2 + subdir: osx-64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 105382 + timestamp: 1597616576726 +- name: libclang + version: 13.0.1 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=15.0.7' + libllvm13: '>=13.0.1,<13.1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libclang-13.0.1-default_h255f2f3_1.conda + hash: + md5: 7ffe2879ebb140302889d22a1ec41d84 + sha256: 95d29fd75bf2d7930fdc458cf89eb55cc7702c5f6e1f282e66643e41057c745f + optional: false + category: main + build: default_h255f2f3_1 + subdir: osx-64 + build_number: 1 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 6874291 + timestamp: 1677801623061 - name: libllvm13 version: 13.0.1 manager: conda diff --git a/src/environment.rs b/src/environment.rs index ca39d34955..3c6d1ae456 100644 --- a/src/environment.rs +++ b/src/environment.rs @@ -21,8 +21,8 @@ use rattler::{ use rattler_conda_types::{ conda_lock, conda_lock::builder::{LockFileBuilder, LockedPackage, LockedPackages}, - conda_lock::{CondaLock, PackageHashes}, - MatchSpec, NamelessMatchSpec, PackageRecord, Platform, PrefixRecord, RepoDataRecord, Version, + conda_lock::CondaLock, + MatchSpec, NamelessMatchSpec, Platform, PrefixRecord, RepoDataRecord, Version, }; use rattler_networking::AuthenticatedClient; use rattler_repodata_gateway::sparse::SparseRepoData; @@ -30,7 +30,6 @@ use rattler_solve::{libsolv_c, SolverImpl}; use std::collections::HashMap; use std::{ collections::{HashSet, VecDeque}, - ffi::OsStr, io::ErrorKind, path::{Path, PathBuf}, str::FromStr, @@ -207,16 +206,16 @@ pub fn lock_file_up_to_date(project: &Project, lock_file: &CondaLock) -> anyhow: return Ok(false); } Some(package) => { - for (depends_name, depends_constriant) in package.dependencies.iter() { + for (depends_name, depends_constraint) in package.dependencies.iter() { if !seen.contains(depends_name) { // Parse the constraint - match NamelessMatchSpec::from_str(&depends_constriant.to_string()) { + match NamelessMatchSpec::from_str(&depends_constraint.to_string()) { Ok(spec) => { queue.push_back((depends_name.clone(), spec)); seen.insert(depends_name.clone()); } Err(_) => { - tracing::warn!("failed to parse spec '{}', assuming the lock file is corrupt.", depends_constriant); + tracing::warn!("failed to parse spec '{}', assuming the lock file is corrupt.", depends_constraint); return Ok(false); } } @@ -331,8 +330,6 @@ pub async fn update_lock_file( let task = rattler_solve::SolverTask { specs: match_specs.clone(), available_packages: &available_packages, - - // TODO: All these things. locked_packages: existing_lock_file .packages_for_platform(platform) .map(RepoDataRecord::try_from) @@ -371,53 +368,7 @@ pub fn get_required_packages( .package .iter() .filter(|pkg| pkg.platform == platform) - .map(|pkg| { - Ok(RepoDataRecord { - channel: String::new(), - file_name: Path::new(pkg.url.path()) - .file_name() - .and_then(OsStr::to_str) - .ok_or_else(|| { - anyhow::anyhow!("failed to determine file name from {}", &pkg.url) - })? - .to_owned(), - url: pkg.url.clone(), - package_record: PackageRecord { - arch: None, - build: pkg.build.clone().unwrap_or_default(), - build_number: 0, - constrains: vec![], - depends: pkg - .dependencies - .iter() - .map(|(pkg_name, spec)| format!("{} {}", pkg_name, spec)) - .collect(), - features: None, - legacy_bz2_md5: None, - legacy_bz2_size: None, - license: None, - license_family: None, - md5: match &pkg.hash { - PackageHashes::Md5(md5) => Some(*md5), - PackageHashes::Sha256(_) => None, - PackageHashes::Md5Sha256(md5, _) => Some(*md5), - }, - name: pkg.name.clone(), - noarch: Default::default(), - platform: None, - sha256: match &pkg.hash { - PackageHashes::Md5(_) => None, - PackageHashes::Sha256(sha256) => Some(*sha256), - PackageHashes::Md5Sha256(_, sha256) => Some(*sha256), - }, - size: None, - subdir: "".to_string(), - timestamp: None, - track_features: vec![], - version: Version::from_str(&pkg.version)?.into(), - }, - }) - }) + .map(|pkg| pkg.clone().try_into().map_err(anyhow::Error::from)) .collect() } From 86facd16afe14475d3c0ba0606563c72f38dcd82 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Mon, 10 Jul 2023 13:22:36 +0200 Subject: [PATCH 19/19] fix: pixi now ignores sigint during `run` (only child process gets CTRL+C) (#190) --- Cargo.toml | 3 ++- src/cli/run.rs | 14 +++++++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f4f0f3a23c..b85d581789 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,6 +23,7 @@ clap-verbosity-flag = "2.0.1" clap_complete = "4.2.1" console = { version = "0.15.5", features = ["windows-console-colors"] } deno_task_shell = { git = "https://github.com/prefix-dev/deno_task_shell" } +# deno_task_shell = { path = "../deno_task_shell" } dirs = "5.0.1" dunce = "1.0.4" futures = "0.3.28" @@ -53,7 +54,7 @@ serde_spanned = "0.6.2" serde_with = { version = "3.0.0", features = ["indexmap"] } shlex = "1.1.0" tempfile = "3.5.0" -tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread", "signal"] } toml_edit = { version = "0.19.10", features = ["serde"] } tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } diff --git a/src/cli/run.rs b/src/cli/run.rs index b96ce920f2..d495d3e227 100644 --- a/src/cli/run.rs +++ b/src/cli/run.rs @@ -179,6 +179,7 @@ fn quote_arguments(args: impl IntoIterator>) -> String { } /// CLI entry point for `pixi run` +/// When running the sigints are ignored and child can react to them. As it pleases. pub async fn execute(args: Args) -> anyhow::Result<()> { let project = Project::load_or_else_discover(args.manifest_path.as_deref())?; @@ -190,8 +191,19 @@ pub async fn execute(args: Args) -> anyhow::Result<()> { // Execute the commands in the correct order while let Some((command, args)) = ordered_commands.pop_back() { + // Ignore CTRL+C + // Specifically so that the child is responsible for its own signal handling + // NOTE: one CTRL+C is registered it will always stay registered for the rest of the runtime of the program + // which is fine when using run in isolation, however if we start to use run in conjunction with + // some other command we might want to revaluate this. + let ctrl_c = tokio::spawn(async { while tokio::signal::ctrl_c().await.is_ok() {} }); let script = create_script(command, args).await?; - let status_code = execute_script(script, &project, &command_env).await?; + let status_code = tokio::select! { + code = execute_script(script, &project, &command_env) => code?, + // This should never exit + _ = ctrl_c => { unreachable!("Ctrl+C should not be triggered") } + }; + if status_code != 0 { std::process::exit(status_code); }