blob: 365bbafcabb296e1ff0d81003af24f44ed900730 (
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
|
# $NetBSD: Makefile,v 1.7 2020/10/09 15:43:07 leot Exp $
DISTNAME= rt-2.0.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= net python
MASTER_SITES= ${MASTER_SITE_PYPI:=r/rt/}
MAINTAINER= leot@NetBSD.org
HOMEPAGE= https://github.com/CZ-NIC/python-rt
COMMENT= Python interface to Request Tracker API
LICENSE= gnu-gpl-v3
DIST_SUBDIR= py-rt # XXX: avoid possible conflicts with devel/rt{3,}
DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
USE_LANGUAGES= # none
# Only for Python 3
PYTHON_VERSIONS_INCOMPATIBLE= 27
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|