diff options
author | Steve Wills <swills@FreeBSD.org> | 2018-04-17 04:08:58 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2018-04-17 04:08:58 +0000 |
commit | 374870e7d6d6c0bce92e8c39ddbc16a50290af1a (patch) | |
tree | 20e596d151602425447bc76c94c71b3798f45ff6 | |
parent | * Updated to 0.2.0 (diff) |
www/py-httmock: create port
A mocking library for requests for Python 2.7 and 3.4+.
WWW: https://github.com/patrys/httmock
PR: 227194
Submitted by: dereks@lifeofadishwasher.com
Notes
Notes:
svn path=/head/; revision=467557
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/py-httmock/Makefile | 34 | ||||
-rw-r--r-- | www/py-httmock/distinfo | 5 | ||||
-rw-r--r-- | www/py-httmock/pkg-descr | 3 |
4 files changed, 43 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index f19a2cfa4650..33d03e1f06fe 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1680,6 +1680,7 @@ SUBDIR += py-html SUBDIR += py-html5-parser SUBDIR += py-html5lib + SUBDIR += py-httmock SUBDIR += py-http-parser SUBDIR += py-httpie SUBDIR += py-httplib2 diff --git a/www/py-httmock/Makefile b/www/py-httmock/Makefile new file mode 100644 index 000000000000..dfa02989b020 --- /dev/null +++ b/www/py-httmock/Makefile @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= httmock +PORTVERSION= 1.2.6 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP \ + https://raw.githubusercontent.com/patrys/${PORTNAME}/${PORTVERSION}/:tests +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + tests.py:tests +DIST_SUBDIR= py-${PORTNAME} +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} + +MAINTAINER= dereks@lifeofadishwasher.com +COMMENT= Mocking library for requests + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=1.0.0:www/py-requests@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +# Description: tests.py is missing from the pypi package +# Issue ID: https://github.com/patrys/httmock/issues/55 +# TODO: Remove extra MASTER_SITES, DISTFILES/SUBDIR, EXTRACT_ONLY, post-extract +post-extract: + @${MV} ${DISTDIR}/${DIST_SUBDIR}/tests.py ${WRKSRC} + +do-test: + cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include <bsd.port.mk> diff --git a/www/py-httmock/distinfo b/www/py-httmock/distinfo new file mode 100644 index 000000000000..b480a3312ac0 --- /dev/null +++ b/www/py-httmock/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1522615776 +SHA256 (py-httmock/httmock-1.2.6.tar.gz) = 4696306d1ff835c3ca865fdef2684d7e130b4120cc00126f862ba4797b1602ac +SIZE (py-httmock/httmock-1.2.6.tar.gz) = 4399 +SHA256 (py-httmock/tests.py) = 544bcd2a837b7493df8062b16611de4e53fc2761ffa25e9553a2ffdbc0972d2c +SIZE (py-httmock/tests.py) = 11680 diff --git a/www/py-httmock/pkg-descr b/www/py-httmock/pkg-descr new file mode 100644 index 000000000000..e7408b8ef3f5 --- /dev/null +++ b/www/py-httmock/pkg-descr @@ -0,0 +1,3 @@ +A mocking library for requests for Python 2.7 and 3.4+. + +WWW: https://github.com/patrys/httmock |