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 869D61581D3 for ; Sat, 18 May 2024 16:11:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C68CE2A7E; Sat, 18 May 2024 16:11:03 +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 7E7DFE2A7E for ; Sat, 18 May 2024 16:11:03 +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 4FD6C33BE4D for ; Sat, 18 May 2024 16:11:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B36091AE6 for ; Sat, 18 May 2024 16:10:59 +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: <1716048653.6114c94b2644cd427d659549ce4bbca178982ee0.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.0.3.ebuild X-VCS-Directories: dev-python/dbutils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6114c94b2644cd427d659549ce4bbca178982ee0 X-VCS-Branch: master Date: Sat, 18 May 2024 16:10:59 +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: 55308080-c3de-405d-bc70-8d33e8fd1757 X-Archives-Hash: b758d7365538e3c9ef71299ce32e537f commit: 6114c94b2644cd427d659549ce4bbca178982ee0 Author: Michał Górny gentoo org> AuthorDate: Sat May 18 16:03:28 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 18 16:10:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6114c94b dev-python/dbutils: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/dbutils/Manifest | 1 - dev-python/dbutils/dbutils-3.0.3.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/dev-python/dbutils/Manifest b/dev-python/dbutils/Manifest index 7cf8936feded..5c0040851b34 100644 --- a/dev-python/dbutils/Manifest +++ b/dev-python/dbutils/Manifest @@ -1,2 +1 @@ -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.0.3.ebuild b/dev-python/dbutils/dbutils-3.0.3.ebuild deleted file mode 100644 index 663d7ef65954..000000000000 --- a/dev-python/dbutils/dbutils-3.0.3.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# 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 unittest - -python_install_all() { - dodoc docs/*.rst - rm docs/*.rst || die - local HTML_DOCS=( docs/. ) - distutils-r1_python_install_all -}