From 9cf2344eadaebc6cc33a385d3e338b247586d63c Mon Sep 17 00:00:00 2001 From: Simon Perkins Date: Mon, 4 Sep 2023 11:44:17 +0200 Subject: [PATCH] Explain provenance of code and relicensing of parts of pyms.cc from LGPLv3 to BSD-3 --- cpp/descriptor.cpp | 10 ++++++++++ cpp/table_factory.cpp | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/cpp/descriptor.cpp b/cpp/descriptor.cpp index 96fca4d0..e1ae5341 100644 --- a/cpp/descriptor.cpp +++ b/cpp/descriptor.cpp @@ -1,3 +1,13 @@ +/// Parts of this file were originally contributed to https://github.com/casacore/python-casacore +/// under a LGPLv3 license by https://github.com/sjperkins in the following PRs: +/// - https://github.com/casacore/python-casacore/pull/72 +/// - https://github.com/casacore/python-casacore/pull/183 +/// More generally https://github.com/sjperkins made all contributions +/// to pyms.cc up until python-casacore 3.5.2 +/// - https://github.com/casacore/python-casacore/commits/v3.5.2/src/pyms.cc +/// Parts of this code are relicensed here under the BSD-3 license +/// available at https://github.com/ratt-ru/arcae/blob/main/LICENSE + #ifndef ARCAE_DESCRIPTOR_H #define ARCAE_DESCRIPTOR_H diff --git a/cpp/table_factory.cpp b/cpp/table_factory.cpp index 18b395a5..73532173 100644 --- a/cpp/table_factory.cpp +++ b/cpp/table_factory.cpp @@ -1,3 +1,13 @@ +/// Parts of this file were originally contributed to https://github.com/casacore/python-casacore +/// under a LGPLv3 license by https://github.com/sjperkins in the following PRs: +/// - https://github.com/casacore/python-casacore/pull/72 +/// - https://github.com/casacore/python-casacore/pull/183 +/// More generally https://github.com/sjperkins made all contributions +/// to pyms.cc up until python-casacore 3.5.2 +/// - https://github.com/casacore/python-casacore/commits/v3.5.2/src/pyms.cc +/// Parts of this code are relicensed here under the BSD-3 license +/// available at https://github.com/ratt-ru/arcae/blob/main/LICENSE + #include #include "descriptor.h"