blob: 0e9e56666bd05d48e472b67ae270bafa3ca3f337 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
PORTNAME= recordclass
PORTVERSION= 0.22
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= thierry@FreeBSD.org
COMMENT= Mutable variants of tuple and collections.namedtuple
WWW= https://github.com/intellimath/recordclass
LICENSE= MIT
USES= python:3.9+
USE_PYTHON= distutils
.if ! defined(WITH_DEBUG)
LDFLAGS+= -s
.endif
do-test: install
(cd ${WRKSRC} && ${PYTHON_CMD} ./test_all.py)
.include <bsd.port.mk>
|