blob: 06363cd9be0e1e589f6b5829c686d5bf084f64c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module shell-completion
MY_PV="${PV/_rc/-rc.}"
DESCRIPTION="The command line for influxdb"
HOMEPAGE="https://github.com/influxdata/influx-cli"
SRC_URI="https://github.com/influxdata/influx-cli/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://gentoo.kropotkin.rocks/go-pkgs/${P}-vendor.tar.xz"
LICENSE="Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
# Previous versions ship they own client
DEPEND="!<dev-db/influxdb-2.0.0"
RDEPEND="${DEPEND}"
src_compile() {
unset LDFLAGS
emake
cd bin/$(go env GOOS)/$(go env GOARCH)/ || die
./influx completion zsh > influx-completion.zsh || die
}
src_install() {
cd bin/$(go env GOOS)/$(go env GOARCH) || die
dobin influx
# bash ones are provided by bash-completion package
newzshcomp influx-completion.zsh _influx
}
|