summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-11-29 18:21:06 -0800
committerKhem Raj <raj.khem@gmail.com>2021-12-01 12:24:21 -0800
commit6e9faaa57889b16ff5b4b32a7c48fb8474c39c42 (patch)
tree602b3fe6a5f4c35cda821fa02c9e7f9b7936d773
parent4bb47113046fd8a71b45c9db35f2fd5bf76fd9e8 (diff)
downloadmeta-openembedded-6e9faaa57889b16ff5b4b32a7c48fb8474c39c42.tar.gz
influxdb: Upgrade to 1.8.10
Changes are here [1] License-Update: Updated copyright info [2] Fix sh interpreter path [1] https://dl.influxdata.com/platform/nightlies/1.8/CHANGELOG.md [2] https://github.com/influxdata/influxdb/commit/809ac4f0d5280a2391ed1af84e2a331d37525913#diff-c693279643b8cd5d248172d9c22cb7cf4ed163a3c98c8a3f69c2717edd3eacb7 Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb (renamed from meta-oe/recipes-dbs/influxdb/influxdb_1.7.10.bb)11
1 files changed, 5 insertions, 6 deletions
diff --git a/meta-oe/recipes-dbs/influxdb/influxdb_1.7.10.bb b/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb
index fa360b8d1d..0832ac209e 100644
--- a/meta-oe/recipes-dbs/influxdb/influxdb_1.7.10.bb
+++ b/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb
@@ -2,9 +2,7 @@ DESCRIPTION = "InfluxDB is a time series database designed to handle high write
2HOMEPAGE = "https://www.influxdata.com/products/influxdb-overview/" 2HOMEPAGE = "https://www.influxdata.com/products/influxdb-overview/"
3 3
4LICENSE = "MIT" 4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=ba8146ad9cc2a128209983265136e06a" 5LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=f39a8d10930fb37bd59adabb3b9d0bd6"
6
7FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
8 6
9RDEPENDS:${PN} = "bash" 7RDEPENDS:${PN} = "bash"
10RDEPENDS:${PN}-dev = "bash" 8RDEPENDS:${PN}-dev = "bash"
@@ -17,16 +15,16 @@ GO_INSTALL = "\
17" 15"
18 16
19SRC_URI = "\ 17SRC_URI = "\
20 git://${GO_IMPORT};protocol=https;branch=1.7;destsuffix=${BPN}-${PV}/src/${GO_IMPORT} \ 18 git://${GO_IMPORT};protocol=https;branch=1.8;destsuffix=${BPN}-${PV}/src/${GO_IMPORT} \
21 file://influxdb \ 19 file://influxdb \
22 file://influxdb.conf \ 20 file://influxdb.conf \
23" 21"
24 22
25SRC_URI:append:mipsarch = " file://0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch;patchdir=src/${GO_IMPORT}" 23SRC_URI:append:mipsarch = " file://0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch;patchdir=src/${GO_IMPORT}"
26 24
27SRCREV = "c958f436b2e538a88a7815aad721c7774a0b8f63" 25SRCREV = "688e697c51fd5353725da078555adbeff0363d01"
28 26
29inherit go-mod systemd update-rc.d useradd 27inherit go-mod pkgconfig systemd update-rc.d useradd
30 28
31USERADD_PACKAGES = "${PN}" 29USERADD_PACKAGES = "${PN}"
32USERADD_PARAM:${PN} = "--system -d /var/lib/influxdb -m -s /bin/nologin influxdb" 30USERADD_PARAM:${PN} = "--system -d /var/lib/influxdb -m -s /bin/nologin influxdb"
@@ -35,6 +33,7 @@ do_install:prepend() {
35 rm ${B}/src/${GO_IMPORT}/build.py 33 rm ${B}/src/${GO_IMPORT}/build.py
36 rm ${B}/src/${GO_IMPORT}/build.sh 34 rm ${B}/src/${GO_IMPORT}/build.sh
37 rm ${B}/src/${GO_IMPORT}/Dockerfile* 35 rm ${B}/src/${GO_IMPORT}/Dockerfile*
36 sed -i -e "s#usr/bin/sh#bin/sh#g" ${B}/src/${GO_IMPORT}/scripts/ci/run_perftest.sh
38} 37}
39 38
40do_install:append() { 39do_install:append() {