From owner-svn-ports-head@freebsd.org Sat Sep 26 09:08:02 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D32D93F8D4F; Sat, 26 Sep 2020 09:08:02 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bz2xZ5J27z4LMG; Sat, 26 Sep 2020 09:08:02 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 98F8B21B41; Sat, 26 Sep 2020 09:08:02 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08Q982Nm055809; Sat, 26 Sep 2020 09:08:02 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08Q981NY055804; Sat, 26 Sep 2020 09:08:01 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202009260908.08Q981NY055804@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 26 Sep 2020 09:08:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550139 - in head/databases: . mongodb-tools mongodb-tools/files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/databases: . mongodb-tools mongodb-tools/files X-SVN-Commit-Revision: 550139 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Sep 2020 09:08:02 -0000 Author: pi Date: Sat Sep 26 09:08:01 2020 New Revision: 550139 URL: https://svnweb.freebsd.org/changeset/ports/550139 Log: New port: databases/mongodb-tools According to https://docs.mongodb.com/database-tools/#versioning the versioning of mongodb-tools changed. One version of mongodb-tools for all future mongodb versions. - removed mongoreplay: it does not exist (anymore) - enabled all tools: I don't know the history why these were not enabled - builds and runs on aarch64 - Add WWW to official documentation -------- Useful utilities for managing a MongoDB instance written in Go. - bsondump - display BSON files in a human-readable format - mongoimport - Convert data from JSON, TSV or CSV and insert them into a collection - mongoexport - Write an existing collection to CSV or JSON format - mongodump/mongorestore - Dump MongoDB backups to disk in .BSON format, or restore them to a live database - mongostat - Monitor live MongoDB servers, replica sets, or sharded clusters - mongofiles - Read, write, delete, or update files in GridFS - mongotop - Monitor read/write activity on a mongo server WWW: https://github.com/mongodb/mongo-tools WWW: https://docs.mongodb.com/database-tools/ PR: 249426 Submitted by: Ronald Klop Added: head/databases/mongodb-tools/ - copied from r549981, head/databases/mongodb42-tools/ Deleted: head/databases/mongodb-tools/files/ Modified: head/databases/Makefile head/databases/mongodb-tools/Makefile head/databases/mongodb-tools/distinfo head/databases/mongodb-tools/pkg-descr head/databases/mongodb-tools/pkg-plist Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sat Sep 26 09:02:13 2020 (r550138) +++ head/databases/Makefile Sat Sep 26 09:08:01 2020 (r550139) @@ -186,6 +186,7 @@ SUBDIR += mdbtools SUBDIR += mdcached SUBDIR += memcached + SUBDIR += mongodb-tools SUBDIR += mongodb36 SUBDIR += mongodb36-tools SUBDIR += mongodb40 Modified: head/databases/mongodb-tools/Makefile ============================================================================== --- head/databases/mongodb42-tools/Makefile Fri Sep 25 02:55:38 2020 (r549981) +++ head/databases/mongodb-tools/Makefile Sat Sep 26 09:08:01 2020 (r550139) @@ -1,12 +1,11 @@ # $FreeBSD$ -PORTNAME= mongodb42-tools -DISTVERSIONPREFIX= r -DISTVERSION= 4.2.9 +PORTNAME= mongodb-tools +DISTVERSION= 100.2.0 CATEGORIES= databases MAINTAINER= ronald-lists@klop.ws -COMMENT= Tools for MongoDB 4.2.x +COMMENT= Tools for MongoDB 4.4.x and up LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md @@ -22,14 +21,15 @@ GH_PROJECT= mongo-tools GO_BUILDFLAGS= -tags "${USE_MY_TAGS}" GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} -CONFLICTS_INSTALL= mongodb36-tools mongodb4[04]-tools +CONFLICTS_INSTALL= mongodb36-tools mongodb4[02]-tools OPTIONS_DEFINE= DOCS -OPTIONS_DEFAULT= MONGODUMP MONGOEXPORT MONGOFILES MONGOIMPORT \ - MONGORESTORE SASL SSL +OPTIONS_DEFAULT= BSONDUMP MONGODUMP MONGOEXPORT MONGOFILES MONGOIMPORT \ + MONGORESTORE MONGOSTAT MONGOTOP \ + SASL SSL OPTIONS_MULTI= SECURITY TOOLS OPTIONS_MULTI_TOOLS= BSONDUMP MONGODUMP MONGOEXPORT MONGOFILES MONGOIMPORT \ - MONGOREPLAY MONGORESTORE MONGOSTAT MONGOTOP + MONGORESTORE MONGOSTAT MONGOTOP OPTIONS_MULTI_SECURITY= SASL SSL OPTIONS_SUB= yes @@ -41,7 +41,6 @@ MONGOIMPORT_DESC= Importing JSON, CSV, or TSV into a M MONGORESTORE_DESC= BSON data to a MongoDB instance MONGODUMP_DESC= BSON data from the contents of a MongoDB instance MONGOTOP_DESC= Track the amount of data I/O time -MONGOREPLAY_DESC= Traffic capture and replay tool BSONDUMP_VARS= go_target+=./bsondump/main:bsondump MONGOSTAT_VARS= go_target+=./mongostat/main:mongostat @@ -51,7 +50,6 @@ MONGOIMPORT_VARS= go_target+=./mongoimport/main:mongoi MONGORESTORE_VARS= go_target+=./mongorestore/main:mongorestore MONGODUMP_VARS= go_target+=./mongodump/main:mongodump MONGOTOP_VARS= go_target+=./mongotop/main:mongotop -MONGOREPLAY_VARS= go_target+=./mongoreplay/main:mongoreplay SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 SASL_USE= my_tags=sasl SSL_USES= ssl Modified: head/databases/mongodb-tools/distinfo ============================================================================== --- head/databases/mongodb42-tools/distinfo Fri Sep 25 02:55:38 2020 (r549981) +++ head/databases/mongodb-tools/distinfo Sat Sep 26 09:08:01 2020 (r550139) @@ -1,3 +1,3 @@ -TIMESTAMP = 1597956175 -SHA256 (mongodb-mongo-tools-r4.2.9_GH0.tar.gz) = b08871164d5ae74567eb4fcdfc7bdc5d6767a7428b8efa4623f6a66ce7d57450 -SIZE (mongodb-mongo-tools-r4.2.9_GH0.tar.gz) = 15026903 +TIMESTAMP = 1601054275 +SHA256 (mongodb-mongo-tools-100.2.0_GH0.tar.gz) = f6f92b11f9e714ed2eb6a17d823a71537ca6736237262110ebce210326fd4346 +SIZE (mongodb-mongo-tools-100.2.0_GH0.tar.gz) = 27400186 Modified: head/databases/mongodb-tools/pkg-descr ============================================================================== --- head/databases/mongodb42-tools/pkg-descr Fri Sep 25 02:55:38 2020 (r549981) +++ head/databases/mongodb-tools/pkg-descr Sat Sep 26 09:08:01 2020 (r550139) @@ -10,6 +10,6 @@ Useful utilities for managing a MongoDB instance writt clusters - mongofiles - Read, write, delete, or update files in GridFS - mongotop - Monitor read/write activity on a mongo server -- mongoreplay - Capture, observe, and replay traffic for MongoDB WWW: https://github.com/mongodb/mongo-tools +WWW: https://docs.mongodb.com/database-tools/ Modified: head/databases/mongodb-tools/pkg-plist ============================================================================== --- head/databases/mongodb42-tools/pkg-plist Fri Sep 25 02:55:38 2020 (r549981) +++ head/databases/mongodb-tools/pkg-plist Sat Sep 26 09:08:01 2020 (r550139) @@ -4,7 +4,6 @@ %%MONGOFILES%%bin/mongofiles %%MONGOIMPORT%%bin/mongoimport %%MONGORESTORE%%bin/mongorestore -%%MONGOREPLAY%%bin/mongoreplay %%MONGOSTAT%%bin/mongostat %%MONGOTOP%%bin/mongotop %%PORTDOCS%%%%DOCSDIR%%/README.md