summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2011-03-11 09:28:39 +0000
committeradam <adam@pkgsrc.org>2011-03-11 09:28:39 +0000
commit11671ab5028a3fac11444c04b8a7f36c5358b1e2 (patch)
tree2881801392ad4959bbc8be6a1ff82c7defae3a3e
parent2fa747b6d6f2fdc992c2f81b80b18917b95ae905 (diff)
downloadpkgsrc-11671ab5028a3fac11444c04b8a7f36c5358b1e2.tar.gz
Changes 1.7.4.1:
* On Windows platform, the codepath to spawn a new child process forgot to first flush the output buffer. * "git bundle" did not use OFS_DELTA encoding, making its output a few per-cent larger than necessarily. * The option to tell "git clone" to recurse into the submodules was misspelled with an underscore "--recurse_submodules". * "git diff --cached HEAD" before the first commit does what an end user would expect (namely, show what would be committed without further "git add"). * "git fast-import" didn't accept the command to ask for "notes" feature to be present in its input stream, even though it was capable of the feature. * "git fsck" gave up scanning loose object files in directories with garbage files.
-rw-r--r--devel/scmgit-base/PLIST5
-rw-r--r--devel/scmgit-base/distinfo8
-rw-r--r--devel/scmgit-docs/PLIST4
-rw-r--r--devel/scmgit/Makefile.version6
4 files changed, 14 insertions, 9 deletions
diff --git a/devel/scmgit-base/PLIST b/devel/scmgit-base/PLIST
index 93d4ae45df9..54294d66a69 100644
--- a/devel/scmgit-base/PLIST
+++ b/devel/scmgit-base/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.21 2010/12/23 23:42:40 abs Exp $
+@comment $NetBSD: PLIST,v 1.22 2011/03/11 09:28:39 adam Exp $
bin/git
bin/git-cvsserver
bin/git-receive-pack
@@ -130,6 +130,8 @@ libexec/git-core/git-receive-pack
libexec/git-core/git-reflog
libexec/git-core/git-relink
libexec/git-core/git-remote
+libexec/git-core/git-remote-ext
+libexec/git-core/git-remote-fd
libexec/git-core/git-remote-ftp
libexec/git-core/git-remote-ftps
libexec/git-core/git-remote-http
@@ -250,6 +252,7 @@ ${PLIST.gui}share/gitk/lib/msgs/fr.msg
${PLIST.gui}share/gitk/lib/msgs/hu.msg
${PLIST.gui}share/gitk/lib/msgs/it.msg
${PLIST.gui}share/gitk/lib/msgs/ja.msg
+${PLIST.gui}share/gitk/lib/msgs/pt_br.msg
${PLIST.gui}share/gitk/lib/msgs/ru.msg
${PLIST.gui}share/gitk/lib/msgs/sv.msg
share/gitweb/gitweb.cgi
diff --git a/devel/scmgit-base/distinfo b/devel/scmgit-base/distinfo
index 0e4305254c1..9b226b24317 100644
--- a/devel/scmgit-base/distinfo
+++ b/devel/scmgit-base/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.31 2011/01/28 08:11:30 adam Exp $
+$NetBSD: distinfo,v 1.32 2011/03/11 09:28:39 adam Exp $
-SHA1 (git-1.7.3.5.tar.bz2) = cf9587ecf7cae04463d05b9f9ce8990913bd925a
-RMD160 (git-1.7.3.5.tar.bz2) = 3ad6eb187b7a901addb3ee5a2ade70ba550007f6
-Size (git-1.7.3.5.tar.bz2) = 2635455 bytes
+SHA1 (git-1.7.4.1.tar.bz2) = fff10cb498b17decc146c8f18b0b02136d5e9b88
+RMD160 (git-1.7.4.1.tar.bz2) = 13ef7b6d1e8b596f97a1920e012a00f6cc8cdf6c
+Size (git-1.7.4.1.tar.bz2) = 2703860 bytes
SHA1 (patch-aa) = f47ff9d8b9ba8592f7bbd21d4b0ab30394e8f9a0
SHA1 (patch-ac) = ae75c6ca3abb5edf688e4877f3df8b6c6297f091
SHA1 (patch-ae) = 06ea26658a986dc702c1c2c04c1a27f0a01e4dce
diff --git a/devel/scmgit-docs/PLIST b/devel/scmgit-docs/PLIST
index cca196585f2..26fb0eeb8fb 100644
--- a/devel/scmgit-docs/PLIST
+++ b/devel/scmgit-docs/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2010/10/28 10:23:08 adam Exp $
+@comment $NetBSD: PLIST,v 1.9 2011/03/11 09:28:40 adam Exp $
man/man1/git-add.1
man/man1/git-am.1
man/man1/git-annotate.1
@@ -93,6 +93,8 @@ man/man1/git-rebase.1
man/man1/git-receive-pack.1
man/man1/git-reflog.1
man/man1/git-relink.1
+man/man1/git-remote-ext.1
+man/man1/git-remote-fd.1
man/man1/git-remote-helpers.1
man/man1/git-remote.1
man/man1/git-repack.1
diff --git a/devel/scmgit/Makefile.version b/devel/scmgit/Makefile.version
index 935d34c2000..512820f602f 100644
--- a/devel/scmgit/Makefile.version
+++ b/devel/scmgit/Makefile.version
@@ -1,3 +1,3 @@
-# $NetBSD: Makefile.version,v 1.18 2011/01/28 08:11:30 adam Exp $
-#
-GIT_VERSION= 1.7.3.5
+# $NetBSD: Makefile.version,v 1.19 2011/03/11 09:28:39 adam Exp $
+
+GIT_VERSION= 1.7.4.1