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 6EFB1158087 for ; Wed, 6 Oct 2021 22:15:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECE39E0A6B; Wed, 6 Oct 2021 22:15:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D700EE0A6B for ; Wed, 6 Oct 2021 22:15:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 939243433D1 for ; Wed, 6 Oct 2021 22:15:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A7FA161 for ; Wed, 6 Oct 2021 22:15:42 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1633558538.9bc6a7c0774bb372c551e0e0c17aa0728612d22d.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pg8000/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pg8000/Manifest dev-python/pg8000/metadata.xml dev-python/pg8000/pg8000-1.21.2.ebuild X-VCS-Directories: dev-python/pg8000/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 9bc6a7c0774bb372c551e0e0c17aa0728612d22d X-VCS-Branch: dev Date: Wed, 6 Oct 2021 22:15:42 +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: 9be1ce46-a920-42e8-a140-26254694979b X-Archives-Hash: 05750ba4ea9e441773bc68c95ed0510e commit: 9bc6a7c0774bb372c551e0e0c17aa0728612d22d Author: Alessandro Barbieri gmail com> AuthorDate: Wed Oct 6 21:54:39 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Wed Oct 6 22:15:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9bc6a7c0 dev-python/pg8000: initial import Signed-off-by: Alessandro Barbieri gmail.com> dev-python/pg8000/Manifest | 1 + dev-python/pg8000/metadata.xml | 13 +++++++++++++ dev-python/pg8000/pg8000-1.21.2.ebuild | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+) diff --git a/dev-python/pg8000/Manifest b/dev-python/pg8000/Manifest new file mode 100644 index 000000000..bfbc9b056 --- /dev/null +++ b/dev-python/pg8000/Manifest @@ -0,0 +1 @@ +DIST pg8000-1.21.2.tar.gz 118673 BLAKE2B 1b6366d1e9d4a3b795e196d3aa0be95f6eab416a8b71f2d69e15d9480e76d0f134624d0c6df625b549e6dd40dfcabaf5966adbe7d75e3d064aeabb15e18ce167 SHA512 e7979b2a43711d5013f3f2f3f91a80dc632ca501f3ec86e12f1b0f33477c41acc7c10129a4b55e363049ab7e6aa655a1813cca81bb9ead2f0c21c9b20dc38295 diff --git a/dev-python/pg8000/metadata.xml b/dev-python/pg8000/metadata.xml new file mode 100644 index 000000000..91f032596 --- /dev/null +++ b/dev-python/pg8000/metadata.xml @@ -0,0 +1,13 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + https://github.com/tlocke/pg8000/issues + pg8000 + tlocke/pg8000 + + diff --git a/dev-python/pg8000/pg8000-1.21.2.ebuild b/dev-python/pg8000/pg8000-1.21.2.ebuild new file mode 100644 index 000000000..9740bae0b --- /dev/null +++ b/dev-python/pg8000/pg8000-1.21.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A Pure-Python PostgreSQL Driver" +HOMEPAGE=" + https://github.com/tlocke/pg8000 + https://pypi.org/project/pg8000 +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/scramp[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + test? ( + dev-python/pytest-mock[${PYTHON_USEDEP}] + dev-python/pytest-benchmark[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest