Gentoo Archives: gentoo-commits

From: gerion <gerion.entrup@×××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/user/gerislay:master commit in: dev-python/rauth/
Date: Fri, 13 Jul 2018 21:40:40
Message-Id: 1526643382.a029f2cae33ae12b9632e5599f6d5314dd299a85.gerion@gentoo
1 commit: a029f2cae33ae12b9632e5599f6d5314dd299a85
2 Author: Gerion Entrup <gerion.entrup <AT> flump <DOT> de>
3 AuthorDate: Fri May 18 11:36:22 2018 +0000
4 Commit: gerion <gerion.entrup <AT> flump <DOT> de>
5 CommitDate: Fri May 18 11:36:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=a029f2ca
7
8 add dev-python/rauth
9
10 dev-python/rauth/Manifest | 2 ++
11 dev-python/rauth/rauth-0.7.2.ebuild | 21 +++++++++++++++++++++
12 2 files changed, 23 insertions(+)
13
14 diff --git a/dev-python/rauth/Manifest b/dev-python/rauth/Manifest
15 new file mode 100644
16 index 0000000..b9c9340
17 --- /dev/null
18 +++ b/dev-python/rauth/Manifest
19 @@ -0,0 +1,2 @@
20 +DIST rauth-0.7.2.tar.gz 34688 BLAKE2B 412b777d51e5682fec98088fc6af9cb799231deba7d9f808d61e0e6d57ff4f6f49c0e42dc1c6507f59053d603df85c5acd7105c76ce8c4ea02cc20c016402210 SHA512 8b2b0dd3b6878b928ca16b8ce2a264381cb465e7b2abcdae0bde3102dfd34e098606d7efc44ef5cfde0e89113044656df4f9fd7006c78d1300e02d321913cbb6
21 +EBUILD rauth-0.7.2.ebuild 545 BLAKE2B 3f426449ec56ea39acddc3e954641ddc5d2b18f0f7563a48e74d18a82c19003ff55a190692de5a171efaeb9a4635a691392a9fe2cd1f799eaabf478417bf8856 SHA512 5323d34dea752707d393edc4fc5355db508d5dfa4d5c11ef3860ba6cfd6339227c06aeca469cd4756a60d8484cd3cdb695d22cddc5d57351d2288716a2401246
22
23 diff --git a/dev-python/rauth/rauth-0.7.2.ebuild b/dev-python/rauth/rauth-0.7.2.ebuild
24 new file mode 100644
25 index 0000000..2635e72
26 --- /dev/null
27 +++ b/dev-python/rauth/rauth-0.7.2.ebuild
28 @@ -0,0 +1,21 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +PYTHON_COMPAT=( python2_7 python3_5 python3_6 )
35 +inherit distutils-r1
36 +
37 +DESCRIPTION="A Python library for OAuth 1.0/a, 2.0, and Ofly."
38 +HOMEPAGE="https://github.com/litl/rauth"
39 +SRC_URI="https://github.com/litl/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="MIT"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="test"
45 +
46 +DEPEND="
47 + dev-python/requests[${PYTHON_USEDEP}]
48 + test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
49 +RDEPEND="${DEPEND}"