Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-mptt/
Date: Mon, 27 Sep 2021 22:16:18
Message-Id: 1632780964.855ee87d6f0c3df406e8c04936ed16c5069cb26d.mgorny@gentoo
1 commit: 855ee87d6f0c3df406e8c04936ed16c5069cb26d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 27 21:32:01 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 27 22:16:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855ee87d
7
8 dev-python/django-mptt: Bump to 0.13.4
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/django-mptt/Manifest | 1 +
13 dev-python/django-mptt/django-mptt-0.13.4.ebuild | 27 ++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/django-mptt/Manifest b/dev-python/django-mptt/Manifest
17 index 1b5f5f0aa23..cdc0defa20c 100644
18 --- a/dev-python/django-mptt/Manifest
19 +++ b/dev-python/django-mptt/Manifest
20 @@ -1 +1,2 @@
21 DIST django-mptt-0.13.3.gh.tar.gz 303670 BLAKE2B 0185ecf3576ab7fe48ec4d7b2259e7cd88f2c5e3a8c96aa1ee555b7f0adabed4b787db84bcc4b2831746b410f0f58364df8fab9ce1768f1e1b9d1ff8a2869730 SHA512 602f45d4353dca80ec2285366c87eb60ff6a39a09990a041236f737371715166e9a8e360a83b4419c0ded7a206f73e4754de602aabef18f89e7db85ce8c651ea
22 +DIST django-mptt-0.13.4.gh.tar.gz 303688 BLAKE2B 66ae7a0e15a7ff281af2154f216970a6a9b249a713b3ae987f0fbdb60b95129fdfc96c05924c0285da33f11c59baf6e069830c3079c64164d838d9d34231a4a9 SHA512 86786763db060227b41e2e340df5d52062fb6e8c54f832611bc90d01102411d45dc217e8d84eece84ebbe4fc9727d06e7c368ae15c253aaf02117705dbae8c47
23
24 diff --git a/dev-python/django-mptt/django-mptt-0.13.4.ebuild b/dev-python/django-mptt/django-mptt-0.13.4.ebuild
25 new file mode 100644
26 index 00000000000..10262c58b32
27 --- /dev/null
28 +++ b/dev-python/django-mptt/django-mptt-0.13.4.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..9} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="utilities for modified preorder tree traversal and trees of model instances"
39 +HOMEPAGE="https://github.com/django-mptt/django-mptt"
40 +SRC_URI="
41 + https://github.com/django-mptt/django-mptt/archive/${PV}.tar.gz
42 + -> ${P}.gh.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +
48 +RDEPEND="
49 + >=dev-python/django-1.11[${PYTHON_USEDEP}]
50 + dev-python/django-js-asset[${PYTHON_USEDEP}]
51 +"
52 +
53 +python_test() {
54 + "${EPYTHON}" tests/manage.py test -v2 myapp ||
55 + die "Tests failed with ${EPYTHON}"
56 +}