diff options
author | antoine <antoine@FreeBSD.org> | 2017-06-14 13:40:41 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2017-06-14 13:40:41 +0800 |
commit | 5e5bd891ebba56349b81e7255768256c9896e5b9 (patch) | |
tree | 2546b1990cc348b33b45d09e6a6d7a18327c1e22 | |
parent | 1b099a2098531f4e85ffbd571a30f5dafe476070 (diff) | |
download | freebsd-ports-gnome-5e5bd891ebba56349b81e7255768256c9896e5b9.tar.gz freebsd-ports-gnome-5e5bd891ebba56349b81e7255768256c9896e5b9.tar.zst freebsd-ports-gnome-5e5bd891ebba56349b81e7255768256c9896e5b9.zip |
Remove www/py-vcrpy, duplicate of devel/py-vcrpy
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/py-flexget/Makefile | 2 | ||||
-rw-r--r-- | www/py-vcrpy/Makefile | 29 | ||||
-rw-r--r-- | www/py-vcrpy/distinfo | 3 | ||||
-rw-r--r-- | www/py-vcrpy/pkg-descr | 24 |
5 files changed, 1 insertions, 58 deletions
diff --git a/www/Makefile b/www/Makefile index 347e58dd3bec..79eee2011177 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1831,7 +1831,6 @@ SUBDIR += py-urlobject SUBDIR += py-user_agent SUBDIR += py-utidylib - SUBDIR += py-vcrpy SUBDIR += py-w3lib SUBDIR += py-waitress SUBDIR += py-webassets diff --git a/www/py-flexget/Makefile b/www/py-flexget/Makefile index 4618badceaf5..51ed022e236a 100644 --- a/www/py-flexget/Makefile +++ b/www/py-flexget/Makefile @@ -46,7 +46,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0.13:databases/py-sqlalchemy TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ ${PYTHON_PKGNAMEPREFIX}pytest-capturelog>0:devel/py-pytest-capturelog \ ${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3 \ - ${PYTHON_PKGNAMEPREFIX}vcrpy>0:www/py-vcrpy + ${PYTHON_PKGNAMEPREFIX}vcrpy>0:devel/py-vcrpy USE_GITHUB= yes GH_PROJECT= Flexget diff --git a/www/py-vcrpy/Makefile b/www/py-vcrpy/Makefile deleted file mode 100644 index ec74ce1f7500..000000000000 --- a/www/py-vcrpy/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# $FreeBSD$ - -PORTNAME= vcrpy -PORTVERSION= 1.11.1 -CATEGORIES= www python -MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= jbeich@FreeBSD.org -COMMENT= Automatically mock your HTTP interactions to simplify and speed up testing - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE.txt - -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.5:devel/py-six \ - ${PYTHON_PKGNAMEPREFIX}wrapt>0:devel/py-wrapt \ - ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml - -NO_ARCH= yes -USES= python -USE_PYTHON= autoplist distutils - -.include <bsd.port.pre.mk> - -.if ${PYTHON_REL} < 3300 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}contextlib2>0:devel/py-contextlib2 -.endif - -.include <bsd.port.post.mk> diff --git a/www/py-vcrpy/distinfo b/www/py-vcrpy/distinfo deleted file mode 100644 index 4daa4d59be4f..000000000000 --- a/www/py-vcrpy/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1495936275 -SHA256 (vcrpy-1.11.1.tar.gz) = f434fe7e05d940d576ac850709ae57a738ba40e7f317076ea8d359ced5b32320 -SIZE (vcrpy-1.11.1.tar.gz) = 63122 diff --git a/www/py-vcrpy/pkg-descr b/www/py-vcrpy/pkg-descr deleted file mode 100644 index ad5f08299d2a..000000000000 --- a/www/py-vcrpy/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -VCR.py simplifies and speeds up tests that make HTTP requests. The -first time you run code that is inside a VCR.py context manager or -decorated function, VCR.py records all HTTP interactions that take -place through the libraries it supports and serializes and writes them -to a flat file (in yaml format by default). This flat file is called a -cassette. When the relevant piece of code is executed again, VCR.py -will read the serialized requests and responses from the -aforementioned cassette file, and intercept any HTTP requests that it -recognizes from the original test run and return the responses that -corresponded to those requests. This means that the requests will not -actually result in HTTP traffic, which confers several benefits -including: - -* The ability to work offline -* Completely deterministic tests -* Increased test execution speed - -If the server you are testing against ever changes its API, all you -need to do is delete your existing cassette files, and run your tests -again. VCR.py will detect the absence of a cassette file and once -again record all HTTP interactions, which will update them to -correspond to the new API. - -WWW: https://pypi.python.org/pypi/vcrpy |