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 27E9CA667B for ; Thu, 10 Dec 2015 13:35:48 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 94B9585EDE; Thu, 10 Dec 2015 13:35:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 23B1D85EB5 for ; Thu, 10 Dec 2015 13:35:47 +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 2OdF16WCaPsr for ; Thu, 10 Dec 2015 13:35:46 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A966485E5E for ; Thu, 10 Dec 2015 13:35:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A0CB3FB82; Thu, 10 Dec 2015 13:35:46 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Thu, 10 Dec 2015 13:35:46 +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: <20151210133546.A0CB3FB82@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: adam Date: Thu Dec 10 13:35:46 UTC 2015 Modified Files: pkgsrc/devel/git: Makefile.version pkgsrc/devel/git-base: distinfo Log Message: Fixes since v2.6.3 ------------------ * The "configure" script did not test for -lpthread correctly, which upset some linkers. * Add support for talking http/https over socks proxy. * Portability fix for Windows, which may rewrite $SHELL variable using non-POSIX paths. * We now consistently allow all hooks to ignore their standard input, rather than having git complain of SIGPIPE. * Fix shell quoting in contrib script. * Test portability fix for a topic in v2.6.1. * Allow tilde-expansion in some http config variables. * Give a useful special case "diff/show --word-diff-regex=." as an example in the documentation. * Fix for a corner case in filter-branch. * Make git-p4 work on a detached head. * Documentation clarification for "check-ignore" without "--verbose". * Just like the working tree is cleaned up when the user cancelled submission in P4Submit.applyCommit(), clean up the mess if "p4 submit" fails. * Having a leftover .idx file without corresponding .pack file in the repository hurts performance; "git gc" learned to prune them. * The code to prepare the working tree side of temporary directory for the "dir-diff" feature forgot that symbolic links need not be copied (or symlinked) to the temporary area, as the code already special cases and overwrites them. Besides, it was wrong to try computing the object name of the target of symbolic link, which may not even exist or may be a directory. * There was no way to defeat a configured rebase.autostash variable from the command line, as "git rebase --no-autostash" was missing. * Allow "git interpret-trailers" to run outside of a Git repository. * Produce correct "dirty" marker for shell prompts, even when we are on an orphan or an unborn branch. * Some corner cases have been fixed in string-matching done in "git status". * Apple's common crypto implementation of SHA1_Update() does not take more than 4GB at a time, and we now have a compile-time workaround for it. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/devel/git/Makefile.version cvs rdiff -u -r1.40 -r1.41 pkgsrc/devel/git-base/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.