From cbb1457d62e60e6860320951e08b24b2c1b4d4c8 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 13 Jan 2021 08:31:24 +0100 Subject: Add LICENSE file and license headers Signed-off-by: Matthias Beyer --- src/filestore/artifact.rs | 10 ++++++++++ src/filestore/merged.rs | 10 ++++++++++ src/filestore/mod.rs | 10 ++++++++++ src/filestore/path.rs | 10 ++++++++++ src/filestore/release.rs | 10 ++++++++++ src/filestore/staging.rs | 10 ++++++++++ src/filestore/util.rs | 10 ++++++++++ 7 files changed, 70 insertions(+) (limited to 'src/filestore') diff --git a/src/filestore/artifact.rs b/src/filestore/artifact.rs index c744d82..b754e9f 100644 --- a/src/filestore/artifact.rs +++ b/src/filestore/artifact.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::cmp::Ordering; use anyhow::Context; diff --git a/src/filestore/merged.rs b/src/filestore/merged.rs index 8172516..5a829d9 100644 --- a/src/filestore/merged.rs +++ b/src/filestore/merged.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::sync::Arc; use log::trace; diff --git a/src/filestore/mod.rs b/src/filestore/mod.rs index 65e0609..0d19d02 100644 --- a/src/filestore/mod.rs +++ b/src/filestore/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 +// + mod artifact; pub use artifact::*; diff --git a/src/filestore/path.rs b/src/filestore/path.rs index 0e41bd8..ca537bb 100644 --- a/src/filestore/path.rs +++ b/src/filestore/path.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 std::path::PathBuf; use std::ffi::OsStr; diff --git a/src/filestore/release.rs b/src/filestore/release.rs index c05d7e8..3068729 100644 --- a/src/filestore/release.rs +++ b/src/filestore/release.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::fmt::Debug; use anyhow::Result; diff --git a/src/filestore/staging.rs b/src/filestore/staging.rs index 0fa6e03..911d3e3 100644 --- a/src/filestore/staging.rs +++ b/src/filestore/staging.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::fmt::Debug; use std::path::Path; diff --git a/src/filestore/util.rs b/src/filestore/util.rs index b1e1506..c27d8c6 100644 --- a/src/filestore/util.rs +++ b/src/filestore/util.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 +// + //! Module containing utilities for the filestore implementation //! -- cgit v1.2.3