dev-python/django-allauth: add 64.1.0
Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
This commit is contained in:
parent
227e3cd099
commit
1f844ec587
|
@ -1,2 +1,3 @@
|
|||
DIST django-allauth-0.50.0.tar.gz 703083 BLAKE2B cb43eb09c5385020a581ecdc97acb74329d9c188f4365d91a46b8d2fe742d1d497bdd08d39cff36c93958e885fa1098a2b15218b296f1d9bf9211320aed247b6 SHA512 bf769e639ad37cfa150ed115b88d8802ae2f407461738a0dd2f39b055a4afc1468fe30d47a86e8f22697d2e67d4277078218c76f6c394a5cc685b7b21fa0a53a
|
||||
DIST django-allauth-0.53.1.tar.gz 736728 BLAKE2B 21b8d40a7386a5f0fbdb72efb82bb7588fe2f2d20263067f84d8438239243ea92b21f3b1a82d95c48126f99740010906b3264666c9a09221619997bbf2962722 SHA512 6f0d7067d5522ccd19abf614f4af80b7fc59e42dbb0859c79c8f47aed821ccab2b3ef8092af58c4e647f41d114b084b8cf1729d6fbd4a2c9bfbb691ff41903f0
|
||||
DIST django_allauth-64.1.0.tar.gz 1205137 BLAKE2B 0335fbaa0abfc498827355332fbd8bd306662a4a1d3f18827887149fcb5f03c7c6757cd302992a674df441fd476ff4d3ea8a744d7773825593797240e2b1cc0b SHA512 d9aaacf72f89d32d1e998af67b5b3a5ea78eb049cb3a70c0cb6fe5e0f3c656b8a4668c0702cb45697d8249cb4febe88f62d181379ecbdf4c005012977b2cf4aa
|
||||
|
|
48
dev-python/django-allauth/django-allauth-64.1.0.ebuild
Normal file
48
dev-python/django-allauth/django-allauth-64.1.0.ebuild
Normal file
|
@ -0,0 +1,48 @@
|
|||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Django 3rd party (social) account authentication"
|
||||
HOMEPAGE="
|
||||
https://www.intenct.nl/projects/django-allauth/
|
||||
https://github.com/pennersr/django-allauth/
|
||||
https://pypi.org/project/django-allauth/
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
dev-python/django[${PYTHON_USEDEP}]
|
||||
dev-python/pyjwt[${PYTHON_USEDEP}]
|
||||
dev-python/python3-openid[${PYTHON_USEDEP}]
|
||||
dev-python/requests-oauthlib[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND="
|
||||
test? ( ${RDEPEND} )
|
||||
"
|
||||
|
||||
DOCS=( README.rst AUTHORS ChangeLog.rst )
|
||||
|
||||
src_test() {
|
||||
# cern provider tests require Internet
|
||||
rm allauth/socialaccount/providers/cern/tests.py || die
|
||||
distutils-r1_src_test
|
||||
}
|
||||
|
||||
python_test() {
|
||||
local -x DJANGO_SETTINGS_MODULE=test_settings
|
||||
local -x PYTHONPATH=.
|
||||
django-admin test -v 2 || die "Tests failed with ${EPYTHON}"
|
||||
}
|
Loading…
Reference in a new issue