Skip to content

Commit

Permalink
Merge pull request #87 from jvolkening/bsd_fix
Browse files Browse the repository at this point in the history
use valid SPDX identifier for BSD license
  • Loading branch information
Leont authored Feb 8, 2024
2 parents 36e9877 + aeeeddc commit 478a512
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Software/License/BSD.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sub name { 'The (three-clause) BSD License' }
sub url { 'http://opensource.org/licenses/BSD-3-Clause' }
sub meta_name { 'bsd' }
sub meta2_name { 'bsd' }
sub spdx_expression { 'BSD' }
sub spdx_expression { 'BSD-3-Clause' }

1;
__DATA__
Expand Down
2 changes: 1 addition & 1 deletion t/spdx-expression.t
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ is (scalar(Software::License::Artistic_2_0->spdx_expression()),
);

is (scalar(Software::License::BSD->spdx_expression()),
'BSD',
'BSD-3-Clause',
"BSD->spdx_expression() is OK."
);

Expand Down

0 comments on commit 478a512

Please sign in to comment.