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/oauthlib/
Date: Sun, 30 Jan 2022 07:22:26
Message-Id: 1643526752.023a5dab34c513280cd95fa83d21771899401635.mgorny@gentoo
1 commit: 023a5dab34c513280cd95fa83d21771899401635
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 30 07:11:24 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 30 07:12:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=023a5dab
7
8 dev-python/oauthlib: Bump to 3.2.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/oauthlib/Manifest | 1 +
13 dev-python/oauthlib/oauthlib-3.2.0.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/oauthlib/Manifest b/dev-python/oauthlib/Manifest
17 index 9f074dfca091..c0ff31e615a7 100644
18 --- a/dev-python/oauthlib/Manifest
19 +++ b/dev-python/oauthlib/Manifest
20 @@ -1 +1,2 @@
21 DIST oauthlib-3.1.1.tar.gz 161395 BLAKE2B bc127841a16429364191a69777741135594366a5c99b32f063ce9bec4b6a3e9b7eb67515aee4da37f26cc2e8b2a2450fc708a21da7e4944861b9adbd9e112018 SHA512 1c18f265a6017a6f2bf77507f5de095b439be36f309316993b547ded0f306461b058dcb85dc245bf26f65a9c77be44ca38f9053f3300a9b5cb92332b61a7f307
22 +DIST oauthlib-3.2.0.tar.gz 163829 BLAKE2B cf14aeea253bc25f696bb638f364ff74d1a695a0f72dc8a77e2a5433e20672a5cf4a7b25f222940a08a5a26b503e671258ef26ee96e121fa016fbec3d6c5c874 SHA512 abb052cbaccb00a61e9a6c0028102927310d2d864d853cd0826c9a8eae8a9e921da33b79be554a3c6f6067cbcf43b25140f5224c8ab1e7f0a4eb6ab227d418a3
23
24 diff --git a/dev-python/oauthlib/oauthlib-3.2.0.ebuild b/dev-python/oauthlib/oauthlib-3.2.0.ebuild
25 new file mode 100644
26 index 000000000000..8b0e728b69a5
27 --- /dev/null
28 +++ b/dev-python/oauthlib/oauthlib-3.2.0.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Spec-compliant and thorough implementation of the OAuth request-signing logic"
41 +HOMEPAGE="https://github.com/oauthlib/oauthlib https://pypi.org/project/oauthlib/"
42 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
47 +
48 +# optional extras hard set as RDEPs. See setup.py
49 +RDEPEND="
50 + >=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
51 + dev-python/blinker[${PYTHON_USEDEP}]
52 + dev-python/cryptography[${PYTHON_USEDEP}]
53 + "
54 +BDEPEND="
55 + test? (
56 + dev-python/mock[${PYTHON_USEDEP}]
57 + )"
58 +
59 +distutils_enable_tests unittest