All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-oe] [PATCH] libjs-jquery-globalize: Add recipe
@ 2021-09-27  2:03 Zang Ruochen
  2021-09-27 17:50 ` Khem Raj
  0 siblings, 1 reply; 2+ messages in thread
From: Zang Ruochen @ 2021-09-27  2:03 UTC (permalink / raw)
  To: openembedded-devel

A JavaScript library for internationalization and localization that
leverages the official Unicode CLDR JSON data.

Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com>
---
 .../libjs/libjs-jquery-globalize_1.7.0.bb     | 24 +++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 meta-oe/recipes-support/libjs/libjs-jquery-globalize_1.7.0.bb

diff --git a/meta-oe/recipes-support/libjs/libjs-jquery-globalize_1.7.0.bb b/meta-oe/recipes-support/libjs/libjs-jquery-globalize_1.7.0.bb
new file mode 100644
index 0000000000..ec218299b2
--- /dev/null
+++ b/meta-oe/recipes-support/libjs/libjs-jquery-globalize_1.7.0.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "A JavaScript library for internationalization and localization that leverages the official Unicode CLDR JSON data"
+SECTION = "console/network"
+HOMEPAGE = "https://github.com/globalizejs/globalize"
+LICENSE = "MIT"
+
+S = "${WORKDIR}/globalize-${PV}"
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4db68fb4d1d9986d736b35039f2ad9ea"
+
+SRC_URI = "https://github.com/globalizejs/globalize/archive/refs/tags/${PV}.tar.gz"
+
+SRC_URI[sha256sum] = "51928dd6dbaceaab8cd89e7b430aa366b3029a8b70e74d4ca4be2d89cc929bab"
+
+FILES:${PN} = "${datadir}/javascript/jquery-globalize"
+FILES:${PN}-doc += "${docdir}/${PN}"
+
+do_install() {
+        install -d ${D}${datadir}/javascript/jquery-globalize/
+        install -m 0644 ${S}/dist/*.js ${D}${datadir}/javascript/jquery-globalize/
+        install -m 0644 ${S}/dist/globalize/*.js ${D}${datadir}/javascript/jquery-globalize/
+
+        install -d ${D}${docdir}/${PN}/
+        install -m 0644 ${S}/LICENSE ${D}${docdir}/${PN}/
+}
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [oe] [meta-oe] [PATCH] libjs-jquery-globalize: Add recipe
  2021-09-27  2:03 [oe] [meta-oe] [PATCH] libjs-jquery-globalize: Add recipe Zang Ruochen
@ 2021-09-27 17:50 ` Khem Raj
  0 siblings, 0 replies; 2+ messages in thread
From: Khem Raj @ 2021-09-27 17:50 UTC (permalink / raw)
  To: zangrc; +Cc: openembeded-devel

fails build QA check

https://errors.yoctoproject.org/Errors/Details/609178/

On Sun, Sep 26, 2021 at 7:03 PM zangrc <zangrc.fnst@fujitsu.com> wrote:
>
> A JavaScript library for internationalization and localization that
> leverages the official Unicode CLDR JSON data.
>
> Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com>
> ---
>  .../libjs/libjs-jquery-globalize_1.7.0.bb     | 24 +++++++++++++++++++
>  1 file changed, 24 insertions(+)
>  create mode 100644 meta-oe/recipes-support/libjs/libjs-jquery-globalize_1.7.0.bb
>
> diff --git a/meta-oe/recipes-support/libjs/libjs-jquery-globalize_1.7.0.bb b/meta-oe/recipes-support/libjs/libjs-jquery-globalize_1.7.0.bb
> new file mode 100644
> index 0000000000..ec218299b2
> --- /dev/null
> +++ b/meta-oe/recipes-support/libjs/libjs-jquery-globalize_1.7.0.bb
> @@ -0,0 +1,24 @@
> +DESCRIPTION = "A JavaScript library for internationalization and localization that leverages the official Unicode CLDR JSON data"
> +SECTION = "console/network"
> +HOMEPAGE = "https://github.com/globalizejs/globalize"
> +LICENSE = "MIT"
> +
> +S = "${WORKDIR}/globalize-${PV}"
> +
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=4db68fb4d1d9986d736b35039f2ad9ea"
> +
> +SRC_URI = "https://github.com/globalizejs/globalize/archive/refs/tags/${PV}.tar.gz"
> +
> +SRC_URI[sha256sum] = "51928dd6dbaceaab8cd89e7b430aa366b3029a8b70e74d4ca4be2d89cc929bab"
> +
> +FILES:${PN} = "${datadir}/javascript/jquery-globalize"
> +FILES:${PN}-doc += "${docdir}/${PN}"
> +
> +do_install() {
> +        install -d ${D}${datadir}/javascript/jquery-globalize/
> +        install -m 0644 ${S}/dist/*.js ${D}${datadir}/javascript/jquery-globalize/
> +        install -m 0644 ${S}/dist/globalize/*.js ${D}${datadir}/javascript/jquery-globalize/
> +
> +        install -d ${D}${docdir}/${PN}/
> +        install -m 0644 ${S}/LICENSE ${D}${docdir}/${PN}/
> +}
> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#93135): https://lists.openembedded.org/g/openembedded-devel/message/93135
> Mute This Topic: https://lists.openembedded.org/mt/85891854/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-27 17:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-27  2:03 [oe] [meta-oe] [PATCH] libjs-jquery-globalize: Add recipe Zang Ruochen
2021-09-27 17:50 ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.