From owner-dev-commits-ports-main@freebsd.org Mon Jun 14 17:46:13 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 0A2556619B9; Mon, 14 Jun 2021 17:46:13 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G3f50669Wz3v6g; Mon, 14 Jun 2021 17:46:12 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7E8A71904B; Mon, 14 Jun 2021 17:46:12 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15EHkCBe052771; Mon, 14 Jun 2021 17:46:12 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15EHkCsl052770; Mon, 14 Jun 2021 17:46:12 GMT (envelope-from git) Date: Mon, 14 Jun 2021 17:46:12 GMT Message-Id: <202106141746.15EHkCsl052770@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 1f3a81a16f41 - main - www/py-respx: Add py-respx 0.17.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 1f3a81a16f41468ac646f42f2d5fca0d1117daff Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jun 2021 17:46:13 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=1f3a81a16f41468ac646f42f2d5fca0d1117daff commit 1f3a81a16f41468ac646f42f2d5fca0d1117daff Author: Po-Chuan Hsieh AuthorDate: 2021-06-14 17:32:44 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-06-14 17:32:44 +0000 www/py-respx: Add py-respx 0.17.0 RESPX is a simple, yet powerful, utility for mocking out the HTTPX, and HTTP Core, libraries. WWW: https://lundberg.github.io/respx/ WWW: https://github.com/lundberg/respx --- www/Makefile | 1 + www/py-respx/Makefile | 22 ++++++++++++++++++++++ www/py-respx/distinfo | 3 +++ www/py-respx/pkg-descr | 5 +++++ 4 files changed, 31 insertions(+) diff --git a/www/Makefile b/www/Makefile index 2b58bfde4876..c524b1b1a0ac 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1722,6 +1722,7 @@ SUBDIR += py-requests-toolbelt SUBDIR += py-requests-unixsocket SUBDIR += py-requests_ntlm + SUBDIR += py-respx SUBDIR += py-restclient SUBDIR += py-rfc3986 SUBDIR += py-rfc3987 diff --git a/www/py-respx/Makefile b/www/py-respx/Makefile new file mode 100644 index 000000000000..b2ab8aa07b91 --- /dev/null +++ b/www/py-respx/Makefile @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= respx +PORTVERSION= 0.17.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Utility for mocking out the Python HTTPX and HTTP Core libraries + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httpx>=0.18.0:www/py-httpx@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include diff --git a/www/py-respx/distinfo b/www/py-respx/distinfo new file mode 100644 index 000000000000..65ae221d4284 --- /dev/null +++ b/www/py-respx/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1622213972 +SHA256 (respx-0.17.0.tar.gz) = 0c792e2bb5b70deda5f6c1be460c1e524cd6d2eea4240a38e973341c1ea211c3 +SIZE (respx-0.17.0.tar.gz) = 22086 diff --git a/www/py-respx/pkg-descr b/www/py-respx/pkg-descr new file mode 100644 index 000000000000..d187a5587fe0 --- /dev/null +++ b/www/py-respx/pkg-descr @@ -0,0 +1,5 @@ +RESPX is a simple, yet powerful, utility for mocking out the HTTPX, and HTTP +Core, libraries. + +WWW: https://lundberg.github.io/respx/ +WWW: https://github.com/lundberg/respx