diff options
author | gdt <gdt@pkgsrc.org> | 2011-09-13 17:58:58 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2011-09-13 17:58:58 +0000 |
commit | 4d234e2e987608f4cf2db7f5905eb4f6fc9a4e9f (patch) | |
tree | f61251a9ec9db2190ecef132cc97817da6ac232c /devel/scmgit | |
parent | cf15b6a4f7d48add9048ac042aa8821174752b29 (diff) | |
download | pkgsrc-4d234e2e987608f4cf2db7f5905eb4f6fc9a4e9f.tar.gz |
Update to 1.7.6.3 from 1.7.6.1. Add backup googlecode MASTER_SITE due
to kernel.org issues.
1.7.6.3:
* "git -c var=value subcmd" misparsed the custom configuration when
value contained an equal sign.
* "git fetch" had a major performance regression, wasting many
needless cycles in a repository where there is no submodules
present. This was especially bad, when there were many refs.
* "git reflog $refname" did not default to the "show" subcommand as
the documentation advertised the command to do.
* "git reset" did not leave meaningful log message in the reflog.
* "git status --ignored" did not show ignored items when there is no
untracked items.
* "git tag --contains $commit" was unnecessarily inefficient.
Also contains minor fixes and documentation updates.
1.7.6.2:
Junio C Hamano (3):
whitespace: have SP on both sides of an assignment "="
Revert "Merge branch 'cb/maint-quiet-push' into maint"
Git 1.7.6.2
Pang Yan Han (1):
update-ref: whitespace fix
Thomas Rast (1):
Documentation: clarify effects of -- <path> arguments
Diffstat (limited to 'devel/scmgit')
-rw-r--r-- | devel/scmgit/Makefile.common | 7 | ||||
-rw-r--r-- | devel/scmgit/Makefile.version | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/devel/scmgit/Makefile.common b/devel/scmgit/Makefile.common index 1493bb19de6..82521b24137 100644 --- a/devel/scmgit/Makefile.common +++ b/devel/scmgit/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.19 2011/08/08 14:00:00 tnn Exp $ +# $NetBSD: Makefile.common,v 1.20 2011/09/13 17:58:58 gdt Exp $ # # used by devel/scmgit-base/Makefile # used by devel/scmgit-docs/Makefile @@ -7,8 +7,9 @@ DISTNAME= git-${GIT_VERSION} CATEGORIES= devel scm -MASTER_SITES?= http://www.kernel.org/pub/software/scm/git/ -EXTRACT_SUFX= .tar.bz2 +MASTER_SITES?= http://www.kernel.org/pub/software/scm/git/ http://git-core.googlecode.com/files/ +# Historically .tar.bz2 has been available, but 1.7.6.3 is only .tar.gz +#EXTRACT_SUFX= .tar.bz2 MAINTAINER?= pkgsrc-users@NetBSD.org HOMEPAGE?= http://git.or.cz/ diff --git a/devel/scmgit/Makefile.version b/devel/scmgit/Makefile.version index e2816863102..51e29c0ad6d 100644 --- a/devel/scmgit/Makefile.version +++ b/devel/scmgit/Makefile.version @@ -1,3 +1,3 @@ -# $NetBSD: Makefile.version,v 1.27 2011/08/30 09:34:42 adam Exp $ +# $NetBSD: Makefile.version,v 1.28 2011/09/13 17:58:58 gdt Exp $ -GIT_VERSION= 1.7.6.1 +GIT_VERSION= 1.7.6.3 |