]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
python3-jsonpointer: upgrade 2.4 -> 3.0.0
authorRoss Burton <ross.burton@arm.com>
Wed, 24 Jul 2024 19:01:36 +0000 (20:01 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 26 Jul 2024 10:54:28 +0000 (11:54 +0100)
Also re-arrange the recipe to match conventional order.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/python/python3-jsonpointer_3.0.0.bb [moved from meta/recipes-devtools/python/python3-jsonpointer_2.4.bb with 85% similarity]

similarity index 85%
rename from meta/recipes-devtools/python/python3-jsonpointer_2.4.bb
rename to meta/recipes-devtools/python/python3-jsonpointer_3.0.0.bb
index 062fa5243f99e4d84e680539c40ed605af16698d..0a23dc310027e0c3bd9ac547da0911a613e0f651 100644 (file)
@@ -5,16 +5,18 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=32b15c843b7a329130f4e266a281ebb3"
 
 inherit pypi ptest setuptools3
 
-SRC_URI[sha256sum] = "585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"
+SRC_URI[sha256sum] = "2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"
 
-RDEPENDS:${PN} += " \
-    python3-json \
+SRC_URI += " \
+       file://run-ptest \
 "
 
-BBCLASSEXTEND = "native nativesdk"
+do_install_ptest() {
+       cp -f ${S}/tests.py ${D}${PTEST_PATH}/
+}
 
-SRC_URI += " \
-       file://run-ptest \
+RDEPENDS:${PN} += " \
+    python3-json \
 "
 
 RDEPENDS:${PN}-ptest += " \
@@ -23,6 +25,4 @@ RDEPENDS:${PN}-ptest += " \
        python3-unittest-automake-output \
 "
 
-do_install_ptest() {
-       cp -f ${S}/tests.py ${D}${PTEST_PATH}/
-}
+BBCLASSEXTEND = "native nativesdk"