dev-python/social-auth-app-django: add 5.2.0

Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
This commit is contained in:
Alarig Le Lay 2024-08-27 18:08:13 +02:00
parent 8b05dfa840
commit 6a0e3a3f79
Signed by: alarig
GPG key ID: 7AFE62C6DF8BCDEC
2 changed files with 33 additions and 0 deletions

View file

@ -1 +1,2 @@
DIST social-app-django-5.0.0.tar.gz 27352 BLAKE2B d5fd35b1e5f9bcfcb450b82a1bdddf59c2148e79455873dfb1f6310c0abba307664278814798af72dd5b923916b618401f81b57fbf625bbd00b732919a41d877 SHA512 86de9c392e1f942709c44ab6aa1151cb236432837319309f966efa64c2bf558e23a3e9241c5e4e923d0bd7cee077a1096a34b417b57ac4c84501a6b17f328af6
DIST social-app-django-5.2.0.tar.gz 28225 BLAKE2B c1fe2b344733c204d48f89bee4b7c9b365ea67d007a2451734a985e529b6aee3ab81ab4f5691ab32636141530b4f10895729ae1c97414e7250d021f3fe2348a8 SHA512 48c05ea06b0ddeaf7f78d2d7dc7759835eef8ee72e85d8864fc91689186cabf7f5f7b739362ec424e8e87afa212dd855f95d1c392dac4f91621b5f6cee2ff97a

View file

@ -0,0 +1,32 @@
# 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
MY_PN="${PN//-auth/}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python Social Auth - Application - Django"
HOMEPAGE="https://github.com/python-social-auth/social-app-django"
SRC_URI="https://github.com/python-social-auth/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/django-3.2[${PYTHON_USEDEP}]
dev-python/social-auth-core[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
python_test() {
"${PYTHON}" manage.py test -v2 || die "tests failed with ${EPYTHON}"
}