forked from Lainports/freebsd-ports
biology/py-dnaio: Update to 0.5.0 archivers/py-xopen: Update to 1.0.0 Numerous bug fixes and enhancements since cutadapt 3.2 Document cutadapt dependency versions dnaio~=0.5.0 xopen~=1.0.0 Bump python dependency to 3.6+ to restrict package builds
28 lines
712 B
Makefile
28 lines
712 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= xopen
|
|
DISTVERSION= 1.0.0 # py-cutadapt requires 1.0.x
|
|
CATEGORIES= archivers python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= jwb@FreeBSD.org
|
|
COMMENT= Open compressed files transparently
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bz2file>=0.98:archivers/py-bz2file@${PY_FLAVOR} \
|
|
pigz>=0:archivers/pigz
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
|
|
|
|
USES= python:3.6+
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest
|
|
|
|
.include <bsd.port.mk>
|