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 94C9A158041 for ; Sun, 17 Mar 2024 16:24:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0401FE29E9; Sun, 17 Mar 2024 16:24:50 +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 D5C64E29E9 for ; Sun, 17 Mar 2024 16:24:49 +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 E8D9C33BF41 for ; Sun, 17 Mar 2024 16:24:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 089A8154E for ; Sun, 17 Mar 2024 16:24:46 +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: <1710692678.9f790514d8f4b0da1a46630675f1339b6724c439.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dbutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dbutils/Manifest dev-python/dbutils/dbutils-3.1.0.ebuild X-VCS-Directories: dev-python/dbutils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9f790514d8f4b0da1a46630675f1339b6724c439 X-VCS-Branch: master Date: Sun, 17 Mar 2024 16:24:46 +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: 17be2894-8d09-4a5e-b4fb-dd9471d507c8 X-Archives-Hash: 6242b7f3028da32900847b3561dfcba6 commit: 9f790514d8f4b0da1a46630675f1339b6724c439 Author: Michał Górny gentoo org> AuthorDate: Sun Mar 17 16:11:54 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Mar 17 16:24:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f790514 dev-python/dbutils: Bump to 3.1.0 Signed-off-by: Michał Górny gentoo.org> dev-python/dbutils/Manifest | 1 + dev-python/dbutils/dbutils-3.1.0.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/dbutils/Manifest b/dev-python/dbutils/Manifest index 85555a8b3fd1..7cf8936feded 100644 --- a/dev-python/dbutils/Manifest +++ b/dev-python/dbutils/Manifest @@ -1 +1,2 @@ DIST DBUtils-3.0.3.tar.gz 94039 BLAKE2B 3b936f42945deb69bd96bd088529f4839452afcd3a9cae66c4d8ff6a16fc3dd2a17e905debdbea3f0122199d8a6e0c664b222a5fa3b358a9fd54b2f8b5bba6ff SHA512 bca7939e2f9f736861b76f60356ea877f346129f66263363fe5dc0201412258653fb45af2a5caad0f0f0b9ebd19f5415113a75168cc28a664418af5475eb0096 +DIST DBUtils-3.1.0.tar.gz 94672 BLAKE2B 296a1fad729d355c2607616e5a3fca2f0131ab6040d2424a15ed4583ee0e22697f5c806d3b3789f7d645bff30dbeca0c49b42a901047e1b8e39fb76143f6bccc SHA512 24ffa16524758c27a617a86afc2d41be0336a498afe88ea6021b9304ecbfa5c98f88221503713e662509ae2a4c36974fad9faea17047ffb2d8b4cd728b44735d diff --git a/dev-python/dbutils/dbutils-3.1.0.ebuild b/dev-python/dbutils/dbutils-3.1.0.ebuild new file mode 100644 index 000000000000..35c376551ebd --- /dev/null +++ b/dev-python/dbutils/dbutils-3.1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYPI_PN=DBUtils +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Database connections for multi-threaded environments" +HOMEPAGE=" + https://webwareforpython.github.io/DBUtils/ + https://github.com/WebwareForPython/DBUtils/ + https://pypi.org/project/DBUtils/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +distutils_enable_tests pytest + +python_install_all() { + local HTML_DOCS=( docs/. ) + distutils-r1_python_install_all +}