All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 1/2] safec: Add Safe C license
@ 2019-05-17  9:43 Ankit Navik
  2019-05-17  9:43 ` [meta-oe][PATCH 2/2] safec: Initial recipe for safe C library Ankit Navik
  0 siblings, 1 reply; 4+ messages in thread
From: Ankit Navik @ 2019-05-17  9:43 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Ankit Navik <ankit.tarot@gmail.com>
---
 meta-oe/licenses/safec | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 meta-oe/licenses/safec

diff --git a/meta-oe/licenses/safec b/meta-oe/licenses/safec
new file mode 100644
index 000000000..2bf1e6374
--- /dev/null
+++ b/meta-oe/licenses/safec
@@ -0,0 +1,26 @@
+Safe C Library
+
+Copyright (C) 2012, 2013 Cisco Systems
+Copyright (C) 2017 Reini Urban
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
-- 
2.20.1



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

* [meta-oe][PATCH 2/2] safec: Initial recipe for safe C library
  2019-05-17  9:43 [meta-oe][PATCH 1/2] safec: Add Safe C license Ankit Navik
@ 2019-05-17  9:43 ` Ankit Navik
  2019-05-20 16:48   ` Khem Raj
  0 siblings, 1 reply; 4+ messages in thread
From: Ankit Navik @ 2019-05-17  9:43 UTC (permalink / raw)
  To: openembedded-devel

Add generic recipe for safe C library.
This library implements the secure C11 Annex K functions on top of most libc
implementations, which are missing from them.

Signed-off-by: Ankit Navik <ankit.tarot@gmail.com>
---
 meta-oe/recipes-core/safec/safec_3.4.bb | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-oe/recipes-core/safec/safec_3.4.bb

diff --git a/meta-oe/recipes-core/safec/safec_3.4.bb b/meta-oe/recipes-core/safec/safec_3.4.bb
new file mode 100644
index 000000000..2048fd418
--- /dev/null
+++ b/meta-oe/recipes-core/safec/safec_3.4.bb
@@ -0,0 +1,13 @@
+SUMMARY  = "Safe C Library"
+
+LICENSE  = "safec"
+LIC_FILES_CHKSUM = "file://COPYING;md5=6d0eb7dfc57806a006fcbc4e389cf164"
+SECTION = "lib"
+
+inherit autotools pkgconfig
+
+S = "${WORKDIR}/git"
+SRCREV = "62e6b2df55084316d027165d286e46beb40513dc"
+SRC_URI = "git://github.com/rurban/safeclib.git"
+
+RDEPENDS_${PN} = "perl"
-- 
2.20.1



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

* Re: [meta-oe][PATCH 2/2] safec: Initial recipe for safe C library
  2019-05-17  9:43 ` [meta-oe][PATCH 2/2] safec: Initial recipe for safe C library Ankit Navik
@ 2019-05-20 16:48   ` Khem Raj
  2019-05-27 10:08     ` Ankit Navik
  0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2019-05-20 16:48 UTC (permalink / raw)
  To: Ankit Navik; +Cc: openembeded-devel

This fails to build for mips target see

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

On Fri, May 17, 2019 at 2:44 AM Ankit Navik <ankit.tarot@gmail.com> wrote:
>
> Add generic recipe for safe C library.
> This library implements the secure C11 Annex K functions on top of most libc
> implementations, which are missing from them.
>
> Signed-off-by: Ankit Navik <ankit.tarot@gmail.com>
> ---
>  meta-oe/recipes-core/safec/safec_3.4.bb | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>  create mode 100644 meta-oe/recipes-core/safec/safec_3.4.bb
>
> diff --git a/meta-oe/recipes-core/safec/safec_3.4.bb b/meta-oe/recipes-core/safec/safec_3.4.bb
> new file mode 100644
> index 000000000..2048fd418
> --- /dev/null
> +++ b/meta-oe/recipes-core/safec/safec_3.4.bb
> @@ -0,0 +1,13 @@
> +SUMMARY  = "Safe C Library"
> +
> +LICENSE  = "safec"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=6d0eb7dfc57806a006fcbc4e389cf164"
> +SECTION = "lib"
> +
> +inherit autotools pkgconfig
> +
> +S = "${WORKDIR}/git"
> +SRCREV = "62e6b2df55084316d027165d286e46beb40513dc"
> +SRC_URI = "git://github.com/rurban/safeclib.git"
> +
> +RDEPENDS_${PN} = "perl"
> --
> 2.20.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-oe][PATCH 2/2] safec: Initial recipe for safe C library
  2019-05-20 16:48   ` Khem Raj
@ 2019-05-27 10:08     ` Ankit Navik
  0 siblings, 0 replies; 4+ messages in thread
From: Ankit Navik @ 2019-05-27 10:08 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

Hi Raj,

On Mon, May 20, 2019 at 10:18 PM Khem Raj <raj.khem@gmail.com> wrote:

> This fails to build for mips target see
>
> https://errors.yoctoproject.org/Errors/Details/241270/


v2 patch is submitted for compatible target.
Regards,
Ankit

>
>
> On Fri, May 17, 2019 at 2:44 AM Ankit Navik <ankit.tarot@gmail.com> wrote:
> >
> > Add generic recipe for safe C library.
> > This library implements the secure C11 Annex K functions on top of most
> libc
> > implementations, which are missing from them.
> >
> > Signed-off-by: Ankit Navik <ankit.tarot@gmail.com>
> > ---
> >  meta-oe/recipes-core/safec/safec_3.4.bb | 13 +++++++++++++
> >  1 file changed, 13 insertions(+)
> >  create mode 100644 meta-oe/recipes-core/safec/safec_3.4.bb
> >
> > diff --git a/meta-oe/recipes-core/safec/safec_3.4.bb
> b/meta-oe/recipes-core/safec/safec_3.4.bb
> > new file mode 100644
> > index 000000000..2048fd418
> > --- /dev/null
> > +++ b/meta-oe/recipes-core/safec/safec_3.4.bb
> > @@ -0,0 +1,13 @@
> > +SUMMARY  = "Safe C Library"
> > +
> > +LICENSE  = "safec"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=6d0eb7dfc57806a006fcbc4e389cf164"
> > +SECTION = "lib"
> > +
> > +inherit autotools pkgconfig
> > +
> > +S = "${WORKDIR}/git"
> > +SRCREV = "62e6b2df55084316d027165d286e46beb40513dc"
> > +SRC_URI = "git://github.com/rurban/safeclib.git"
> > +
> > +RDEPENDS_${PN} = "perl"
> > --
> > 2.20.1
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

end of thread, other threads:[~2019-05-27 10:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-17  9:43 [meta-oe][PATCH 1/2] safec: Add Safe C license Ankit Navik
2019-05-17  9:43 ` [meta-oe][PATCH 2/2] safec: Initial recipe for safe C library Ankit Navik
2019-05-20 16:48   ` Khem Raj
2019-05-27 10:08     ` Ankit Navik

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.