repo/gentoo:master commit in: dev-python/alembic/

Michał Górny <[email protected]> Wed, 05 Aug 2026 02:13:34 +0000 (UTC)
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1785894938.f5ae34cf9a773b07bf1e189e4605b114908de249.mgorny@gentoo>
commit:     f5ae34cf9a773b07bf1e189e4605b114908de249
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  5 01:31:04 2026 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug  5 01:55:38 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5ae34cf

dev-python/alembic: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/alembic/Manifest              |  1 -
 dev-python/alembic/alembic-1.18.4.ebuild | 57 --------------------------------
 2 files changed, 58 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 58115d763012..2cfc112c15c9 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.18.4.tar.gz 2056725 BLAKE2B 5de761b6dc383a4f44532bcbeeb6520836cae8992a09c24a5e268d05c835caa5d5e395873c97b650942fe94b995cc995dae8f8c57278d28aa3d1c0987830e5f1 SHA512 ae38b0551858573b6b602b56537a518c7169d4fadef7b11d8112b2427402b745ea5e3cd4387c2b49fec8158cf505de7206919caa10d73445446bb53e264fd448
 DIST alembic-1.18.5.tar.gz 2060480 BLAKE2B cc85b5ebd73920c8f0afe2b9884aab1f30718b94a7ccb4b117186a9088b4141dce27dd505ce5c3015f3b93cabc837ad33e0905117ceee34fde77782b45875a6b SHA512 41d9675e2c99d339e2aa92e670acc0d562ab6a23d2006f2180478fa912ede643be959ca89713678adffe37deb20118a0d67ea7c023b2dea15d3acb5be18721fc

diff --git a/dev-python/alembic/alembic-1.18.4.ebuild b/dev-python/alembic/alembic-1.18.4.ebuild
deleted file mode 100644
index 6183a3f0fdd6..000000000000
--- a/dev-python/alembic/alembic-1.18.4.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-	https://github.com/sqlalchemy/alembic/
-	https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-	>=dev-python/sqlalchemy-1.4.23[${PYTHON_USEDEP}]
-	dev-python/mako[${PYTHON_USEDEP}]
-	>=dev-python/typing-extensions-4.12[${PYTHON_USEDEP}]
-"
-BDEPEND="
-	test? (
-		sys-libs/timezone-data
-	)
-"
-
-EPYTEST_PLUGINS=()
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-python_test() {
-	local EPYTEST_DESELECT=()
-
-	if ! has_version "dev-python/black[${PYTHON_USEDEP}]"; then
-		EPYTEST_DESELECT+=(
-			tests/test_post_write.py::RunHookTest::test_module
-			tests/test_post_write.py::RunHookTest::test_module_black_with_cwd
-			tests/test_post_write.py::RunHookTest::test_module_filename_interpolation
-			tests/test_post_write.py::RunHookTest::test_module_path_in_config
-		)
-	fi
-
-	# setup.cfg contains -p no:warnings in addopts which triggers
-	# datetime.utcfromtimestamp() deprecation warning as an error in py3.12
-	epytest -o addopts=
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/. )
-	distutils-r1_python_install_all
-}