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

(-)mongodb-tools/Makefile (-10 / +8 lines)
Lines 1-12 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	mongodb42-tools
3
PORTNAME=	mongodb-tools
4
DISTVERSIONPREFIX=	r
4
DISTVERSION=	100.2.0
5
DISTVERSION=	4.2.9
6
CATEGORIES=	databases
5
CATEGORIES=	databases
7
6
8
MAINTAINER=	ronald-lists@klop.ws
7
MAINTAINER=	ronald-lists@klop.ws
9
COMMENT=	Tools for MongoDB 4.2.x
8
COMMENT=	Tools for MongoDB 4.4.x and up
10
9
11
LICENSE=	APACHE20
10
LICENSE=	APACHE20
12
LICENSE_FILE=	${WRKSRC}/LICENSE.md
11
LICENSE_FILE=	${WRKSRC}/LICENSE.md
Lines 22-35 Link Here
22
GO_BUILDFLAGS=	-tags "${USE_MY_TAGS}"
21
GO_BUILDFLAGS=	-tags "${USE_MY_TAGS}"
23
GO_PKGNAME=	github.com/${GH_ACCOUNT}/${GH_PROJECT}
22
GO_PKGNAME=	github.com/${GH_ACCOUNT}/${GH_PROJECT}
24
23
25
CONFLICTS_INSTALL=	mongodb36-tools mongodb4[04]-tools
24
CONFLICTS_INSTALL=	mongodb36-tools mongodb4[02]-tools
26
25
27
OPTIONS_DEFINE=		DOCS
26
OPTIONS_DEFINE=		DOCS
28
OPTIONS_DEFAULT=	MONGODUMP MONGOEXPORT MONGOFILES MONGOIMPORT \
27
OPTIONS_DEFAULT=	BSONDUMP MONGODUMP MONGOEXPORT MONGOFILES MONGOIMPORT \
29
			MONGORESTORE SASL SSL
28
			MONGORESTORE MONGOSTAT MONGOTOP \
29
			SASL SSL
30
OPTIONS_MULTI=		SECURITY TOOLS
30
OPTIONS_MULTI=		SECURITY TOOLS
31
OPTIONS_MULTI_TOOLS=	BSONDUMP MONGODUMP MONGOEXPORT MONGOFILES MONGOIMPORT \
31
OPTIONS_MULTI_TOOLS=	BSONDUMP MONGODUMP MONGOEXPORT MONGOFILES MONGOIMPORT \
32
			MONGOREPLAY MONGORESTORE MONGOSTAT MONGOTOP
32
			MONGORESTORE MONGOSTAT MONGOTOP
33
OPTIONS_MULTI_SECURITY=	SASL SSL
33
OPTIONS_MULTI_SECURITY=	SASL SSL
34
OPTIONS_SUB=		yes
34
OPTIONS_SUB=		yes
35
35
Lines 41-47 Link Here
41
MONGORESTORE_DESC=	BSON data to a MongoDB instance
41
MONGORESTORE_DESC=	BSON data to a MongoDB instance
42
MONGODUMP_DESC=		BSON data from the contents of a MongoDB instance
42
MONGODUMP_DESC=		BSON data from the contents of a MongoDB instance
43
MONGOTOP_DESC=		Track the amount of data I/O time
43
MONGOTOP_DESC=		Track the amount of data I/O time
44
MONGOREPLAY_DESC=	Traffic capture and replay tool
45
44
46
BSONDUMP_VARS=		go_target+=./bsondump/main:bsondump
45
BSONDUMP_VARS=		go_target+=./bsondump/main:bsondump
47
MONGOSTAT_VARS=		go_target+=./mongostat/main:mongostat
46
MONGOSTAT_VARS=		go_target+=./mongostat/main:mongostat
Lines 51-57 Link Here
51
MONGORESTORE_VARS=	go_target+=./mongorestore/main:mongorestore
50
MONGORESTORE_VARS=	go_target+=./mongorestore/main:mongorestore
52
MONGODUMP_VARS=		go_target+=./mongodump/main:mongodump
51
MONGODUMP_VARS=		go_target+=./mongodump/main:mongodump
53
MONGOTOP_VARS=		go_target+=./mongotop/main:mongotop
52
MONGOTOP_VARS=		go_target+=./mongotop/main:mongotop
54
MONGOREPLAY_VARS=	go_target+=./mongoreplay/main:mongoreplay
55
SASL_LIB_DEPENDS=	libsasl2.so:security/cyrus-sasl2
53
SASL_LIB_DEPENDS=	libsasl2.so:security/cyrus-sasl2
56
SASL_USE=		my_tags=sasl
54
SASL_USE=		my_tags=sasl
57
SSL_USES=		ssl
55
SSL_USES=		ssl
(-)mongodb-tools/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1597956175
1
TIMESTAMP = 1600416697
2
SHA256 (mongodb-mongo-tools-r4.2.9_GH0.tar.gz) = b08871164d5ae74567eb4fcdfc7bdc5d6767a7428b8efa4623f6a66ce7d57450
2
SHA256 (mongodb-mongo-tools-100.2.0_GH0.tar.gz) = a776ea5af5091d558ab0151302699783cb03e10ef026ef4b389a2f8b431cb127
3
SIZE (mongodb-mongo-tools-r4.2.9_GH0.tar.gz) = 15026903
3
SIZE (mongodb-mongo-tools-100.2.0_GH0.tar.gz) = 27395174
(-)mongodb-tools/pkg-descr (-1 / +1 lines)
Lines 10-15 Link Here
10
  clusters
10
  clusters
11
- mongofiles - Read, write, delete, or update files in GridFS
11
- mongofiles - Read, write, delete, or update files in GridFS
12
- mongotop - Monitor read/write activity on a mongo server
12
- mongotop - Monitor read/write activity on a mongo server
13
- mongoreplay - Capture, observe, and replay traffic for MongoDB
14
13
15
WWW: https://github.com/mongodb/mongo-tools
14
WWW: https://github.com/mongodb/mongo-tools
15
WWW: https://docs.mongodb.com/database-tools/
(-)mongodb-tools/pkg-plist (-1 lines)
Lines 4-10 Link Here
4
%%MONGOFILES%%bin/mongofiles
4
%%MONGOFILES%%bin/mongofiles
5
%%MONGOIMPORT%%bin/mongoimport
5
%%MONGOIMPORT%%bin/mongoimport
6
%%MONGORESTORE%%bin/mongorestore
6
%%MONGORESTORE%%bin/mongorestore
7
%%MONGOREPLAY%%bin/mongoreplay
8
%%MONGOSTAT%%bin/mongostat
7
%%MONGOSTAT%%bin/mongostat
9
%%MONGOTOP%%bin/mongotop
8
%%MONGOTOP%%bin/mongotop
10
%%PORTDOCS%%%%DOCSDIR%%/README.md
9
%%PORTDOCS%%%%DOCSDIR%%/README.md

Return to bug 249426