From 768eb27079bc955f51ae0b59f279c74c7f91b840 Mon Sep 17 00:00:00 2001 From: Daniel Kochmanski Date: Fri, 10 Aug 2018 07:36:02 +0200 Subject: [PATCH] Remove "copyright" from examples/ Examples were relicensed (under permission from JJGR) to BSD-2-Clause a few years back. We also remove Copyright from individual files to match the convention that examples doesn't have that (whole codebase is under JJGR's copyright too). --- examples/asdf/readme.lisp | 8 -------- examples/build/hello.lisp | 8 -------- examples/build/hello_aux.c | 9 --------- examples/build/readme.lisp | 9 --------- examples/threads/import/import.c | 10 ---------- examples/threads/import_win32/import.c | 10 ---------- 6 files changed, 54 deletions(-) diff --git a/examples/asdf/readme.lisp b/examples/asdf/readme.lisp index a48e882f..c2d7927a 100644 --- a/examples/asdf/readme.lisp +++ b/examples/asdf/readme.lisp @@ -1,11 +1,3 @@ -;;; Copyright (c) 2005, Juan Jose Garcia-Ripoll -;;; -;;; This program is free software; you can redistribute it and/or -;;; modify it under the terms of the GNU Library General Public -;;; License as published by the Free Software Foundation; either -;;; version 2 of the License, or (at your option) any later version. -;;; -;;; See file '../../Copyright' for full details. ;;; ;;; This an extremely simple example of how to build standalone programs and ;;; unified fasl files from a system definition file. You should peruse this diff --git a/examples/build/hello.lisp b/examples/build/hello.lisp index c54dddd6..85f98842 100644 --- a/examples/build/hello.lisp +++ b/examples/build/hello.lisp @@ -1,11 +1,3 @@ -;;; Copyright (c) 2006, Juan Jose Garcia Ripoll. -;;; -;;; ECL is free software; you can redistribute it and/or -;;; modify it under the terms of the GNU Library General Public -;;; License as published by the Free Software Foundation; either -;;; version 2 of the License, or (at your option) any later version. -;;; -;;; See file '../Copyright' for full details. (ffi::clines "extern const char *hello_string;") diff --git a/examples/build/hello_aux.c b/examples/build/hello_aux.c index 5f3206bc..ca2a3d1d 100644 --- a/examples/build/hello_aux.c +++ b/examples/build/hello_aux.c @@ -1,11 +1,2 @@ -/* Copyright (c) 2006, Juan Jose Garcia Ripoll. - * - * ECL is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * See file '../Copyright' for full details. - */ const char *hello_string = "Hello world!"; diff --git a/examples/build/readme.lisp b/examples/build/readme.lisp index 396c3c55..ac9c2d8b 100644 --- a/examples/build/readme.lisp +++ b/examples/build/readme.lisp @@ -1,12 +1,3 @@ -;;; Copyright (c) 2006, Juan Jose Garcia Ripoll. -;;; -;;; ECL is free software; you can redistribute it and/or -;;; modify it under the terms of the GNU Library General Public -;;; License as published by the Free Software Foundation; either -;;; version 2 of the License, or (at your option) any later version. -;;; -;;; See file '../Copyright' for full details. - ;;; ;;; DESCRIPTION: ;;; diff --git a/examples/threads/import/import.c b/examples/threads/import/import.c index 6b4b2887..cd429040 100644 --- a/examples/threads/import/import.c +++ b/examples/threads/import/import.c @@ -1,16 +1,6 @@ /* import.c -- Execute Lisp code from C-generated threads */ -/* - Copyright (c) 2005, Juan Jose Garcia Ripoll. - - ECL is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - See file '../Copyright' for full details. -*/ #include #include diff --git a/examples/threads/import_win32/import.c b/examples/threads/import_win32/import.c index 1b4233cc..23a481bc 100644 --- a/examples/threads/import_win32/import.c +++ b/examples/threads/import_win32/import.c @@ -1,16 +1,6 @@ /* import.c -- Execute Lisp code from C-generated threads */ -/* - Copyright (c) 2005, Juan Jose Garcia Ripoll. - - ECL is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - See file '../Copyright' for full details. -*/ #include #include