Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-security/
Date: Wed, 03 Jan 2018 23:35:40
Message-Id: 1515022514.d4ef5ed2ab3ade7ac59adb112616cb3bf6f65fa1.mgorny@gentoo
1 commit: d4ef5ed2ab3ade7ac59adb112616cb3bf6f65fa1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 22:29:59 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 23:35:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4ef5ed2
7
8 dev-python/flask-security: Clean old up
9
10 dev-python/flask-security/Manifest | 1 -
11 .../flask-security/flask-security-1.7.4.ebuild | 46 ----------------------
12 2 files changed, 47 deletions(-)
13
14 diff --git a/dev-python/flask-security/Manifest b/dev-python/flask-security/Manifest
15 index 22082580afe..8cd75873bc5 100644
16 --- a/dev-python/flask-security/Manifest
17 +++ b/dev-python/flask-security/Manifest
18 @@ -1,2 +1 @@
19 -DIST Flask-Security-1.7.4.tar.gz 41467 BLAKE2B 73b62285cd1829727e4f675b86e85e4c581ea8f7f34a813038b38bbb54ab5bfae050de2e8fff07d65fa0902ea984971efd4dee1b8572e259abfd9a512ee70c2c SHA512 9d0f7db3250f6cab5af4e60cdffd2fffe28ef2dc30e38a479eb91f04c559308b5c530784fc4d9bbf410fd3f6060830f150b8cdb56a3a2d650c4873a14e09b622
20 DIST Flask-Security-1.7.5.tar.gz 42261 BLAKE2B b71170e83acadf036f8b7d2ab6d2cf6521ee06109bb1cb45801a10fa20c050ae5f933df4414ce57d1c9dabed60b068eeab3e0a0f6d318f092680ac7f5e775cfb SHA512 41fd806d35746bdc212aa4ab01af678d39765a6d4df42cd19c87b8a2060374112d3e8a5f2fc243e88906505d6a942b9a824cf19a29b2c0eebacde9299534ffc9
21
22 diff --git a/dev-python/flask-security/flask-security-1.7.4.ebuild b/dev-python/flask-security/flask-security-1.7.4.ebuild
23 deleted file mode 100644
24 index bdf86b22f3e..00000000000
25 --- a/dev-python/flask-security/flask-security-1.7.4.ebuild
26 +++ /dev/null
27 @@ -1,46 +0,0 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -PYTHON_COMPAT=( python2_7 )
33 -
34 -inherit distutils-r1
35 -
36 -MY_PN="Flask-Security"
37 -MY_P="${MY_PN}-${PV}"
38 -
39 -DESCRIPTION="Simple security for Flask apps"
40 -HOMEPAGE="http://pythonhosted.org/${MY_PN}/ https://pypi.python.org/pypi/${MY_PN}"
41 -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="test"
47 -# packages of this type require local running instances of databases
48 -# which then require connect to localhost
49 -RESTRICT="test"
50 -
51 -RDEPEND=">=dev-python/flask-0.9[${PYTHON_USEDEP}]
52 - >=dev-python/itsdangerous-0.17[${PYTHON_USEDEP}]
53 - >=dev-python/passlib-1.6.1[${PYTHON_USEDEP}]
54 - >=dev-python/flask-login-0.1.3[${PYTHON_USEDEP}]
55 - >=dev-python/flask-mail-0.7.3[${PYTHON_USEDEP}]
56 - >=dev-python/flask-wtf-0.8[${PYTHON_USEDEP}]
57 - >=dev-python/flask-principal-0.3.3[${PYTHON_USEDEP}]"
58 -DEPEND="${RDEPEND}
59 - dev-python/setuptools[${PYTHON_USEDEP}]
60 - test? (
61 - dev-python/nose[${PYTHON_USEDEP}]
62 - dev-python/flask-sqlalchemy[${PYTHON_USEDEP}]
63 - dev-python/flask-mongoengine[${PYTHON_USEDEP}]
64 - dev-python/flask-peewee[${PYTHON_USEDEP}]
65 - dev-python/bcrypt[${PYTHON_USEDEP}]
66 - dev-python/simplejson[${PYTHON_USEDEP}]
67 - )"
68 -
69 -S="${WORKDIR}/${MY_P}"
70 -
71 -python_test() {
72 - nosetests || die "Testing failed with ${EPYTHON}"
73 -}