summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-01-13 08:31:24 +0100
committerMatthias Beyer <matthias.beyer@atos.net>2021-01-13 15:09:01 +0100
commitcbb1457d62e60e6860320951e08b24b2c1b4d4c8 (patch)
tree1e23030f76a5eff1aaeedfd89de0bc6d55472963 /src/util
parent1c02cf5fa44f4813c919b8d7bca1d8b80af4046b (diff)
Add LICENSE file and license headers
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/docker.rs10
-rw-r--r--src/util/filters.rs10
-rw-r--r--src/util/git.rs10
-rw-r--r--src/util/mod.rs10
-rw-r--r--src/util/parser.rs10
-rw-r--r--src/util/progress.rs10
6 files changed, 60 insertions, 0 deletions
diff --git a/src/util/docker.rs b/src/util/docker.rs
index 8036f6b..32af8de 100644
--- a/src/util/docker.rs
+++ b/src/util/docker.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 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
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use serde::Deserialize;
use serde::Serialize;
diff --git a/src/util/filters.rs b/src/util/filters.rs
index 59c4d67..93ba3d0 100644
--- a/src/util/filters.rs
+++ b/src/util/filters.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 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
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use anyhow::Error;
use anyhow::Result;
use filters::failable::filter::FailableFilter;
diff --git a/src/util/git.rs b/src/util/git.rs
index 7a13a05..4988d84 100644
--- a/src/util/git.rs
+++ b/src/util/git.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 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
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use std::path::Path;
use anyhow::Context;
diff --git a/src/util/mod.rs b/src/util/mod.rs
index 9d75f1e..7077f47 100644
--- a/src/util/mod.rs
+++ b/src/util/mod.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 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
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use serde::Serialize;
use serde::Deserialize;
diff --git a/src/util/parser.rs b/src/util/parser.rs
index 76aa361..f6fa80b 100644
--- a/src/util/parser.rs
+++ b/src/util/parser.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 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
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use pom::parser::*;
use pom::parser::Parser as PomParser;
diff --git a/src/util/progress.rs b/src/util/progress.rs
index 8358dcc..cd20a8a 100644
--- a/src/util/progress.rs
+++ b/src/util/progress.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 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
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use indicatif::*;
#[derive(Clone, Debug)]