blob: 6a599c3df3e4851c1f4c563f795866e889c1836b (
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
26
27
28
|
PORTNAME= cpe
PORTVERSION= 1.2.1
CATEGORIES= security python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= bofh@FreeBSD.org
COMMENT= CPE: Common Platform Enumeration for Python
WWW= https://github.com/nilp0inter/cpe
LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python:3.6+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
post-patch:
@${REINPLACE_CMD} -e 's|expression2_2|tests/expression2_2|g' \
${WRKSRC}/tests/testfile_cpelang2_2.txt
@${REINPLACE_CMD} -e 's|expression2_3|tests/expression2_3|g' \
${WRKSRC}/tests/testfile_cpelang2_3.txt
do-test:
@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest
.include <bsd.port.mk>
|