Selaa lähdekoodia

[legal] Add the MIT and ISC licenses to licence.pl

The MIT and ISC licenses are legally equivalent to the bsd2 license,
but with slightly different verbiage.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Michael Brown <mcb30@etherboot.org>
tags/v0.9.8
H. Peter Anvin 15 vuotta sitten
vanhempi
commit
5e1aa70301
1 muutettua tiedostoa jossa 25 lisäystä ja 0 poistoa
  1. 25
    0
      src/util/licence.pl

+ 25
- 0
src/util/licence.pl Näytä tiedosto

@@ -28,6 +28,8 @@ my $known_licences = {
28 28
       public_domain => 1,
29 29
       bsd3 => 1,
30 30
       bsd2 => 1,
31
+      mit  => 1,
32
+      isc  => 1,
31 33
     },
32 34
   },
33 35
   gpl2_or_later => {
@@ -37,6 +39,8 @@ my $known_licences = {
37 39
       public_domain => 1,
38 40
       bsd3 => 1,
39 41
       bsd2 => 1,
42
+      mit  => 1,
43
+      isc  => 1,
40 44
     },
41 45
   },
42 46
   gpl2_only => {
@@ -47,6 +51,8 @@ my $known_licences = {
47 51
       public_domain => 1,
48 52
       bsd3 => 1,
49 53
       bsd2 => 1,
54
+      mit  => 1,
55
+      isc  => 1,
50 56
     },
51 57
   },
52 58
   public_domain => {
@@ -59,6 +65,8 @@ my $known_licences = {
59 65
       public_domain => 1,
60 66
       bsd3 => 1,
61 67
       bsd2 => 1,
68
+      mit  => 1,
69
+      isc  => 1,
62 70
     },
63 71
   },
64 72
   bsd3 => {
@@ -66,10 +74,27 @@ my $known_licences = {
66 74
     can_subsume => {
67 75
       public_domain => 1,
68 76
       bsd2 => 1,
77
+      mit  => 1,
78
+      isc  => 1,
69 79
     },
70 80
   },
71 81
   bsd2 => {
72 82
     desc => "BSD Licence (without advertising or endorsement clauses)",
83
+    can_subsume => {
84
+      public_domain => 1,
85
+      mit  => 1,
86
+      isc  => 1,
87
+    },
88
+  },
89
+  mit => {
90
+    desc => "MIT/X11/Xorg Licence",
91
+    can_subsume => {
92
+      public_domain => 1,
93
+      isc => 1,
94
+    },
95
+  },
96
+  isc => {
97
+    desc => "ISC Licence",
73 98
     can_subsume => {
74 99
       public_domain => 1,
75 100
     },

Loading…
Peruuta
Tallenna