1
0
mirror of https://github.com/bitcoin/bips.git synced 2026-01-19 15:03:08 +00:00

process: Use "official" SPDX identifiers

See https://spdx.org/licenses/
This commit is contained in:
Tim Ruffing 2025-10-22 21:32:52 +02:00 committed by Murch
parent 764409cb37
commit 8586c32fa2
No known key found for this signature in database
GPG Key ID: 7BA035CA5B901713
8 changed files with 10 additions and 9 deletions

View File

@ -5,7 +5,7 @@
Status: Closed
Type: Process
Assigned: 2016-02-03
License: BSD-2-Clause OR OPL
License: BSD-2-Clause OR OPUBL-1.0
Replaces: 1
Proposed-Replacement: 3
</pre>

View File

@ -7,7 +7,7 @@
Status: Draft
Type: Specification
Assigned: 2021-05-13
License: BSD-2-Clause OR OPL
License: BSD-2-Clause OR OPUBL-1.0
</pre>

View File

@ -7,7 +7,7 @@
Status: Deployed
Type: Informational
Assigned: 2020-03-20
License: BSD-2-Clause OR OPL
License: BSD-2-Clause OR OPUBL-1.0
</pre>
==Abstract==

View File

@ -6,7 +6,7 @@
Status: Closed
Type: Specification
Assigned: 2017-01-13
License: BSD-2-Clause OR GNU-All-Permissive
License: BSD-2-Clause OR FSFAP
</pre>
==Abstract==

View File

@ -5,7 +5,7 @@
Status: Deployed
Type: Process
Assigned: 2015-08-26
License: CC0-1.0 OR GNU-All-Permissive
License: CC0-1.0 OR FSFAP
</pre>
==Abstract==

View File

@ -5,7 +5,7 @@
Status: Closed
Type: Informational
Assigned: 2017-03-29
License: CC0-1.0 OR GNU-All-Permissive
License: CC0-1.0 OR FSFAP
Discussion: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2017-April/013969.html
https://bitco.in/forum/threads/bip9-generalized-version-bits-voting-bip-genvbvoting.1968/
Replaces: 9

View File

@ -6,7 +6,7 @@
Status: Deployed
Type: Specification
Assigned: 2016-01-30
License: BSD-2-Clause OR OPL
License: BSD-2-Clause OR OPUBL-1.0
</pre>
==Abstract==

View File

@ -89,7 +89,7 @@ my %AcceptableLicenses = (
'BSD-2-Clause' => undef,
'BSD-3-Clause' => undef,
'CC0-1.0' => undef,
'GNU-All-Permissive' => undef,
'FSFAP' => undef,
'MIT' => undef,
'CC-BY-4.0' => undef,
'Apache-2.0' => undef,
@ -105,7 +105,8 @@ my %DefinedLicenses = (
'GPL-2.0+' => undef,
'LGPL-2.1' => undef,
'LGPL-2.1+' => undef,
'OPL' => undef,
'OPUBL-1.0' => undef,
# There's no identifier for "Public Domain" in the SPDX list but "PD" is used in some BIPs.
'PD' => undef,
);
my %GrandfatheredPD = map { $_ => undef } qw(9 36 37 38 42 49 50 60 65 67 69 74 80 81 83 90 99 105 107 109 111 112 113 114 122 124 125 126 130 131 132 133 140 141 142 143 144 146 147 150 151 152);