Date: Mon, 24 May 2021 23:43:11 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 7fd634491e2c - main - devel/py-connection_pool: New port: Thread safe connection pool for Python programs Message-ID: <202105242343.14ONhBAC060963@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=7fd634491e2ceb3e6eb75be085a64bddc7c41140 commit 7fd634491e2ceb3e6eb75be085a64bddc7c41140 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2021-05-24 23:28:51 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> 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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105242343.14ONhBAC060963>