forked from pool/python-ldap
- update to upstream release 3.3.1: Highlights: * ``LDAPError`` now contains additional fields, such as ctrls, result, msgid * ``passwd_s`` can now extract the newly generated password * LDAP connections can now be made from a file descriptor This release is tested on Python 3.8, and the beta of Python 3.9. The following undocumented functions are deprecated and scheduled for removal: - ``ldap.cidict.strlist_intersection`` - ``ldap.cidict.strlist_minus`` - ``ldap.cidict.strlist_union`` Modules/ * Ensure ReconnectLDAPObject is not left in an inconsistent state after a reconnection timeout * Syncrepl now correctly parses SyncInfoMessage when the message is a syncIdSet * Release GIL around global get/set option call * Do not leak serverctrls in result functions * Don't overallocate memory in attrs_from_List() * Fix thread support check for Python 3 * With OpenLDAP 2.4.48, use the new header openldap.h Lib/ * Fix some edge cases regarding quoting in the schema tokenizer * Fix escaping a single space in ldap.escape_dn_chars * Fix string formatting in ldap.compare_ext_s * Prefer iterating dict instead of calling dict.keys() Doc/ * Clarify the relationship between initialize() and LDAPObject() * Improve documentation of TLS options * Update FAQ to include Samba AD-DC error message "Operation unavailable without authentication" * Fix several incorrect examples and demos OBS-URL: https://build.opensuse.org/request/show/838140 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ldap?expand=0&rev=123
72 lines
2.3 KiB
RPMSpec
72 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-ldap
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-ldap
|
|
Version: 3.3.1
|
|
Release: 0
|
|
Summary: Python LDAP interface
|
|
License: Python-2.0
|
|
Group: Development/Libraries/Python
|
|
URL: https://www.python-ldap.org/
|
|
Source0: https://files.pythonhosted.org/packages/source/p/python-ldap/python-ldap-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pyasn1 >= 0.3.7}
|
|
BuildRequires: %{python_module pyasn1-modules >= 0.1.5}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: cyrus-sasl-devel >= 2.1
|
|
BuildRequires: fdupes
|
|
BuildRequires: krb5-devel
|
|
BuildRequires: libopenssl-devel >= 0.9.7
|
|
# needed for slapd binary in tests
|
|
BuildRequires: openldap2
|
|
# needed for ldapadd binary in tests
|
|
BuildRequires: openldap2-client
|
|
BuildRequires: openldap2-devel >= 2.4.11
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-pyasn1 >= 0.3.7
|
|
Requires: python-pyasn1-modules >= 0.1.5
|
|
%python_subpackages
|
|
|
|
%description
|
|
python-ldap provides an object-oriented API to access LDAP directory
|
|
servers from Python programs. Mainly it wraps the OpenLDAP 2.x libs
|
|
for that purpose. Additionally the package contains modules for other
|
|
LDAP-related stuff (e.g. processing LDIF, LDAPURLs, LDAPv3 schema, etc.).
|
|
|
|
%prep
|
|
%setup -q
|
|
cp Build/setup.cfg.suse-linux setup.cfg
|
|
|
|
%build
|
|
CFLAGS="%{optflags}" %python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
%python_exec setup.py test
|
|
|
|
%files %{python_files}
|
|
%license LICENCE
|
|
%doc README Demo CHANGES TODO
|
|
%{python_sitearch}/*
|
|
|
|
%changelog
|