summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2012-07-18 12:09:56 +0000
committeradam <adam@pkgsrc.org>2012-07-18 12:09:56 +0000
commit600bc55dbc2e6180b50de3c1842a4ab3d71d6770 (patch)
tree95277c020d22357402be4059d3e752abd1a061e6
parentc6c1fb669f42ba373302269630ffac2fc99f3934 (diff)
downloadpkgsrc-600bc55dbc2e6180b50de3c1842a4ab3d71d6770.tar.gz
Changes 1.7.11.2:
* On Cygwin, the platform pread(2) is not thread safe, just like our own compat/ emulation, and cannot be used in the index-pack program. Makefile variable NO_THREAD_SAFE_PREAD can be defined to avoid use of this function in a threaded program. * "git add" allows adding a regular file to the path where a submodule used to exist, but "git update-index" does not allow an equivalent operation to Porcelain writers. * "git archive" incorrectly computed the header checksum; the symptom was observed only when using pathnames with hi-bit set. * "git blame" did not try to make sure that the abbreviated commit object names in its output are unique. * Running "git bundle verify" on a bundle that records a complete history said "it requires these 0 commits". * "git clone --single-branch" to clone a single branch did not limit the cloning to the specified branch. * "git diff --no-index" did not correctly handle relative paths and did not correctly give exit codes when run under "--quiet" option. * "git diff --no-index" did not work with pagers correctly. * "git diff COPYING HEAD:COPYING" gave a nonsense error message that claimed that the treeish HEAD did not have COPYING in it. * When "git log" gets "--simplify-merges/by-decoration" together with "--first-parent", the combination of these options makes the simplification logic to use in-core commit objects that haven't been examined for relevance, either producing incorrect result or taking too long to produce any output. Teach the simplification logic to ignore commits that the first-parent traversal logic ignored when both are in effect to work around the issue. * "git ls-files --exclude=t -i" did not consider anything under t/ as excluded, as it did not pay attention to exclusion of leading paths while walking the index. Other two users of excluded() are also updated. * "git request-pull $url dev" when the tip of "dev" branch was tagged with "ext4-for-linus" used the contents from the tag in the output but still asked the "dev" branch to be pulled, not the tag. Also contains minor typofixes and documentation updates.
-rw-r--r--devel/scmgit-base/distinfo8
-rw-r--r--devel/scmgit/Makefile.version4
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/scmgit-base/distinfo b/devel/scmgit-base/distinfo
index 6c7f95b8bbe..39996a66f99 100644
--- a/devel/scmgit-base/distinfo
+++ b/devel/scmgit-base/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.57 2012/07/09 14:30:49 adam Exp $
+$NetBSD: distinfo,v 1.58 2012/07/18 12:09:56 adam Exp $
-SHA1 (git-1.7.11.1.tar.gz) = d09664978931d215e43241689eb09371b509c7ce
-RMD160 (git-1.7.11.1.tar.gz) = bbe8156888a43256012cc0d1d5f44b430921b107
-Size (git-1.7.11.1.tar.gz) = 4000383 bytes
+SHA1 (git-1.7.11.2.tar.gz) = f67b4f6c0277250411c6872ae7b8a872ae11d313
+RMD160 (git-1.7.11.2.tar.gz) = c19a83684ff3448b844974663304530149f411e2
+Size (git-1.7.11.2.tar.gz) = 4015780 bytes
SHA1 (patch-aa) = e4c1d5a723b97056e06f966e1dbb44d330678ff1
SHA1 (patch-ac) = ae75c6ca3abb5edf688e4877f3df8b6c6297f091
SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca
diff --git a/devel/scmgit/Makefile.version b/devel/scmgit/Makefile.version
index 3574580c479..75f1595dc2a 100644
--- a/devel/scmgit/Makefile.version
+++ b/devel/scmgit/Makefile.version
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.version,v 1.44 2012/07/09 14:30:49 adam Exp $
+# $NetBSD: Makefile.version,v 1.45 2012/07/18 12:09:56 adam Exp $
#
# used by devel/scmgit/Makefile.common
# used by www/gitweb/Makefile
-GIT_VERSION= 1.7.11.1
+GIT_VERSION= 1.7.11.2