diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-01-27 13:28:41 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-01-27 13:28:41 -0500 |
commit | 6aeb440d5e1e5155c866e91c3ec0f978122e8862 (patch) | |
tree | 255b80e401b6107f87e5d4c2a33e59b855efaea9 /meta-agl-profile-core/recipes-connectivity/neardal | |
parent | 4a9fc7b9d3af5f91a5f67d89685d79b0777f811f (diff) |
meta-agl-profile-core: update neardal recipe
Update neardal recipe to not use a github archive URL in its SRC_URI,
as this now triggers a QA warning due to such URLs being unstable.
Instead the git repository is used with the corresponding SRCREV for
version 0.14.
Bug-AGL: SPEC-2932
Change-Id: I56eaf984d573df5314ffb982c517aec66ae2f115
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'meta-agl-profile-core/recipes-connectivity/neardal')
-rw-r--r-- | meta-agl-profile-core/recipes-connectivity/neardal/neardal_0.14.bb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta-agl-profile-core/recipes-connectivity/neardal/neardal_0.14.bb b/meta-agl-profile-core/recipes-connectivity/neardal/neardal_0.14.bb index 8bec79e67..f8634c468 100644 --- a/meta-agl-profile-core/recipes-connectivity/neardal/neardal_0.14.bb +++ b/meta-agl-profile-core/recipes-connectivity/neardal/neardal_0.14.bb @@ -1,9 +1,10 @@ require neardal.inc -SRC_URI = "https://github.com/connectivity/neardal/archive/${PV}.tar.gz \ +SRC_URI = "git://github.com/connectivity/neardal.git;protocol=https \ file://ncl.patch \ file://0001-neardal-ncl-fix-segfault-on-help-page-being-displaye.patch \ file://0002-neardal-lib-fix-memory-corruption.patch \ " -SRC_URI[md5sum] = "3dbda58253ca30ee6a7a7573eaa68f40" -SRC_URI[sha256sum] = "157d320bd831d91a82203d9697d2d2a2cebdb515d6e1c4ce04fe8ef27d1da615" +SRCREV = "fe0fa79c94e9a0f1c2cfa1f58b3acc9bdc7d5e13" + +S = "${WORKDIR}/git" |