pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel Fixes since v2.4.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/127b3bc27314
branches:  trunk
changeset: 652660:127b3bc27314
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Jun 06 09:59:07 2015 +0000

description:
Fixes since v2.4.3
------------------

 * Error messages from "git branch" called remote-tracking branches as
   "remote branches".

 * "git rerere forget" in a repository without rerere enabled gave a
   cryptic error message; it should be a silent no-op instead.

 * "git pull --log" and "git pull --no-log" worked as expected, but
   "git pull --log=20" did not.

 * The pull.ff configuration was supposed to override the merge.ff
   configuration, but it didn't.

 * The code to read pack-bitmap wanted to allocate a few hundred
   pointers to a structure, but by mistake allocated and leaked memory
   enough to hold that many actual structures.  Correct the allocation
   size and also have it on stack, as it is small enough.

 * Various documentation mark-up fixes to make the output more
   consistent in general and also make AsciiDoctor (an alternative
   formatter) happier.

 * "git bundle verify" did not diagnose extra parameters on the
   command line.

 * Multi-ref transaction support we merged a few releases ago
   unnecessarily kept many file descriptors open, risking to fail with
   resource exhaustion.

 * The ref API did not handle cases where 'refs/heads/xyzzy/frotz' is
   removed at the same time as 'refs/heads/xyzzy' is added (or vice
   versa) very well.

 * The "log --decorate" enhancement in Git 2.4 that shows the commit
   at the tip of the current branch e.g. "HEAD -> master", did not
   work with --decorate=full.

 * There was a commented-out (instead of being marked to expect
   failure) test that documented a breakage that was fixed since the
   test was written; turn it into a proper test.

 * core.excludesfile (defaulting to $XDG_HOME/git/ignore) is supposed
   to be overridden by repository-specific .git/info/exclude file, but
   the order was swapped from the beginning. This belatedly fixes it.

 * The connection initiation code for "ssh" transport tried to absorb
   differences between the stock "ssh" and Putty-supplied "plink" and
   its derivatives, but the logic to tell that we are using "plink"
   variants were too loose and falsely triggered when "plink" appeared
   anywhere in the path (e.g. "/home/me/bin/uplink/ssh").

 * "git rebase -i" moved the "current" command from "todo" to "done" a
   bit too prematurely, losing a step when a "pick" did not even start.

 * "git add -e" did not allow the user to abort the operation by
   killing the editor.

 * Git 2.4 broke setting verbosity and progress levels on "git clone"
   with native transports.

 * Some time ago, "git blame" (incorrectly) lost the convert_to_git()
   call when synthesizing a fake "tip" commit that represents the
   state in the working tree, which broke folks who record the history
   with LF line ending to make their project portabile across
   platforms while terminating lines in their working tree files with
   CRLF for their platform.

 * Code clean-up for xdg configuration path support.

Also contains typofixes, documentation updates and trivial code
clean-ups.

diffstat:

 devel/git-base/distinfo    |  8 ++++----
 devel/git/Makefile.version |  4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (28 lines):

diff -r 8e9582bcfa59 -r 127b3bc27314 devel/git-base/distinfo
--- a/devel/git-base/distinfo   Sat Jun 06 09:15:50 2015 +0000
+++ b/devel/git-base/distinfo   Sat Jun 06 09:59:07 2015 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.28 2015/05/31 22:28:36 ryoon Exp $
+$NetBSD: distinfo,v 1.29 2015/06/06 09:59:07 adam Exp $
 
-SHA1 (git-2.4.2.tar.xz) = 7c24430f97d05dd2abfa473ed12462346220facb
-RMD160 (git-2.4.2.tar.xz) = 13b8ad9febeae45d90519d95285e852905ea66c5
-Size (git-2.4.2.tar.xz) = 3683880 bytes
+SHA1 (git-2.4.3.tar.xz) = e576ca012e838685feabcfa30162122cecf8e074
+RMD160 (git-2.4.3.tar.xz) = 00e3a6b64b63e20be6139137e2d97081f915a1b1
+Size (git-2.4.3.tar.xz) = 3687444 bytes
 SHA1 (patch-aa) = 8c1096065d26b93a6e10bc6926d3fc3686f711f2
 SHA1 (patch-ac) = 376cdd1c58b143c820ff6395987a8a77cf9b52ba
 SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca
diff -r 8e9582bcfa59 -r 127b3bc27314 devel/git/Makefile.version
--- a/devel/git/Makefile.version        Sat Jun 06 09:15:50 2015 +0000
+++ b/devel/git/Makefile.version        Sat Jun 06 09:59:07 2015 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.version,v 1.24 2015/05/31 22:28:36 ryoon Exp $
+# $NetBSD: Makefile.version,v 1.25 2015/06/06 09:59:07 adam Exp $
 #
 # used by devel/git/Makefile.common
 # used by devel/git-svn/Makefile
 
-GIT_VERSION=   2.4.2
+GIT_VERSION=   2.4.3



Home | Main Index | Thread Index | Old Index