diff options
author | Trevor Woerner <twoerner@gmail.com> | 2018-05-11 11:21:08 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-06-14 19:59:16 -0700 |
commit | dafba0a9a35f4b4539f76b3a3d5d8a1cd8843a75 (patch) | |
tree | 9aeef845e16925e5f7aedab63abd650ff1ab0509 /meta-oe/recipes-connectivity | |
parent | 734513d8b31cd68da01db1cf880788c190ae6457 (diff) | |
download | meta-openembedded-dafba0a9a35f4b4539f76b3a3d5d8a1cd8843a75.tar.gz |
libuv: switch away from github archive
Since we know that github archives which are automatically generated have a
tendency to change their checksums[1], switch to using a git clone.
[1] http://lists.openembedded.org/pipermail/openembedded-devel/2017-September/114916.html
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
(cherry picked from commit 0c37018e7bcf066361ca603c226833880d2a53c6)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity')
-rw-r--r-- | meta-oe/recipes-connectivity/libuv/libuv_1.11.0.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-oe/recipes-connectivity/libuv/libuv_1.11.0.bb b/meta-oe/recipes-connectivity/libuv/libuv_1.11.0.bb index 0a5846bb8..ca4685ab3 100644 --- a/meta-oe/recipes-connectivity/libuv/libuv_1.11.0.bb +++ b/meta-oe/recipes-connectivity/libuv/libuv_1.11.0.bb | |||
@@ -4,10 +4,10 @@ BUGTRACKER = "https://github.com/libuv/libuv/issues" | |||
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=bb5ea0d651f4c3519327171906045775" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=bb5ea0d651f4c3519327171906045775" |
6 | 6 | ||
7 | SRC_URI = "https://github.com/libuv/${BPN}/archive/v${PV}.tar.gz;downloadfilename=${BP}.tar.gz" | 7 | S = "${WORKDIR}/git" |
8 | 8 | SRCREV = "7452ef4e06a4f99ee26b694c65476401534f2725" | |
9 | SRC_URI[md5sum] = "15550a9f5f45f7f32ae2d9bb0a21a2a7" | 9 | BRANCH = "v1.x" |
10 | SRC_URI[sha256sum] = "6ec7eec6ecc24b1a8ffedebedb2fe9313fffb5410de89aaf784dd01080411c7a" | 10 | SRC_URI = "git://github.com/libuv/libuv.git;protocol=https;branch=${BRANCH};" |
11 | 11 | ||
12 | inherit autotools | 12 | inherit autotools |
13 | 13 | ||