pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel Update git packages to 2.4.2
details: https://anonhg.NetBSD.org/pkgsrc/rev/97bba414b6fb
branches: trunk
changeset: 652415:97bba414b6fb
user: ryoon <ryoon%pkgsrc.org@localhost>
date: Sun May 31 22:28:36 2015 +0000
description:
Update git packages to 2.4.2
Changelog:
Git v2.4.2 Release Notes
========================
Fixes since v2.4.1
------------------
* "git rev-list --objects $old --not --all" to see if everything that
is reachable from $old is already connected to the existing refs
was very inefficient.
* "hash-object --literally" introduced in v2.2 was not prepared to
take a really long object type name.
* "git rebase --quiet" was not quite quiet when there is nothing to
do.
* The completion for "log --decorate=" parameter value was incorrect.
* "filter-branch" corrupted commit log message that ends with an
incomplete line on platforms with some "sed" implementations that
munge such a line. Work it around by avoiding to use "sed".
* "git daemon" fails to build from the source under NO_IPV6
configuration (regression in 2.4).
* "git stash pop/apply" forgot to make sure that not just the working
tree is clean but also the index is clean. The latter is important
as a stash application can conflict and the index will be used for
conflict resolution.
* We have prepended $GIT_EXEC_PATH and the path "git" is installed in
(typically "/usr/bin") to $PATH when invoking subprograms and hooks
for almost eternity, but the original use case the latter tried to
support was semi-bogus (i.e. install git to /opt/foo/git and run it
without having /opt/foo on $PATH), and more importantly it has
become less and less relevant as Git grew more mainstream (i.e. the
users would _want_ to have it on their $PATH). Stop prepending the
path in which "git" is installed to users' $PATH, as that would
interfere the command search order people depend on (e.g. they may
not like versions of programs that are unrelated to Git in /usr/bin
and want to override them by having different ones in /usr/local/bin
and have the latter directory earlier in their $PATH).
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 32804b74c0aa -r 97bba414b6fb devel/git-base/distinfo
--- a/devel/git-base/distinfo Sun May 31 20:02:39 2015 +0000
+++ b/devel/git-base/distinfo Sun May 31 22:28:36 2015 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.27 2015/05/18 12:51:37 adam Exp $
+$NetBSD: distinfo,v 1.28 2015/05/31 22:28:36 ryoon Exp $
-SHA1 (git-2.4.1.tar.xz) = 57c6d886fd5412664335e966954f2c384cfa1ee1
-RMD160 (git-2.4.1.tar.xz) = 9d6419ca7aeb2d95ddbf31f07904644bfee42bc1
-Size (git-2.4.1.tar.xz) = 3682912 bytes
+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 (patch-aa) = 8c1096065d26b93a6e10bc6926d3fc3686f711f2
SHA1 (patch-ac) = 376cdd1c58b143c820ff6395987a8a77cf9b52ba
SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca
diff -r 32804b74c0aa -r 97bba414b6fb devel/git/Makefile.version
--- a/devel/git/Makefile.version Sun May 31 20:02:39 2015 +0000
+++ b/devel/git/Makefile.version Sun May 31 22:28:36 2015 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.version,v 1.23 2015/05/18 12:51:37 adam Exp $
+# $NetBSD: Makefile.version,v 1.24 2015/05/31 22:28:36 ryoon Exp $
#
# used by devel/git/Makefile.common
# used by devel/git-svn/Makefile
-GIT_VERSION= 2.4.1
+GIT_VERSION= 2.4.2
Home |
Main Index |
Thread Index |
Old Index