Open mark-bchoi opened 2 months ago
I could change LICENSE = "BSD" to LICENSE = "0BSD" with command in advance.
grep -rn LICENSE\ \=\ \"BSD\" * | cut -d : -f 1 | xargs sed -i s/LICENSE\ \=\ \"BSD\"/LICENSE\ \=\ \"0BSD\"/g
A simple workaround is:
poky/meta$ cp files/common-licenses/BSD-3-Clause files/common-licenses/BSD
The community removed the BSD license in Scarthgap, so this broad license cannot be used in the future https://git.yoctoproject.org/poky/commit/?h=scarthgap&id=56fe6d575e184ed44807fe27e069233da36962ad
The correct solution would be to change the license to concrete names such as "BSD-3-Clause".
Not to rename the BSD-3-Clause to BSD...
The community removed the BSD license in Scarthgap, so this broad license cannot be used in the future https://git.yoctoproject.org/poky/commit/?h=scarthgap&id=56fe6d575e184ed44807fe27e069233da36962ad
The correct solution would be to change the license to concrete names such as "BSD-3-Clause".
Not to rename the BSD-3-Clause to BSD...
As i mentioned in #1208, there are multiple BSD variant used by ROS packages. It's good to have a method to parse and use accurate LICENSEN in superflore process.
Please see https://github.com/ros-infrastructure/catkin_pkg/pull/296 https://github.com/ros/rosdistro/pull/26601 and https://github.com/ros-infrastructure/superflore/pull/279
I don't work on ROS anymore but it indeed needs to be fixed by ROS component owners and QA check in catkin was supposed to incrementally motivate them to update license when updating the version.
Hi,
There are many license issues by filtered by SPDX license policy which would be added by scarthgap branch. I modified them manually but, I am not sure it is correct approach.
License issues by SPDX license , for example, one of them :
This error was from
LICENSE = "BSD"
which was not problematic for the previous branch, kirkstone.Can you please let me know whether there is some way to turn checking SPDX license off or not?
My bitbake layer for ros2 and openembedded commit ids are :
BR, Mark