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 D76BD15A7D9 for ; Thu, 16 Mar 2023 16:35:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C9A3E0827; Thu, 16 Mar 2023 16:35:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 22BCDE0825 for ; Thu, 16 Mar 2023 16:35: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C344335D2B for ; Thu, 16 Mar 2023 16:35:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22F728EE for ; Thu, 16 Mar 2023 16:35:10 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1678984302.fa739588e61184b5b14fcf07ae0f6048359d51a8.mgorny@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.ebuild X-VCS-Directories: dev-python/sqlalchemy-rqlite/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fa739588e61184b5b14fcf07ae0f6048359d51a8 X-VCS-Branch: master Date: Thu, 16 Mar 2023 16:35:10 +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: 3c7caaba-8dd4-4432-b367-12b158679227 X-Archives-Hash: 05bc31782900832a19d7aba96dfc8c22 commit: fa739588e61184b5b14fcf07ae0f6048359d51a8 Author: Michał Górny gentoo org> AuthorDate: Thu Mar 16 16:31:42 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 16 16:31:42 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa739588 dev-python/sqlalchemy-rqlite: Remove old Signed-off-by: Michał Górny gentoo.org> .../sqlalchemy-rqlite-1.1.1.ebuild | 29 ---------------------- 1 file changed, 29 deletions(-) diff --git a/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1.ebuild b/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1.ebuild deleted file mode 100644 index aea0c60c2759..000000000000 --- a/dev-python/sqlalchemy-rqlite/sqlalchemy-rqlite-1.1.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) -DISTUTILS_USE_SETUPTOOLS=bdepend - -inherit distutils-r1 - -DESCRIPTION="A SQLAlchemy dialect for rqlite" -EGIT_REPO_URI="https://github.com/rqlite/sqlalchemy-rqlite.git" -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 -}