--- Begin Message ---
Module Name: pkgsrc
Committed By: gdt
Date: Wed Jul 17 14:33:28 UTC 2019
Modified Files:
pkgsrc/devel/git: DESCR Makefile
Log Message:
devel/git: Drop git-gitk from git metapakage
As discussed at length on pkgsrc-users: A number of people believe
that the git metapackage should contain all of what is in git's
release tarball, and that people should read DESCR. A number of
people believe that the package named git should contain less (not
gitk), and sometimes even less than that. As a compromise where each
group is merely grumbling a little, drop gitk from the metapackage,
because it is a component that some are bothered by (because it
depends on tk, tcl and X, mostly), and because it is easy for those
that want it to install it separately.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/git/DESCR
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/git/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/git/DESCR
diff -u pkgsrc/devel/git/DESCR:1.2 pkgsrc/devel/git/DESCR:1.3
--- pkgsrc/devel/git/DESCR:1.2 Thu Jul 11 18:46:51 2019
+++ pkgsrc/devel/git/DESCR Wed Jul 17 14:33:28 2019
@@ -1,5 +1,7 @@
-This package is a meta package, collecting the components normally
-expected to be installed for the GIT distributed version control suite
-(the tool itself, the man pages, contrib scripts, and the tk-based
-browser gitk.) (See git-base for a minimal installation of the
-command-line tools.)
+This package is a meta package, collecting the components that are
+widely expected to be installed for the GIT distributed version
+control suite, i.e., the tool itself, the man pages, and contrib scripts.
+
+See git-base for a minimal installation of the command-line tools.
+See git-gitk for the tk-based browser gitk, no longer included in the
+git meta-package.
Index: pkgsrc/devel/git/Makefile
diff -u pkgsrc/devel/git/Makefile:1.4 pkgsrc/devel/git/Makefile:1.5
--- pkgsrc/devel/git/Makefile:1.4 Fri Jul 10 17:32:57 2015
+++ pkgsrc/devel/git/Makefile Wed Jul 17 14:33:28 2019
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.4 2015/07/10 17:32:57 khorben Exp $
+# $NetBSD: Makefile,v 1.5 2019/07/17 14:33:28 gdt Exp $
.include "../../devel/git/Makefile.version"
DISTNAME= # empty
PKGNAME= git-${GIT_VERSION}
+PKGREVISION= 1
CATEGORIES+= meta-pkgs devel
DISTFILES= # empty
MASTER_SITES= http://www.kernel.org/pub/software/scm/git/
@@ -19,6 +20,5 @@ META_PACKAGE= yes
DEPENDS+= git-base>=${GIT_VERSION}:../../devel/git-base
DEPENDS+= git-contrib>=${GIT_VERSION}:../../devel/git-contrib
DEPENDS+= git-docs>=${GIT_VERSION}:../../devel/git-docs
-DEPENDS+= git-gitk>=${GIT_VERSION}:../../devel/git-gitk
.include "../../mk/bsd.pkg.mk"
--- End Message ---