Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-nose/
Date: Sun, 04 Jun 2017 07:30:28
Message-Id: 1496561420.1692204d9d7b90e6eea99d0cf53c9cdabe1e3126.jlec@gentoo
1 commit: 1692204d9d7b90e6eea99d0cf53c9cdabe1e3126
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 4 06:46:49 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 4 07:30:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1692204d
7
8 dev-python/django-nose: Version Bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/django-nose/Manifest | 1 +
14 dev-python/django-nose/django-nose-1.4.4.ebuild | 32 +++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/dev-python/django-nose/Manifest b/dev-python/django-nose/Manifest
18 index 0680ed045e3..3a2df30d166 100644
19 --- a/dev-python/django-nose/Manifest
20 +++ b/dev-python/django-nose/Manifest
21 @@ -1,2 +1,3 @@
22 DIST django-nose-1.3.tar.gz 25149 SHA256 3667d26a41fec30364a0ef72580832ca5328802d553f6d6e72af5ac21cb36365 SHA512 0e7f18d32340f912fcde96c3ed4ff63caec71ad178f9bd01e61087a228d7e93ecfd87c5d320a66093bce438561638daacd586a4ecb3198573b28607d33eb853f WHIRLPOOL 0acbbe147c0e434ef641843d10f9781ef26f3dc428ba8e613165ed43d6f5d1dea27bf513d9efcbd551c38c7a1945ae3b06aafb0a6d01c8714479f0c4836f1863
23 DIST django-nose-1.4.3.tar.gz 46035 SHA256 19b8daf4cd5e66603dc58018f0384117097de18714775338cdb76a94d48d8966 SHA512 448ecfd9759811dc123cbc4bdc2e58e697f0f4c17caf9277fb5e0eb9215205d7814d45e86b2008e8a1233ddaf14e12112cdf64b0f5d54464ce77cbf896a48981 WHIRLPOOL f1c1883c0f86621b9752f9374ce30f7f4d25de7740de5d6e5b59a95a92d6786a2fe21f2fff3f699cb2c81175e60ba84e84fabbfc7079252e20f291596259482f
24 +DIST django-nose-1.4.4.tar.gz 44266 SHA256 c0b904927fcc2f9d8c55ad1afa18c2e77d74f44ef162c35e07930af5a73ba4ba SHA512 b69af1e8539f7d792e6c9ef002cbeeee95bd144148d55850a49e2759784b68ce07e19587365beb06cc138136498c0e952f7b16067567a5a2eaa31e9f4d47b8da WHIRLPOOL 23831d4ddde1c46d5e8bced2803ad861d3ef8234dc97276dedd13c954d43ca44079056c8eb2d5cb1687bdfd5039a4ea0d2b7ab36abf1e1e319253ef7112f0318
25
26 diff --git a/dev-python/django-nose/django-nose-1.4.4.ebuild b/dev-python/django-nose/django-nose-1.4.4.ebuild
27 new file mode 100644
28 index 00000000000..c9dc45bc70a
29 --- /dev/null
30 +++ b/dev-python/django-nose/django-nose-1.4.4.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Django test runner that uses nose"
42 +HOMEPAGE="https://github.com/jbalogh/django-nose"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="test"
49 +
50 +#RESTRICT="test" # The testsuite currently broken See notes below
51 +
52 +RDEPEND="
53 + >=dev-python/nose-1.2.1[${PYTHON_USEDEP}]
54 + dev-python/django[${PYTHON_USEDEP}]"
55 +DEPEND="
56 + dev-python/setuptools[${PYTHON_USEDEP}]
57 + test? ( ${RDEPEND}
58 + >=dev-python/dj-database-url-0.3.0[${PYTHON_USEDEP}]
59 + )"
60 +
61 +python_test() {
62 + ./runtests.sh --verbose || die
63 +}