Procházet zdrojové kódy

[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 před 15 roky
rodič
revize
5e1aa70301
1 změnil soubory, kde provedl 25 přidání a 0 odebrání
  1. 25
    0
      src/util/licence.pl

+ 25
- 0
src/util/licence.pl Zobrazit soubor

28
       public_domain => 1,
28
       public_domain => 1,
29
       bsd3 => 1,
29
       bsd3 => 1,
30
       bsd2 => 1,
30
       bsd2 => 1,
31
+      mit  => 1,
32
+      isc  => 1,
31
     },
33
     },
32
   },
34
   },
33
   gpl2_or_later => {
35
   gpl2_or_later => {
37
       public_domain => 1,
39
       public_domain => 1,
38
       bsd3 => 1,
40
       bsd3 => 1,
39
       bsd2 => 1,
41
       bsd2 => 1,
42
+      mit  => 1,
43
+      isc  => 1,
40
     },
44
     },
41
   },
45
   },
42
   gpl2_only => {
46
   gpl2_only => {
47
       public_domain => 1,
51
       public_domain => 1,
48
       bsd3 => 1,
52
       bsd3 => 1,
49
       bsd2 => 1,
53
       bsd2 => 1,
54
+      mit  => 1,
55
+      isc  => 1,
50
     },
56
     },
51
   },
57
   },
52
   public_domain => {
58
   public_domain => {
59
       public_domain => 1,
65
       public_domain => 1,
60
       bsd3 => 1,
66
       bsd3 => 1,
61
       bsd2 => 1,
67
       bsd2 => 1,
68
+      mit  => 1,
69
+      isc  => 1,
62
     },
70
     },
63
   },
71
   },
64
   bsd3 => {
72
   bsd3 => {
66
     can_subsume => {
74
     can_subsume => {
67
       public_domain => 1,
75
       public_domain => 1,
68
       bsd2 => 1,
76
       bsd2 => 1,
77
+      mit  => 1,
78
+      isc  => 1,
69
     },
79
     },
70
   },
80
   },
71
   bsd2 => {
81
   bsd2 => {
72
     desc => "BSD Licence (without advertising or endorsement clauses)",
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
     can_subsume => {
98
     can_subsume => {
74
       public_domain => 1,
99
       public_domain => 1,
75
     },
100
     },

Načítá se…
Zrušit
Uložit