From e0a666859750e825352937341122506ca43d9c92 Mon Sep 17 00:00:00 2001 From: Alarig Le Lay Date: Tue, 27 Aug 2024 18:48:51 +0200 Subject: [PATCH] dev-python/social-auth-app-django: add 5.4.0 Signed-off-by: Alarig Le Lay --- dev-python/social-auth-app-django/Manifest | 1 + .../social-auth-app-django-5.4.0.ebuild | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 dev-python/social-auth-app-django/social-auth-app-django-5.4.0.ebuild diff --git a/dev-python/social-auth-app-django/Manifest b/dev-python/social-auth-app-django/Manifest index 1161df5..3f21626 100644 --- a/dev-python/social-auth-app-django/Manifest +++ b/dev-python/social-auth-app-django/Manifest @@ -1,2 +1,3 @@ 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 +DIST social-app-django-5.4.0.tar.gz 28886 BLAKE2B f7e3c0394b28e0de33e2377165b7eff4dd7a33b970b0850e1f32ee93f9b5e961789faf0a46380422e9158ee78c813c53592cc3b6fd296867c4cb567e9f2bfca2 SHA512 a88843757d781509b8a4d29b42825ebaab1031c307ec0b28c6a9165fb527bf04bf15e09b62870feb86a275a16c2d6b6319cc122650561635fe2b8ecdc2b050be diff --git a/dev-python/social-auth-app-django/social-auth-app-django-5.4.0.ebuild b/dev-python/social-auth-app-django/social-auth-app-django-5.4.0.ebuild new file mode 100644 index 0000000..3b3144f --- /dev/null +++ b/dev-python/social-auth-app-django/social-auth-app-django-5.4.0.ebuild @@ -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}" +}