summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-11-05 21:27:20 +0100
committerMichał Górny <mgorny@gentoo.org>2023-11-05 21:57:58 +0100
commit8a0af46ec9c33a6dd9d84a3917eca595e4545c79 (patch)
tree0e6c0f3ec30750dd7a5f02779250a59ae2b580d0 /dev-python/logbook
parentdev-python/bitarray: Remove old (diff)
downloadgentoo-8a0af46ec9c33a6dd9d84a3917eca595e4545c79.tar.gz
gentoo-8a0af46ec9c33a6dd9d84a3917eca595e4545c79.tar.bz2
gentoo-8a0af46ec9c33a6dd9d84a3917eca595e4545c79.zip
dev-python/logbook: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/logbook')
-rw-r--r--dev-python/logbook/Manifest1
-rw-r--r--dev-python/logbook/logbook-1.6.0.ebuild58
2 files changed, 0 insertions, 59 deletions
diff --git a/dev-python/logbook/Manifest b/dev-python/logbook/Manifest
index 03d2789e273b..aa0d850885b1 100644
--- a/dev-python/logbook/Manifest
+++ b/dev-python/logbook/Manifest
@@ -1,2 +1 @@
-DIST logbook-1.6.0.gh.tar.gz 364463 BLAKE2B f1e2187f87c9a0530e8cf62032285afcf08742b927aab269cf2e4707a040d15e1ab3c0e994b3cbc56857bebbea5d598f3981a24f94c2aa9d8322e9f0f7ec76d8 SHA512 7037c93bcaf0d3b53456869269c7317920f111ecfb3ebe930f471e031376819afd018ddf0b25a46f2a7d1a3111cd5d35828da1885935ee9508e2712e5bb7c724
DIST logbook-1.7.0.gh.tar.gz 364752 BLAKE2B a801c2ec55a257250336748007bdb95206372cf8cf3492785c5c50829e3e3c467de564401ed6f758f3e6b14d708d889860a4bb93da5119fc134df5167976bebb SHA512 50b52f54e894be303a7e910602cfbbceee04280cb134ad89f32f0a79c21d509ae0f6ae83beac9a9e22726d1c394e9893eea884ff43b56aae9dbad6dd1221d96f
diff --git a/dev-python/logbook/logbook-1.6.0.ebuild b/dev-python/logbook/logbook-1.6.0.ebuild
deleted file mode 100644
index cbf91d4941f2..000000000000
--- a/dev-python/logbook/logbook-1.6.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="A logging replacement for Python"
-HOMEPAGE="
- https://logbook.readthedocs.io/en/stable/
- https://github.com/getlogbook/logbook/
- https://pypi.org/project/Logbook/
-"
-SRC_URI="
- https://github.com/getlogbook/logbook/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-
-BDEPEND="
- test? (
- app-arch/brotli[${PYTHON_USEDEP},python]
- >=dev-python/execnet-1.0.9[${PYTHON_USEDEP}]
- dev-python/jinja[${PYTHON_USEDEP}]
- dev-python/pip[${PYTHON_USEDEP}]
- dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
- dev-python/pyzmq[${PYTHON_USEDEP}]
- >=dev-python/sqlalchemy-1.4[${PYTHON_USEDEP}]
- )
-"
-RDEPEND="
- !!dev-python/contextvars
- !!dev-python/gevent
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs
-
-python_configure_all() {
- export DISABLE_LOGBOOK_CEXT=1
-}
-
-python_test() {
- local EPYTEST_DESELECT=(
- # Delete test file requiring local connection to redis server
- tests/test_queues.py
- # https://github.com/getlogbook/logbook/issues/318
- tests/test_ticketing.py::test_basic_ticketing
- )
-
- epytest -p no:flaky
-}