diff options
Diffstat (limited to 'net/seaweedfs/Makefile')
-rw-r--r-- | net/seaweedfs/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/net/seaweedfs/Makefile b/net/seaweedfs/Makefile index 8264fe0d51bc..b2e37d86bdb7 100644 --- a/net/seaweedfs/Makefile +++ b/net/seaweedfs/Makefile @@ -1,6 +1,5 @@ PORTNAME= seaweedfs -DISTVERSION= 3.85 -PORTREVISION= 2 +DISTVERSION= 3.91 CATEGORIES= net sysutils MAINTAINER= drtr0jan@yandex.ru @@ -10,11 +9,11 @@ WWW= https://github.com/seaweedfs/seaweedfs/wiki LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.23,modules +USES= go:modules USE_RC_SUBR= seaweedfs -GO_MODULE= github.com/seaweedfs/seaweedfs@v0.0.0-20250218000433-7d7e06681dd4 +GO_MODULE= github.com/seaweedfs/seaweedfs@v0.0.0-20250616034216-c26299b05a67 GO_TARGET= ./weed CGO_CFLAGS= -I. @@ -23,9 +22,9 @@ SEAWEEDFS_USER?= seaweedfs SEAWEEDFS_GROUP?= seaweedfs SUB_FILES= pkg-message -SUB_LIST= SEAWEEDFS_DIR=${SEAWEEDFS_DIR} \ - USER=${SEAWEEDFS_USER} \ - GROUP=${SEAWEEDFS_GROUP} +SUB_LIST= GROUP=${SEAWEEDFS_GROUP} \ + SEAWEEDFS_DIR=${SEAWEEDFS_DIR} \ + USER=${SEAWEEDFS_USER} USERS= ${SEAWEEDFS_USER} GROUPS= ${SEAWEEDFS_GROUP} @@ -33,12 +32,13 @@ GROUPS= ${SEAWEEDFS_GROUP} OPTIONS_DEFINE= GOCDK RCLONE OPTIONS_DEFAULT= ELASTIC GOCDK RCLONE SQLITE OPTIONS_GROUP= FILERS -OPTIONS_GROUP_FILERS= ELASTIC SQLITE TIKV YDB +OPTIONS_GROUP_FILERS= ELASTIC SQLITE TARANTOOL TIKV YDB ELASTIC_DESC= Elasticsearch support FILERS_DESC= Filer store engines GOCDK_DESC= Go CDK PubSub API support RCLONE_DESC= rsync for cloud storage backend +TARANTOOL_DESC= Tarantool support TIKV_DESC= TiKV database support YDB_DESC= YDB support @@ -46,6 +46,7 @@ ELASTIC_VARS= GO_TAGS+=elastic GOCDK_VARS= GO_TAGS+=gocdk RCLONE_VARS= GO_TAGS+=rclone SQLITE_VARS= GO_TAGS+=sqlite +TARANTOOL_VARS= GO_TAGS+=tarantool TIKV_VARS= GO_TAGS+=tikv YDB_VARS= GO_TAGS+=ydb |