Gentoo Archives: gentoo-commits

From: Slawek Lis <slis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-mptt/files/, dev-python/django-mptt/
Date: Mon, 27 Jun 2016 06:40:13
Message-Id: 1467009662.7aa3f5e065d3b86e228b4bba93d5d9e9db1df87f.slis@gentoo
1 commit: 7aa3f5e065d3b86e228b4bba93d5d9e9db1df87f
2 Author: Slawomir Lis <slis <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 27 06:41:02 2016 +0000
4 Commit: Slawek Lis <slis <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 27 06:41:02 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aa3f5e0
7
8 version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 dev-python/django-mptt/Manifest | 1 +
13 dev-python/django-mptt/django-mptt-0.8.4.ebuild | 31 ++++++++++++++++++++++++
14 dev-python/django-mptt/files/exclude_tests.patch | 11 +++++++++
15 3 files changed, 43 insertions(+)
16
17 diff --git a/dev-python/django-mptt/Manifest b/dev-python/django-mptt/Manifest
18 index 9cbef34..018a914 100644
19 --- a/dev-python/django-mptt/Manifest
20 +++ b/dev-python/django-mptt/Manifest
21 @@ -1 +1,2 @@
22 DIST django-mptt-0.7.4.tar.gz 133855 SHA256 8e986aaf458aaf78c87dc316095cc4a951f3ec1d73f81b237107161fa3ea4ad0 SHA512 596bb1b7f4a99b4b8788b3f4da59850bdaaed4214f877479a89ce9f749f9d217f2ccce488e7f67cd75780ace09d3b73fdca2b0d95a56225d63dfb9e6a1d290b6 WHIRLPOOL 26f68b368176868f051534e977a6f73612a8ddf7f54b8292e8ac67307a08aa1522eca68f0dde5c800ea2e0ea0538308955e0c3fd73ff50fc735c665669a797d4
23 +DIST django-mptt-0.8.4.tar.gz 119207 SHA256 11445b7b12922fe1d3205baf06e1420ec018bccb4ede486c4a5694cf303ee76e SHA512 c3f45813d3dcaf6ce2504941602b1d1fc2a33f13802b34a9c85685dd0e4066a3e8c6fc36be320c472d93efa54a2f10c493b536f45d16a5ab88a08f6baf0513d3 WHIRLPOOL 0c62341bb916bc91d37d08b6db432071dbdc1093ab9960463e0464cf393118719eec88ed4d42bb178674a114b8d8b7f7965575e92ac1cc3308204cd8ff4f8202
24
25 diff --git a/dev-python/django-mptt/django-mptt-0.8.4.ebuild b/dev-python/django-mptt/django-mptt-0.8.4.ebuild
26 new file mode 100644
27 index 0000000..9cca9cc
28 --- /dev/null
29 +++ b/dev-python/django-mptt/django-mptt-0.8.4.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="5"
36 +
37 +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Utilities for implementing Modified Preorder Tree Traversal"
42 +HOMEPAGE="https://pypi.python.org/pypi/django-mptt"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +KEYWORDS="~amd64 ~x86"
47 +SLOT="0"
48 +IUSE="test"
49 +
50 +RDEPEND="
51 + >=dev-python/django-1.8
52 +"
53 +
54 +DEPEND="
55 + ${RDEPEND}
56 + dev-python/setuptools
57 +"
58 +
59 +src_prepare() {
60 + epatch "${FILESDIR}/exclude_tests.patch"
61 +}
62
63 diff --git a/dev-python/django-mptt/files/exclude_tests.patch b/dev-python/django-mptt/files/exclude_tests.patch
64 new file mode 100644
65 index 0000000..36b5ad4
66 --- /dev/null
67 +++ b/dev-python/django-mptt/files/exclude_tests.patch
68 @@ -0,0 +1,11 @@
69 +--- setup.py.orig 2016-06-27 08:09:57.408674058 +0200
70 ++++ setup.py 2016-06-27 08:10:31.112007190 +0200
71 +@@ -12,7 +12,7 @@
72 + author_email='craig.ds@×××××.com',
73 + url='http://github.com/django-mptt/django-mptt',
74 + license='MIT License',
75 +- packages=find_packages(),
76 ++ packages=find_packages(exclude=('tests', 'tests.*',)),
77 + include_package_data=True,
78 + install_requires=(
79 + 'Django>=1.8',