summaryrefslogtreecommitdiff
path: root/dev-python/django-auth-ldap
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-12-27 19:20:36 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-12-27 19:20:36 +0000
commitb06ef5109f61bd9a1eb682633acc86b1d1f28b05 (patch)
treeb307db7e550a31e2e7817146c797839f2a58e6b7 /dev-python/django-auth-ldap
parentd4bba7d795bd4f564b5dac537baaab050b31e7c4 (diff)
downloadbaldeagleos-repo-b06ef5109f61bd9a1eb682633acc86b1d1f28b05.tar.gz
baldeagleos-repo-b06ef5109f61bd9a1eb682633acc86b1d1f28b05.tar.xz
baldeagleos-repo-b06ef5109f61bd9a1eb682633acc86b1d1f28b05.zip
Adding metadata
Diffstat (limited to 'dev-python/django-auth-ldap')
-rw-r--r--dev-python/django-auth-ldap/Manifest2
-rw-r--r--dev-python/django-auth-ldap/django-auth-ldap-5.3.0.ebuild44
2 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/django-auth-ldap/Manifest b/dev-python/django-auth-ldap/Manifest
index 7d7d71b9cef7..10b6cc4841f4 100644
--- a/dev-python/django-auth-ldap/Manifest
+++ b/dev-python/django-auth-ldap/Manifest
@@ -1,2 +1,4 @@
DIST django_auth_ldap-5.2.0.tar.gz 55287 BLAKE2B 3a3f5d79cee7f3f74ea4ed40b4577ecc1e1a1e07ad173d6e9c48fdc7af92497c2689e1f0639173a5503578d4471a995d6ebca8fe7210e6e456345761de7ebad9 SHA512 db3c231331cd53e580bc01aa86c4004554d221ed5f97a90fe0e29a1536bc472abd23502a85b4967acc1c35bf3038ff11147ae18e02abc9466d5d8d60b2a5ddb2
DIST django_auth_ldap-5.2.0.tar.gz.provenance 9405 BLAKE2B 70b7d1480bbbbc9f3bcfa31ee51c2dcc818c2bd34234811168d986b380a4221b88d35a6c1e753d08b402cbd6ae37eab7d2ca34494b4a8ff5e31d14849f84b9ca SHA512 9eae92494589c9f5344d37b0011e190ea4f0336691d61700c11b5d7ee013287f5101182d2f57d91232799c0804b04ae6a062b8c7a0e3eec5a853bb7f68dad9e5
+DIST django_auth_ldap-5.3.0.tar.gz 55272 BLAKE2B b7de6d7e94898168809561b5302712ff72e406c9b22f76bca7071cce6db311fafd63c4dc54ed0c4b61c175754342296a0e11803da1ff6d50cda45b2dab18d6f4 SHA512 00e122040c5ff4dc200256bb5b9186bd4e52edbe962129c2750144137beba1f77298c1aa1caa06318a65432a1ef8cb1340ea7d55082a8659bddef303d7a97e2b
+DIST django_auth_ldap-5.3.0.tar.gz.provenance 9810 BLAKE2B 5432005a44133d45ec52e40aa78f8e7d56954fed5e385e43cb27c2be51b68892d90488fbdbe68ad8925851bc6e4a122d0f41782fc78d5a3bb3dfc6ed09ca9e62 SHA512 da82cc226af0de3e78917bb8f69ccb139355f40696937c49578f214717b28b377d7f0098805e7f07a1f2659510ec8251ba54b02dabe01dd4742d044a03f5f41f
diff --git a/dev-python/django-auth-ldap/django-auth-ldap-5.3.0.ebuild b/dev-python/django-auth-ldap/django-auth-ldap-5.3.0.ebuild
new file mode 100644
index 000000000000..1bd35cc1bb1c
--- /dev/null
+++ b/dev-python/django-auth-ldap/django-auth-ldap-5.3.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_VERIFY_REPO=https://github.com/django-auth-ldap/django-auth-ldap
+PYTHON_COMPAT=( python3_{10..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Django LDAP authentication backend"
+HOMEPAGE="
+ https://github.com/django-auth-ldap/django-auth-ldap/
+ https://pypi.org/project/django-auth-ldap/
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-python/django-3.2[${PYTHON_USEDEP}]
+ >=dev-python/python-ldap-3.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+ test? (
+ $(python_gen_impl_dep sqlite)
+ net-nds/openldap[-minimal]
+ )
+"
+
+distutils_enable_sphinx docs \
+ dev-python/sphinx-rtd-theme
+
+python_test() {
+ # for slapd and slapdtest
+ local -x SBIN=/usr/sbin:/usr/$(get_libdir)/openldap
+ "${EPYTHON}" -m django test -v 2 --settings tests.settings ||
+ die "Tests failed with ${EPYTHON}"
+}