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 40F58158092 for ; Sun, 12 Sep 2021 21:35:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 938E4E077D; Sun, 12 Sep 2021 21:35:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7CB54E077D for ; Sun, 12 Sep 2021 21:35:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7DE73342D18 for ; Sun, 12 Sep 2021 21:35:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E432E4E for ; Sun, 12 Sep 2021 21:35:42 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1631482528.1392f594fc02ce19511238af9a1d8a052f4fd548.chewi@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/metadata.xml dev-python/sqlitedict/sqlitedict-1.7.0.ebuild X-VCS-Directories: dev-python/sqlitedict/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 1392f594fc02ce19511238af9a1d8a052f4fd548 X-VCS-Branch: master Date: Sun, 12 Sep 2021 21:35: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: f80d4184-974b-43fe-a30a-3c63a343f1ff X-Archives-Hash: b5e22e1b5c79215c7296993b9682b793 commit: 1392f594fc02ce19511238af9a1d8a052f4fd548 Author: James Le Cuirot gentoo org> AuthorDate: Sun Sep 12 21:35:28 2021 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sun Sep 12 21:35:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1392f594 dev-python/sqlitedict: New package Signed-off-by: James Le Cuirot gentoo.org> dev-python/sqlitedict/Manifest | 1 + dev-python/sqlitedict/metadata.xml | 12 +++++++++++ dev-python/sqlitedict/sqlitedict-1.7.0.ebuild | 31 +++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-python/sqlitedict/Manifest b/dev-python/sqlitedict/Manifest new file mode 100644 index 00000000000..2185fa213e4 --- /dev/null +++ b/dev-python/sqlitedict/Manifest @@ -0,0 +1 @@ +DIST sqlitedict-1.7.0.tar.gz 28234 BLAKE2B f67187ee27acbe5525b5f0efb8fd85b68e820439e273af8f9ac4e2f223a2c267f252cb0d60366bd51ba9b55cf36d892e02bdfe727a366bfd266005d98d477c9f SHA512 1ef5e0caf81f7ac17eac0d8573c3404ea043c0c5700fe6b4b9f28ac86ad8d97416bad561318898967cf1af0d7e616684ee3044018e24dab3686d43554c74fef1 diff --git a/dev-python/sqlitedict/metadata.xml b/dev-python/sqlitedict/metadata.xml new file mode 100644 index 00000000000..e0f2a7f3644 --- /dev/null +++ b/dev-python/sqlitedict/metadata.xml @@ -0,0 +1,12 @@ + + + + + chewi@gentoo.org + James Le Cuirot + + + piskvorky/sqlitedict + sqlitedict + + diff --git a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild new file mode 100644 index 00000000000..b664c9623ef --- /dev/null +++ b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild @@ -0,0 +1,31 @@ +# 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="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" +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 +}