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: Sun, 22 Aug 2021 21:40:44
Message-Id: 1629668217.d2a6d7d68b3ac42ce2e29c518aad99b8e9a5fdfa.mgorny@gentoo
1 commit: d2a6d7d68b3ac42ce2e29c518aad99b8e9a5fdfa
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 22 21:36:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 22 21:36:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a6d7d6
7
8 dev-python/django-mptt: Bump to 0.13.1
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.1.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 9f942579e7d..bef1b93a80f 100644
18 --- a/dev-python/django-mptt/Manifest
19 +++ b/dev-python/django-mptt/Manifest
20 @@ -1,2 +1,3 @@
21 DIST django-mptt-0.11.0.tar.gz 98300 BLAKE2B cbae24143007dfe8913aacf4cbe22bbccdf929617adc31640c2d429d6ea8be727a937be0aa8353e82862b9fe8c571397db4dd3877015eb17c2c5a56172cc66a5 SHA512 21af30007661db1474628b6f8af86a3f6de52494efe1aaf9235f8b1660ba153f0de3ad91ff979588e4b681b00b44652a05146df7d3951d6ee62da38a1900fd89
22 +DIST django-mptt-0.13.1.gh.tar.gz 302287 BLAKE2B 915e3066862be4d0883ba540cf584d917994ecbf83182726f5d39a40b61850e4ef1fade2c12325237f2c345de14ca6e54362712eb7bdbdf553eb6ebbf321075f SHA512 bc64d24f8d889109a054f270802f8ce6308c12bf3b9ebe1ba818d42e6c1f9d8904b8cad996e71e03c7f77ed80d912a7d8bb920cccc0e2fff170e754816367f40
23 DIST django-mptt-0.13.gh.tar.gz 302525 BLAKE2B 21b2fde5c81d83321bf7569d2064db87aec3c184f27cf3fc3bd34421be04212188e15f79a575b08aabb3a7b95d116bf3e5f0fb57c56cadf9ad2ac166e8e77845 SHA512 63dbb61dab59d42b5e747f35370a0840d40ed465979d1f93e66561cf4c0726635cae774f87e39cc1ac480847f3ccf0eb65dc8593759a0860d586e334fdd37256
24
25 diff --git a/dev-python/django-mptt/django-mptt-0.13.1.ebuild b/dev-python/django-mptt/django-mptt-0.13.1.ebuild
26 new file mode 100644
27 index 00000000000..10262c58b32
28 --- /dev/null
29 +++ b/dev-python/django-mptt/django-mptt-0.13.1.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..9} )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="utilities for modified preorder tree traversal and trees of model instances"
40 +HOMEPAGE="https://github.com/django-mptt/django-mptt"
41 +SRC_URI="
42 + https://github.com/django-mptt/django-mptt/archive/${PV}.tar.gz
43 + -> ${P}.gh.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +RDEPEND="
50 + >=dev-python/django-1.11[${PYTHON_USEDEP}]
51 + dev-python/django-js-asset[${PYTHON_USEDEP}]
52 +"
53 +
54 +python_test() {
55 + "${EPYTHON}" tests/manage.py test -v2 myapp ||
56 + die "Tests failed with ${EPYTHON}"
57 +}