Gentoo Archives: gentoo-commits

From: "Tiziano Müller" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/dev-zero:master commit in: dev-python/flask-bcrypt/
Date: Fri, 27 Nov 2015 18:25:31
Message-Id: 1448648714.9430a6fa1e7c497c0ad6973d073e06458455341a.dev-zero@gentoo
1 commit: 9430a6fa1e7c497c0ad6973d073e06458455341a
2 Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 27 18:25:14 2015 +0000
4 Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 27 18:25:14 2015 +0000
6 URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=9430a6fa
7
8 dev-python/flask-bcrypt: initial commit
9
10 dev-python/flask-bcrypt/Manifest | 1 +
11 dev-python/flask-bcrypt/flask-bcrypt-0.7.1.ebuild | 29 +++++++++++++++++++++++
12 2 files changed, 30 insertions(+)
13
14 diff --git a/dev-python/flask-bcrypt/Manifest b/dev-python/flask-bcrypt/Manifest
15 new file mode 100644
16 index 0000000..aeed066
17 --- /dev/null
18 +++ b/dev-python/flask-bcrypt/Manifest
19 @@ -0,0 +1 @@
20 +DIST flask-bcrypt-0.7.1.tar.gz 116978 SHA256 3ac736869ce989a367f0b545d0fe451373e93732ddeee9842e35f2f3fd920bb2 SHA512 b69e23f77810280514d3fe155fb092918989e6a3b91b3f4baaf88dbd46feb660c6f19d27a67a63caefee8384f8f8f030c308e4a5b9023fe04b4009db1ad130db WHIRLPOOL 2c6aa94f78270372ff5dae64110318e3a0305b9c892e1b66ad2cc1dc4b299766aa1e6ff91e6aea1a4d65f28be239d0be2305cbd6455df33b4df3836aa96c89c6
21
22 diff --git a/dev-python/flask-bcrypt/flask-bcrypt-0.7.1.ebuild b/dev-python/flask-bcrypt/flask-bcrypt-0.7.1.ebuild
23 new file mode 100644
24 index 0000000..6b8300b
25 --- /dev/null
26 +++ b/dev-python/flask-bcrypt/flask-bcrypt-0.7.1.ebuild
27 @@ -0,0 +1,29 @@
28 +# Copyright 1999-2015 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=5
33 +PYTHON_COMPAT=( python{2_7,3_4} )
34 +
35 +inherit distutils-r1
36 +
37 +DESCRIPTION="Provides bcrypt hashing utilities for your Flask application."
38 +HOMEPAGE="https://pypi.python.org/pypi/Flask-Bcrypt"
39 +SRC_URI="https://github.com/maxcountryman/flask-bcrypt/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="BSD"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="test"
45 +
46 +RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
47 +DEPEND="${RDEPEND}
48 + dev-python/setuptools[${PYTHON_USEDEP}]
49 + dev-python/bcrypt[${PYTHON_USEDEP}]
50 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
51 + "
52 +
53 +# use the github tarball which includes the test files
54 +python_test() {
55 + esetup.py test
56 +}