blob: 3278c1990f1caea5a0243f1fc47b4abea97ff3fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.14 2022/10/14 09:01:12 adam Exp $
DISTNAME= GitPython-3.1.29
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=g/gitpython/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/gitpython-developers/GitPython
COMMENT= Python Git Library
LICENSE= modified-bsd
DEPENDS+= ${PYPKGPREFIX}-gitdb>=4.0.1:../../devel/py-gitdb
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27
.include "../../lang/python/pyversion.mk"
.if ${_PYTHON_VERSION} < 38
DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.4.3:../../devel/py-typing-extensions
.endif
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|