diff options
author | Justin Lecher <jlec@gentoo.org> | 2017-06-04 07:46:49 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2017-06-04 08:30:20 +0100 |
commit | 1692204d9d7b90e6eea99d0cf53c9cdabe1e3126 (patch) | |
tree | 90acb1212ffa7679ccbd27cff4779c941c9a79a9 /dev-python/django-nose | |
parent | dev-python/dj-database-url: Version Bump (diff) | |
download | gentoo-1692204d9d7b90e6eea99d0cf53c9cdabe1e3126.tar.gz gentoo-1692204d9d7b90e6eea99d0cf53c9cdabe1e3126.tar.bz2 gentoo-1692204d9d7b90e6eea99d0cf53c9cdabe1e3126.zip |
dev-python/django-nose: Version Bump
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/django-nose')
-rw-r--r-- | dev-python/django-nose/Manifest | 1 | ||||
-rw-r--r-- | dev-python/django-nose/django-nose-1.4.4.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/django-nose/Manifest b/dev-python/django-nose/Manifest index 0680ed045e30..3a2df30d1662 100644 --- a/dev-python/django-nose/Manifest +++ b/dev-python/django-nose/Manifest @@ -1,2 +1,3 @@ DIST django-nose-1.3.tar.gz 25149 SHA256 3667d26a41fec30364a0ef72580832ca5328802d553f6d6e72af5ac21cb36365 SHA512 0e7f18d32340f912fcde96c3ed4ff63caec71ad178f9bd01e61087a228d7e93ecfd87c5d320a66093bce438561638daacd586a4ecb3198573b28607d33eb853f WHIRLPOOL 0acbbe147c0e434ef641843d10f9781ef26f3dc428ba8e613165ed43d6f5d1dea27bf513d9efcbd551c38c7a1945ae3b06aafb0a6d01c8714479f0c4836f1863 DIST django-nose-1.4.3.tar.gz 46035 SHA256 19b8daf4cd5e66603dc58018f0384117097de18714775338cdb76a94d48d8966 SHA512 448ecfd9759811dc123cbc4bdc2e58e697f0f4c17caf9277fb5e0eb9215205d7814d45e86b2008e8a1233ddaf14e12112cdf64b0f5d54464ce77cbf896a48981 WHIRLPOOL f1c1883c0f86621b9752f9374ce30f7f4d25de7740de5d6e5b59a95a92d6786a2fe21f2fff3f699cb2c81175e60ba84e84fabbfc7079252e20f291596259482f +DIST django-nose-1.4.4.tar.gz 44266 SHA256 c0b904927fcc2f9d8c55ad1afa18c2e77d74f44ef162c35e07930af5a73ba4ba SHA512 b69af1e8539f7d792e6c9ef002cbeeee95bd144148d55850a49e2759784b68ce07e19587365beb06cc138136498c0e952f7b16067567a5a2eaa31e9f4d47b8da WHIRLPOOL 23831d4ddde1c46d5e8bced2803ad861d3ef8234dc97276dedd13c954d43ca44079056c8eb2d5cb1687bdfd5039a4ea0d2b7ab36abf1e1e319253ef7112f0318 diff --git a/dev-python/django-nose/django-nose-1.4.4.ebuild b/dev-python/django-nose/django-nose-1.4.4.ebuild new file mode 100644 index 000000000000..c9dc45bc70aa --- /dev/null +++ b/dev-python/django-nose/django-nose-1.4.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Django test runner that uses nose" +HOMEPAGE="https://github.com/jbalogh/django-nose" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +#RESTRICT="test" # The testsuite currently broken See notes below + +RDEPEND=" + >=dev-python/nose-1.2.1[${PYTHON_USEDEP}] + dev-python/django[${PYTHON_USEDEP}]" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( ${RDEPEND} + >=dev-python/dj-database-url-0.3.0[${PYTHON_USEDEP}] + )" + +python_test() { + ./runtests.sh --verbose || die +} |