summaryrefslogtreecommitdiffstats
path: root/meta-security/recipes-connectivity/bluez5
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2018-12-13 14:33:55 +0100
committerStéphane Desneux <stephane.desneux@iot.bzh>2018-12-14 21:32:04 +0000
commit27037c57de0a88cdc39934556b786721ae979eff (patch)
tree79a08b1b8229f700d4ce169b176d4822119fad55 /meta-security/recipes-connectivity/bluez5
parentf11a3e7653777ad4342e615f47ec4a5417a2fa96 (diff)
systemd: Cleanup of recipe of meta-security
The recipe for systemd that belongs to meta-security was carrying lot of history for probably no purpose. If history is needed, curious people can still refer to https://github.com/intel/meta-intel-iot-security Change-Id: I8762da7feb2084de2a97025498eb47ef815c7954 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'meta-security/recipes-connectivity/bluez5')
0 files changed, 0 insertions, 0 deletions
4dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
SUMMARY = "A small reverse proxy that can front existing gRPC servers and expose their functionality using gRPC-Web protocol, allowing for the gRPC services to be consumed from browsers."
HOMEPAGE = "https://github.com/improbable-eng/grpc-web"

inherit go-mod systemd

RDEPENDS:${PN} = "bash"
RDEPENDS:${PN}-dev = "bash"

GO_IMPORT = "github.com/improbable-eng/grpc-web"
GO_INSTALL = "${GO_IMPORT}/go/grpcwebproxy"

LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE.txt;md5=71a6955f3cd81a809549da266346dc59"

SRCREV = "1d9bbb09a0990bdaff0e37499570dbc7d6e58ce8"
SRC_URI = "git://${GO_IMPORT};branch=master;protocol=https \
           file://databroker-grpc-web-proxy.env \
           file://databroker-grpc-web-proxy.service"

do_compile[network] = "1"

do_install:append() {
    install -d ${D}${systemd_system_unitdir}
    install -m 0644 ${WORKDIR}/databroker-grpc-web-proxy.service ${D}${systemd_system_unitdir}

    install -d ${D}${sysconfdir}/default
    install -m 0644 ${WORKDIR}/databroker-grpc-web-proxy.env ${D}${sysconfdir}/default/databroker-grpc-web-proxy.env
}

SYSTEMD_SERVICE:${PN} = "databroker-grpc-web-proxy.service"

FILES:${PN} = "${bindir} \
               ${systemd_system_unitdir} \
               ${sysconfdir}/default "