From owner-dev-commits-ports-main@freebsd.org Mon May 24 23:43:11 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 D046663F20F; Mon, 24 May 2021 23:43:11 +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 4Fpv0b5N1zz3KjX; Mon, 24 May 2021 23:43:11 +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 9839C13277; Mon, 24 May 2021 23:43:11 +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 14ONhBAq060964; Mon, 24 May 2021 23:43:11 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14ONhBAC060963; Mon, 24 May 2021 23:43:11 GMT (envelope-from git) Date: Mon, 24 May 2021 23:43:11 GMT Message-Id: <202105242343.14ONhBAC060963@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yuri Victorovich Subject: git: 7fd634491e2c - main - devel/py-connection_pool: New port: Thread safe connection pool for Python programs MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 7fd634491e2ceb3e6eb75be085a64bddc7c41140 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, 24 May 2021 23:43:12 -0000 The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=7fd634491e2ceb3e6eb75be085a64bddc7c41140 commit 7fd634491e2ceb3e6eb75be085a64bddc7c41140 Author: Yuri Victorovich AuthorDate: 2021-05-24 23:28:51 +0000 Commit: Yuri Victorovich CommitDate: 2021-05-24 23:43:06 +0000 devel/py-connection_pool: New port: Thread safe connection pool for Python programs --- devel/Makefile | 1 + devel/py-connection_pool/Makefile | 17 +++++++++++++++++ devel/py-connection_pool/distinfo | 3 +++ devel/py-connection_pool/pkg-descr | 5 +++++ 4 files changed, 26 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index a246a33a4177..ae6944691329 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4305,6 +4305,7 @@ SUBDIR += py-configparser SUBDIR += py-confusable_homoglyphs SUBDIR += py-confuse + SUBDIR += py-connection_pool SUBDIR += py-constantly SUBDIR += py-construct SUBDIR += py-contextlib2 diff --git a/devel/py-connection_pool/Makefile b/devel/py-connection_pool/Makefile new file mode 100644 index 000000000000..4d3935b58efe --- /dev/null +++ b/devel/py-connection_pool/Makefile @@ -0,0 +1,17 @@ +PORTNAME= connection_pool +DISTVERSION= 0.0.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Thread safe connection pool for Python programs + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include diff --git a/devel/py-connection_pool/distinfo b/devel/py-connection_pool/distinfo new file mode 100644 index 000000000000..08704006d4d4 --- /dev/null +++ b/devel/py-connection_pool/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1621896934 +SHA256 (connection_pool-0.0.3.tar.gz) = bf429e7aef65921c69b4ed48f3d48d3eac1383b05d2df91884705842d974d0dc +SIZE (connection_pool-0.0.3.tar.gz) = 3795 diff --git a/devel/py-connection_pool/pkg-descr b/devel/py-connection_pool/pkg-descr new file mode 100644 index 000000000000..673c06593ad9 --- /dev/null +++ b/devel/py-connection_pool/pkg-descr @@ -0,0 +1,5 @@ +Thread-safe connection pool for python. + +It allows to cache network connections. + +WWW: https://github.com/zhouyl/ConnectionPool