svn commit: r553688 - in head/www: . py-httpretty
Alexey Dokuchaev
danfe at FreeBSD.org
Fri Oct 30 12:40:21 UTC 2020
Author: danfe
Date: Fri Oct 30 12:40:20 2020
New Revision: 553688
URL: https://svnweb.freebsd.org/changeset/ports/553688
Log:
HTTP client mocking tool for Python. It is used by the test suite of
the `net/cloud-init' port.
WWW: https://pypi.org/project/httpretty/
Added:
head/www/py-httpretty/
head/www/py-httpretty/Makefile (contents, props changed)
head/www/py-httpretty/distinfo (contents, props changed)
head/www/py-httpretty/pkg-descr (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Fri Oct 30 12:06:25 2020 (r553687)
+++ head/www/Makefile Fri Oct 30 12:40:20 2020 (r553688)
@@ -1629,6 +1629,7 @@
SUBDIR += py-httpcore
SUBDIR += py-httpie
SUBDIR += py-httplib2
+ SUBDIR += py-httpretty
SUBDIR += py-httptools
SUBDIR += py-httpx
SUBDIR += py-httpx013
Added: head/www/py-httpretty/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-httpretty/Makefile Fri Oct 30 12:40:20 2020 (r553688)
@@ -0,0 +1,18 @@
+# Created by: Alexey Dokuchaev <danfe at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= httpretty
+PORTVERSION= 1.0.2
+CATEGORIES= www python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= python at FreeBSD.org
+COMMENT= HTTP client mocking tool for Python
+
+LICENSE= MIT
+
+USES= python:3.6+
+USE_PYTHON= autoplist distutils
+
+.include <bsd.port.mk>
Added: head/www/py-httpretty/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-httpretty/distinfo Fri Oct 30 12:40:20 2020 (r553688)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585228470
+SHA256 (httpretty-1.0.2.tar.gz) = 24a6fd2fe1c76e94801b74db8f52c0fb42718dc4a199a861b305b1a492b9d868
+SIZE (httpretty-1.0.2.tar.gz) = 399185
Added: head/www/py-httpretty/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-httpretty/pkg-descr Fri Oct 30 12:40:20 2020 (r553688)
@@ -0,0 +1,4 @@
+HTTP client mocking tool for Python. Provides a full fake TCP socket
+module. Inspired by FakeWeb.
+
+WWW: https://pypi.org/project/httpretty/
More information about the svn-ports-head
mailing list