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-httpauth/
Date: Mon, 10 Oct 2016 12:02:42
Message-Id: 1476100934.c2a00fa7c86c5f7b2abb9d4664e73fa879a72f06.dev-zero@gentoo
1 commit: c2a00fa7c86c5f7b2abb9d4664e73fa879a72f06
2 Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 10 12:02:14 2016 +0000
4 Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 10 12:02:14 2016 +0000
6 URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=c2a00fa7
7
8 dev-python/flask-httpauth: initial commit
9
10 dev-python/flask-httpauth/Manifest | 1 +
11 .../flask-httpauth/flask-httpauth-3.2.1.ebuild | 29 ++++++++++++++++++++++
12 2 files changed, 30 insertions(+)
13
14 diff --git a/dev-python/flask-httpauth/Manifest b/dev-python/flask-httpauth/Manifest
15 new file mode 100644
16 index 0000000..62d6f36
17 --- /dev/null
18 +++ b/dev-python/flask-httpauth/Manifest
19 @@ -0,0 +1 @@
20 +DIST flask-httpauth-3.2.1.tar.gz 32396 SHA256 e2c77f0975ced099db31e5291a53f9e94a9c2c22db79cc018efbeb2d9aede3d8 SHA512 e2bd7c545ac730edb55adcbe490a16255a182863ab2c9e268fd9705c3c611ce3d8c6da5598c60823a98da194d91d12b30487151755d252ca8e5ba204a9a6c3ab WHIRLPOOL 00e9e9ed6b112054d5c953896a8086564cfbe4cea1717e736ba89fb547ad6885fe71e4b5a3e731b1bfe7373d7e0aa28e6e9d9651f1af0ebd5bd1bc8ca13fa7cd
21
22 diff --git a/dev-python/flask-httpauth/flask-httpauth-3.2.1.ebuild b/dev-python/flask-httpauth/flask-httpauth-3.2.1.ebuild
23 new file mode 100644
24 index 0000000..0e610e7
25 --- /dev/null
26 +++ b/dev-python/flask-httpauth/flask-httpauth-3.2.1.ebuild
27 @@ -0,0 +1,29 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=6
33 +PYTHON_COMPAT=( python2_7 python3_5 )
34 +
35 +inherit distutils-r1
36 +
37 +MY_PN="Flask-HTTPAuth"
38 +
39 +DESCRIPTION="Provides Basic and Digest HTTP authentication for Flask routes"
40 +HOMEPAGE="http://github.com/miguelgrinberg/Flask-HTTPAuth https://pypi.python.org/pypi/Flask-HTTPAuth"
41 +SRC_URI="https://github.com/miguelgrinberg/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +# tarball on pypi does not contain tests
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE=""
47 +
48 +RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
49 +DEPEND="${RDEPEND}
50 + dev-python/setuptools[${PYTHON_USEDEP}]"
51 +
52 +S="${WORKDIR}/${MY_PN}-${PV}"
53 +
54 +python_test() {
55 + esetup.py test || die
56 +}