diff options
author | khorben <khorben@pkgsrc.org> | 2016-05-26 15:36:59 +0000 |
---|---|---|
committer | khorben <khorben@pkgsrc.org> | 2016-05-26 15:36:59 +0000 |
commit | fa348b8adc1aa05645cfb40c1d15eff2409ae846 (patch) | |
tree | 43e3680d8ac578c95b04dbad5cac185dba5ee7f4 /devel | |
parent | 3973317105bd9920d9d88cf0d7de058747a81ce8 (diff) | |
download | pkgsrc-fa348b8adc1aa05645cfb40c1d15eff2409ae846.tar.gz |
Add devel/git-cvs
This simply moves the dependency of devel/git-base on cvsps away to a
separate package, as already done for git-svn(1) in devel/git-svn.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/git-cvs/DESCR | 2 | ||||
-rw-r--r-- | devel/git-cvs/Makefile | 19 |
2 files changed, 21 insertions, 0 deletions
diff --git a/devel/git-cvs/DESCR b/devel/git-cvs/DESCR new file mode 100644 index 00000000000..55e82e45c1d --- /dev/null +++ b/devel/git-cvs/DESCR @@ -0,0 +1,2 @@ +Imports a CVS repository into Git. It will either create a new +repository, or incrementally import into an existing one. diff --git a/devel/git-cvs/Makefile b/devel/git-cvs/Makefile new file mode 100644 index 00000000000..2f84f093052 --- /dev/null +++ b/devel/git-cvs/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1 2016/05/26 15:36:59 khorben Exp $ + +.include "../../devel/git/Makefile.version" + +DISTNAME= # empty +PKGNAME= git-cvs-${GIT_VERSION} +CATEGORIES+= meta-pkgs devel +DISTFILES= # empty + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Salvages data out of another SCM people love to hate. +LICENSE= 2-clause-bsd + +META_PACKAGE= yes + +DEPENDS+= git-base>=${GIT_VERSION}:../../devel/git-base +DEPENDS+= cvsps:../../devel/cvsps + +.include "../../mk/bsd.pkg.mk" |