dev-python/social-auth-app-django: add 5.4.2
Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
This commit is contained in:
parent
c241e7992b
commit
6deb340dde
2 changed files with 33 additions and 0 deletions
|
@ -1 +1,2 @@
|
|||
DIST social-app-django-5.4.0.tar.gz 28886 BLAKE2B f7e3c0394b28e0de33e2377165b7eff4dd7a33b970b0850e1f32ee93f9b5e961789faf0a46380422e9158ee78c813c53592cc3b6fd296867c4cb567e9f2bfca2 SHA512 a88843757d781509b8a4d29b42825ebaab1031c307ec0b28c6a9165fb527bf04bf15e09b62870feb86a275a16c2d6b6319cc122650561635fe2b8ecdc2b050be
|
||||
DIST social-app-django-5.4.2.tar.gz 28431 BLAKE2B 660a9ec3badb1d56fddff8a0a16275a40a6f8a94d611e00c805bb2cde47ab9e3d26c31f06706c5e2378cc575ab210e75d13e3e39b7459fca529d7863900f95e4 SHA512 015901bd800d04700a90aa3382dfe1bd4ce57eb7a4c9a946cccbbdd4a11f038f2f8da0d1756e239f492775d80aef49a09b35cea254b28406ab88c3d1e811acb2
|
||||
|
|
|
@ -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-4.4.1[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
python_test() {
|
||||
"${PYTHON}" manage.py test -v2 || die "tests failed with ${EPYTHON}"
|
||||
}
|
Loading…
Reference in a new issue