From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E270D13835A for ; Wed, 28 Apr 2021 08:08:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A1EEE0887; Wed, 28 Apr 2021 08:08:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2313CE0884 for ; Wed, 28 Apr 2021 08:08:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E952341031 for ; Wed, 28 Apr 2021 08:08:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45981752 for ; Wed, 28 Apr 2021 08:08:15 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1619577474.983546f7b1702fb43dd0d2e5a393bc07d8f79fea.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/asyncpg/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/asyncpg/Manifest dev-python/asyncpg/asyncpg-0.22.0.ebuild X-VCS-Directories: dev-python/asyncpg/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 983546f7b1702fb43dd0d2e5a393bc07d8f79fea X-VCS-Branch: master Date: Wed, 28 Apr 2021 08:08:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3b977b43-a293-4af3-936b-b11be316dabb X-Archives-Hash: 80c243eeefe396af44d020186a5a64ce commit: 983546f7b1702fb43dd0d2e5a393bc07d8f79fea Author: Theo Anderson posteo de> AuthorDate: Wed Apr 28 02:37:54 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Wed Apr 28 02:37:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=983546f7 dev-python/asyncpg: add 0.22.0 Signed-off-by: Theo Anderson posteo.de> dev-python/asyncpg/Manifest | 1 + dev-python/asyncpg/asyncpg-0.22.0.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-python/asyncpg/Manifest b/dev-python/asyncpg/Manifest index 4d5625d93..48b3903eb 100644 --- a/dev-python/asyncpg/Manifest +++ b/dev-python/asyncpg/Manifest @@ -1 +1,2 @@ DIST asyncpg-0.21.0.tar.gz 746782 BLAKE2B b3f149b02833b1206d82df0f3f28f6b24a8333b861f53410e053a36e4a68359e2c0641bbd9953040b74f1198c301b1a709052110275686a038c0febcb931e688 SHA512 8bfd6689008ea964ac66d1c141bddd749f50d928b6cbc5e059f0e1d0a3597213ccae0b2fa7d694bf4e40c0b2650c445d2c54040a076ba69509e508bf51de2970 +DIST asyncpg-0.22.0.tar.gz 770278 BLAKE2B 86943140bc03546d038889a52dca18eb932b77f09a4660971d3f31a93f114fd77f8e1094a96047ee37ec536b600989038701345ba88944bd5c5b455ada219fcd SHA512 b953290e10ea408ad67ac28f394bb3aaf84c4e42d136f0af9e2f7befcf03e34faf46ef1806c98099453028963142a6e3bce63ff3cbe118b2026744de2103eb37 diff --git a/dev-python/asyncpg/asyncpg-0.22.0.ebuild b/dev-python/asyncpg/asyncpg-0.22.0.ebuild new file mode 100644 index 000000000..21455a2f9 --- /dev/null +++ b/dev-python/asyncpg/asyncpg-0.22.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8} ) + +inherit distutils-r1 + +DESCRIPTION="A fast PostgreSQL Database Client Library for Python/asyncio." +HOMEPAGE="https://github.com/MagicStack/asyncpg" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# ModuleNotFoundError: No module named 'asyncpg.protocol.protocol' +# for some reason, still doesn't work if package is already installed +# or with distutils_install_for_testing function +RESTRICT="test" + +BDEPEND="dev-python/cython[${PYTHON_USEDEP}]" + +DEPEND="test? ( + dev-python/uvloop[${PYTHON_USEDEP}] +)" + +distutils_enable_tests pytest +distutils_enable_sphinx docs dev-python/sphinxcontrib-asyncio dev-python/sphinx_rtd_theme