From cf6017edd7a81b1c7af9715641bd04b613a33b56 Mon Sep 17 00:00:00 2001 From: Sylvain Corlay Date: Fri, 10 Jul 2020 10:35:48 +0200 Subject: [PATCH] Add copyright headers --- CMakeLists.txt | 6 ++++++ LICENSE | 2 +- README.md | 7 ++++++- include/activation.hpp | 6 ++++++ include/channel.hpp | 6 ++++++ include/context.hpp | 6 ++++++ include/environment.hpp | 6 ++++++ include/environments_manager.hpp | 6 ++++++ include/fetch.hpp | 6 ++++++ include/fsutil.hpp | 9 ++++++++- include/graph_util.hpp | 6 ++++++ include/history.hpp | 8 +++++++- include/link.hpp | 8 +++++++- include/match_spec.hpp | 6 ++++++ include/output.hpp | 6 ++++++ include/package_cache.hpp | 6 ++++++ include/package_handling.hpp | 6 ++++++ include/package_info.hpp | 6 ++++++ include/package_paths.hpp | 8 +++++++- include/pool.hpp | 6 ++++++ include/prefix_data.hpp | 6 ++++++ include/query.hpp | 6 ++++++ include/repo.hpp | 6 ++++++ include/shell_init.hpp | 6 ++++++ include/solver.hpp | 6 ++++++ include/subdirdata.hpp | 6 ++++++ include/transaction.hpp | 6 ++++++ include/transaction_context.hpp | 6 ++++++ include/url.hpp | 6 ++++++ include/util.hpp | 6 ++++++ include/validate.hpp | 6 ++++++ include/version.hpp.in | 6 ++++++ setup.py | 6 ++++++ src/activation.cpp | 6 ++++++ src/channel.cpp | 6 ++++++ src/context.cpp | 6 ++++++ src/environments_manager.cpp | 8 +++++++- src/fetch.cpp | 6 ++++++ src/history.cpp | 8 +++++++- src/link.cpp | 6 ++++++ src/main.cpp | 6 ++++++ src/match_spec.cpp | 6 ++++++ src/output.cpp | 6 ++++++ src/package_cache.cpp | 6 ++++++ src/package_handling.cpp | 6 ++++++ src/package_info.cpp | 6 ++++++ src/package_paths.cpp | 8 +++++++- src/pool.cpp | 6 ++++++ src/prefix_data.cpp | 6 ++++++ src/py_interface.cpp | 6 ++++++ src/query.cpp | 6 ++++++ src/repo.cpp | 6 ++++++ src/solver.cpp | 6 ++++++ src/subdirdata.cpp | 6 ++++++ src/transaction.cpp | 6 ++++++ src/transaction_context.cpp | 6 ++++++ src/url.cpp | 6 ++++++ src/util.cpp | 6 ++++++ src/validate.cpp | 6 ++++++ src/version.cpp | 6 ++++++ 60 files changed, 363 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3df86cc71..a40e6ec94 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,9 @@ +# Copyright (c) 2019, QuantStack and Mamba Contributors +# +# Distributed under the terms of the BSD 3-Clause License. +# +# The full license is in the file LICENSE, distributed with this software. + cmake_minimum_required (VERSION 2.8.11) if(POLICY CMP0025) cmake_policy(SET CMP0025 NEW) diff --git a/LICENSE b/LICENSE index 5fc12b3fb..8ae98f937 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2020 QuantStack and the Mamba contributors. +Copyright 2019 QuantStack and the Mamba contributors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index a2a71e63d..871393df1 100644 --- a/README.md +++ b/README.md @@ -168,5 +168,10 @@ cmake .. \ ### Support us -For questions, you can also join us on [QuantStack Chat](https://gitter.im/QuantStack/Lobby) or on the [conda channel](https://gitter.im/conda/conda) (note that this project is not officially affiliated with `conda` or Anaconda Inc.). +For questions, you can also join us on the [QuantStack Chat](https://gitter.im/QuantStack/Lobby) or on the [conda channel](https://gitter.im/conda/conda) (note that this project is not officially affiliated with `conda` or Anaconda Inc.). +### License + +We use a shared copyright model that enables all contributors to maintain the copyright on their contributions. + +This software is licensed under the BSD-3-Clause license. See the [LICENSE](LICENSE) file for details. diff --git a/include/activation.hpp b/include/activation.hpp index 6bc3bef86..23ccc95df 100644 --- a/include/activation.hpp +++ b/include/activation.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_ACTIVATION_HPP #define MAMBA_ACTIVATION_HPP diff --git a/include/channel.hpp b/include/channel.hpp index 7ab76ff4d..1d79683d3 100644 --- a/include/channel.hpp +++ b/include/channel.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_CHANNEL_HPP #define MAMBA_CHANNEL_HPP diff --git a/include/context.hpp b/include/context.hpp index 712e9607c..047960cc9 100644 --- a/include/context.hpp +++ b/include/context.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_CONTEXT_HPP #define MAMBA_CONTEXT_HPP diff --git a/include/environment.hpp b/include/environment.hpp index d6258edf6..3adce3a93 100644 --- a/include/environment.hpp +++ b/include/environment.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_ENVIRONMENT_HPP #define MAMBA_ENVIRONMENT_HPP diff --git a/include/environments_manager.hpp b/include/environments_manager.hpp index 17a5ce444..b02a3d8d9 100644 --- a/include/environments_manager.hpp +++ b/include/environments_manager.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_ENVIRONMENT_MANAGER #define MAMBA_ENVIRONMENT_MANAGER diff --git a/include/fetch.hpp b/include/fetch.hpp index b644fba2f..f32535772 100644 --- a/include/fetch.hpp +++ b/include/fetch.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_FETCH_HPP #define MAMBA_FETCH_HPP diff --git a/include/fsutil.hpp b/include/fsutil.hpp index ebf5496c0..0b42a89d9 100644 --- a/include/fsutil.hpp +++ b/include/fsutil.hpp @@ -1,3 +1,10 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + + #ifndef MAMBA_FS_UTIL #define MAMBA_FS_UTIL @@ -90,4 +97,4 @@ namespace mamba } } -#endif \ No newline at end of file +#endif diff --git a/include/graph_util.hpp b/include/graph_util.hpp index b7f47427b..8168a1536 100644 --- a/include/graph_util.hpp +++ b/include/graph_util.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_GRAPH_UTIL_HPP #define MAMBA_GRAPH_UTIL_HPP diff --git a/include/history.hpp b/include/history.hpp index f48e15840..0ed36edaa 100644 --- a/include/history.hpp +++ b/include/history.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_HISTORY #define MAMBA_HISTORY @@ -75,4 +81,4 @@ public: } -#endif \ No newline at end of file +#endif diff --git a/include/link.hpp b/include/link.hpp index 2e4f1d146..da1c4e36c 100644 --- a/include/link.hpp +++ b/include/link.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_LINK #define MAMBA_LINK @@ -59,4 +65,4 @@ private: } -#endif \ No newline at end of file +#endif diff --git a/include/match_spec.hpp b/include/match_spec.hpp index f0185c338..6942811eb 100644 --- a/include/match_spec.hpp +++ b/include/match_spec.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_MATCH_SPEC #define MAMBA_MATCH_SPEC diff --git a/include/output.hpp b/include/output.hpp index 45f054233..7d1f8a1fb 100644 --- a/include/output.hpp +++ b/include/output.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_OUTPUT_HPP #define MAMBA_OUTPUT_HPP diff --git a/include/package_cache.hpp b/include/package_cache.hpp index fe8191b5c..758b101df 100644 --- a/include/package_cache.hpp +++ b/include/package_cache.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_PACKAGE_CACHE #define MAMBA_PACKAGE_CACHE diff --git a/include/package_handling.hpp b/include/package_handling.hpp index 971bcd5cb..60793e1b0 100644 --- a/include/package_handling.hpp +++ b/include/package_handling.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_PACKAGE_HANDLING_HPP #define MAMBA_PACKAGE_HANDLING_HPP diff --git a/include/package_info.hpp b/include/package_info.hpp index 7034dc535..61a2d709d 100644 --- a/include/package_info.hpp +++ b/include/package_info.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_PACKAGE_INFO #define MAMBA_PACKAGE_INFO diff --git a/include/package_paths.hpp b/include/package_paths.hpp index 4d39ad4e9..57b8cfa57 100644 --- a/include/package_paths.hpp +++ b/include/package_paths.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_READ_PATHS_HPP #define MAMBA_READ_PATHS_HPP @@ -58,4 +64,4 @@ namespace mamba std::vector read_paths(const fs::path& directory); } -#endif \ No newline at end of file +#endif diff --git a/include/pool.hpp b/include/pool.hpp index c7d4e6950..116fab7b4 100644 --- a/include/pool.hpp +++ b/include/pool.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_POOL_HPP #define MAMBA_POOL_HPP diff --git a/include/prefix_data.hpp b/include/prefix_data.hpp index 60838b225..dd73247eb 100644 --- a/include/prefix_data.hpp +++ b/include/prefix_data.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_PREFIX_DATA_HPP #define MAMBA_PREFIX_DATA_HPP diff --git a/include/query.hpp b/include/query.hpp index 66885a5d2..42fc7ff76 100644 --- a/include/query.hpp +++ b/include/query.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_QUERY_HPP #define MAMBA_QUERY_HPP diff --git a/include/repo.hpp b/include/repo.hpp index cae4a6b45..601aee5ef 100644 --- a/include/repo.hpp +++ b/include/repo.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_REPO_HPP #define MAMBA_REPO_HPP diff --git a/include/shell_init.hpp b/include/shell_init.hpp index a843d634b..abc3a71a9 100644 --- a/include/shell_init.hpp +++ b/include/shell_init.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_SHELL_INIT #define MAMBA_SHELL_INIT diff --git a/include/solver.hpp b/include/solver.hpp index bea9625d6..6da8376cf 100644 --- a/include/solver.hpp +++ b/include/solver.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_SOLVER_HPP #define MAMBA_SOLVER_HPP diff --git a/include/subdirdata.hpp b/include/subdirdata.hpp index 1e07f7f00..2d034fb1a 100644 --- a/include/subdirdata.hpp +++ b/include/subdirdata.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_SUBDIRDATA_HPP #define MAMBA_SUBDIRDATA_HPP diff --git a/include/transaction.hpp b/include/transaction.hpp index 61ac6770b..97c9e0277 100644 --- a/include/transaction.hpp +++ b/include/transaction.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_TRANSACTION_HPP #define MAMBA_TRANSACTION_HPP diff --git a/include/transaction_context.hpp b/include/transaction_context.hpp index d41b21e6c..68d6b8e66 100644 --- a/include/transaction_context.hpp +++ b/include/transaction_context.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_TRANSACTION_CONTEXT #define MAMBA_TRANSACTION_CONTEXT diff --git a/include/url.hpp b/include/url.hpp index 18eb70dd3..13e579c76 100644 --- a/include/url.hpp +++ b/include/url.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_URL_HPP #define MAMBA_URL_HPP diff --git a/include/util.hpp b/include/util.hpp index 613d525eb..69aeccaf5 100644 --- a/include/util.hpp +++ b/include/util.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_UTIL_HPP #define MAMBA_UTIL_HPP diff --git a/include/validate.hpp b/include/validate.hpp index c003b1132..526a68bf1 100644 --- a/include/validate.hpp +++ b/include/validate.hpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifndef MAMBA_VALIDATE_HPP #define MAMBA_VALIDATE_HPP diff --git a/include/version.hpp.in b/include/version.hpp.in index 4fea698e8..aca08688e 100644 --- a/include/version.hpp.in +++ b/include/version.hpp.in @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #define MAMBA_VERSION_MAJOR @MAMBA_VERSION_MAJOR@ #define MAMBA_VERSION_MINOR @MAMBA_VERSION_MINOR@ #define MAMBA_VERSION_PATCH @MAMBA_VERSION_PATCH@ diff --git a/setup.py b/setup.py index e31f390b7..5e10f4afa 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,9 @@ +# Copyright (c) 2019, QuantStack and Mamba Contributors +# +# Distributed under the terms of the BSD 3-Clause License. +# +# The full license is in the file LICENSE, distributed with this software. + # -*- coding: utf-8 -*- from setuptools import setup, Extension diff --git a/src/activation.cpp b/src/activation.cpp index 5cd342fdc..70e3e3177 100644 --- a/src/activation.cpp +++ b/src/activation.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "activation.hpp" #include "environment.hpp" diff --git a/src/channel.cpp b/src/channel.cpp index 60b6461a9..65225adde 100644 --- a/src/channel.cpp +++ b/src/channel.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include #include diff --git a/src/context.cpp b/src/context.cpp index f6bd51b49..bb0e412ba 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include "output.hpp" diff --git a/src/environments_manager.cpp b/src/environments_manager.cpp index 2aae19afe..db457f97b 100644 --- a/src/environments_manager.cpp +++ b/src/environments_manager.cpp @@ -1 +1,7 @@ -#include "environments_manager.hpp" \ No newline at end of file +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + +#include "environments_manager.hpp" diff --git a/src/fetch.cpp b/src/fetch.cpp index b5accbbe4..9ff54c1f9 100644 --- a/src/fetch.cpp +++ b/src/fetch.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include diff --git a/src/history.cpp b/src/history.cpp index d4cec350e..73c0e0dd3 100644 --- a/src/history.cpp +++ b/src/history.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include "history.hpp" @@ -247,4 +253,4 @@ namespace mamba out << specs_output("neutered", entry.neutered); } } -} \ No newline at end of file +} diff --git a/src/link.cpp b/src/link.cpp index 07170d5c7..509b45352 100644 --- a/src/link.cpp +++ b/src/link.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include "link.hpp" diff --git a/src/main.cpp b/src/main.cpp index 39f2ee399..96d085db8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + // #include #include diff --git a/src/match_spec.cpp b/src/match_spec.cpp index 47f864aa6..42a0d0460 100644 --- a/src/match_spec.cpp +++ b/src/match_spec.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "match_spec.hpp" #include "output.hpp" #include "url.hpp" diff --git a/src/output.cpp b/src/output.cpp index 964a39161..b48be40b1 100644 --- a/src/output.cpp +++ b/src/output.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #ifdef _WIN32 #include #else diff --git a/src/package_cache.cpp b/src/package_cache.cpp index f050c3020..99e4a8085 100644 --- a/src/package_cache.cpp +++ b/src/package_cache.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "nlohmann/json.hpp" #include "validate.hpp" diff --git a/src/package_handling.cpp b/src/package_handling.cpp index d2fc044b6..3ca607b57 100644 --- a/src/package_handling.cpp +++ b/src/package_handling.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include diff --git a/src/package_info.cpp b/src/package_info.cpp index aa2703c2d..9c8d3348c 100644 --- a/src/package_info.cpp +++ b/src/package_info.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include diff --git a/src/package_paths.cpp b/src/package_paths.cpp index 2b8c9dc2f..83ec58d3b 100644 --- a/src/package_paths.cpp +++ b/src/package_paths.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "package_paths.hpp" #include "util.hpp" @@ -177,4 +183,4 @@ namespace mamba } return res; } -} \ No newline at end of file +} diff --git a/src/pool.cpp b/src/pool.cpp index 77b0133a0..a5dd32562 100644 --- a/src/pool.cpp +++ b/src/pool.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "pool.hpp" #include "output.hpp" diff --git a/src/prefix_data.cpp b/src/prefix_data.cpp index a7164735a..83ae13b16 100644 --- a/src/prefix_data.cpp +++ b/src/prefix_data.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "prefix_data.hpp" #include "output.hpp" diff --git a/src/py_interface.cpp b/src/py_interface.cpp index 7747b2eac..cba969e3c 100644 --- a/src/py_interface.cpp +++ b/src/py_interface.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include diff --git a/src/query.cpp b/src/query.cpp index c94509526..2cffc4689 100644 --- a/src/query.cpp +++ b/src/query.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include #include diff --git a/src/repo.cpp b/src/repo.cpp index 19c0a5d5c..1fe3b3dc1 100644 --- a/src/repo.cpp +++ b/src/repo.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "repo.hpp" #include "package_info.hpp" #include "output.hpp" diff --git a/src/solver.cpp b/src/solver.cpp index 6f9245a54..611b995e3 100644 --- a/src/solver.cpp +++ b/src/solver.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "solver.hpp" #include "output.hpp" #include "util.hpp" diff --git a/src/subdirdata.cpp b/src/subdirdata.cpp index 2a2ea46ba..4b4b0786c 100644 --- a/src/subdirdata.cpp +++ b/src/subdirdata.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "openssl/md5.h" #include "thirdparty/filesystem.hpp" diff --git a/src/transaction.cpp b/src/transaction.cpp index a09fbab06..2989ee3cb 100644 --- a/src/transaction.cpp +++ b/src/transaction.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include diff --git a/src/transaction_context.cpp b/src/transaction_context.cpp index 2d284d902..330e0d43d 100644 --- a/src/transaction_context.cpp +++ b/src/transaction_context.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "transaction_context.hpp" #include "output.hpp" #include "util.hpp" diff --git a/src/url.cpp b/src/url.cpp index bac5cbaeb..cc922e304 100644 --- a/src/url.cpp +++ b/src/url.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include diff --git a/src/util.cpp b/src/util.cpp index f50f8bc39..6bb5e6c5b 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include #include diff --git a/src/validate.cpp b/src/validate.cpp index c174f97df..0dd8a27c4 100644 --- a/src/validate.cpp +++ b/src/validate.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include #include "openssl/sha.h" #include "openssl/md5.h" diff --git a/src/version.cpp b/src/version.cpp index cf29274ef..851789f06 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2019, QuantStack and Mamba Contributors +// +// Distributed under the terms of the BSD 3-Clause License. +// +// The full license is in the file LICENSE, distributed with this software. + #include "version.hpp" const char mamba_version[] = MAMBA_VERSION_STRING;