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/oauth2/
Date: Fri, 05 Jan 2018 13:26:25
Message-Id: 1515158742.603e6ee5170370b5418d4a196ee13a3dacc937eb.mgorny@gentoo
1 commit: 603e6ee5170370b5418d4a196ee13a3dacc937eb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 09:54:49 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 13:25:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=603e6ee5
7
8 dev-python/oauth2: Clean old up
9
10 dev-python/oauth2/oauth2-1.9.0_p1.ebuild | 34 --------------------------------
11 1 file changed, 34 deletions(-)
12
13 diff --git a/dev-python/oauth2/oauth2-1.9.0_p1.ebuild b/dev-python/oauth2/oauth2-1.9.0_p1.ebuild
14 deleted file mode 100644
15 index f4dca70da95..00000000000
16 --- a/dev-python/oauth2/oauth2-1.9.0_p1.ebuild
17 +++ /dev/null
18 @@ -1,34 +0,0 @@
19 -# Copyright 1999-2016 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=5
23 -
24 -PYTHON_COMPAT=( python2_7 python3_4 pypy )
25 -
26 -inherit distutils-r1
27 -
28 -MY_P="${P/_p/.post}"
29 -
30 -DESCRIPTION="Library for OAuth version 1.0"
31 -HOMEPAGE="https://pypi.python.org/pypi/oauth2"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
33 -
34 -LICENSE="MIT"
35 -SLOT="0"
36 -KEYWORDS="amd64 x86 ~x64-macos"
37 -IUSE="test"
38 -
39 -RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}]"
40 -DEPEND="
41 - dev-python/setuptools[${PYTHON_USEDEP}]
42 - test? ( ${RDEPEND}
43 - dev-python/coverage[${PYTHON_USEDEP}]
44 - dev-python/mock[${PYTHON_USEDEP}]
45 - )"
46 -
47 -PATCHES=( "${FILESDIR}/${PV}-exclude-tests.patch" )
48 -S="${WORKDIR}/${MY_P}"
49 -
50 -python_test() {
51 - esetup.py test
52 -}