blob: 19834831f56610128dc4d8447ba5e0b811c4266a (
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.1 2022/01/10 17:39:52 adam Exp $
DISTNAME= Deprecated-1.2.13
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/deprecated/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/tantale/deprecated
COMMENT= Python decorator to deprecate old python classes, functions or methods
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-wrapt>=1.10:../../devel/py-wrapt
USE_LANGUAGES= # none
PYTHON_VERSIONED_DEPENDENCIES= test:test
do-test:
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
.include "../../lang/python/egg.mk"
.include "../../lang/python/versioned_dependencies.mk"
.include "../../mk/bsd.pkg.mk"
|