diff options
author | José Bollo <jose.bollo@iot.bzh> | 2019-12-17 19:41:11 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2019-12-19 15:03:32 +0100 |
commit | 12138fcb3c677b3cc838130e9c89dfe751dd5d11 (patch) | |
tree | c9b8299d677d2b5451218b902dc858de8db26aa0 | |
parent | 80cdc7f4dd1818b89177a5a37704e08ef67c91c6 (diff) |
cynagoauth: Add a basic OAuth server
cynagoauth is a basic OAuth2 server implementing
delivery of tokens based on the Smack label of the
client.
Bug-AGL: SPEC-2550
Bug-AGL: SPEC-2968
Bug-AGL: SPEC-3032
Change-Id: I93aa1864ac68ec51963a25e80150879ea88a5766
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | meta-security/recipes-security/cynagoauth/cynagoauth_0.1.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-security/recipes-security/cynagoauth/cynagoauth_0.1.bb b/meta-security/recipes-security/cynagoauth/cynagoauth_0.1.bb new file mode 100644 index 000000000..c77c99189 --- /dev/null +++ b/meta-security/recipes-security/cynagoauth/cynagoauth_0.1.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "OAuth server using cynagora backend" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" + +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/src/cynagoauth.git;protocol=https;branch=${AGL_BRANCH}" +SRCREV = "26a5dbddf3a9bfde481a6fcd2aae16c7ecba665f" +PV = "0.1+git${SRCPV}" + +S = "${WORKDIR}/git" + +DEPENDS = "json-c libmicrohttpd openssl cynagora" + +inherit cmake + +EXTRA_OECMAKE += " \ + -DDEFAULTHOSTS=:7777 \ + -DDEFAULTURL=http://localhost:7777/tok \ + -DUNITDIR_SYSTEM=${systemd_system_unitdir} \ +" + +FILES_${PN} += "${systemd_system_unitdir}" + + |