edf74dd90b
- Update to 2.4.3 - Update to USES and USE_PYTHON new world order - Add LICENSE_FILE - Add TEST_DEPENDS - Update pkg-descr Changes: https://github.com/kennethreitz/requests/blob/v2.4.3/HISTORY.rst
27 lines
595 B
Makefile
27 lines
595 B
Makefile
# Created by: Olivier Duchateau <duchateau.olivier@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= requests
|
|
PORTVERSION= 2.4.3
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= HTTP library written in Python for human beings
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.3.4:${PORTSDIR}/devel/py-pytest
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
CONFLICTS_INSTALL= py*-requests1-*
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} test_requests.py
|
|
|
|
.include <bsd.port.mk>
|