From nobody Tue Oct 26 23:24:03 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 1EB0F1817679; Tue, 26 Oct 2021 23:24:04 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Hf7Dz49yNz4qwK; Tue, 26 Oct 2021 23:24:03 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 707CB256ED; Tue, 26 Oct 2021 23:24:03 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19QNO3Dn005268; Tue, 26 Oct 2021 23:24:03 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19QNO36H005267; Tue, 26 Oct 2021 23:24:03 GMT (envelope-from git) Date: Tue, 26 Oct 2021 23:24:03 GMT Message-Id: <202110262324.19QNO36H005267@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Don Lewis Subject: git: 6c80702a12cb - main - devel/mtbl: Upgrade to version 1.4.0 List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: truckman X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 6c80702a12cb5be23a2244121b7f8c948648e0c4 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by truckman: URL: https://cgit.FreeBSD.org/ports/commit/?id=6c80702a12cb5be23a2244121b7f8c948648e0c4 commit 6c80702a12cb5be23a2244121b7f8c948648e0c4 Author: Don Lewis AuthorDate: 2021-10-26 22:24:46 +0000 Commit: Don Lewis CommitDate: 2021-10-26 23:23:30 +0000 devel/mtbl: Upgrade to version 1.4.0 The immutable sorted string table library project, mtbl 1.4.0, is released. This release adds command-line options to support compression levels in mtbl_merge, and a hex formatting option and a variety of filtering options for mtbl_dump. Note that this release leaves the MTBL file format unchanged. In detail: * Add -l option to specify compression level for mtbl_merge. * Add -x option to mtbl_dump to print data for the key and value each formatted with the length (8 digit hexadecimal), a colon, and then hex digit pairs separated by a dash. * Minimum and maximum Zstd compression levels changed from hardcoded 1 and 22, respectively, to values defined by Zstd. * Add -k and -v options to mtbl_dump to print only entries for which the key or value, respectively, matches the given prefix. * Add -K and -V options to mbtl_dump to print only entries for which the length of the key or value, respectively, is greater than or equal to the given integer. Sponsored by: Farsight Security, Inc. --- devel/mtbl/Makefile | 2 +- devel/mtbl/distinfo | 6 +++--- devel/mtbl/pkg-plist | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/devel/mtbl/Makefile b/devel/mtbl/Makefile index f66a3ea8ee9b..0243054ad1c4 100644 --- a/devel/mtbl/Makefile +++ b/devel/mtbl/Makefile @@ -1,5 +1,5 @@ PORTNAME= mtbl -PORTVERSION= 1.3.0 +PORTVERSION= 1.4.0 CATEGORIES= devel MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/devel/mtbl/distinfo b/devel/mtbl/distinfo index 4616fb4c9e0a..6f8af0c0d9fb 100644 --- a/devel/mtbl/distinfo +++ b/devel/mtbl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1559944920 -SHA256 (mtbl-1.3.0.tar.gz) = 3738944a7018e2a74646ec3f87432788d084b2fe975e01d84163e1cf4eb5a4d5 -SIZE (mtbl-1.3.0.tar.gz) = 443524 +TIMESTAMP = 1635286999 +SHA256 (mtbl-1.4.0.tar.gz) = 22a41252798d3d6f5d4d82154681996fe25e5554969d26272bf6e33be846fe73 +SIZE (mtbl-1.4.0.tar.gz) = 446379 diff --git a/devel/mtbl/pkg-plist b/devel/mtbl/pkg-plist index 8049702a0c3b..54aa82d99b5e 100644 --- a/devel/mtbl/pkg-plist +++ b/devel/mtbl/pkg-plist @@ -6,7 +6,7 @@ include/mtbl.h lib/libmtbl.a lib/libmtbl.so lib/libmtbl.so.1 -lib/libmtbl.so.1.1.0 +lib/libmtbl.so.1.1.1 libdata/pkgconfig/libmtbl.pc man/man1/mtbl_dump.1.gz man/man1/mtbl_info.1.gz