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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2667215800F for ; Sat, 18 Feb 2023 07:56:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C867E0843; Sat, 18 Feb 2023 07:56:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EBAB8E0843 for ; Sat, 18 Feb 2023 07:56:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D40F933BE2F for ; Sat, 18 Feb 2023 07:56:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E916807 for ; Sat, 18 Feb 2023 07:56:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1676706959.85b5ee8c04ab99dfc9afab7993a8b2f7414543ff.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlalchemy-rqlite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1-r1.ebuild X-VCS-Directories: dev-python/sqlalchemy-rqlite/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 85b5ee8c04ab99dfc9afab7993a8b2f7414543ff X-VCS-Branch: master Date: Sat, 18 Feb 2023 07:56:12 +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: 46c92d1c-81aa-41c9-a6a8-80bc5d96d834 X-Archives-Hash: a5788553248771d0747840cd1bab388d commit: 85b5ee8c04ab99dfc9afab7993a8b2f7414543ff Author: Sam James gentoo org> AuthorDate: Sat Feb 18 07:24:18 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 18 07:55:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85b5ee8c dev-python/sqlalchemy-rqlite: enable py3.11, use PEP517 Signed-off-by: Sam James gentoo.org> .../sqlalchemy-rqlite-1.1.1-r1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1-r1.ebuild b/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1-r1.ebuild new file mode 100644 index 000000000000..6e2345a5d9db --- /dev/null +++ b/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="A SQLAlchemy dialect for rqlite" +HOMEPAGE="https://github.com/rqlite/sqlalchemy-rqlite" +SRC_URI="https://github.com/rqlite/sqlalchemy-rqlite/archive//v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/pyrqlite[${PYTHON_USEDEP}] + dev-python/sqlalchemy[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +src_prepare() { + sed -e "s:^__version__ = .*:__version__ = '${PV}':" -i src/sqlalchemy_rqlite/constants.py || die + distutils-r1_src_prepare +}