Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 2E81C7A212 for ; Mon, 10 Apr 2017 01:26:28 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9378A84D88; Mon, 10 Apr 2017 01:26:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 226C584D78 for ; Mon, 10 Apr 2017 01:26:27 +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 sfvGpFfHXyFo for ; Mon, 10 Apr 2017 01:26:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9EEF384D04 for ; Mon, 10 Apr 2017 01:26:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9568FFBE4; Mon, 10 Apr 2017 01:26:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1491787586203100" MIME-Version: 1.0 Date: Mon, 10 Apr 2017 01:26:26 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/lcov To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20170410012626.9568FFBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1491787586203100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Mon Apr 10 01:26:26 UTC 2017 Modified Files: pkgsrc/devel/lcov: Makefile distinfo Log Message: Update lcov to 1.13 Major changes and fixes since 1.9: - fix parsing of gcc 4.7 gcov format - make empty data directories non-fatal - fix bug when converting function data in --diff operation - fix handling of user-specified prefixes with trailing / - fix whitespace handling in --rc command line option - fix --config-file not being passed to geninfo - fix --no-external not working with --initial - Fix handling of non-english locales - add exclude marker for branch coverage - make geninfo compatible with LLVM's gcov - Fix error when using --demangle-cpp - Implement option to specify coverage rate precision - make line exclusion markers configurable - support a comma separated list of prefixes - Allow prefix paths with spaces - Fix --remove pattern matching - Fix gcov version detection for XCode 8.0 To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/lcov/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/lcov/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1491787586203100 Content-Disposition: inline Content-Length: 1524 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/lcov/Makefile diff -u pkgsrc/devel/lcov/Makefile:1.8 pkgsrc/devel/lcov/Makefile:1.9 --- pkgsrc/devel/lcov/Makefile:1.8 Sat Jul 9 06:38:09 2016 +++ pkgsrc/devel/lcov/Makefile Mon Apr 10 01:26:26 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.8 2016/07/09 06:38:09 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2017/04/10 01:26:26 minskim Exp $ # -DISTNAME= lcov-1.9 -PKGREVISION= 5 +DISTNAME= lcov-1.13 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ltp/} Index: pkgsrc/devel/lcov/distinfo diff -u pkgsrc/devel/lcov/distinfo:1.3 pkgsrc/devel/lcov/distinfo:1.4 --- pkgsrc/devel/lcov/distinfo:1.3 Tue Nov 3 03:27:37 2015 +++ pkgsrc/devel/lcov/distinfo Mon Apr 10 01:26:26 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2015/11/03 03:27:37 agc Exp $ +$NetBSD: distinfo,v 1.4 2017/04/10 01:26:26 minskim Exp $ -SHA1 (lcov-1.9.tar.gz) = 5aff4b998b1288896734326a0b74ab536339ec21 -RMD160 (lcov-1.9.tar.gz) = 8065012a49cc7e10c295093c9b0c6dee9efcac22 -SHA512 (lcov-1.9.tar.gz) = 518f068d5eb4a805985863e7b755ae16b1b2ebb9e42cc57c5cda20a60f22e170c1e2957692086e5eeabe12ddbcf39132494aa2ea7ce33411e8abeddc759852ee -Size (lcov-1.9.tar.gz) = 140035 bytes +SHA1 (lcov-1.13.tar.gz) = f23baf68b45d0187138514f416e4ee383c5f3f0e +RMD160 (lcov-1.13.tar.gz) = a67ba7b37e12a561139d45db0e9837d07bd8c98c +SHA512 (lcov-1.13.tar.gz) = 54033c0f99dbf7b332fcd70730df8672713ffc36c010809353dfd83a73fcc4f504b6a68e3b5010002d6992da5fa940a7d5f4e03dc3fe6930ab713a7b980dff9e +Size (lcov-1.13.tar.gz) = 156709 bytes --_----------=_1491787586203100--