pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc
Module Name: pkgsrc
Committed By: wiz
Date: Thu Jul 21 13:12:25 UTC 2016
Modified Files:
pkgsrc/devel/git: Makefile.version
pkgsrc/devel/git-base: Makefile distinfo
pkgsrc/devel/git-docs: Makefile
pkgsrc/www/gitweb: Makefile
Log Message:
Update git to 2.9.2.
Fixes since v2.9.1
------------------
* A fix merged to v2.9.1 had a few tests that are not meant to be
run on platforms without 64-bit long, which caused unnecessary
test failures on them because we didn't detect the platform and
skip them. These tests are now skipped on platforms that they
are not applicable to.
Fixes since v2.9
----------------
* When "git daemon" is run without --[init-]timeout specified, a
connection from a client that silently goes offline can hang around
for a long time, wasting resources. The socket-level KEEPALIVE has
been enabled to allow the OS to notice such failed connections.
* The commands in `git log` family take %C(auto) in a custom format
string. This unconditionally turned the color on, ignoring
--no-color or with --color=auto when the output is not connected to
a tty; this was corrected to make the format truly behave as
"auto".
* "git rev-list --count" whose walk-length is limited with "-n"
option did not work well with the counting optimized to look at the
bitmap index.
* "git show -W" (extend hunks to cover the entire function, delimited
by lines that match the "funcname" pattern) used to show the entire
file when a change added an entire function at the end of the file,
which has been fixed.
* The documentation set has been updated so that literal commands,
configuration variables and environment variables are consistently
typeset in fixed-width font and bold in manpages.
* "git svn propset" subcommand that was added in 2.3 days is
documented now.
* The documentation tries to consistently spell "GPG"; when
referring to the specific program name, "gpg" is used.
* "git reflog" stopped upon seeing an entry that denotes a branch
creation event (aka "unborn"), which made it appear as if the
reflog was truncated.
* The git-prompt scriptlet (in contrib/) was not friendly with those
who uses "set -u", which has been fixed.
* A codepath that used alloca(3) to place an unbounded amount of data
on the stack has been updated to avoid doing so.
* "git update-index --add --chmod=+x file" may be usable as an escape
hatch, but not a friendly thing to force for people who do need to
use it regularly. "git add --chmod=+x file" can be used instead.
* Build improvements for gnome-keyring (in contrib/)
* "git status" used to say "working directory" when it meant "working
tree".
* Comments about misbehaving FreeBSD shells have been clarified with
the version number (9.x and before are broken, newer ones are OK).
* "git cherry-pick A" worked on an unborn branch, but "git
cherry-pick A..B" didn't.
* "git add -i/-p" learned to honor diff.compactionHeuristic
experimental knob, so that the user can work on the same hunk split
as "git diff" output.
* "log --graph --format=" learned that "%>|(N)" specifies the width
relative to the terminal's left edge, not relative to the area to
draw text that is to the right of the ancestry-graph section. It
also now accepts negative N that means the column limit is relative
to the right border.
* The ownership rule for the piece of memory that hold references to
be fetched in "git fetch" was screwy, which has been cleaned up.
* "git bisect" makes an internal call to "git diff-tree" when
bisection finds the culprit, but this call did not initialize the
data structure to pass to the diff-tree API correctly.
* Formats of the various data (and how to validate them) where we use
GPG signature have been documented.
* Fix an unintended regression in v2.9 that breaks "clone --depth"
that recurses down to submodules by forcing the submodules to also
be cloned shallowly, which many server instances that host upstream
of the submodules are not prepared for.
* Fix unnecessarily waste in the idiomatic use of ': ${VAR=default}'
to set the default value, without enclosing it in double quotes.
* Some platform-specific code had non-ANSI strict declarations of C
functions that do not take any parameters, which has been
corrected.
* The internal code used to show local timezone offset is not
prepared to handle timestamps beyond year 2100, and gave a
bogus offset value to the caller. Use a more benign looking
+0000 instead and let "git log" going in such a case, instead
of aborting.
* One among four invocations of readlink(1) in our test suite has
been rewritten so that the test can run on systems without the
command (others are in valgrind test framework and t9802).
* t/perf needs /usr/bin/time with GNU extension; the invocation of it
is updated to "gtime" on Darwin.
* A bug, which caused "git p4" while running under verbose mode to
report paths that are omitted due to branch prefix incorrectly, has
been fixed; the command said "Ignoring file outside of prefix" for
paths that are _inside_.
* The top level documentation "git help git" still pointed at the
documentation set hosted at now-defunct google-code repository.
Update it to point to https://git.github.io/htmldocs/git.html
instead.
Also contains minor documentation updates and code clean-ups.
To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 pkgsrc/devel/git/Makefile.version
cvs rdiff -u -r1.29 -r1.30 pkgsrc/devel/git-base/Makefile
cvs rdiff -u -r1.51 -r1.52 pkgsrc/devel/git-base/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/git-docs/Makefile
cvs rdiff -u -r1.33 -r1.34 pkgsrc/www/gitweb/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/git/Makefile.version
diff -u pkgsrc/devel/git/Makefile.version:1.45 pkgsrc/devel/git/Makefile.version:1.46
--- pkgsrc/devel/git/Makefile.version:1.45 Tue Jun 14 16:50:03 2016
+++ pkgsrc/devel/git/Makefile.version Thu Jul 21 13:12:25 2016
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.version,v 1.45 2016/06/14 16:50:03 adam Exp $
+# $NetBSD: Makefile.version,v 1.46 2016/07/21 13:12:25 wiz Exp $
#
# used by devel/git/Makefile.common
# used by devel/git-cvs/Makefile
# used by devel/git-svn/Makefile
-GIT_VERSION= 2.9.0
+GIT_VERSION= 2.9.2
Index: pkgsrc/devel/git-base/Makefile
diff -u pkgsrc/devel/git-base/Makefile:1.29 pkgsrc/devel/git-base/Makefile:1.30
--- pkgsrc/devel/git-base/Makefile:1.29 Sat Jul 9 06:38:07 2016
+++ pkgsrc/devel/git-base/Makefile Thu Jul 21 13:12:25 2016
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.29 2016/07/09 06:38:07 wiz Exp $
+# $NetBSD: Makefile,v 1.30 2016/07/21 13:12:25 wiz 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.51 pkgsrc/devel/git-base/distinfo:1.52
--- pkgsrc/devel/git-base/distinfo:1.51 Tue Jun 14 16:50:04 2016
+++ pkgsrc/devel/git-base/distinfo Thu Jul 21 13:12:25 2016
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.51 2016/06/14 16:50:04 adam Exp $
+$NetBSD: distinfo,v 1.52 2016/07/21 13:12:25 wiz Exp $
-SHA1 (git-2.9.0.tar.xz) = 7ac21a1ff58f57e7d40452a4aa8ec6c0d71ec709
-RMD160 (git-2.9.0.tar.xz) = 290dbf7092dafdd2a46f241f821e70ed8532aa79
-SHA512 (git-2.9.0.tar.xz) = 9433b4642482634d4c76884307d987155568c08a741285cff0eb3699de04d7ff970892f23587bdf6f9ea0083dd5aee652c3265842ba6cf789955e0040a3e5b6a
-Size (git-2.9.0.tar.xz) = 4014000 bytes
+SHA1 (git-2.9.2.tar.xz) = 095afe5c098b98e0d36e505fd059244e59be6cec
+RMD160 (git-2.9.2.tar.xz) = 5d14c51b20af30c9d7b9a80f7906be4746ecf3c8
+SHA512 (git-2.9.2.tar.xz) = 4a6e2ac7680b8896dc9c58a3fabad2201c800dbca26f0c117892b9d6149b02ff0335d313037f50771932cea4971913e3d9b9e79f22e075b3ed77a1a69ddc11ac
+Size (git-2.9.2.tar.xz) = 4019916 bytes
SHA1 (patch-aa) = b419c3771945696da0411a358c231f0357766bc0
SHA1 (patch-ac) = 376cdd1c58b143c820ff6395987a8a77cf9b52ba
SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca
Index: pkgsrc/devel/git-docs/Makefile
diff -u pkgsrc/devel/git-docs/Makefile:1.8 pkgsrc/devel/git-docs/Makefile:1.9
--- pkgsrc/devel/git-docs/Makefile:1.8 Sat Jul 9 06:38:07 2016
+++ pkgsrc/devel/git-docs/Makefile Thu Jul 21 13:12:25 2016
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2016/07/09 06:38:07 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2016/07/21 13:12:25 wiz Exp $
PKGNAME= git-docs-${GIT_VERSION}
-PKGREVISION= 1
COMMENT= GIT Tree History Storage Tool (documentation)
CONFLICTS+= scmgit-docs-[0-9]*
Index: pkgsrc/www/gitweb/Makefile
diff -u pkgsrc/www/gitweb/Makefile:1.33 pkgsrc/www/gitweb/Makefile:1.34
--- pkgsrc/www/gitweb/Makefile:1.33 Sat Jul 9 06:39:12 2016
+++ pkgsrc/www/gitweb/Makefile Thu Jul 21 13:12:25 2016
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.33 2016/07/09 06:39:12 wiz Exp $
+# $NetBSD: Makefile,v 1.34 2016/07/21 13:12:25 wiz Exp $
-PKGREVISION= 1
.include "../../devel/git/Makefile.common"
PKGNAME= ${DISTNAME:S/git/gitweb/}
Home |
Main Index |
Thread Index |
Old Index