View | Details | Raw Unified | Return to bug 271416
Collapse All | Expand All

(-)b/databases/Makefile (+1 lines)
Lines 103-108 Link Here
103
    SUBDIR += immudb
103
    SUBDIR += immudb
104
    SUBDIR += imposm3
104
    SUBDIR += imposm3
105
    SUBDIR += influxdb
105
    SUBDIR += influxdb
106
    SUBDIR += influxdb2
106
    SUBDIR += influxdb2-cli
107
    SUBDIR += influxdb2-cli
107
    SUBDIR += innotop
108
    SUBDIR += innotop
108
    SUBDIR += iowow
109
    SUBDIR += iowow
(-)b/databases/influxdb2/Makefile (+28 lines)
Added Link Here
1
PORTNAME=	influxdb2
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	2.7.1
4
CATEGORIES=	databases net-mgmt
5
6
MAINTAINER=	driesm@FreeBSD.org
7
COMMENT=	Open-source distributed time series database
8
WWW=		https://github.com/influxdata/influxdb
9
10
LICENSE=	MIT
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
USES=		gmake go:modules
14
USE_GITHUB=	nodefault
15
GH_TUPLE=	golang:sys:v0.6.0:sys
16
17
GO_MODULE=	github.com/influxdata/influxdb/v2
18
GO_TARGET=	./cmd/influxd
19
20
CONFLICTS_INSTALL=	influxdb
21
22
PLIST_FILES=	bin/influx
23
24
pre-patch:
25
	${RM} -r ${WRKSRC}/vendor/golang.org/x/sys
26
	${LN} -s ${WRKDIR}/sys-* ${WRKSRC}/vendor/golang.org/x/sys
27
28
.include <bsd.port.mk>
(-)b/databases/influxdb2/distinfo (+7 lines)
Added Link Here
1
TIMESTAMP = 1682707118
2
SHA256 (go/databases_influxdb2/influxdb2-v2.7.1/v2.7.1.mod) = cada6e5e059ded4d38a22d8eb4c6c2702071cc6ef8c59c884421afacdc2022d3
3
SIZE (go/databases_influxdb2/influxdb2-v2.7.1/v2.7.1.mod) = 11356
4
SHA256 (go/databases_influxdb2/influxdb2-v2.7.1/v2.7.1.zip) = aa4cab928061f0190058f27002b67ac0ed8707c29e893bfe425d65ad4ac9d690
5
SIZE (go/databases_influxdb2/influxdb2-v2.7.1/v2.7.1.zip) = 15125044
6
SHA256 (go/databases_influxdb2/influxdb2-v2.7.1/golang-sys-v0.6.0_GH0.tar.gz) = b4f6d17c7a128f76169964b437cb66b3f2dbf9a33361928ec19dfecf7b03fc54
7
SIZE (go/databases_influxdb2/influxdb2-v2.7.1/golang-sys-v0.6.0_GH0.tar.gz) = 1434234
(-)b/databases/influxdb2/pkg-descr (+14 lines)
Added Link Here
1
An open-source, distributed, time series database with no external
2
dependencies. InfluxDB is the new home for all of your metrics,
3
events, and analytics.
4
5
InfluxDB is a time series, metrics, and analytics database. It'written
6
in Go and has no external dependencies. That means once you install
7
it there's nothing else to manage (like Redis, ZooKeeper, HBase,
8
or whatever).
9
10
InfluxDB is targeted at use cases for DevOps, metrics, sensor data,
11
and real-time analytics. It arose from our need for a database like
12
this on more than a few previous products we' built. You can read
13
more about our jurney from SaaS application to open source time
14
series database.

Return to bug 271416