From owner-svn-ports-head@freebsd.org Fri Oct 30 12:40:21 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 996F7451C93; Fri, 30 Oct 2020 12:40:21 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CN22s3WrDz3gQR; Fri, 30 Oct 2020 12:40:21 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5C32A16AB0; Fri, 30 Oct 2020 12:40:21 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09UCeL9Q005359; Fri, 30 Oct 2020 12:40:21 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09UCeKSb005355; Fri, 30 Oct 2020 12:40:20 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <202010301240.09UCeKSb005355@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 30 Oct 2020 12:40:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r553688 - in head/www: . py-httpretty X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/www: . py-httpretty X-SVN-Commit-Revision: 553688 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2020 12:40:21 -0000 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 +# $FreeBSD$ + +PORTNAME= httpretty +PORTVERSION= 1.0.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= HTTP client mocking tool for Python + +LICENSE= MIT + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +.include 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/