From owner-dev-commits-ports-all@freebsd.org Mon Sep 27 15:58:29 2021 Return-Path: Delivered-To: dev-commits-ports-all@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 0BEDD668766; Mon, 27 Sep 2021 15:58:29 +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 4HJ6kD6tlrz3lZM; Mon, 27 Sep 2021 15:58:28 +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 CC9D313F06; Mon, 27 Sep 2021 15:58:28 +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 18RFwSkx030205; Mon, 27 Sep 2021 15:58:28 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18RFwSL1030204; Mon, 27 Sep 2021 15:58:28 GMT (envelope-from git) Date: Mon, 27 Sep 2021 15:58:28 GMT Message-Id: <202109271558.18RFwSL1030204@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: 27ef9941bc2d - main - databases/py-asyncmy: Add py-asyncmy 0.2.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: 27ef9941bc2dcc15da30ae8f6c0b1cad40a03aeb Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Sep 2021 15:58:29 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=27ef9941bc2dcc15da30ae8f6c0b1cad40a03aeb commit 27ef9941bc2dcc15da30ae8f6c0b1cad40a03aeb Author: Po-Chuan Hsieh AuthorDate: 2021-09-27 15:28:07 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-09-27 15:55:49 +0000 databases/py-asyncmy: Add py-asyncmy 0.2.0 asyncmy is a fast asyncio MySQL driver, which reuse most of pymysql and aiomysql but rewrite core protocol with cython to speedup. WWW: https://github.com/long2ice/asyncmy --- databases/Makefile | 1 + databases/py-asyncmy/Makefile | 21 +++++++++++++++++++++ databases/py-asyncmy/distinfo | 3 +++ databases/py-asyncmy/pkg-descr | 4 ++++ 4 files changed, 29 insertions(+) diff --git a/databases/Makefile b/databases/Makefile index 2c84d32b33df..77055c0b0356 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -749,6 +749,7 @@ SUBDIR += py-aiosqlite SUBDIR += py-alembic SUBDIR += py-apsw + SUBDIR += py-asyncmy SUBDIR += py-asyncpg SUBDIR += py-berkeleydb SUBDIR += py-bsddb3 diff --git a/databases/py-asyncmy/Makefile b/databases/py-asyncmy/Makefile new file mode 100644 index 000000000000..ad1f41bb6931 --- /dev/null +++ b/databases/py-asyncmy/Makefile @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= asyncmy +PORTVERSION= 0.2.0 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Fast asyncio MySQL driver + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent cython distutils + +post-install: + ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} + + +.include diff --git a/databases/py-asyncmy/distinfo b/databases/py-asyncmy/distinfo new file mode 100644 index 000000000000..aa5ee43eea25 --- /dev/null +++ b/databases/py-asyncmy/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1632664284 +SHA256 (asyncmy-0.2.0.tar.gz) = b0c8c13d5d408a76eb65d767096d02757cd4e2b364c1c81384521cb8021cc160 +SIZE (asyncmy-0.2.0.tar.gz) = 60411 diff --git a/databases/py-asyncmy/pkg-descr b/databases/py-asyncmy/pkg-descr new file mode 100644 index 000000000000..0249ef17c154 --- /dev/null +++ b/databases/py-asyncmy/pkg-descr @@ -0,0 +1,4 @@ +asyncmy is a fast asyncio MySQL driver, which reuse most of pymysql and aiomysql +but rewrite core protocol with cython to speedup. + +WWW: https://github.com/long2ice/asyncmy