From 6deb340dde8270b310ce658ebcdb4bf0f05ea8ad Mon Sep 17 00:00:00 2001 From: Alarig Le Lay Date: Sat, 4 Jan 2025 22:16:31 +0100 Subject: [PATCH] dev-python/social-auth-app-django: add 5.4.2 Signed-off-by: Alarig Le Lay --- dev-python/social-auth-app-django/Manifest | 1 + .../social-auth-app-django-5.4.2.ebuild | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 dev-python/social-auth-app-django/social-auth-app-django-5.4.2.ebuild diff --git a/dev-python/social-auth-app-django/Manifest b/dev-python/social-auth-app-django/Manifest index 8481bf2..c9afafe 100644 --- a/dev-python/social-auth-app-django/Manifest +++ b/dev-python/social-auth-app-django/Manifest @@ -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 diff --git a/dev-python/social-auth-app-django/social-auth-app-django-5.4.2.ebuild b/dev-python/social-auth-app-django/social-auth-app-django-5.4.2.ebuild new file mode 100644 index 0000000..3b3144f --- /dev/null +++ b/dev-python/social-auth-app-django/social-auth-app-django-5.4.2.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}" +}