pkgsrc/devel/scmgit/Makefile
minskim 6c88932bbb Update scmgit{,-base,-docs} to 1.6.2.5.
Major changes in 1.6.1:

When some commands (e.g. "git log", "git diff") spawn pager
internally, we used to make the pager the parent process of the git
command that produces output.  This meant that the exit status of the
whole thing comes from the pager, not the underlying git command.  We
swapped the order of the processes around and you will see the exit
code from the command from now on.

Major changes in 1.6.2:

With the next major release, "git push" into a branch that is
currently checked out will be refused by default.  You can choose what
should happen upon such a push by setting the configuration variable
receive.denyCurrentBranch in the receiving repository.

To ease the transition plan, the receiving repository of such a push
running this release will issue a big warning when the configuration
variable is missing.

For a similar reason, "git push $there :$killed" to delete the branch
$killed in a remote repository $there, if $killed branch is the
current branch pointed at by its HEAD, gets a large warning.  You can
choose what should happen upon such a push by setting the
configuration variable receive.denyDeleteCurrent in the receiving
repository.
2009-05-05 06:21:16 +00:00

19 lines
517 B
Makefile

# $NetBSD: Makefile,v 1.28 2009/05/05 06:21:16 minskim Exp $
.include "../../devel/scmgit/Makefile.version"
DISTNAME= # empty
PKGNAME= scmgit-${GIT_VERSION}
CATEGORIES+= meta-pkgs devel
DISTFILES= # empty
MASTER_SITES= http://www.kernel.org/pub/software/scm/git/
MAINTAINER= bjs@NetBSD.org
COMMENT= GIT version control suite meta-package
META_PACKAGE= yes
DEPENDS+= scmgit-base>=${GIT_VERSION}:../../devel/scmgit-base
DEPENDS+= scmgit-docs>=${GIT_VERSION}:../../devel/scmgit-docs
.include "../../mk/bsd.pkg.mk"