dev-python/django-mptt: add 0.14

Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
This commit is contained in:
Alarig Le Lay 2024-08-22 00:54:58 +02:00
parent 875c208237
commit efab76d93d
Signed by: alarig
GPG key ID: 7AFE62C6DF8BCDEC
2 changed files with 28 additions and 0 deletions

View file

@ -1 +1,2 @@
DIST django-mptt-0.13.4.gh.tar.gz 303688 BLAKE2B 66ae7a0e15a7ff281af2154f216970a6a9b249a713b3ae987f0fbdb60b95129fdfc96c05924c0285da33f11c59baf6e069830c3079c64164d838d9d34231a4a9 SHA512 86786763db060227b41e2e340df5d52062fb6e8c54f832611bc90d01102411d45dc217e8d84eece84ebbe4fc9727d06e7c368ae15c253aaf02117705dbae8c47
DIST django-mptt-0.14.gh.tar.gz 307340 BLAKE2B c503c0cba376b90adb8697fde3b1274d986e9dfd63184e06af8243a6a167d43c068132a2d84a2b3a74f4027d906e3f6ab7e4413b39cd4fc584d78bc934ba7333 SHA512 b52bf34f6a34f2811155917d9fe66bfa5aa645e8be9bc8f9930a0dc5a6fdfb99b14b0a9adac378a895393683732997f0db491bc2857b22207fe3a0a386232ce7

View file

@ -0,0 +1,27 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
DESCRIPTION="utilities for modified preorder tree traversal and trees of model instances"
HOMEPAGE="https://github.com/django-mptt/django-mptt"
SRC_URI="
https://github.com/django-mptt/django-mptt/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/django-2.2[${PYTHON_USEDEP}]
dev-python/django-js-asset[${PYTHON_USEDEP}]
"
python_test() {
"${EPYTHON}" tests/manage.py test -v2 myapp ||
die "Tests failed with ${EPYTHON}"
}