summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYoann Congal <yoann.congal@smile.fr>2025-10-10 01:39:58 +0200
committerKhem Raj <raj.khem@gmail.com>2025-10-09 18:13:04 -0700
commitb9471f4967c3d8ca828907c2fa41ea86b57efb97 (patch)
tree16147029e883fc5588121b5b1900b9361884327c
parent9619695788163b71df8d631ccdd8b1d37f2c0f89 (diff)
downloadmeta-openembedded-b9471f4967c3d8ca828907c2fa41ea86b57efb97.tar.gz
monocypher: prepend MIRRORS instead of overwriting
Overwriting (instead of extending) MIRRORS in a recipe prevent user from using default Yocto Project mirrors (https://downloads.yoctoproject.org/mirror/sources/) As a side-effect, it might fix meta-oe-mirror build for monocypher [0]. [0]: https://autobuilder.yoctoproject.org/valkyrie/#/builders/82/builds/469 Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-crypto/monocypher/monocypher_4.0.2.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-crypto/monocypher/monocypher_4.0.2.bb b/meta-oe/recipes-crypto/monocypher/monocypher_4.0.2.bb
index a601d88e7c..178f273ae6 100644
--- a/meta-oe/recipes-crypto/monocypher/monocypher_4.0.2.bb
+++ b/meta-oe/recipes-crypto/monocypher/monocypher_4.0.2.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.md;md5=ff30a1c41dfd9e6fa559a9e45ee98302"
9SRC_URI = "https://monocypher.org/download/${BPN}-${PV}.tar.gz" 9SRC_URI = "https://monocypher.org/download/${BPN}-${PV}.tar.gz"
10SRC_URI[sha512sum] = "bf275d4c53ff94af6cdc723a4e002e9f080f4d1436c86c76bb37870b34807f1d7b32331d8ff8a1aeb369e946f3769021e03e63efac25b82efc5abf54dc084714" 10SRC_URI[sha512sum] = "bf275d4c53ff94af6cdc723a4e002e9f080f4d1436c86c76bb37870b34807f1d7b32331d8ff8a1aeb369e946f3769021e03e63efac25b82efc5abf54dc084714"
11 11
12MIRRORS = "https://.*/.* https://github.com/LoupVaillant/Monocypher/releases/download/${PV}/${BPN}-${PV}.tar.gz " 12MIRRORS =+ "https://.*/.* https://github.com/LoupVaillant/Monocypher/releases/download/${PV}/${BPN}-${PV}.tar.gz"
13 13
14S = "${UNPACKDIR}/${BPN}-${PV}" 14S = "${UNPACKDIR}/${BPN}-${PV}"
15 15