From: Simon Kuenzer Date: Tue, 13 Jul 2021 19:21:45 +0000 (+0200) Subject: Correct license headers introduced by University Politehnica of Bucharest X-Git-Tag: RELEASE-0.6^0 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3d526bdb469c98a81bcb188298f0f118658984b9;p=unikraft%2Flibs%2Fpython3.git Correct license headers introduced by University Politehnica of Bucharest This commit removes the additional clause "THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY" from BSD license headers that got introduced by mistake with the following commits: 5772e54 - Add stubs.c for stubbed functions (Vlad-Andrei Badoiu) 2b241d4 - Add Makefile.uk (Vlad-Andrei Badoiu) ab18836 - Add init.c for initialization (Vlad-Andrei Badoiu) On the one hand, this additional clause is redundant because the BSD license already states that it must remain and the copyright notice must be kept. On the other hand, the clause freezes the file header and prohibits future contributors from extending the copyright notice for their contributions. This additional clause is not part of the official BSD 3-clause. The original author(s) or an authorized representative from the author's affiliation consents to the change with a `Reviewed-by` tag to this commit. Signed-off-by: Simon Kuenzer Reviewed-by: Razvan Deaconescu --- diff --git a/Makefile.uk b/Makefile.uk index efd58a1..d0bde0b 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -32,8 +32,6 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # -# THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. -# ################################################################################ # Library registration diff --git a/include/Python.h b/include/Python.h index 9368955..9d79814 100644 --- a/include/Python.h +++ b/include/Python.h @@ -28,8 +28,6 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. */ #ifndef __GLUE_Python_H__ diff --git a/init.c b/init.c index bc06279..2ae151b 100644 --- a/init.c +++ b/init.c @@ -28,8 +28,6 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. */ #include diff --git a/stubs.c b/stubs.c index e390792..409b2be 100644 --- a/stubs.c +++ b/stubs.c @@ -28,8 +28,6 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. */ void PyOS_BeforeFork(void)