~matthiasbeyer/butido

5a7535b543a8b28125028fff419062fcc331295b — Matthias Beyer 3 years ago badd1a6 + 1353e53
Merge branch 'misc'
132 files changed, 135 insertions(+), 135 deletions(-)

M migrations/2020-10-29-132821_create_envvars/down.sql
M migrations/2020-10-29-132821_create_envvars/up.sql
M migrations/2020-10-29-140235_create_githashes/down.sql
M migrations/2020-10-29-140235_create_githashes/up.sql
M migrations/2020-10-29-140838_create_packages/down.sql
M migrations/2020-10-29-140838_create_packages/up.sql
M migrations/2020-10-29-140956_create_images/down.sql
M migrations/2020-10-29-140956_create_images/up.sql
M migrations/2020-10-29-141023_create_submits/down.sql
M migrations/2020-10-29-141023_create_submits/up.sql
M migrations/2020-10-29-141904_create_endpoints/down.sql
M migrations/2020-10-29-141904_create_endpoints/up.sql
M migrations/2020-10-29-142339_create_artifacts/down.sql
M migrations/2020-10-29-142339_create_artifacts/up.sql
M migrations/2020-10-29-142443_create_jobs/down.sql
M migrations/2020-10-29-142443_create_jobs/up.sql
M migrations/2020-10-29-142619_create_job_input_artifacts/down.sql
M migrations/2020-10-29-142619_create_job_input_artifacts/up.sql
M migrations/2020-10-29-142914_create_job_envs/down.sql
M migrations/2020-10-29-142914_create_job_envs/up.sql
M migrations/2020-10-29-143003_create_submit_envs/down.sql
M migrations/2020-10-29-143003_create_submit_envs/up.sql
M migrations/2020-11-05-125716_drop_submit_buildplan/down.sql
M migrations/2020-11-05-125716_drop_submit_buildplan/up.sql
M migrations/2020-11-11-111013_job_output_artifacts/down.sql
M migrations/2020-11-11-111013_job_output_artifacts/up.sql
M migrations/2020-11-11-111326_job_has_multiple_outputs/down.sql
M migrations/2020-11-11-111326_job_has_multiple_outputs/up.sql
M migrations/2020-11-13-161449_add_job_uuid/down.sql
M migrations/2020-11-13-161449_add_job_uuid/up.sql
M migrations/2020-12-03-084509_artifact_release_flag/down.sql
M migrations/2020-12-03-084509_artifact_release_flag/up.sql
M migrations/2020-12-03-085333_artifact_belongs_to_job/down.sql
M migrations/2020-12-03-085333_artifact_belongs_to_job/up.sql
M migrations/2020-12-14-100454_artifact-unique-by-job/down.sql
M migrations/2020-12-14-100454_artifact-unique-by-job/up.sql
M migrations/2020-12-14-113756_artifact_not_unique_by_path/down.sql
M migrations/2020-12-14-113756_artifact_not_unique_by_path/up.sql
M src/cli.rs
M src/commands/build.rs
M src/commands/db.rs
M src/commands/dependencies_of.rs
M src/commands/endpoint.rs
M src/commands/endpoint_container.rs
M src/commands/env_of.rs
M src/commands/find_artifact.rs
M src/commands/find_pkg.rs
M src/commands/lint.rs
M src/commands/metrics.rs
M src/commands/mod.rs
M src/commands/release.rs
M src/commands/source.rs
M src/commands/tree_of.rs
M src/commands/util.rs
M src/commands/versions_of.rs
M src/commands/what_depends.rs
M src/config/configuration.rs
M src/config/container_config.rs
M src/config/docker_config.rs
M src/config/endpoint_config.rs
M src/config/mod.rs
M src/config/not_validated.rs
M src/config/util.rs
M src/consts.rs
M src/db/connection.rs
M src/db/find_artifacts.rs
M src/db/mod.rs
M src/db/models/artifact.rs
M src/db/models/endpoint.rs
M src/db/models/envvar.rs
M src/db/models/githash.rs
M src/db/models/image.rs
M src/db/models/job.rs
M src/db/models/job_env.rs
M src/db/models/mod.rs
M src/db/models/package.rs
M src/db/models/release_store.rs
M src/db/models/releases.rs
M src/db/models/submit.rs
M src/endpoint/configuration.rs
M src/endpoint/configured.rs
M src/endpoint/mod.rs
M src/endpoint/scheduler.rs
M src/endpoint/util.rs
M src/filestore/mod.rs
M src/filestore/path.rs
M src/filestore/release.rs
M src/filestore/staging.rs
M src/filestore/util.rs
M src/job/dag.rs
M src/job/job.rs
M src/job/mod.rs
M src/job/resource.rs
M src/job/runnable.rs
M src/log/item.rs
M src/log/mod.rs
M src/log/parser.rs
M src/log/sink.rs
M src/log/util.rs
M src/main.rs
M src/orchestrator/mod.rs
M src/orchestrator/orchestrator.rs
M src/orchestrator/util.rs
M src/package/dag.rs
M src/package/dependency/build.rs
M src/package/dependency/condition.rs
M src/package/dependency/mod.rs
M src/package/dependency/runtime.rs
M src/package/mod.rs
M src/package/name.rs
M src/package/package.rs
M src/package/phase.rs
M src/package/script.rs
M src/package/source.rs
M src/package/util.rs
M src/package/version.rs
M src/repository/fs/element.rs
M src/repository/fs/mod.rs
M src/repository/fs/path.rs
M src/repository/fs/representation.rs
M src/repository/mod.rs
M src/repository/repository.rs
M src/source/mod.rs
M src/ui/mod.rs
M src/ui/package.rs
M src/util/docker.rs
M src/util/env.rs
M src/util/filters.rs
M src/util/git.rs
M src/util/mod.rs
M src/util/parser.rs
M src/util/progress.rs
M migrations/2020-10-29-132821_create_envvars/down.sql => migrations/2020-10-29-132821_create_envvars/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-132821_create_envvars/up.sql => migrations/2020-10-29-132821_create_envvars/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-140235_create_githashes/down.sql => migrations/2020-10-29-140235_create_githashes/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-140235_create_githashes/up.sql => migrations/2020-10-29-140235_create_githashes/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-140838_create_packages/down.sql => migrations/2020-10-29-140838_create_packages/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-140838_create_packages/up.sql => migrations/2020-10-29-140838_create_packages/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-140956_create_images/down.sql => migrations/2020-10-29-140956_create_images/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-140956_create_images/up.sql => migrations/2020-10-29-140956_create_images/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-141023_create_submits/down.sql => migrations/2020-10-29-141023_create_submits/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-141023_create_submits/up.sql => migrations/2020-10-29-141023_create_submits/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-141904_create_endpoints/down.sql => migrations/2020-10-29-141904_create_endpoints/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-141904_create_endpoints/up.sql => migrations/2020-10-29-141904_create_endpoints/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-142339_create_artifacts/down.sql => migrations/2020-10-29-142339_create_artifacts/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-142339_create_artifacts/up.sql => migrations/2020-10-29-142339_create_artifacts/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-142443_create_jobs/down.sql => migrations/2020-10-29-142443_create_jobs/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-142443_create_jobs/up.sql => migrations/2020-10-29-142443_create_jobs/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-142619_create_job_input_artifacts/down.sql => migrations/2020-10-29-142619_create_job_input_artifacts/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-142619_create_job_input_artifacts/up.sql => migrations/2020-10-29-142619_create_job_input_artifacts/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-142914_create_job_envs/down.sql => migrations/2020-10-29-142914_create_job_envs/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-142914_create_job_envs/up.sql => migrations/2020-10-29-142914_create_job_envs/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-143003_create_submit_envs/down.sql => migrations/2020-10-29-143003_create_submit_envs/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-10-29-143003_create_submit_envs/up.sql => migrations/2020-10-29-143003_create_submit_envs/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-11-05-125716_drop_submit_buildplan/down.sql => migrations/2020-11-05-125716_drop_submit_buildplan/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-11-05-125716_drop_submit_buildplan/up.sql => migrations/2020-11-05-125716_drop_submit_buildplan/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-11-11-111013_job_output_artifacts/down.sql => migrations/2020-11-11-111013_job_output_artifacts/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-11-11-111013_job_output_artifacts/up.sql => migrations/2020-11-11-111013_job_output_artifacts/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-11-11-111326_job_has_multiple_outputs/down.sql => migrations/2020-11-11-111326_job_has_multiple_outputs/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-11-11-111326_job_has_multiple_outputs/up.sql => migrations/2020-11-11-111326_job_has_multiple_outputs/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-11-13-161449_add_job_uuid/down.sql => migrations/2020-11-13-161449_add_job_uuid/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-11-13-161449_add_job_uuid/up.sql => migrations/2020-11-13-161449_add_job_uuid/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-12-03-084509_artifact_release_flag/down.sql => migrations/2020-12-03-084509_artifact_release_flag/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-12-03-084509_artifact_release_flag/up.sql => migrations/2020-12-03-084509_artifact_release_flag/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-12-03-085333_artifact_belongs_to_job/down.sql => migrations/2020-12-03-085333_artifact_belongs_to_job/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-12-03-085333_artifact_belongs_to_job/up.sql => migrations/2020-12-03-085333_artifact_belongs_to_job/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-12-14-100454_artifact-unique-by-job/down.sql => migrations/2020-12-14-100454_artifact-unique-by-job/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-12-14-100454_artifact-unique-by-job/up.sql => migrations/2020-12-14-100454_artifact-unique-by-job/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-12-14-113756_artifact_not_unique_by_path/down.sql => migrations/2020-12-14-113756_artifact_not_unique_by_path/down.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M migrations/2020-12-14-113756_artifact_not_unique_by_path/up.sql => migrations/2020-12-14-113756_artifact_not_unique_by_path/up.sql +1 -1
@@ 1,5 1,5 @@
--
-- Copyright (c) 2020-2021 science+computing ag and other contributors
-- Copyright (c) 2020-2022 science+computing ag and other contributors
--
-- This program and the accompanying materials are made
-- available under the terms of the Eclipse Public License 2.0

M src/cli.rs => src/cli.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/build.rs => src/commands/build.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/db.rs => src/commands/db.rs +4 -4
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0


@@ 85,10 85,10 @@ fn cli(db_connection_config: DbConnectionConfig<'_>, matches: &ArgMatches) -> Re
                .map_err(Error::from)
                .and_then(|out| {
                    if out.status.success() {
                        info!("pgcli exited successfully");
                        info!("psql exited successfully");
                        Ok(())
                    } else {
                        Err(anyhow!("gpcli did not exit successfully"))
                        Err(anyhow!("psql did not exit successfully"))
                            .with_context(|| match String::from_utf8(out.stderr) {
                                Ok(log) => anyhow!("{}", log),
                                Err(e) => anyhow!("Cannot parse log into valid UTF-8: {}", e),


@@ 120,7 120,7 @@ fn cli(db_connection_config: DbConnectionConfig<'_>, matches: &ArgMatches) -> Re
                        info!("pgcli exited successfully");
                        Ok(())
                    } else {
                        Err(anyhow!("gpcli did not exit successfully"))
                        Err(anyhow!("pgcli did not exit successfully"))
                            .with_context(|| match String::from_utf8(out.stderr) {
                                Ok(log) => anyhow!("{}", log),
                                Err(e) => anyhow!("Cannot parse log into valid UTF-8: {}", e),

M src/commands/dependencies_of.rs => src/commands/dependencies_of.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/endpoint.rs => src/commands/endpoint.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/endpoint_container.rs => src/commands/endpoint_container.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/env_of.rs => src/commands/env_of.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/find_artifact.rs => src/commands/find_artifact.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/find_pkg.rs => src/commands/find_pkg.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/lint.rs => src/commands/lint.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/metrics.rs => src/commands/metrics.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/mod.rs => src/commands/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/release.rs => src/commands/release.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/source.rs => src/commands/source.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/tree_of.rs => src/commands/tree_of.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/util.rs => src/commands/util.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/versions_of.rs => src/commands/versions_of.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/commands/what_depends.rs => src/commands/what_depends.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/config/configuration.rs => src/config/configuration.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/config/container_config.rs => src/config/container_config.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/config/docker_config.rs => src/config/docker_config.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/config/endpoint_config.rs => src/config/endpoint_config.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/config/mod.rs => src/config/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/config/not_validated.rs => src/config/not_validated.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/config/util.rs => src/config/util.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/consts.rs => src/consts.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/connection.rs => src/db/connection.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/find_artifacts.rs => src/db/find_artifacts.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/mod.rs => src/db/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/artifact.rs => src/db/models/artifact.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/endpoint.rs => src/db/models/endpoint.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/envvar.rs => src/db/models/envvar.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/githash.rs => src/db/models/githash.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/image.rs => src/db/models/image.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/job.rs => src/db/models/job.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/job_env.rs => src/db/models/job_env.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/mod.rs => src/db/models/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/package.rs => src/db/models/package.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/release_store.rs => src/db/models/release_store.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/releases.rs => src/db/models/releases.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/db/models/submit.rs => src/db/models/submit.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/endpoint/configuration.rs => src/endpoint/configuration.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/endpoint/configured.rs => src/endpoint/configured.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/endpoint/mod.rs => src/endpoint/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/endpoint/scheduler.rs => src/endpoint/scheduler.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/endpoint/util.rs => src/endpoint/util.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/filestore/mod.rs => src/filestore/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/filestore/path.rs => src/filestore/path.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/filestore/release.rs => src/filestore/release.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/filestore/staging.rs => src/filestore/staging.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/filestore/util.rs => src/filestore/util.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/job/dag.rs => src/job/dag.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/job/job.rs => src/job/job.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/job/mod.rs => src/job/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/job/resource.rs => src/job/resource.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/job/runnable.rs => src/job/runnable.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/log/item.rs => src/log/item.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/log/mod.rs => src/log/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/log/parser.rs => src/log/parser.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/log/sink.rs => src/log/sink.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/log/util.rs => src/log/util.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/main.rs => src/main.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/orchestrator/mod.rs => src/orchestrator/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/orchestrator/orchestrator.rs => src/orchestrator/orchestrator.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/orchestrator/util.rs => src/orchestrator/util.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/dag.rs => src/package/dag.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/dependency/build.rs => src/package/dependency/build.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/dependency/condition.rs => src/package/dependency/condition.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/dependency/mod.rs => src/package/dependency/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/dependency/runtime.rs => src/package/dependency/runtime.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/mod.rs => src/package/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/name.rs => src/package/name.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/package.rs => src/package/package.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/phase.rs => src/package/phase.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/script.rs => src/package/script.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/source.rs => src/package/source.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/util.rs => src/package/util.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/package/version.rs => src/package/version.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/repository/fs/element.rs => src/repository/fs/element.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/repository/fs/mod.rs => src/repository/fs/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/repository/fs/path.rs => src/repository/fs/path.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/repository/fs/representation.rs => src/repository/fs/representation.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/repository/mod.rs => src/repository/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/repository/repository.rs => src/repository/repository.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/source/mod.rs => src/source/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/ui/mod.rs => src/ui/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/ui/package.rs => src/ui/package.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/util/docker.rs => src/util/docker.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/util/env.rs => src/util/env.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/util/filters.rs => src/util/filters.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/util/git.rs => src/util/git.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/util/mod.rs => src/util/mod.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/util/parser.rs => src/util/parser.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0

M src/util/progress.rs => src/util/progress.rs +1 -1
@@ 1,5 1,5 @@
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
// Copyright (c) 2020-2022 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0