diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-01-22 21:55:20 +0100 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2021-01-28 17:30:42 -0800 |
commit | f9f3bacac75a7aaebfb5de89adfb4c9f640bb03f (patch) | |
tree | 1a00a4a7e15d24d9c24ba0be3f87d40c6f659adb /meta-networking/recipes-daemons/networkd-dispatcher | |
parent | 80c0a5fff685f5c5b8f484fbba3d6837912a31b7 (diff) | |
download | meta-openembedded-contrib-f9f3bacac75a7aaebfb5de89adfb4c9f640bb03f.tar.gz |
networkd-dispatcher: use git fetcher
* now the gitlab QA check was backported to dunfell as well in:
https://git.openembedded.org/openembedded-core/commit/?h=dunfell&id=72f2c45880afbba1745e5e0cbd841d7fd666f374
and this started failing with:
ERROR: networkd-dispatcher-2.0.1-r0 do_package_qa: QA Issue: networkd-dispatcher: SRC_URI uses unstable GitHub/GitLab archives, convert recipe to use git protocol [src-uri-bad]
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons/networkd-dispatcher')
-rw-r--r-- | meta-networking/recipes-daemons/networkd-dispatcher/networkd-dispatcher_2.0.1.bb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta-networking/recipes-daemons/networkd-dispatcher/networkd-dispatcher_2.0.1.bb b/meta-networking/recipes-daemons/networkd-dispatcher/networkd-dispatcher_2.0.1.bb index 6b73506c2a..61d656b7ca 100644 --- a/meta-networking/recipes-daemons/networkd-dispatcher/networkd-dispatcher_2.0.1.bb +++ b/meta-networking/recipes-daemons/networkd-dispatcher/networkd-dispatcher_2.0.1.bb @@ -12,9 +12,10 @@ inherit features_check systemd RDEPENDS_${PN} = "python3-pygobject python3-dbus" REQUIRED_DISTRO_FEATURES = "systemd" -SRC_URI = "https://gitlab.com/craftyguy/networkd-dispatcher/-/archive/${PV}/networkd-dispatcher-${PV}.tar.bz2" -SRC_URI[md5sum] = "304d7dcc21331ea295e207f8493cb8d8" -SRC_URI[sha256sum] = "21f84c3646a043329dc64787e4e58dfce592b2559b0e3069af82c469805660c2" +SRCREV = "333ef1ed1d7c7c17264fcf7629e5c2f78ab4112c" +SRC_URI = "git://gitlab.com/craftyguy/networkd-dispatcher;protocol=https" + +S = "${WORKDIR}/git" SYSTEMD_PACKAGES = "${PN}" SYSTEMD_SERVICE_${PN} = "networkd-dispatcher.service" |