Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-recaptcha/
Date: Fri, 26 Feb 2016 19:53:24
Message-Id: 1456516329.0f02af0c9eee88aef1338fa17e5d960cbbe866fe.patrick@gentoo
1 commit: 0f02af0c9eee88aef1338fa17e5d960cbbe866fe
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 26 19:51:06 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 26 19:52:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f02af0c
7
8 dev-python/django-recaptcha: Bump
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/django-recaptcha/Manifest | 1 +
13 .../django-recaptcha/django-recaptcha-1.0.5.ebuild | 27 ++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/django-recaptcha/Manifest b/dev-python/django-recaptcha/Manifest
17 index 32c49fb..2ad7104 100644
18 --- a/dev-python/django-recaptcha/Manifest
19 +++ b/dev-python/django-recaptcha/Manifest
20 @@ -1,2 +1,3 @@
21 DIST django-recaptcha-1.0.3.tar.gz 11268 SHA256 ca47210207e81d8237ff0c5cf51ce07b95ff83dcf5f1e03bb813b6e0cb853af6 SHA512 9288ba1b4145dd6a08f39d226eeaa5f9ea6d9ff63714ff497fe808dfbe249918e4bb67790566044bceeb59ed293a8fcfe4fb41e279b17b2d7a0a0c5a53dd6463 WHIRLPOOL 079349c118a163c6ba6addd18001b1a50a3139c1ff7cd8729e0c77d51f2a798d6aa32e911fcdfc57727eddb5e9bde58639256ba254a759790a0077b6aeb766a5
22 DIST django-recaptcha-1.0.4.tar.gz 12036 SHA256 8af0da767b07ca4d7a5a2be329776fe6dbab183c3da61ae30796e1a9354eea6c SHA512 45a149250c2f2ca9d00591027bd9f8264fc2ba90a5f09b4a96484326c0805d86f690bf02255a1a112d5705d357b6db2fdf97ca8f26681692f7c1f07118c9c2e4 WHIRLPOOL 620afa904beb41e09b9e178de08785f915c21170e43c558f66fb6f1fba175839bf9d39eeb7094056f1a4fef7b52d79074436699708932639be7f24419d06718b
23 +DIST django-recaptcha-1.0.5.tar.gz 12827 SHA256 62081dd411dfddcc0b7cb97c358fe449788f7974d19e6e95afd1487574852d6a SHA512 2ccf0a6c25d242d86ef7e89705d3f299c94c0ee2fc40853db9bb8cf1f7397650dcde85f1a6d995d452d432ce947bd8fa850d64334d4c124ddc9315cab6fe222c WHIRLPOOL a0759e1e717aaf34ecd000abc3c9978a965e3559eb1a51c522eb4f236616cb71046a4494d156e82a8ed8887e7fc1119dfe9226b9c2add5fb290c1eabc38599dc
24
25 diff --git a/dev-python/django-recaptcha/django-recaptcha-1.0.5.ebuild b/dev-python/django-recaptcha/django-recaptcha-1.0.5.ebuild
26 new file mode 100644
27 index 0000000..9f3d4c7
28 --- /dev/null
29 +++ b/dev-python/django-recaptcha/django-recaptcha-1.0.5.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2015 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,3_4} pypy )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Django recaptcha form field/widget app"
41 +HOMEPAGE="https://github.com/praekelt/django-recaptcha https://pypi.python.org/pypi/django-recaptcha"
42 +#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +SRC_URI="https://github.com/praekelt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="test"
49 +
50 +RDEPEND="dev-python/django[${PYTHON_USEDEP}]"
51 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
52 + test? ( ${RDEPEND}
53 + >=dev-python/django-setuptest-0.2.1[${PYTHON_USEDEP}] )"
54 +
55 +python_test() {
56 + esetup.py test
57 +}