dev-python/amqp: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2024-11-30 12:10:32 +01:00
parent abe1bfda8a
commit f25cc60241
2 changed files with 0 additions and 52 deletions

View File

@@ -1,2 +1 @@
DIST amqp-5.2.0.tar.gz 128754 BLAKE2B 4d5c281c1d9691e41da452f07f81a0c8bf901cb12f7a43082f1a8cd46cb848195df7415036e42b0fdf76c621019334df50af1382b571fae38ec4796154fa3797 SHA512 923eae80721ec35e329085e680950db7167c401fac396c74d401331ef7efe369e1cf4420bfde9a1d9005052f49cedef6d2ee621e795b9127614fd5742aa5e0db
DIST amqp-5.3.1.tar.gz 129013 BLAKE2B e791792effba9efc7ceb320d7ece9fb5d8936ad0faf5c5519a63e419436258272271ab0f45b3828b6c68f9b8ab50641a73644c0c37687776cc7f5a29c3abd6f4 SHA512 4701ee40a6a88738ab2bb199114512af85f722afb99e2ee1d18c48563ceb6f925052315c5ca289e36db5d02aa72412b798442fd6c2f623d10a0ac43af3c2eca8

View File

@@ -1,51 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 pypi
DESCRIPTION="Low-level AMQP client for Python (fork of amqplib)"
HOMEPAGE="
https://github.com/celery/py-amqp/
https://pypi.org/project/amqp/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm64 x86"
IUSE="extras"
RDEPEND="
>=dev-python/vine-5.0.0[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
>=dev-python/pytest-rerunfailures-6.0[${PYTHON_USEDEP}]
)
"
distutils_enable_sphinx docs \
dev-python/sphinx-celery
distutils_enable_tests pytest
EPYTEST_IGNORE=(
# rmq tests require a rabbitmq instance
t/integration/test_rmq.py
)
EPYTEST_DESELECT=(
# fails when gssapi is installed (how does that test make sense?!)
t/unit/test_sasl.py::test_SASL::test_gssapi_missing
)
python_install_all() {
if use extras; then
insinto /usr/share/${PF}/extras
doins -r extra
fi
distutils-r1_python_install_all
}