Received: by mail.netbsd.org (Postfix, from userid 605) id 049DA84DA7; Thu, 1 Apr 2021 16:07:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4071984D16 for ; Thu, 1 Apr 2021 16:07:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 3IuHQgB84KCY for ; Thu, 1 Apr 2021 16:07:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A818684CE9 for ; Thu, 1 Apr 2021 16:07:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A13D0FA95; Thu, 1 Apr 2021 16:07:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1617293252101940" MIME-Version: 1.0 Date: Thu, 1 Apr 2021 16:07:32 +0000 From: "Frederic Cambus" Subject: CVS commit: pkgsrc/net/statzone To: pkgsrc-changes@NetBSD.org Reply-To: fcambus@netbsd.org X-Mailer: log_accum Message-Id: <20210401160732.A13D0FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1617293252101940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fcambus Date: Thu Apr 1 16:07:32 UTC 2021 Modified Files: pkgsrc/net/statzone: Makefile distinfo Log Message: statzone: update to 1.1.0. StatZone 1.1.0 (2021-04-01) - Remove "USAGE:" prefix when displaying usage information - Add missing periods when displaying options in usage(), sync README - StatZone is now a C++ project and requires a C++11 compiler - Use std::unordered_set instead of uthash to count unique strings - Remove now unneeded dependency on uthash - Use std::chrono to calculate elapsed time in summary() - Remove now unneeded timespecsub macro in compat header - Remove now unneeded CLOCK_MONOTONIC fallback macro in compat header - Use iostream to output CSV values - Start using std::string for domain and previous_domain - Remove now unused error() function - Use std::basic_string::compare instead of strncmp(3) - Add a signal handler for SIGINFO, wrapping summary() - Remove pledge() support and get rid of the compat directory entirely - Bump CMake minimum required version to 2.8.12 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/statzone/Makefile \ pkgsrc/net/statzone/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1617293252101940 Content-Disposition: inline Content-Length: 1896 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/statzone/Makefile diff -u pkgsrc/net/statzone/Makefile:1.5 pkgsrc/net/statzone/Makefile:1.6 --- pkgsrc/net/statzone/Makefile:1.5 Mon Feb 8 20:38:23 2021 +++ pkgsrc/net/statzone/Makefile Thu Apr 1 16:07:32 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2021/02/08 20:38:23 fcambus Exp $ +# $NetBSD: Makefile,v 1.6 2021/04/01 16:07:32 fcambus Exp $ -DISTNAME= statzone-1.0.5 +DISTNAME= statzone-1.1.0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=fcambus/} GITHUB_RELEASE= ${PKGVERSION_NOREV} @@ -10,9 +10,10 @@ HOMEPAGE= https://github.com/fcambus/sta COMMENT= DNS zone file analyzer targeted at TLD zones LICENSE= 2-clause-bsd +USE_LANGUAGES= c++ + USE_CMAKE= yes TEST_TARGET= test -.include "../../devel/uthash/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/statzone/distinfo diff -u pkgsrc/net/statzone/distinfo:1.5 pkgsrc/net/statzone/distinfo:1.6 --- pkgsrc/net/statzone/distinfo:1.5 Mon Feb 8 20:38:23 2021 +++ pkgsrc/net/statzone/distinfo Thu Apr 1 16:07:32 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2021/02/08 20:38:23 fcambus Exp $ +$NetBSD: distinfo,v 1.6 2021/04/01 16:07:32 fcambus Exp $ -SHA1 (statzone-1.0.5.tar.gz) = 0c6235c0cb4a5a654de02f819d7aa04d361409a6 -RMD160 (statzone-1.0.5.tar.gz) = 2a73cc82921fef6b17393eb671fa93eed5937106 -SHA512 (statzone-1.0.5.tar.gz) = 42c08758a1d0a00df34fb3d2dcce1c312ff86ea71c2fc6214f8f57b1cd62f2c753a0bada418573ab75af9ff0d82d1165b4023dd19b16f8eedbc2e2db04b07704 -Size (statzone-1.0.5.tar.gz) = 19055 bytes +SHA1 (statzone-1.1.0.tar.gz) = 5cd1a7f783afe5ca022e273febef820cb39614e6 +RMD160 (statzone-1.1.0.tar.gz) = b80628797ca0860dfa0d1d6d042034135c5d76d2 +SHA512 (statzone-1.1.0.tar.gz) = 2b1e79c9566fa57b0fbe0e58245df31d860fb6e425150269b2d3b0c87ee5373c82a39154ad7a8f437fcd51d30b46f4bc230037582ce00b83c769465b4b34ccbe +Size (statzone-1.1.0.tar.gz) = 18500 bytes --_----------=_1617293252101940--