Changes 1.8.1.2:

* An element on GIT_CEILING_DIRECTORIES list that does not name the
  real path to a directory (i.e. a symbolic link) could have caused
  the GIT_DIR discovery logic to escape the ceiling.
* Command line completion for "tcsh" emitted an unwanted space
  after completing a single directory name.
* Command line completion leaked an unnecessary error message while
  looking for possible matches with paths in <tree-ish>.
* "git archive" did not record uncompressed size in the header when
  streaming a zip archive, which confused some implementations of unzip.
* When users spelled "cc:" in lowercase in the fake "header" in the
  trailer part, "git send-email" failed to pick up the addresses from
  there. As e-mail headers field names are case insensitive, this
  script should follow suit and treat "cc:" and "Cc:" the same way.
This commit is contained in:
adam 2013-01-30 17:39:39 +00:00
parent 785fb0207d
commit 6ffd173e81
4 changed files with 10 additions and 14 deletions

View file

@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.66 2013/01/28 15:22:09 adam Exp $
$NetBSD: distinfo,v 1.67 2013/01/30 17:39:39 adam Exp $
SHA1 (git-1.8.1.1.tar.gz) = 44b90aab937b0e0dbb0661eb5ec4ca6182e60854
RMD160 (git-1.8.1.1.tar.gz) = 724ece9b533e50dc27902ea839c3678f0bd89b9b
Size (git-1.8.1.1.tar.gz) = 4295398 bytes
SHA1 (git-1.8.1.2.tar.gz) = 29a2dee568b1f86e9d3d8f9dcc376f24439b6a0c
RMD160 (git-1.8.1.2.tar.gz) = d67332f59e180eb8b1cc0f7c429e4d9f030ac843
Size (git-1.8.1.2.tar.gz) = 4297221 bytes
SHA1 (patch-aa) = b1a8a325a62013438324ec001bbe48eaebd56f5a
SHA1 (patch-ac) = ae75c6ca3abb5edf688e4877f3df8b6c6297f091
SHA1 (patch-ae) = 9bc2e6c7f0a8fbc385b6ffda638d3245a62dc5ca

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2012/10/31 11:19:44 asau Exp $
# $NetBSD: Makefile,v 1.3 2013/01/30 17:39:39 adam Exp $
PKGNAME= scmgit-gitk-${GIT_VERSION}
COMMENT= GIT Tree History Storage Tool (gitk)
@ -12,9 +12,6 @@ BUILD_DIRS= git-gui gitk-git
INSTALL_DIRS= ${BUILD_DIRS}
MAKE_ENV+= prefix=${PREFIX}
PATCHDIR= ${.CURDIR}/../../devel/scmgit-base/patches
DISTINFO_FILE= ${.CURDIR}/../../devel/scmgit-base/distinfo
USE_TOOLS+= wish:run
CONFIGURE_ARGS+= --with-tcltk=${WISH:Q}

View file

@ -1,10 +1,9 @@
# $NetBSD: Makefile,v 1.32 2013/01/30 14:45:00 wiz Exp $
# $NetBSD: Makefile,v 1.33 2013/01/30 17:39:39 adam Exp $
.include "../../devel/scmgit/Makefile.version"
DISTNAME= # empty
PKGNAME= scmgit-${GIT_VERSION}
PKGREVISION= 1
CATEGORIES+= meta-pkgs devel
DISTFILES= # empty
MASTER_SITES= http://www.kernel.org/pub/software/scm/git/

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile.version,v 1.52 2013/01/28 15:22:09 adam Exp $
# $NetBSD: Makefile.version,v 1.53 2013/01/30 17:39:39 adam Exp $
#
# used by devel/scmgit/Makefile.common
# used by www/gitweb/Makefile
GIT_VERSION= 1.8.1.1
GIT_VERSION= 1.8.1.2