Anton Bolshakov 2021-04-18 10:05:04 +08:00
parent 99a8e9ae6a
commit 07c8966ad6
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
4 changed files with 36 additions and 4 deletions

View file

@ -1,2 +1,3 @@
DIST django-oauth-toolkit-1.1.3.tar.gz 83783 BLAKE2B 0ab8d0c0168eec5e9a5a2b32c73775de5c806ac4d614622e268ce31b5d2e8e9d3c3f43d444da3ae9b6f0da907ea731859f19adeb0e39fa90305839182ec1fada SHA512 dae7e5f15f9820f513371684a33588c389f709c2a2a4581ba771a3c25b7125e27037869140e0071ca5695e4b630462267e28a5e99b644d64dd5059e182478e34
DIST django-oauth-toolkit-1.2.0.tar.gz 84919 BLAKE2B e3029998219c55fc0f447046e3b4e36de3c1379dc49042981a16e1a061e62bbbb643fc2609800b0c177845b9446284fe311282a014bb3aa19bbfd5ab271c6131 SHA512 844acdd76a9dac1db6d647f09a9402370f27ad21b1118f5d78c005b9037830c1718ea825621e994ac5f4219d3938a4b824c37ffeaa15468f07a1ec0768ad4358
DIST django-oauth-toolkit-1.5.0.tar.gz 207080 BLAKE2B 0bd915612030352abbbdc9f1050b0a1eac7b40bae384a2529324b20d8c2890c306eaaa705cdeb03e86e7e665d5943a1938435432b7229ca3534f8c4289d6eec8 SHA512 8dedd35971bde438df9fb657c0962acf5aa1fe89c347e48cba5f4f0e940e1332e1a1141f7acfce6fb76dcffba7f57d8d320f843a0215dbe9218f4e32e89bebff

View file

@ -0,0 +1,31 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="OAuth2 goodies for the Djangonauts"
HOMEPAGE="https://github.com/evonove/django-oauth-toolkit"
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/evonove/django-oauth-toolkit/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~arm64 x86"
IUSE=""
LICENSE="BSD"
SLOT="0"
RDEPEND=">=dev-python/django-2.2[${PYTHON_USEDEP}]
>=dev-python/requests-2.13.0[${PYTHON_USEDEP}]
>=dev-python/oauthlib-2.0.3[${PYTHON_USEDEP}]
dev-python/jwcrypto[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
src_prepare(){
rm -r tests
eapply_user
}

View file

@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7} )
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1

View file

@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7} )
PYTHON_COMPAT=( python3_{7..9} )
inherit python-single-r1 git-r3
DESCRIPTION="An intentionally designed broken web application based on REST API"