summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-01-22 14:58:10 -0800
committerKhem Raj <raj.khem@gmail.com>2020-01-22 15:08:42 -0800
commit809de9b0572b8ea234af6141f73deaf2010bc54e (patch)
treeaa66f3f6c59fd620571abaf0033d9532630e74ce /meta-python
parent42f82bfdc855181b849f0038745468cacfa369e2 (diff)
downloadmeta-openembedded-809de9b0572b8ea234af6141f73deaf2010bc54e.tar.gz
gateone: Delete, moved to meta-python2
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r--meta-python/recipes-connectivity/gateone/gateone_git.bb85
1 files changed, 0 insertions, 85 deletions
diff --git a/meta-python/recipes-connectivity/gateone/gateone_git.bb b/meta-python/recipes-connectivity/gateone/gateone_git.bb
deleted file mode 100644
index 37d3564521..0000000000
--- a/meta-python/recipes-connectivity/gateone/gateone_git.bb
+++ /dev/null
@@ -1,85 +0,0 @@
1SUMMARY = "HTML5 (plugin-free) web-based terminal emulator and SSH client"
2LICENSE = "AGPL-3.0"
3LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=834cbc6995db88433db17cdf8953a428"
4HOMEPAGE = "http://liftoffsoftware.com/Products/GateOne"
5
6PV = "1.2+git${SRCPV}"
7SRCREV = "f7a9be46cb90f57459ebd363d24702de0e651034"
8SRC_URI = "git://github.com/liftoff/GateOne.git;branch=master \
9 file://gateone-avahi.service \
10 file://80oe.conf.in \
11 file://gateone.service.in \
12 file://gateone-init.in \
13"
14
15S = "${WORKDIR}/git"
16
17inherit setuptools3 python3-dir systemd update-rc.d
18
19DISTUTILS_INSTALL_ARGS += " \
20 --install-data=${PYTHON_SITEPACKAGES_DIR} \
21 --install-scripts=${bindir} \
22 --skip_init_scripts"
23
24do_install_append() {
25
26 # fix up hardcoded paths
27 for file in gateone.service gateone-init 80oe.conf; do
28 sed -e s:@bindir@:${bindir}:g \
29 -e s:@localstate@:${localstatedir}:g \
30 < ${WORKDIR}/$file.in \
31 > ${WORKDIR}/$file
32 done
33
34 install -d ${D}${systemd_unitdir}/system
35 install -m 0644 ${WORKDIR}/gateone.service ${D}${systemd_unitdir}/system
36
37 install -d ${D}${sysconfdir}/init.d
38 install -m 0755 ${WORKDIR}/gateone-init ${D}${sysconfdir}/init.d/gateone
39
40 install -m 0755 -d ${D}${sysconfdir}/avahi/services/
41 install -m 0644 ${WORKDIR}/gateone-avahi.service ${D}${sysconfdir}/avahi/services/
42
43 install -m 0755 -d ${D}${sysconfdir}/gateone/conf.d/
44 install -m 0644 ${WORKDIR}/80oe.conf ${D}${sysconfdir}/gateone/conf.d/80oe.conf
45
46 install -d ${D}${localstatedir}/lib/gateone
47}
48
49FILES_${PN} = "${localstatedir}/lib ${bindir} ${base_libdir} ${sysconfdir} ${PYTHON_SITEPACKAGES_DIR}"
50RDEPENDS_${PN} = "mime-support \
51 openssh-ssh \
52 python-compression \
53 python-contextlib \
54 python-crypt \
55 python-datetime \
56 python-email \
57 python-fcntl \
58 python-futures \
59 python-html \
60 python-imaging \
61 python-io \
62 python-json \
63 python-logging \
64 python-misc \
65 python-multiprocessing \
66 python-netclient \
67 python-pkgutil \
68 python-pyopenssl \
69 python-re \
70 python-setuptools \
71 python-shell \
72 python-simplejson \
73 python-subprocess \
74 python-syslog \
75 python-terminal \
76 python-textutils \
77 python-tornado \
78 python-unixadmin \
79 python-xml \
80 python-html5lib \
81 bash \
82"
83
84SYSTEMD_SERVICE_${PN} = "gateone.service"
85INITSCRIPT_NAME = "gateone"