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 57840138350 for ; Mon, 23 Mar 2020 22:01:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F0EAE09B0; Mon, 23 Mar 2020 22:01:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4ABDEE09B0 for ; Mon, 23 Mar 2020 22:01:55 +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 A08A534EDE7 for ; Mon, 23 Mar 2020 22:01:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34EF9150 for ; Mon, 23 Mar 2020 22:01:52 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1585000597.07b8bfd47f929a4f2013da7fca1986b6a0e2fda7.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/minidb/Manifest dev-python/minidb/minidb-2.0.3.ebuild X-VCS-Directories: dev-python/minidb/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 07b8bfd47f929a4f2013da7fca1986b6a0e2fda7 X-VCS-Branch: master Date: Mon, 23 Mar 2020 22:01:52 +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: a7ef6e5d-2b21-459f-bc42-d466f6ee75ab X-Archives-Hash: fcdbf08371ecfbaeaba325d1109d7009 commit: 07b8bfd47f929a4f2013da7fca1986b6a0e2fda7 Author: Louis Sautier gentoo org> AuthorDate: Mon Mar 23 21:56:37 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Mon Mar 23 21:56:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b8bfd4 dev-python/minidb: bump to 2.0.3, Python 3.8 support Also rely on more modern distutils-r1 features. Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Louis Sautier gentoo.org> dev-python/minidb/Manifest | 1 + dev-python/minidb/minidb-2.0.3.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest index 3aaa30e22c9..d200f641992 100644 --- a/dev-python/minidb/Manifest +++ b/dev-python/minidb/Manifest @@ -1 +1,2 @@ DIST minidb-2.0.2.tar.gz 13928 BLAKE2B 7b6997bd0ed852561c1a45e1d8f63030798c59ebbe67ba3e9f38c08eddcf22028756b17c5ce8aa460e5d3113ef54cdafe782cb471aabfe208b093af702694cb7 SHA512 92879d6df61b0f9f72f9fe8f1cf38d559477983c6bba8c88ed02289570daff02f6f8d7010c0a95ffce049ab67be69323c47caefdfe3a8b008038377235ed9a5f +DIST minidb-2.0.3.tar.gz 13992 BLAKE2B 7ccb26625c199517ee63e99b1839037046c29a4c72a26f457ef3b4c22ef1f23b0bf632b37790c2981fd2c08929a39e8f015b4cf890d04d5e9926cd07b5def699 SHA512 90e2c51af64a373a9dce5e6fad94440a8e5ff3136ba4004deebb5f9a7a7f039ebf1b903a361d678771b6e18e951cacbd7392f1fe2df8db04cef04526a07a3ce2 diff --git a/dev-python/minidb/minidb-2.0.3.ebuild b/dev-python/minidb/minidb-2.0.3.ebuild new file mode 100644 index 00000000000..06868ee324b --- /dev/null +++ b/dev-python/minidb/minidb-2.0.3.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_REQ_USE="sqlite" +DISTUTILS_USE_SETUPTOOLS=no + +inherit distutils-r1 + +DESCRIPTION="Simple SQLite-based object store" +HOMEPAGE="https://thp.io/2010/minidb/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +distutils_enable_tests nose