From 21b5550d4243da4b597181096b8a3c304458624f Mon Sep 17 00:00:00 2001 From: Robert Spier Date: Thu, 23 Feb 2023 14:46:47 -0800 Subject: [PATCH] Reclassify CC-BY-ND as By Exception Only It does not satisfy the Open Source Definition because it does not allow modifications or derivations under the same terms as the original software. --- license_type.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/license_type.go b/license_type.go index c63199e..730b802 100644 --- a/license_type.go +++ b/license_type.go @@ -184,11 +184,6 @@ var ( // protected by such a license. restrictedType = sets.NewStringSet( BCL, - CCBYND10, - CCBYND20, - CCBYND25, - CCBYND30, - CCBYND40, CCBYSA10, CCBYSA20, CCBYSA25, @@ -333,6 +328,11 @@ var ( // fall into this category. byExceptionOnlyType = sets.NewStringSet( Beerware, + CCBYND10, + CCBYND20, + CCBYND25, + CCBYND30, + CCBYND40, OFL11, OpenVision, )