mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-python/django-debug-toolbar: Bump to 6.3.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,2 +1,4 @@
|
||||
DIST django_debug_toolbar-6.2.0.tar.gz 313779 BLAKE2B 2199e67245f5ae9d9b77690080317ec8eefac6b23db005151fc040d7acece00601f084aa5fefc6e8424a186ab4608e56ee1f08477a6a1ca5610c96403dad4a5b SHA512 8a724d56758821ed0ada3faced62b61676c7c590e3a94af2889f5386b492bf2118c5cff534895922d8a6bdf3388a221765ebbc4a727ac5eee8e9ed15361ea10c
|
||||
DIST django_debug_toolbar-6.2.0.tar.gz.provenance 9901 BLAKE2B e436af84063a5cd23a1c46f36bbda597ba3293645a5608d6fba70d08df67888638cb8c5c27e6530548fa9868cc436f29b776976ccc35597f3c2c073950c38b05 SHA512 ff97bcffa93a200e70095ced7882015dafc9f9d4370aef68ad60cec822c0229311cadc82fd5c92f736a480c50ff65a523cd16ff5272b2d44c7b3daf771914fe7
|
||||
DIST django_debug_toolbar-6.3.0.tar.gz 334079 BLAKE2B 915fbf49bea584d4fec79f5f93b7520e3be59343ff7fbff34293aa8249bcf4ac4d1190977d1e8cb1a249561f3f5539f343126a9dfe0b66a212776421a8ff2528 SHA512 07db996bdb044855ba011c58e3d9b90a43dbb9b54ec170ab22b97ede2ccaff06de9a3fe9823beaddb681c4f11d5df060f8655307c346af02b15a32c70fc7241b
|
||||
DIST django_debug_toolbar-6.3.0.tar.gz.provenance 9964 BLAKE2B 6f1806e35927ff864b287ca2cccbcce5b5498cce5479f2ceedf9fc1af77f47e7ef272ea14bcf120fc7d0a7e0f9cf7bac341be4720dbb1a4eb6ed07fdca748825 SHA512 8c72d5e1f28af1e4775b2cd65edb13bc34817ed79978ef22f8cefefcb0393566200636e5746b278c9b0ec5cb981392b495a98b4b90d02069afa1d53e1b44af6e
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright 2023-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYPI_VERIFY_REPO=https://github.com/django-commons/django-debug-toolbar
|
||||
PYTHON_COMPAT=( python3_{12..14} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="A configurable set of panels that display various debug information"
|
||||
HOMEPAGE="
|
||||
https://github.com/django-commons/django-debug-toolbar/
|
||||
https://pypi.org/project/django-debug-toolbar/
|
||||
"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/django-4.2.9[${PYTHON_USEDEP}]
|
||||
elibc_musl? ( dev-python/tzdata )
|
||||
"
|
||||
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/django-template-partials[${PYTHON_USEDEP}]
|
||||
dev-python/html5lib[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
distutils-r1_src_prepare
|
||||
|
||||
# requires django-csp
|
||||
rm tests/test_csp_rendering.py || die
|
||||
}
|
||||
|
||||
python_test() {
|
||||
"${EPYTHON}" -m django test -v 2 --settings tests.settings tests \
|
||||
|| die "Tests failed with ${EPYTHON}"
|
||||
}
|
||||
Reference in New Issue
Block a user