Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
Date: Mon, 16 May 2022 13:30:59
Message-Id: 1652707684.df4e348ef7d73f46d5ff60d7d6244defffaad099.mgorny@gentoo
1 commit: df4e348ef7d73f46d5ff60d7d6244defffaad099
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 16 13:28:04 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 13:28:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df4e348e
7
8 dev-python/sqlitedict: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sqlitedict/Manifest | 1 -
13 dev-python/sqlitedict/sqlitedict-1.7.0.ebuild | 32 ---------------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/sqlitedict/Manifest b/dev-python/sqlitedict/Manifest
17 index dcc5d2fe7475..77daa8afcae4 100644
18 --- a/dev-python/sqlitedict/Manifest
19 +++ b/dev-python/sqlitedict/Manifest
20 @@ -1,2 +1 @@
21 -DIST sqlitedict-1.7.0.tar.gz 28234 BLAKE2B f67187ee27acbe5525b5f0efb8fd85b68e820439e273af8f9ac4e2f223a2c267f252cb0d60366bd51ba9b55cf36d892e02bdfe727a366bfd266005d98d477c9f SHA512 1ef5e0caf81f7ac17eac0d8573c3404ea043c0c5700fe6b4b9f28ac86ad8d97416bad561318898967cf1af0d7e616684ee3044018e24dab3686d43554c74fef1
22 DIST sqlitedict-2.0.0.tar.gz 46266 BLAKE2B c320c5b61e535ff668462fc079cd501e8aae4fb334230ed0b9c5eae0c53f569c8971a8484cddf85575b1e2d28b051d2f0fa8376a1176e3116a1a0516e36202aa SHA512 3ba84676680e5e9408804618e4ae871d09fcfdc999f06c1143f42329059e6033abb2d897ed485d9d84dc2761032fa07f00f08b259f1d9e6426c4ee0068446ed8
23
24 diff --git a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
25 deleted file mode 100644
26 index 599cb922409c..000000000000
27 --- a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
28 +++ /dev/null
29 @@ -1,32 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -PYTHON_REQ_USE="sqlite"
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Persistent dict in Python, backed by SQLite and pickle"
41 -HOMEPAGE="https://github.com/piskvorky/sqlitedict"
42 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -BDEPEND="
51 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
52 -"
53 -
54 -DOCS=(
55 - README.rst
56 -)
57 -
58 -python_test() {
59 - rm -f tests/db/* || die
60 - py.test -v || die
61 -}