summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/jquery/jquery_3.5.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@cn.fujitsu.com>2021-03-11 11:28:25 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-12 15:35:09 +0000
commit88c82eac7ef4a102528502a8d7316db65aa54890 (patch)
tree921a63864e0b87f64895858a260045b1ae9c0621 /meta/recipes-devtools/jquery/jquery_3.5.1.bb
parent473ba58c82ea9827eb3c68880fc3107e7179492b (diff)
downloadpoky-88c82eac7ef4a102528502a8d7316db65aa54890.tar.gz
jquery: upgrade 3.5.1 -> 3.6.0
License file updated: Copyright changed from "JS Foundation" to "OpenJS Foundation" Source code changed (From OE-Core rev: 67289ad7c93628d7576670121909ccc0aee157ed) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/jquery/jquery_3.5.1.bb')
-rw-r--r--meta/recipes-devtools/jquery/jquery_3.5.1.bb34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-devtools/jquery/jquery_3.5.1.bb b/meta/recipes-devtools/jquery/jquery_3.5.1.bb
deleted file mode 100644
index cfc32952cd..0000000000
--- a/meta/recipes-devtools/jquery/jquery_3.5.1.bb
+++ /dev/null
@@ -1,34 +0,0 @@
1SUMMARY = "jQuery is a fast, small, and feature-rich JavaScript library"
2HOMEPAGE = "https://jquery.com/"
3DESCRIPTION = "${SUMMARY}"
4LICENSE = "MIT"
5SECTION = "devel"
6LIC_FILES_CHKSUM = "file://${S}/${BP}.js;beginline=8;endline=10;md5=ebd7bc5d23ab165188e526a0c65d24bb"
7
8# unpack items to ${S} so the archiver can see them
9#
10SRC_URI = "\
11 https://code.jquery.com/${BP}.js;name=js;subdir=${BP} \
12 https://code.jquery.com/${BP}.min.js;name=min;subdir=${BP} \
13 https://code.jquery.com/${BP}.min.map;name=map;subdir=${BP} \
14 "
15
16SRC_URI[js.sha256sum] = "416a3b2c3bf16d64f6b5b6d0f7b079df2267614dd6847fc2f3271b4409233c37"
17SRC_URI[min.sha256sum] = "f7f6a5894f1d19ddad6fa392b2ece2c5e578cbf7da4ea805b6885eb6985b6e3d"
18SRC_URI[map.sha256sum] = "511d6f6d3e7acec78cd2505f04282b6e01329b4c24931f39d91739d0d1ddeef8"
19
20UPSTREAM_CHECK_REGEX = "jquery-(?P<pver>\d+(\.\d+)+)\.js"
21
22inherit allarch
23
24do_install() {
25 install -d ${D}${datadir}/javascript/${BPN}/
26 install -m 644 ${S}/${BP}.js ${D}${datadir}/javascript/${BPN}/${BPN}.js
27 install -m 644 ${S}/${BP}.min.js ${D}${datadir}/javascript/${BPN}/${BPN}.min.js
28 install -m 644 ${S}/${BP}.min.map ${D}${datadir}/javascript/${BPN}/${BPN}.min.map
29}
30
31PACKAGES = "${PN}"
32FILES_${PN} = "${datadir}"
33
34BBCLASSEXTEND += "native nativesdk"