diff options
author | Dan McGregor <dan.mcgregor@usask.ca> | 2015-11-04 23:05:55 -0600 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-11-06 17:53:58 +0100 |
commit | 4a9921c16e88ca38a6a54e49bc79a58d75b67a9c (patch) | |
tree | 639bac5a774fcd1911b76c702f097cd79c00b3ac /meta-python/recipes-connectivity/gateone/gateone_git.bb | |
parent | 0b895ac766b3e5843a38cc7838368eed53386ab3 (diff) | |
download | meta-openembedded-4a9921c16e88ca38a6a54e49bc79a58d75b67a9c.tar.gz |
gateone: update to latest git
This version works with pyton-tornado 4.2 as currently distributed
with OE.
Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-connectivity/gateone/gateone_git.bb')
-rw-r--r-- | meta-python/recipes-connectivity/gateone/gateone_git.bb | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/meta-python/recipes-connectivity/gateone/gateone_git.bb b/meta-python/recipes-connectivity/gateone/gateone_git.bb index 7eae12a8b..5ff753eda 100644 --- a/meta-python/recipes-connectivity/gateone/gateone_git.bb +++ b/meta-python/recipes-connectivity/gateone/gateone_git.bb | |||
@@ -3,14 +3,13 @@ LICENSE = "AGPL-3.0" | |||
3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=834cbc6995db88433db17cdf8953a428" | 3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=834cbc6995db88433db17cdf8953a428" |
4 | HOMEPAGE = "http://liftoffsoftware.com/Products/GateOne" | 4 | HOMEPAGE = "http://liftoffsoftware.com/Products/GateOne" |
5 | 5 | ||
6 | PV = "1.2" | 6 | PV = "1.2+git${SRCPV}" |
7 | SRCREV = "1528d324088fc1c180b7fdf50f5b5c1af057eef6" | 7 | SRCREV = "f7a9be46cb90f57459ebd363d24702de0e651034" |
8 | SRC_URI = "git://github.com/liftoff/GateOne.git \ | 8 | SRC_URI = "git://github.com/liftoff/GateOne.git;branch=master \ |
9 | file://0001-configuration.py-Hack-around-broken-gethostname-thin.patch \ | ||
10 | file://gateone-avahi.service \ | 9 | file://gateone-avahi.service \ |
11 | file://80oe.conf \ | 10 | file://80oe.conf.in \ |
12 | file://gateone.service \ | 11 | file://gateone.service.in \ |
13 | file://gateone-init \ | 12 | file://gateone-init.in \ |
14 | " | 13 | " |
15 | 14 | ||
16 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
@@ -28,7 +27,12 @@ DISTUTILS_INSTALL_ARGS = "--root=${D} \ | |||
28 | do_install_append() { | 27 | do_install_append() { |
29 | 28 | ||
30 | # fix up hardcoded paths | 29 | # fix up hardcoded paths |
31 | sed -i -e s:/usr/bin:${bindir}:g ${WORKDIR}/gateone.service | 30 | for file in gateone.service gateone-init 80oe.conf; do |
31 | sed -e s:@bindir@:${bindir}:g \ | ||
32 | -e s:@localstate@:${localstatedir}:g \ | ||
33 | < ${WORKDIR}/$file.in \ | ||
34 | > ${WORKDIR}/$file | ||
35 | done | ||
32 | 36 | ||
33 | install -d ${D}${systemd_unitdir}/system | 37 | install -d ${D}${systemd_unitdir}/system |
34 | install -m 0644 ${WORKDIR}/gateone.service ${D}${systemd_unitdir}/system | 38 | install -m 0644 ${WORKDIR}/gateone.service ${D}${systemd_unitdir}/system |
@@ -49,6 +53,7 @@ FILES_${PN} = "${localstatedir}/lib ${bindir} ${base_libdir} ${sysconfdir} ${PYT | |||
49 | RDEPENDS_${PN} = "mime-support \ | 53 | RDEPENDS_${PN} = "mime-support \ |
50 | openssh-ssh \ | 54 | openssh-ssh \ |
51 | python-compression \ | 55 | python-compression \ |
56 | python-contextlib \ | ||
52 | python-crypt \ | 57 | python-crypt \ |
53 | python-datetime \ | 58 | python-datetime \ |
54 | python-email \ | 59 | python-email \ |
@@ -76,6 +81,7 @@ RDEPENDS_${PN} = "mime-support \ | |||
76 | python-tornado \ | 81 | python-tornado \ |
77 | python-unixadmin \ | 82 | python-unixadmin \ |
78 | python-xml \ | 83 | python-xml \ |
84 | python-html5lib \ | ||
79 | bash \ | 85 | bash \ |
80 | " | 86 | " |
81 | 87 | ||