forked from pool/python-ldap
Changes since 2.4.3: - Fixes for ReconnectLDAPObject - More improvements for various LDAPv3 controls - Fixed memory leaks - Fixed locking issue in LDAPObject - new experimental(!) sub-module ldap.syncrepl - some updates to docs OBS-URL: https://build.opensuse.org/request/show/109646 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ldap?expand=0&rev=16
62 lines
2.0 KiB
RPMSpec
62 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package python-ldap
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: python-ldap
|
|
BuildRequires: fdupes krb5-devel cyrus-sasl-devel openldap2-devel >= 2.4.11 python-devel
|
|
Requires: libldap-2_4-2 >= 2.4.11
|
|
License: SUSE-Public-Domain
|
|
Group: Development/Libraries/Python
|
|
AutoReqProv: on
|
|
Version: 2.4.9
|
|
Release: 1
|
|
Summary: Python LDAP interface
|
|
Url: http://www.python-ldap.org/
|
|
Source: http://pypi.python.org/packages/source/p/python-ldap/python-ldap-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%{py_requires}
|
|
|
|
%description
|
|
python-ldap provides an LDAP client API for Python in the spirit of
|
|
RFC1823. It includes a Python module called _ldapmodule that wraps an
|
|
LDAP C library, an object-oriented API for X.500 directories. See
|
|
python-ldap pages on http://python-ldap.sourceforge.net/
|
|
|
|
%prep
|
|
%setup
|
|
cp Build/setup.cfg.suse-linux setup.cfg
|
|
find -name ".CVS" -o -name ".cvsignore" -exec rm -rf {} ";"
|
|
|
|
%build
|
|
#export CFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED"
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT --record-rpm=INSTALLED_FILES
|
|
%fdupes $RPM_BUILD_ROOT/%{_libdir}
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files -f INSTALLED_FILES
|
|
%defattr(-,root,root)
|
|
%doc README Demo CHANGES TODO LICENCE
|
|
|
|
%changelog
|