summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2015-09-13 09:24:32 +0000
committerwiz <wiz@pkgsrc.org>2015-09-13 09:24:32 +0000
commit63203adea247fba4adb180d06a56f8f38a0962e5 (patch)
treecc2017ed948b66efb52abbf8e2e6e34c5ba57f23
parentb9275d66e42026cddfa256ec02e9de28393b722c (diff)
downloadpkgsrc-63203adea247fba4adb180d06a56f8f38a0962e5.tar.gz
Update to 2.5.2:
Fixes since v2.5.1 ------------------ * "git init empty && git -C empty log" said "bad default revision 'HEAD'", which was found to be a bit confusing to new users. * The "interpret-trailers" helper mistook a multi-paragraph title of a commit log message with a colon in it as the end of the trailer block. * When re-priming the cache-tree opportunistically while committing the in-core index as-is, we mistakenly invalidated the in-core index too aggressively, causing the experimental split-index code to unnecessarily rewrite the on-disk index file(s). * "git archive" did not use zip64 extension when creating an archive with more than 64k entries, which nobody should need, right ;-)? * The code in "multiple-worktree" support that attempted to recover from an inconsistent state updated an incorrect file. * "git rev-list" does not take "--notes" option, but did not complain when one is given. * Because the configuration system does not allow "alias.0foo" and "pager.0foo" as the configuration key, the user cannot use '0foo' as a custom command name anyway, but "git 0foo" tried to look these keys up and emitted useless warnings before saying '0foo is not a git command'. These warning messages have been squelched. * We recently rewrote one of the build scripts in Perl, which made it necessary to have Perl to build Git. Reduced Perl dependency by rewriting it again using sed. * t1509 test that requires a dedicated VM environment had some bitrot, which has been corrected. * strbuf_read() used to have one extra iteration (and an unnecessary strbuf_grow() of 8kB), which was eliminated. * The codepath to produce error messages had a hard-coded limit to the size of the message, primarily to avoid memory allocation while calling die(). * When trying to see that an object does not exist, a state errno leaked from our "first try to open a packfile with O_NOATIME and then if it fails retry without it" logic on a system that refuses O_NOATIME. This confused us and caused us to die, saying that the packfile is unreadable, when we should have just reported that the object does not exist in that packfile to the caller. * An off-by-one error made "git remote" to mishandle a remote with a single letter nickname. * A handful of codepaths that used to use fixed-sized arrays to hold pathnames have been corrected to use strbuf and other mechanisms to allow longer pathnames without fearing overflows. Also contains typofixes, documentation updates and trivial code clean-ups.
-rw-r--r--devel/git-base/distinfo8
-rw-r--r--devel/git/Makefile.version4
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/git-base/distinfo b/devel/git-base/distinfo
index c421e7ba73e..dee1881be51 100644
--- a/devel/git-base/distinfo
+++ b/devel/git-base/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.33 2015/08/30 16:08:06 wiz Exp $
+$NetBSD: distinfo,v 1.34 2015/09/13 09:24:32 wiz Exp $
-SHA1 (git-2.5.1.tar.xz) = 809baa9b2e71fed78d78aa734d19bd940f85867c
-RMD160 (git-2.5.1.tar.xz) = 02b46b41c0f7db18f804048b858030041f421282
-Size (git-2.5.1.tar.xz) = 3741764 bytes
+SHA1 (git-2.5.2.tar.xz) = 5078512c7dba1db2d98814c1abe7550dc18507c9
+RMD160 (git-2.5.2.tar.xz) = 82d2f002871e02371392986a0fe90150c01c7337
+Size (git-2.5.2.tar.xz) = 3744080 bytes
SHA1 (patch-aa) = 8c1096065d26b93a6e10bc6926d3fc3686f711f2
SHA1 (patch-ac) = 376cdd1c58b143c820ff6395987a8a77cf9b52ba
SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca
diff --git a/devel/git/Makefile.version b/devel/git/Makefile.version
index 790864252c6..aecc7ab5805 100644
--- a/devel/git/Makefile.version
+++ b/devel/git/Makefile.version
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.version,v 1.29 2015/08/30 16:08:06 wiz Exp $
+# $NetBSD: Makefile.version,v 1.30 2015/09/13 09:24:32 wiz Exp $
#
# used by devel/git/Makefile.common
# used by devel/git-svn/Makefile
-GIT_VERSION= 2.5.1
+GIT_VERSION= 2.5.2