influxdb: 2.1.1 -> 2.2.0

This commit is contained in:
Tim Biermann 2022-05-21 18:03:24 +02:00
parent 6c87c3d433
commit e10f2d6bde
2 changed files with 6 additions and 10 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3wNOh84tFWGQwgGpPCtPzW66Q6LgdITKAro4f+xExiWzZ+d1SIs66mbd2V0c5a4+2V+wXk+YXcltH9I209hGHAk=
SHA256 (Pkgfile) = 2ee5f1f509f93d2c4207351c9292f7ed7408069b1a181caabd21544e0f7bbe56
RWSagIOpLGJF37I4Vew2+Yq0fS9HlscbKeeCQCKSXRSihgfZ92hB8aDzqae8PlxsfOPLoltuvoVaSyGukt6u7yj70NnH14gd2Qo=
SHA256 (Pkgfile) = d94434977a89b1e644ef32f69bcb75d6bc62fd2df2b52e3ed78e9deae8bb696a
SHA256 (.footprint) = fb929bf1771ac46715e62afb1d7522614335f884991366e2626b97a9157d1a2a
SHA256 (influxdb-2.1.1.tar.gz) = 0253741b3d2883435f6a49b72ec2647f56bcbbed9281f97c93f93ce3777d4e64
SHA256 (influxdb-2.2.0.tar.gz) = d847db97e9d51fab3c1dd774b039ec77c90c215bf8e84448529b4cbea615bbba
SHA256 (influxdb.service) = 63011e9fc1fa81681ac5e2127e83f7146670b43ed04df1536043f69d470bcb5a

View File

@ -1,16 +1,14 @@
# Description: Scalable datastore for metrics, events, and real-time analytics
# URL: https://github.com/InfluxData/influxdb
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: clang go protobuf rust yarn
# Depends on: clang go git protobuf rust yarn
name=influxdb
version=2.1.1
version=2.2.0
release=1
source=(https://github.com/influxdata/influxdb/archive/v$version/$name-$version.tar.gz
influxdb.service)
_commit=657e1839de9e8a734abad1207ca28e7d02444207
build() {
cd $name-$version
mkdir -p build
@ -22,10 +20,8 @@ build() {
export GOFLAGS="-trimpath -mod=readonly -modcacherw -buildmode=pie"
export LDFLAGS="-linkmode external"
PATH="$(go env GOPATH)/bin:$PATH" make -j1 VERSION=$version COMMIT=$_commit INFLUXDB_SHA=$_commit
PATH="$(go env GOPATH)/bin:$PATH" make -j1 VERSION=$version
install -Dm755 bin/linux/influxd -t $PKG/usr/bin
## install rc file
install -Dm 755 $SRC/influxdb.service $PKG/etc/rc.d/influxdb
}