summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlper Ak <alperyasinak1@gmail.com>2025-06-21 12:49:15 +0300
committerKhem Raj <raj.khem@gmail.com>2025-07-06 22:39:31 -0700
commit9587da2ba4fd0c90aee849eafb748c7c80eadcba (patch)
treeda401585c13180b5fe1e03fc506c4ae138110e79
parent1b27703d9f78feb34b652e4afd11e21f055abd33 (diff)
downloadmeta-openembedded-9587da2ba4fd0c90aee849eafb748c7c80eadcba.tar.gz
influxdb: remove S in recipes that fetch from git via setting BB_GIT_DEFAULT_DESTSUFFIX
Removing all the S = ${WORKDIR}/git assignments works because BB_GIT_DEFAULT_DESTSUFFIX is set to match S from bitbake.conf (which itself is set to match typical tarball releases). ERROR: influxdb-1.8.10-r0 do_unpack: Recipes that set S = "${WORKDIR}/git" or S = "${UNPACKDIR}/git" should remove that assignment, as S set by bitbake.conf in oe-core now works. Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb4
1 files changed, 1 insertions, 3 deletions
diff --git a/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb b/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb
index 7502681fe2..80fcfc251b 100644
--- a/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb
+++ b/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=f39a8d10930fb37bd59adabb
6require ${BPN}-licenses.inc 6require ${BPN}-licenses.inc
7 7
8SRC_URI = "\ 8SRC_URI = "\
9 git://${GO_IMPORT};protocol=https;branch=1.8;destsuffix=git/src/${GO_IMPORT} \ 9 git://${GO_IMPORT};protocol=https;branch=1.8;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/src/${GO_IMPORT} \
10 file://0001-Use-v2.1.2-xxhash-to-fix-build-with-go-1.17.patch;patchdir=src/${GO_IMPORT} \ 10 file://0001-Use-v2.1.2-xxhash-to-fix-build-with-go-1.17.patch;patchdir=src/${GO_IMPORT} \
11 file://0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch;patchdir=src/${GO_IMPORT} \ 11 file://0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch;patchdir=src/${GO_IMPORT} \
12 file://influxdb \ 12 file://influxdb \
@@ -16,8 +16,6 @@ require ${BPN}-go-mods.inc
16 16
17SRCREV = "688e697c51fd5353725da078555adbeff0363d01" 17SRCREV = "688e697c51fd5353725da078555adbeff0363d01"
18 18
19S = "${WORKDIR}/git"
20
21GO_IMPORT = "github.com/influxdata/influxdb" 19GO_IMPORT = "github.com/influxdata/influxdb"
22GO_INSTALL = "\ 20GO_INSTALL = "\
23 ${GO_IMPORT}/cmd/influx \ 21 ${GO_IMPORT}/cmd/influx \