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 1496F158090 for ; Mon, 16 May 2022 13:30:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DCB4E0A07; Mon, 16 May 2022 13:30:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 36655E0A07 for ; Mon, 16 May 2022 13:30:58 +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 7A396341623 for ; Mon, 16 May 2022 13:30:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA68446A for ; Mon, 16 May 2022 13:30:54 +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: <1652707684.df4e348ef7d73f46d5ff60d7d6244defffaad099.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sqlitedict/Manifest dev-python/sqlitedict/sqlitedict-1.7.0.ebuild X-VCS-Directories: dev-python/sqlitedict/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: df4e348ef7d73f46d5ff60d7d6244defffaad099 X-VCS-Branch: master Date: Mon, 16 May 2022 13:30:54 +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: 35df4414-269a-4350-ab7b-768866f746b0 X-Archives-Hash: d5371b1afd80b34632c5153a358ac8c5 commit: df4e348ef7d73f46d5ff60d7d6244defffaad099 Author: Michał Górny gentoo org> AuthorDate: Mon May 16 13:28:04 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 16 13:28:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df4e348e dev-python/sqlitedict: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/sqlitedict/Manifest | 1 - dev-python/sqlitedict/sqlitedict-1.7.0.ebuild | 32 --------------------------- 2 files changed, 33 deletions(-) diff --git a/dev-python/sqlitedict/Manifest b/dev-python/sqlitedict/Manifest index dcc5d2fe7475..77daa8afcae4 100644 --- a/dev-python/sqlitedict/Manifest +++ b/dev-python/sqlitedict/Manifest @@ -1,2 +1 @@ -DIST sqlitedict-1.7.0.tar.gz 28234 BLAKE2B f67187ee27acbe5525b5f0efb8fd85b68e820439e273af8f9ac4e2f223a2c267f252cb0d60366bd51ba9b55cf36d892e02bdfe727a366bfd266005d98d477c9f SHA512 1ef5e0caf81f7ac17eac0d8573c3404ea043c0c5700fe6b4b9f28ac86ad8d97416bad561318898967cf1af0d7e616684ee3044018e24dab3686d43554c74fef1 DIST sqlitedict-2.0.0.tar.gz 46266 BLAKE2B c320c5b61e535ff668462fc079cd501e8aae4fb334230ed0b9c5eae0c53f569c8971a8484cddf85575b1e2d28b051d2f0fa8376a1176e3116a1a0516e36202aa SHA512 3ba84676680e5e9408804618e4ae871d09fcfdc999f06c1143f42329059e6033abb2d897ed485d9d84dc2761032fa07f00f08b259f1d9e6426c4ee0068446ed8 diff --git a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild deleted file mode 100644 index 599cb922409c..000000000000 --- a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -PYTHON_REQ_USE="sqlite" - -inherit distutils-r1 - -DESCRIPTION="Persistent dict in Python, backed by SQLite and pickle" -HOMEPAGE="https://github.com/piskvorky/sqlitedict" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) -" - -DOCS=( - README.rst -) - -python_test() { - rm -f tests/db/* || die - py.test -v || die -}