dev-python/amqp: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2023-11-29 12:15:22 +01:00
parent cca419184a
commit c7ea4a3e4b
2 changed files with 0 additions and 50 deletions

View File

@@ -1,2 +1 @@
DIST amqp-5.1.1.tar.gz 127869 BLAKE2B 3ba95874a45f6fce163cf95b0b1fae57e636bc2bec8311f64fc9597025ba36f35daf8d0457af3bc10fa1f1dae604b262ebf205d7b89d4f1745bf3480b542278d SHA512 f549a85e4f04543dd8e844edb68350ca185de9259aa896af31ae5ee5dfdfe73f904d95821c403dc797c7f3ada17ce6bff4e0fd9fcdf2abc1b33a94d079f99179
DIST amqp-5.2.0.tar.gz 128754 BLAKE2B 4d5c281c1d9691e41da452f07f81a0c8bf901cb12f7a43082f1a8cd46cb848195df7415036e42b0fdf76c621019334df50af1382b571fae38ec4796154fa3797 SHA512 923eae80721ec35e329085e680950db7167c401fac396c74d401331ef7efe369e1cf4420bfde9a1d9005052f49cedef6d2ee621e795b9127614fd5742aa5e0db

View File

@@ -1,49 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_PN="amqp"
PYTHON_COMPAT=( python3_{9..11} )
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
}