Received: by mail.netbsd.org (Postfix, from userid 605) id 8493684DBB; Thu, 30 Nov 2017 07:50:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1124084D63 for ; Thu, 30 Nov 2017 07:50:02 +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 pC5ByMyBYYXL for ; Thu, 30 Nov 2017 07:50:01 +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 4A6A084D24 for ; Thu, 30 Nov 2017 07:50:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4116DFB40; Thu, 30 Nov 2017 07:50:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1512028201257380" MIME-Version: 1.0 Date: Thu, 30 Nov 2017 07:50:01 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20171130075001.4116DFB40@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. --_----------=_1512028201257380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Nov 30 07:50:01 UTC 2017 Modified Files: pkgsrc/devel/git: Makefile.version pkgsrc/devel/git-base: distinfo Log Message: git: updated to 2.15.1 Git v2.15.1 Release Notes Fixes since v2.15 ----------------- * TravisCI build updates. * "auto" as a value for the columnar output configuration ought to judge "is the output consumed by humans?" with the same criteria as "auto" for coloured output configuration, i.e. either the standard output stream is going to tty, or a pager is in use. We forgot the latter, which has been fixed. * The experimental "color moved lines differently in diff output" feature was buggy around "ignore whitespace changes" edges, which has been corrected. * Instead of using custom line comparison and hashing functions to implement "moved lines" coloring in the diff output, use the pair of these functions from lower-layer xdiff/ code. * Some codepaths did not check for errors when asking what branch the HEAD points at, which have been fixed. * "git commit", after making a commit, did not check for errors when asking on what branch it made the commit, which has been corrected. * "git status --ignored -u" did not stop at a working tree of a separate project that is embedded in an ignored directory and listed files in that other project, instead of just showing the directory itself as ignored. * A broken access to object databases in recent update to "git grep --recurse-submodules" has been fixed. * A recent regression in "git rebase -i" that broke execution of git commands from subdirectories via "exec" instruction has been fixed. * "git check-ref-format --branch @{-1}" bit a "BUG()" when run outside a repository for obvious reasons; clarify the documentation and make sure we do not even try to expand the at-mark magic in such a case, but still call the validation logic for branch names. * Command line completion (in contrib/) update. * Description of blame.{showroot,blankboundary,showemail,date} configuration variables have been added to "git config --help". * After an error from lstat(), diff_populate_filespec() function sometimes still went ahead and used invalid data in struct stat, which has been fixed. * UNC paths are also relevant in Cygwin builds and they are now tested just like Mingw builds. * Correct start-up sequence so that a repository could be placed immediately under the root directory again (which was broken at around Git 2.13). * The credential helper for libsecret (in contrib/) has been improved to allow possibly prompting the end user to unlock secrets that are currently locked (otherwise the secrets may not be loaded). * Updates from GfW project. * "git rebase -i" recently started misbehaving when a submodule that is configured with 'submodule..ignore' is dirty; this has been corrected. * Some error messages did not quote filenames shown in it, which have been fixed. * Building with NO_LIBPCRE1_JIT did not disable it, which has been fixed. * We used to add an empty alternate object database to the system that does not help anything; it has been corrected. * Error checking in "git imap-send" for empty response has been improved. * An ancient bug in "git apply --ignore-space-change" codepath has been fixed. * There was a recent semantic mismerge in the codepath to write out a section of a configuration section, which has been corrected. To generate a diff of this commit: cvs rdiff -u -r1.64 -r1.65 pkgsrc/devel/git/Makefile.version cvs rdiff -u -r1.73 -r1.74 pkgsrc/devel/git-base/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1512028201257380 Content-Disposition: inline Content-Length: 1816 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/git/Makefile.version diff -u pkgsrc/devel/git/Makefile.version:1.64 pkgsrc/devel/git/Makefile.version:1.65 --- pkgsrc/devel/git/Makefile.version:1.64 Thu Nov 2 06:17:41 2017 +++ pkgsrc/devel/git/Makefile.version Thu Nov 30 07:50:01 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile.version,v 1.64 2017/11/02 06:17:41 adam Exp $ +# $NetBSD: Makefile.version,v 1.65 2017/11/30 07:50:01 adam Exp $ # # used by devel/git/Makefile.common # used by devel/git-cvs/Makefile # used by devel/git-svn/Makefile -GIT_VERSION= 2.15.0 +GIT_VERSION= 2.15.1 Index: pkgsrc/devel/git-base/distinfo diff -u pkgsrc/devel/git-base/distinfo:1.73 pkgsrc/devel/git-base/distinfo:1.74 --- pkgsrc/devel/git-base/distinfo:1.73 Thu Nov 2 06:18:11 2017 +++ pkgsrc/devel/git-base/distinfo Thu Nov 30 07:50:01 2017 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.73 2017/11/02 06:18:11 adam Exp $ +$NetBSD: distinfo,v 1.74 2017/11/30 07:50:01 adam Exp $ -SHA1 (git-2.15.0.tar.xz) = 22251b5aab2a6e2902a151f8e074b504984a2a3d -RMD160 (git-2.15.0.tar.xz) = f31d9fc976ebf0bb65590835241225fdb6bd9ffb -SHA512 (git-2.15.0.tar.xz) = 994704b440ebce104a99d815dd713af3173f29e70646d7135c3fcd1ac4694a26e499f0732843606c397cbf6108809eb397546c837623a4adbe1ccb2fc825cb64 -Size (git-2.15.0.tar.xz) = 4892056 bytes +SHA1 (git-2.15.1.tar.xz) = 0ff2d0c64621f92e15759b2ca07838858bef8ff0 +RMD160 (git-2.15.1.tar.xz) = 4faa07120bec5376a76330cdebe5b43e283856d7 +SHA512 (git-2.15.1.tar.xz) = dcf300b28e41f7757d866e768d641137718b43eb6d12a2cfff99fb429775e0cab87bbff48147b8588bc0f69e92eb5ca2ad1f75c8cf5205e41853d8e8652f900b +Size (git-2.15.1.tar.xz) = 4894768 bytes SHA1 (patch-aa) = a58f3c2f45c1fbafd751d10b9ef34e6c9afc2c6f SHA1 (patch-ac) = e5d2112d158fe493a89b244a10d2e4b998a23d98 SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca --_----------=_1512028201257380--