File 1136-wings-add-missing-license.patch of Package erlang
From bba7a28f67ebb4e1276bdc39a5d3ab2a50588bc7 Mon Sep 17 00:00:00 2001
From: Kiko Fernandez-Reyes <kiko@erlang.org>
Date: Fri, 15 Nov 2024 10:42:58 +0100
Subject: [PATCH 1/2] wings: add missing license
---
.../test/opaque_SUITE_data/results/wings | 20 ++++-----
.../opaque_SUITE_data/src/wings/wings.hrl | 39 +++++++++++++++++
.../src/wings/wings_dissolve.erl | 39 +++++++++++++++++
.../src/wings/wings_edge.erl | 40 ++++++++++++++++++
.../src/wings/wings_edge_cmd.erl | 40 ++++++++++++++++++
.../src/wings/wings_face.erl | 40 ++++++++++++++++++
.../src/wings/wings_facemat.erl | 42 ++++++++++++++++++-
.../src/wings/wings_intl.hrl | 40 ++++++++++++++++++
.../opaque_SUITE_data/src/wings/wings_io.erl | 40 ++++++++++++++++++
.../opaque_SUITE_data/src/wings/wings_sel.erl | 40 ++++++++++++++++++
.../src/wings/wings_shape.erl | 40 ++++++++++++++++++
.../src/wings/wings_util.erl | 40 ++++++++++++++++++
.../opaque_SUITE_data/src/wings/wings_we.erl | 40 ++++++++++++++++++
13 files changed, 488 insertions(+), 12 deletions(-)
diff --git a/lib/dialyzer/test/opaque_SUITE_data/results/wings b/lib/dialyzer/test/opaque_SUITE_data/results/wings
index 8cb4602e3d..f95916e680 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/results/wings
+++ b/lib/dialyzer/test/opaque_SUITE_data/results/wings
@@ -1,11 +1,11 @@
-wings_dissolve.erl:103:30: Guard test is_list(List::gb_sets:set(_)) breaks the opacity of its argument
-wings_dissolve.erl:19:21: Guard test is_list(Faces::gb_sets:set(_)) breaks the opacity of its argument
-wings_dissolve.erl:272:45: Guard test is_list(Faces::gb_sets:set(_)) breaks the opacity of its argument
-wings_dissolve.erl:31:27: The call gb_sets:is_empty(Faces::[any(),...]) does not have an opaque term of type gb_sets:set(_) as 1st argument
-wings_edge.erl:205:1: The pattern <Edge, 'hard', Htab> can never match the type <_,'soft',_>
-wings_edge_cmd.erl:30:31: The call gb_trees:size(P::gb_sets:set(_)) does not have an opaque term of type gb_trees:tree(_,_) as 1st argument
-wings_edge_cmd.erl:32:18: The pattern [{_, P} | _] can never match the type []
-wings_edge_cmd.erl:32:6: The pattern [_ | Parts] can never match the type []
-wings_io.erl:30:2: The attempt to match a term of type {'empty',queue:queue(_)} against the pattern {'empty', {In, Out}} breaks the opacity of queue:queue(_)
-wings_we.erl:155:37: The call wings_util:gb_trees_largest_key(Etab::gb_trees:tree(_,_)) contains an opaque term as 1st argument when a structured term of type {_,{_,_,_,'nil' | {_,_,_,'nil' | {_,_,_,_}}}} is expected
+wings_dissolve.erl:142:30: Guard test is_list(List::gb_sets:set(_)) breaks the opacity of its argument
+wings_dissolve.erl:311:45: Guard test is_list(Faces::gb_sets:set(_)) breaks the opacity of its argument
+wings_dissolve.erl:58:21: Guard test is_list(Faces::gb_sets:set(_)) breaks the opacity of its argument
+wings_dissolve.erl:70:27: The call gb_sets:is_empty(Faces::[any(),...]) does not have an opaque term of type gb_sets:set(_) as 1st argument
+wings_edge.erl:245:1: The pattern <Edge, 'hard', Htab> can never match the type <_,'soft',_>
+wings_edge_cmd.erl:70:31: The call gb_trees:size(P::gb_sets:set(_)) does not have an opaque term of type gb_trees:tree(_,_) as 1st argument
+wings_edge_cmd.erl:72:18: The pattern [{_, P} | _] can never match the type []
+wings_edge_cmd.erl:72:6: The pattern [_ | Parts] can never match the type []
+wings_io.erl:70:2: The attempt to match a term of type {'empty',queue:queue(_)} against the pattern {'empty', {In, Out}} breaks the opacity of queue:queue(_)
+wings_we.erl:195:37: The call wings_util:gb_trees_largest_key(Etab::gb_trees:tree(_,_)) contains an opaque term as 1st argument when a structured term of type {_,{_,_,_,'nil' | {_,_,_,'nil' | {_,_,_,_}}}} is expected
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings.hrl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings.hrl
index b815be5e1d..4d532bf30d 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings.hrl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings.hrl
@@ -1,3 +1,42 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
%%
%% wings.hrl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_dissolve.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_dissolve.erl
index c469f0a45d..6f70dca123 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_dissolve.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_dissolve.erl
@@ -1,3 +1,42 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
%%
%% wings_dissolve.erl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_edge.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_edge.erl
index 3483acb711..4419c603d7 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_edge.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_edge.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_edge.erl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_edge_cmd.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_edge_cmd.erl
index 91fa5b2a39..bd2e7863ae 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_edge_cmd.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_edge_cmd.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_edge.erl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_face.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_face.erl
index 487c05aa58..88071c530c 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_face.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_face.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_face.erl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_facemat.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_facemat.erl
index a3fa5e3508..395478fe24 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_facemat.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_facemat.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_facemat.erl --
%%
@@ -11,8 +51,6 @@
%%
%% $Id: wings_facemat.erl,v 1.1 2009/01/25 18:55:33 kostis Exp $
%%
-%%
-%%
-module(wings_facemat).
-export([all/1,face/2,used_materials/1,mat_faces/2,
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_intl.hrl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_intl.hrl
index ebcb560f27..141eef0da7 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_intl.hrl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_intl.hrl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_intl.hrl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_io.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_io.erl
index 39002c675d..4e253783bb 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_io.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_io.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_io.erl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_sel.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_sel.erl
index eef797027e..9fae212f6b 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_sel.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_sel.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_sel.erl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_shape.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_shape.erl
index 0df8ca68eb..099c10ae0e 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_shape.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_shape.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_shape.erl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_util.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_util.erl
index 6b825d85fe..2b7b8190e7 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_util.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_util.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_util.erl --
%%
diff --git a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_we.erl b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_we.erl
index 6a93363445..2b42911e73 100644
--- a/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_we.erl
+++ b/lib/dialyzer/test/opaque_SUITE_data/src/wings/wings_we.erl
@@ -1,3 +1,43 @@
+%% This software is copyrighted by Bjorn Gustavsson, and other parties.
+%% The following terms apply to all files associated with the software unless
+%% explicitly disclaimed in individual files.
+%%
+%% The authors hereby grant permission to use, copy, modify, distribute,
+%% and license this software and its documentation for any purpose, provided
+%% that existing copyright notices are retained in all copies and that this
+%% notice is included verbatim in any distributions. No written agreement,
+%% license, or royalty fee is required for any of the authorized uses.
+%% Modifications to this software may be copyrighted by their authors
+%% and need not follow the licensing terms described here, provided that
+%% the new terms are clearly indicated on the first page of each file where
+%% they apply.
+%%
+%% IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+%% FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+%% ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+%% DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+%% POSSIBILITY OF SUCH DAMAGE.
+%%
+%% THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+%% FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+%% IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+%% NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+%% MODIFICATIONS.
+%%
+%% GOVERNMENT USE: If you are acquiring this software on behalf of the
+%% U.S. government, the Government shall have only "Restricted Rights"
+%% in the software and related documentation as defined in the Federal
+%% Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+%% are acquiring the software on behalf of the Department of Defense, the
+%% software shall be classified as "Commercial Computer Software" and the
+%% Government shall have only "Restricted Rights" as defined in Clause
+%% 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+%% authors grant the U.S. Government and others acting in its behalf
+%% permission to use and distribute the software in accordance with the
+%% terms specified in this license.
+
+
%%
%% wings_we.erl --
%%
--
2.43.0