All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] libjansson: Initial support
@ 2017-05-17 22:24 Marian Pritsak
  2017-05-17 22:25 ` [PATCH 1/1] " Marian Pritsak
  0 siblings, 1 reply; 3+ messages in thread
From: Marian Pritsak @ 2017-05-17 22:24 UTC (permalink / raw)
  To: poky

The following changes since commit 2568e18701fb20d7105eb6e4929f3aff4b9f9c06:

  byacc: remove the recipe (2017-05-16 14:08:30 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib marianp/jansson
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=marianp/jansson

Marian Pritsak (1):
  libjansson: Initial support

 meta/recipes-core/libjansson/libjansson_2.10.bb | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 meta/recipes-core/libjansson/libjansson_2.10.bb

-- 
2.7.4



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

* [PATCH 1/1] libjansson: Initial support
  2017-05-17 22:24 [PATCH 0/1] libjansson: Initial support Marian Pritsak
@ 2017-05-17 22:25 ` Marian Pritsak
  2017-05-17 23:39   ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Marian Pritsak @ 2017-05-17 22:25 UTC (permalink / raw)
  To: poky

Integrate libjansson v2.10 - C library for encoding, decoding and manipulating
JSON data

Signed-off-by: Marian Pritsak <maryan.pricak@gmail.com>
---
 meta/recipes-core/libjansson/libjansson_2.10.bb | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 meta/recipes-core/libjansson/libjansson_2.10.bb

diff --git a/meta/recipes-core/libjansson/libjansson_2.10.bb b/meta/recipes-core/libjansson/libjansson_2.10.bb
new file mode 100644
index 0000000..c49ab35e
--- /dev/null
+++ b/meta/recipes-core/libjansson/libjansson_2.10.bb
@@ -0,0 +1,22 @@
+SUMMARY = "Jansson is a C library for encoding, decoding and manipulating JSON data"
+SECTION = "libs"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=8b70213ec164c7bd876ec2120ba52f61"
+
+SRC_URI = "git://github.com/akheron/jansson.git \
+"
+
+SRCREV = "b23201bb1a566d7e4ea84b76b3dcf2efcc025dac"
+
+S = "${WORKDIR}/git"
+
+inherit autotools pkgconfig
+
+FILES_${PN} += "${libdir}/libjansson.so.* \
+"
+FILES_${PN}-dev += "${includedir}/jansson.h \
+                    ${includedir}/jansson_config.h \
+                    ${libdir}/libjansson.so \
+                    ${libdir}/libjansson.la \
+"
+
-- 
2.7.4



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

* Re: [PATCH 1/1] libjansson: Initial support
  2017-05-17 22:25 ` [PATCH 1/1] " Marian Pritsak
@ 2017-05-17 23:39   ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2017-05-17 23:39 UTC (permalink / raw)
  To: Marian Pritsak; +Cc: poky@yoctoproject.org

On Wed, May 17, 2017 at 3:25 PM, Marian Pritsak <maryan.pricak@gmail.com> wrote:
> Integrate libjansson v2.10 - C library for encoding, decoding and manipulating
> JSON data

take a look at http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/recipes-extended/jansson/jansson_2.9.bb?h=master

and post a recipe upgrade to meta-oe using oe-devel mailing list

>
> Signed-off-by: Marian Pritsak <maryan.pricak@gmail.com>
> ---
>  meta/recipes-core/libjansson/libjansson_2.10.bb | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>  create mode 100644 meta/recipes-core/libjansson/libjansson_2.10.bb
>
> diff --git a/meta/recipes-core/libjansson/libjansson_2.10.bb b/meta/recipes-core/libjansson/libjansson_2.10.bb
> new file mode 100644
> index 0000000..c49ab35e
> --- /dev/null
> +++ b/meta/recipes-core/libjansson/libjansson_2.10.bb
> @@ -0,0 +1,22 @@
> +SUMMARY = "Jansson is a C library for encoding, decoding and manipulating JSON data"
> +SECTION = "libs"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=8b70213ec164c7bd876ec2120ba52f61"
> +
> +SRC_URI = "git://github.com/akheron/jansson.git \
> +"
> +
> +SRCREV = "b23201bb1a566d7e4ea84b76b3dcf2efcc025dac"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit autotools pkgconfig
> +
> +FILES_${PN} += "${libdir}/libjansson.so.* \
> +"
> +FILES_${PN}-dev += "${includedir}/jansson.h \
> +                    ${includedir}/jansson_config.h \
> +                    ${libdir}/libjansson.so \
> +                    ${libdir}/libjansson.la \
> +"
> +
> --
> 2.7.4
>
> --
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky


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

end of thread, other threads:[~2017-05-17 23:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-17 22:24 [PATCH 0/1] libjansson: Initial support Marian Pritsak
2017-05-17 22:25 ` [PATCH 1/1] " Marian Pritsak
2017-05-17 23:39   ` 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.