Browse Source

libldb-1.1.14-2

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@7255 ec354946-7b23-47d6-9f5a-488ba84defc7
tomop 12 years ago
parent
commit
1bdb20abeb
1 changed files with 237 additions and 0 deletions
  1. 237 0
      lib/libl/libldb/libldb-vl.spec

+ 237 - 0
lib/libl/libldb/libldb-vl.spec

@@ -0,0 +1,237 @@
+%define talloc_version 2.0.7
+%define tdb_version 1.2.11
+%define tevent_version 0.9.17
+
+Name: libldb
+Version: 1.1.14
+Release: 2%{?_dist_release}
+Group: Development/Libraries
+Summary: A schema-less, ldap like, API and database
+Requires: libtalloc >= %{talloc_version}
+Requires: libtdb >= %{tdb_version}
+Requires: libtevent >= %{tevent_version}
+License: LGPLv3+
+URL: http://ldb.samba.org/
+Source: http://samba.org/ftp/ldb/ldb-%{version}.tar.gz
+
+BuildRequires: libtalloc-devel >= %{talloc_version}
+BuildRequires: libtdb-devel >= %{tdb_version}
+BuildRequires: libtevent-devel >= %{tevent_version}
+BuildRequires: popt-devel
+BuildRequires: autoconf
+BuildRequires: libxslt
+BuildRequires: docbook-style-xsl
+BuildRequires: python-devel
+BuildRequires: python-tdb
+BuildRequires: pytalloc-devel
+BuildRequires: python-tevent
+BuildRequires: doxygen
+
+Provides: bundled(libreplace)
+Provides: bundled(libtdb_compat)
+Provides: bundled(libccan)
+
+# Patches
+
+Patch1001: FED01-fix-tevent-check.patch
+
+Vendor: Project Vine
+Distribution: Vine Linux
+Packager: tomop
+
+%description
+An extensible library that implements an LDAP like API to access remote LDAP
+servers, or use local tdb databases.
+
+%package -n ldb-tools
+Group: Development/Libraries
+Summary: Tools to manage LDB files
+Requires: libldb = %{version}-%{release}
+
+%description -n ldb-tools
+Tools to manage LDB files
+
+%package devel
+Group: Development/Libraries
+Summary: Developer tools for the LDB library
+Requires: libldb = %{version}-%{release}
+Requires: libtdb-devel >= %{tdb_version}
+Requires: libtalloc-devel >= %{talloc_version}
+Requires: libtevent-devel >= %{tevent_version}
+Requires: pkgconfig
+
+%description devel
+Header files needed to develop programs that link against the LDB library.
+
+%package -n pyldb
+Group: Development/Libraries
+Summary: Python bindings for the LDB library
+Requires: libldb = %{version}-%{release}
+Requires: python-tdb >= %{tdb_version}
+
+%description -n pyldb
+Python bindings for the LDB library
+
+%package -n pyldb-devel
+Group: Development/Libraries
+Summary: Development files for the Python bindings for the LDB library
+Requires: pyldb = %{version}-%{release}
+
+%description -n pyldb-devel
+Development files for the Python bindings for the LDB library
+
+%prep
+%setup -q -n ldb-%{version}
+
+%patch1001 -p1
+
+%build
+
+# tdb_compat and ccan have no upstream releases to link against yet and their
+# API is in flux. It is unsafe to make them public and shared at this time.
+%configure --disable-rpath \
+           --disable-rpath-install \
+           --bundled-libraries=NONE \
+           --builtin-libraries=tdb_compat,ccan,replace \
+           --with-modulesdir=%{_libdir}/ldb/modules \
+           --with-privatelibdir=%{_libdir}/ldb
+
+make V=1 %{?_smp_mflags}
+doxygen Doxyfile
+
+%install
+make install DESTDIR=%{buildroot}
+
+rm -f %{buildroot}%{_libdir}/libldb.a
+
+# Remove _tevent.so (it's managed by python-tevent)
+#rm -f %{buildroot}/%{python_sitearch}/_tevent.so
+
+# Shared libraries need to be marked executable for
+# rpmbuild to strip them and include them in debuginfo
+find $RPM_BUILD_ROOT -name "*.so*" -exec chmod -c +x {} \;
+
+# Install API docs
+cp -a apidocs/man/* $RPM_BUILD_ROOT/%{_mandir}
+
+%clean
+rm -rf %{buildroot}
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%dir %{_libdir}/ldb
+%{_libdir}/libldb.so.*
+%dir %{_libdir}/ldb/modules
+%dir %{_libdir}/ldb/modules/ldb
+%{_libdir}/ldb/modules/ldb/*.so
+
+%files -n ldb-tools
+%defattr(-,root,root,-)
+%{_bindir}/ldbadd
+%{_bindir}/ldbdel
+%{_bindir}/ldbedit
+%{_bindir}/ldbmodify
+%{_bindir}/ldbrename
+%{_bindir}/ldbsearch
+%{_libdir}/ldb/libldb-cmdline.so
+%{_mandir}/man1/ldbadd.1.*
+%{_mandir}/man1/ldbdel.1.*
+%{_mandir}/man1/ldbedit.1.*
+%{_mandir}/man1/ldbmodify.1.*
+%{_mandir}/man1/ldbrename.1.*
+%{_mandir}/man1/ldbsearch.1.*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/ldb_module.h
+%{_includedir}/ldb_handlers.h
+%{_includedir}/ldb_errors.h
+%{_includedir}/ldb_version.h
+%{_includedir}/ldb.h
+%{_libdir}/libldb.so
+
+%{_libdir}/pkgconfig/ldb.pc
+%{_mandir}/man3/ldb*.gz
+
+%files -n pyldb
+%defattr(-,root,root,-)
+%{python_sitearch}/ldb.so
+%{_libdir}/libpyldb-util.so.1*
+
+%files -n pyldb-devel
+%defattr(-,root,root,-)
+%{_includedir}/pyldb.h
+%{_libdir}/libpyldb-util.so
+%{_libdir}/pkgconfig/pyldb-util.pc
+%{_mandir}/man*/Py*.gz
+
+%post -n pyldb -p /sbin/ldconfig
+%postun -n pyldb -p /sbin/ldconfig
+
+%changelog
+* Tue Dec 18 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.14-2
+- fixed dependency.
+
+* Mon Dec 17 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.14-1
+- new upstream release.
+- initial build for Vine Linux.
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Tue Dec 06 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.4-1
+- New upstream release
+- Add ldb_module_error() routine
+- Fedora: work around unreliable configure check for pytevent
+- Drop patch to ignore --disable-silent-rules (included in tarball)
+
+* Thu Dec 01 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-4
+- Add patch to ignore --disable-silent-rules
+
+* Wed Nov 23 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-3
+- Add explicit mention of the bundled libreplace
+- https://fedorahosted.org/fpc/ticket/120
+- Add explicit mention of bundled libtdb_compat and libccan
+- https://fedorahosted.org/fpc/ticket/119
+
+* Mon Nov 21 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-2
+- Build and install API documentation
+- Build tdb_compat and ccan statically. They have no upstream releases to
+  link against yet and their API is in flux. It is unsafe to make them
+  public and shared at this time.
+
+* Wed Nov 09 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-1
+- New upstream release
+- Required for building newer samba4 packages
+
+* Tue Aug  2 2011 Simo Sorce <ssorce@redhat.com> - 1.1.0-1
+- Update to 1.1.0
+  (dependency for samba4 alpha16 snapshot)
+
+* Tue Feb 22 2011 Simo Sorce <ssorce@redhat.com> - 1.0.2-1
+- Update to 1.0.2
+  (dependency for samba4 alpha15 snapshot)
+
+* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.0.0-2
+- Disable rpath
+
+* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.0.0-1
+- New upstream release 1.0.0
+- SOname bump to account for module loading changes
+- Rename libldb-tools to ldb-tools to make upgrades easier
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.22-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Fri Feb 04 2011 Stephen Gallagher <sgallagh@redhat.com> - 0.9.22-8
+- Fixes from package review
+- Change Requires: on tools subpackage to be the exact version/release
+- Remove unnecessary BuildRoot directive
+
+* Mon Jan 17 2011 Stephen Gallagher <sgallagh@redhat.com> - 0.9.22-7
+- Update to 0.9.22 (first independent release of libldb upstream)
+