Wed Oct 1 12:08:24 2014 UTC ()
Changes 2.1.2:
* "git push" over HTTP transport had an artificial limit on number of
  refs that can be pushed imposed by the command line length.
* When receiving an invalid pack stream that records the same object
  twice, multiple threads got confused due to a race.
* An attempt to remove the entire tree in the "git fast-import" input
  stream caused it to misbehave.
* Reachability check (used in "git prune" and friends) did not add a
  detached HEAD as a starting point to traverse objects still in use.
* "git config --add section.var val" used to lose existing
  section.var whose value was an empty string.
* "git fsck" failed to report that it found corrupt objects via its
  exit status in some cases.


(adam)
diff -r1.13 -r1.14 pkgsrc/devel/git/Makefile.version
diff -r1.6 -r1.7 pkgsrc/devel/git-base/PLIST
diff -r1.16 -r1.17 pkgsrc/devel/git-base/distinfo

cvs diff -r1.13 -r1.14 pkgsrc/devel/git/Makefile.version (expand / switch to unified diff)

--- pkgsrc/devel/git/Makefile.version 2014/08/25 07:49:08 1.13
+++ pkgsrc/devel/git/Makefile.version 2014/10/01 12:08:24 1.14
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1# $NetBSD: Makefile.version,v 1.13 2014/08/25 07:49:08 adam Exp $ 1# $NetBSD: Makefile.version,v 1.14 2014/10/01 12:08:24 adam Exp $
2# 2#
3# used by devel/git/Makefile.common 3# used by devel/git/Makefile.common
4# used by devel/git-svn/Makefile 4# used by devel/git-svn/Makefile
5 5
6GIT_VERSION= 2.1.0 6GIT_VERSION= 2.1.2

cvs diff -r1.6 -r1.7 pkgsrc/devel/git-base/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/git-base/PLIST 2014/08/25 07:49:08 1.6
+++ pkgsrc/devel/git-base/PLIST 2014/10/01 12:08:24 1.7
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.6 2014/08/25 07:49:08 adam Exp $ 1@comment $NetBSD: PLIST,v 1.7 2014/10/01 12:08:24 adam Exp $
2bin/git 2bin/git
3bin/git-cvsserver 3bin/git-cvsserver
4bin/git-receive-pack 4bin/git-receive-pack
5bin/git-shell 5bin/git-shell
6bin/git-upload-archive 6bin/git-upload-archive
7bin/git-upload-pack 7bin/git-upload-pack
8libexec/git-core/git 8libexec/git-core/git
9libexec/git-core/git-add 9libexec/git-core/git-add
10libexec/git-core/git-add--interactive 10libexec/git-core/git-add--interactive
11libexec/git-core/git-am 11libexec/git-core/git-am
12libexec/git-core/git-annotate 12libexec/git-core/git-annotate
13libexec/git-core/git-apply 13libexec/git-core/git-apply
14libexec/git-core/git-archimport 14libexec/git-core/git-archimport
@@ -191,22 +191,23 @@ share/examples/git/git-completion.bash @@ -191,22 +191,23 @@ share/examples/git/git-completion.bash
191share/examples/git/git-prompt.sh 191share/examples/git/git-prompt.sh
192share/examples/git/templates/description 192share/examples/git/templates/description
193share/examples/git/templates/hooks/applypatch-msg.sample 193share/examples/git/templates/hooks/applypatch-msg.sample
194share/examples/git/templates/hooks/commit-msg.sample 194share/examples/git/templates/hooks/commit-msg.sample
195share/examples/git/templates/hooks/post-update.sample 195share/examples/git/templates/hooks/post-update.sample
196share/examples/git/templates/hooks/pre-applypatch.sample 196share/examples/git/templates/hooks/pre-applypatch.sample
197share/examples/git/templates/hooks/pre-commit.sample 197share/examples/git/templates/hooks/pre-commit.sample
198share/examples/git/templates/hooks/pre-push.sample 198share/examples/git/templates/hooks/pre-push.sample
199share/examples/git/templates/hooks/pre-rebase.sample 199share/examples/git/templates/hooks/pre-rebase.sample
200share/examples/git/templates/hooks/prepare-commit-msg.sample 200share/examples/git/templates/hooks/prepare-commit-msg.sample
201share/examples/git/templates/hooks/update.sample 201share/examples/git/templates/hooks/update.sample
202share/examples/git/templates/info/exclude 202share/examples/git/templates/info/exclude
203share/locale/bg/LC_MESSAGES/git.mo 203share/locale/bg/LC_MESSAGES/git.mo
 204share/locale/ca/LC_MESSAGES/git.mo
204share/locale/de/LC_MESSAGES/git.mo 205share/locale/de/LC_MESSAGES/git.mo
205share/locale/fr/LC_MESSAGES/git.mo 206share/locale/fr/LC_MESSAGES/git.mo
206share/locale/is/LC_MESSAGES/git.mo 207share/locale/is/LC_MESSAGES/git.mo
207share/locale/it/LC_MESSAGES/git.mo 208share/locale/it/LC_MESSAGES/git.mo
208share/locale/pt_PT/LC_MESSAGES/git.mo 209share/locale/pt_PT/LC_MESSAGES/git.mo
209share/locale/sv/LC_MESSAGES/git.mo 210share/locale/sv/LC_MESSAGES/git.mo
210share/locale/vi/LC_MESSAGES/git.mo 211share/locale/vi/LC_MESSAGES/git.mo
211share/locale/zh_CN/LC_MESSAGES/git.mo 212share/locale/zh_CN/LC_MESSAGES/git.mo
212@pkgdir share/examples/git/templates/branches 213@pkgdir share/examples/git/templates/branches

cvs diff -r1.16 -r1.17 pkgsrc/devel/git-base/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/git-base/distinfo 2014/08/25 07:49:08 1.16
+++ pkgsrc/devel/git-base/distinfo 2014/10/01 12:08:24 1.17
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1$NetBSD: distinfo,v 1.16 2014/08/25 07:49:08 adam Exp $ 1$NetBSD: distinfo,v 1.17 2014/10/01 12:08:24 adam Exp $
2 2
3SHA1 (git-2.1.0.tar.xz) = d647e6a7a1989f6a8152a96e96e089735552d34c 3SHA1 (git-2.1.2.tar.xz) = b0d38bf2161286f2039a9a2adb4c8f7e5308e824
4RMD160 (git-2.1.0.tar.xz) = ab1d1d873ded6162f45a3c15a291b31a4b77e5e9 4RMD160 (git-2.1.2.tar.xz) = d0bbcda6fc24d8ea6aee2f1069921d8bba5d63c7
5Size (git-2.1.0.tar.xz) = 3485524 bytes 5Size (git-2.1.2.tar.xz) = 3541584 bytes
6SHA1 (patch-aa) = 62170081fcf3831ba7316b5914657063c668a80b 6SHA1 (patch-aa) = 62170081fcf3831ba7316b5914657063c668a80b
7SHA1 (patch-ac) = 376cdd1c58b143c820ff6395987a8a77cf9b52ba 7SHA1 (patch-ac) = 376cdd1c58b143c820ff6395987a8a77cf9b52ba
8SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca 8SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca
9SHA1 (patch-af) = d1aae6d9b15f7932912a97457d8a95364b685b07 9SHA1 (patch-af) = d1aae6d9b15f7932912a97457d8a95364b685b07
10SHA1 (patch-ag) = 4f0b9a5745203ea7ef369c8272b3ea7c644762f0 10SHA1 (patch-ag) = 4f0b9a5745203ea7ef369c8272b3ea7c644762f0
11SHA1 (patch-ah) = f22a2160631fb624e9e20616c68ad1a4aa2bebc7 11SHA1 (patch-ah) = f22a2160631fb624e9e20616c68ad1a4aa2bebc7
12SHA1 (patch-ai) = 56b63d4790a11f5eb128186ad5efdd1bcf102f2e 12SHA1 (patch-ai) = 56b63d4790a11f5eb128186ad5efdd1bcf102f2e
13SHA1 (patch-config.mak.uname) = 5316873147acf5b6ef29e426946280bb6441c886 13SHA1 (patch-config.mak.uname) = 5316873147acf5b6ef29e426946280bb6441c886
14SHA1 (patch-wrapper.c) = 1fb629ec301d0431cb5bebd716b1c3a7ae45577f 14SHA1 (patch-wrapper.c) = 1fb629ec301d0431cb5bebd716b1c3a7ae45577f