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 DD1297A292 for ; Sun, 30 Oct 2016 11:43:04 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 85E58855BC; Sun, 30 Oct 2016 11:43:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 16DD1855B9 for ; Sun, 30 Oct 2016 11:43:04 +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 e_aydMoOP45s for ; Sun, 30 Oct 2016 11:43:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 46C318556F for ; Sun, 30 Oct 2016 11:43:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 412AFFB87; Sun, 30 Oct 2016 11:43:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1477827783147490" MIME-Version: 1.0 Date: Sun, 30 Oct 2016 11:43:03 +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: <20161030114303.412AFFB87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1477827783147490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Oct 30 11:43:03 UTC 2016 Modified Files: pkgsrc/devel/git: Makefile.version pkgsrc/devel/git-base: Makefile distinfo Log Message: Git v2.10.2 Release Notes ========================= Fixes since v2.10.1 ------------------- * The code that parses the format parameter of for-each-ref command has seen a micro-optimization. * The "graph" API used in "git log --graph" miscounted the number of output columns consumed so far when drawing a padding line, which has been fixed; this did not affect any existing code as nobody tried to write anything after the padding on such a line, though. * Almost everybody uses DEFAULT_ABBREV to refer to the default setting for the abbreviation, but "git blame" peeked into underlying variable bypassing the macro for no good reason. * Doc update to clarify what "log -3 --reverse" does. * An author name, that spelled a backslash-quoted double quote in the human readable part "My \"double quoted\" name", was not unquoted correctly while applying a patch from a piece of e-mail. * The original command line syntax for "git merge", which was "git merge HEAD ...", has been deprecated for quite some time, and "git gui" was the last in-tree user of the syntax. This is finally fixed, so that we can move forward with the deprecation. * Codepaths that read from an on-disk loose object were too loose in validating what they are reading is a proper object file and sometimes read past the data they read from the disk, which has been corrected. H/t to Gustavo Grieco for reporting. * "git worktree", even though it used the default_abbrev setting that ought to be affected by core.abbrev configuration variable, ignored the variable setting. The command has been taught to read the default set of configuration variables to correct this. * A low-level function verify_packfile() was meant to show errors that were detected without dying itself, but under some conditions it didn't and died instead, which has been fixed. * When "git fetch" tries to find where the history of the repository it runs in has diverged from what the other side has, it has a mechanism to avoid digging too deep into irrelevant side branches. This however did not work well over the "smart-http" transport due to a design bug, which has been fixed. * When we started cURL to talk to imap server when a new enough version of cURL library is available, we forgot to explicitly add imap(s):// before the destination. To some folks, that didn't work and the library tried to make HTTP(s) requests instead. * The ./configure script generated from configure.ac was taught how to detect support of SSL by libcurl better. * http.emptyauth configuration is a way to allow an empty username to pass when attempting to authenticate using mechanisms like Kerberos. We took an unspecified (NULL) username and sent ":" (i.e. no username, no password) to CURLOPT_USERPWD, but did not do the same when the username is explicitly set to an empty string. * "git clone" of a local repository can be done at the filesystem level, but the codepath did not check errors while copying and adjusting the file that lists alternate object stores. * Documentation for "git commit" was updated to clarify that "commit -p " adds to the current contents of the index to come up with what to commit. * A stray symbolic link in $GIT_DIR/refs/ directory could make name resolution loop forever, which has been corrected. * The "submodule..path" stored in .gitmodules is never copied to .git/config and such a key in .git/config has no meaning, but the documentation described it and submodule..url next to each other as if both belong to .git/config. This has been fixed. * Recent git allows submodule..branch to use a special token "." instead of the branch name; the documentation has been updated to describe it. * In a worktree connected to a repository elsewhere, created via "git worktree", "git checkout" attempts to protect users from confusion by refusing to check out a branch that is already checked out in another worktree. However, this also prevented checking out a branch, which is designated as the primary branch of a bare reopsitory, in a worktree that is connected to the bare repository. The check has been corrected to allow it. * "git rebase" immediately after "git clone" failed to find the fork point from the upstream. * When fetching from a remote that has many tags that are irrelevant to branches we are following, we used to waste way too many cycles when checking if the object pointed at by a tag (that we are not going to fetch!) exists in our repository too carefully. * The Travis CI configuration we ship ran the tests with --verbose option but this risks non-TAP output that happens to be "ok" to be misinterpreted as TAP signalling a test that passed. This resulted in unnecessary failure. This has been corrected by introducing a new mode to run our tests in the test harness to send the verbose output separately to the log file. * Some AsciiDoc formatter mishandles a displayed illustration with tabs in it. Adjust a few of them in merge-base documentation to work around them. Also contains minor documentation updates and code clean-ups. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/devel/git/Makefile.version cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/git-base/Makefile cvs rdiff -u -r1.55 -r1.56 pkgsrc/devel/git-base/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1477827783147490 Content-Disposition: inline Content-Length: 2292 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.49 pkgsrc/devel/git/Makefile.version:1.50 --- pkgsrc/devel/git/Makefile.version:1.49 Thu Oct 6 10:45:04 2016 +++ pkgsrc/devel/git/Makefile.version Sun Oct 30 11:43:03 2016 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile.version,v 1.49 2016/10/06 10:45:04 adam Exp $ +# $NetBSD: Makefile.version,v 1.50 2016/10/30 11:43:03 adam Exp $ # # used by devel/git/Makefile.common # used by devel/git-cvs/Makefile # used by devel/git-svn/Makefile -GIT_VERSION= 2.10.1 +GIT_VERSION= 2.10.2 Index: pkgsrc/devel/git-base/Makefile diff -u pkgsrc/devel/git-base/Makefile:1.31 pkgsrc/devel/git-base/Makefile:1.32 --- pkgsrc/devel/git-base/Makefile:1.31 Fri Oct 7 18:25:42 2016 +++ pkgsrc/devel/git-base/Makefile Sun Oct 30 11:43:03 2016 @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.31 2016/10/07 18:25:42 adam Exp $ +# $NetBSD: Makefile,v 1.32 2016/10/30 11:43:03 adam Exp $ -PKGREVISION= 1 .include "../../devel/git/Makefile.common" PKGNAME= git-base-${GIT_VERSION} Index: pkgsrc/devel/git-base/distinfo diff -u pkgsrc/devel/git-base/distinfo:1.55 pkgsrc/devel/git-base/distinfo:1.56 --- pkgsrc/devel/git-base/distinfo:1.55 Thu Oct 6 10:45:04 2016 +++ pkgsrc/devel/git-base/distinfo Sun Oct 30 11:43:03 2016 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.55 2016/10/06 10:45:04 adam Exp $ +$NetBSD: distinfo,v 1.56 2016/10/30 11:43:03 adam Exp $ -SHA1 (git-2.10.1.tar.xz) = 3b7cd84fc3f022306249e276fcd95204c1a2bfe9 -RMD160 (git-2.10.1.tar.xz) = e93d72809c64b9797c35b7cfc455ba3e153cecca -SHA512 (git-2.10.1.tar.xz) = 976c62b530405388f77b01abb9dd40929831e0fdb83574c5c56ea309af462805659a20685221cf011db67635cebfe550853d1ba3764118bb53df41cf480f216a -Size (git-2.10.1.tar.xz) = 4102452 bytes +SHA1 (git-2.10.2.tar.xz) = 2023975ae0061bd569b8529025428e3eca53be2e +RMD160 (git-2.10.2.tar.xz) = d4330857a79a20c5c9fad98b9bb592fb9cbec1b0 +SHA512 (git-2.10.2.tar.xz) = 0ab09de481dbb31c3304382afaa5d3fc9f861115c9954c65b11a8a1c34b939118c7ed3ff60ac329145888596388e3e4d2b2fb677fe109d33a57206d531b5ee6a +Size (git-2.10.2.tar.xz) = 4106108 bytes SHA1 (patch-aa) = a58f3c2f45c1fbafd751d10b9ef34e6c9afc2c6f SHA1 (patch-ac) = 376cdd1c58b143c820ff6395987a8a77cf9b52ba SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca --_----------=_1477827783147490--