From: Denys Dmytriyenko <[email protected]> 1. Explicitly specify branch in git URL 2. Use the correct SPDX license identifier
Fixes these warnings: | WARNING: libredblack_git.bb: URL: git://github.com/sysrepo/libredblack.git;protocol=https does not set any branch parameter. The future default branch used by tools and repositories is uncertain and we will therefore soon require this is set in all git urls. | WARNING: libredblack-1.0+gitAUTOINC+a399310d99-r0 do_package_qa: QA Issue: Recipe LICENSE includes obsolete licenses LGPLv2.1 [obsolete-license] Signed-off-by: Denys Dmytriyenko <[email protected]> --- .../recipes-sysrepo/libredblack/libredblack_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-extras/recipes-sysrepo/libredblack/libredblack_git.bb b/meta-arago-extras/recipes-sysrepo/libredblack/libredblack_git.bb index ea51b618..f073aa06 100644 --- a/meta-arago-extras/recipes-sysrepo/libredblack/libredblack_git.bb +++ b/meta-arago-extras/recipes-sysrepo/libredblack/libredblack_git.bb @@ -1,9 +1,9 @@ SUMMARY = "Library for handling red-black tree searching algorithm" DESCRIPTION = "A library to provide the RedBlack balanced tree searching and sorting algorithm." -LICENSE = "LGPLv2.1" +LICENSE = "LGPL-2.1-only" LIC_FILES_CHKSUM = "file://COPYING;md5=de174fb5a92cdbe038c88dc4c4316f99" -SRC_URI = "git://github.com/sysrepo/libredblack.git;protocol=https" +SRC_URI = "git://github.com/sysrepo/libredblack.git;protocol=https;branch=master" PV = "1.0+git${SRCPV}" SRCREV = "a399310d99b61eec4d3c0677573ab5dddcf9395d" -- 2.25.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14752): https://lists.yoctoproject.org/g/meta-arago/message/14752 Mute This Topic: https://lists.yoctoproject.org/mt/99975382/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/leave/10763299/21656/89520264/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
