In godot-3.2.3.ebuild "BSL-1.1" is listed as one of the licenses, when in fact there is no such license listed in https://github.com/godotengine/godot/blob/d2148692bc5433a5d866bf59138b718c0fa6cae5/COPYRIGHT.txt. This causes portage to require adding BSL-1.1 to package.license when ACCEPT_LICENSE is set to @FREE. The closest license that could be possibly meant is BSL-1.0 (the license of ./thirdparty/misc/clipper.cpp), which is the Boost Software License 1.0 known as "Boost-1.0" in gentoo. If that's the case, the fix would be: diff --git a/dev-games/godot/godot-3.2.3.ebuild b/dev-games/godot/godot-3.2.3.ebuild index 88b5e170..dfc4eab8 100644 --- a/dev-games/godot/godot-3.2.3.ebuild +++ b/dev-games/godot/godot-3.2.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.tar.gz -> ${P S="${WORKDIR}/${P}-stable" KEYWORDS="~amd64 ~x86" -LICENSE="Apache-2.0 BSD BSL-1.1 CC-BY-3.0 MIT MPL-2.0 OFL-1.1 public-domain ZLIB" +LICENSE="Apache-2.0 BSD Boost-1.0 CC-BY-3.0 MIT MPL-2.0 OFL-1.1 public-domain ZLIB" SLOT="0" IUSE="+bullet debug +enet +freetype lto +mbedtls +ogg +opus pulseaudio +theora +udev +upnp +vorbis +webp"
This actually makes sense
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f14f97d12b4f07bc839f31d0c50c8acc23842a8 commit 5f14f97d12b4f07bc839f31d0c50c8acc23842a8 Author: Ross Charles Campbell <rossbridger.cc@gmail.com> AuthorDate: 2021-01-15 23:12:18 +0000 Commit: Ross Charles Campbell <rossbridger.cc@gmail.com> CommitDate: 2021-01-15 23:13:53 +0000 dev-games/godot: corrects LICENSE Closes: https://bugs.gentoo.org/765553 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Ross Charles Campbell <rossbridger.cc@gmail.com> dev-games/godot/godot-3.2.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)