f9a5b7cdfb
- LMDB 0.9.23 Release (2018/12/19) * ITS#8756 Fix loose pages in dirty list * ITS#8831 Fix mdb_load flag init * ITS#8844 Fix mdb_env_close in forked process * Documentation + ITS#8857 mdb_cursor_del doesn't invalidate cursor + ITS#8908 GET_MULTIPLE etc don't change passed in key - Drop upstream 0001-ITS-8756-remove-loose-pg-from-dirty-list-in-freelist.patch - Cleanup: * Use %license, drop %defattr * Use https for Url tag OBS-URL: https://build.opensuse.org/request/show/688455 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/lmdb?expand=0&rev=31
123 lines
4.1 KiB
RPMSpec
123 lines
4.1 KiB
RPMSpec
#
|
|
# spec file for package lmdb
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: lmdb
|
|
Summary: Lightning Memory-Mapped Database Manager
|
|
License: OLDAP-2.8
|
|
Group: Productivity/Databases/Tools
|
|
%define lname liblmdb-0_9_23
|
|
Version: 0.9.23
|
|
Release: 0
|
|
Url: https://symas.com/mdb/
|
|
|
|
#Git-Clone: git://git.openldap.org/openldap mdb.master
|
|
Source: https://github.com/LMDB/lmdb/archive/LMDB_%version.tar.gz
|
|
Source99: baselibs.conf
|
|
|
|
# PATCH-FIX-UPSTREAM - debugging tools (https://github.com/kacfengine/lmdb)
|
|
Patch1: 0001-Add-extra-tools-and-CFEngine-modifications-for-LMDB.patch
|
|
# PATCH-FIX-OPENSUSE - Implicit declaration of atol()
|
|
Patch2: liblmdb-implicit-decl.patch
|
|
# PATCH-FIX-OPENSUSE - Build and link to shared library
|
|
Patch3: Makefile-build-use-shared-lib.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%if 0%{?rhel_version} == 700
|
|
BuildRequires: perl-Exporter
|
|
%endif
|
|
|
|
%description
|
|
LMDB is a Btree-based database management library with an API similar
|
|
to BerkeleyDB. The library is thread-aware and supports concurrent
|
|
read/write access from multiple processes and threads. The DB
|
|
structure is multi-versioned, and data pages use a copy-on-write
|
|
strategy, which also provides resistance to corruption and eliminates
|
|
the need for any recovery procedures. The database is exposed in a
|
|
memory map, requiring no page cache layer of its own.
|
|
|
|
%package -n %lname
|
|
Summary: Shared library for Lightning Memory-Mapped Database (LMDB)
|
|
Group: System/Libraries
|
|
|
|
%description -n %lname
|
|
LMDB is a Btree-based database management library with an API similar
|
|
to BerkeleyDB. The library is thread-aware and supports concurrent
|
|
read/write access from multiple processes and threads. The DB
|
|
structure is multi-versioned, and data pages use a copy-on-write
|
|
strategy, which also provides resistance to corruption and eliminates
|
|
the need for any recovery procedures. The database is exposed in a
|
|
memory map, requiring no page cache layer of its own.
|
|
|
|
This package contains the shared library.
|
|
|
|
%package devel
|
|
Summary: Development package for lmdb
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %lname = %version
|
|
|
|
%description devel
|
|
LMDB is a Btree-based database management library with an API similar
|
|
to BerkeleyDB. The library is thread-aware and supports concurrent
|
|
read/write access from multiple processes and threads. The DB
|
|
structure is multi-versioned, and data pages use a copy-on-write
|
|
strategy, which also provides resistance to corruption and eliminates
|
|
the need for any recovery procedures. The database is exposed in a
|
|
memory map, requiring no page cache layer of its own.
|
|
|
|
This package contains the files needed to compile programs that use
|
|
the liblmdb library.
|
|
|
|
%prep
|
|
%setup -qn lmdb-LMDB_%version
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
|
|
%build
|
|
cd libraries/liblmdb
|
|
make %{?_smp_mflags} V=1 SOVERSION=%{version} CFLAGS="%{optflags}"
|
|
|
|
%install
|
|
cd libraries/liblmdb
|
|
make install DESTDIR="%buildroot" SOVERSION=%{version} \
|
|
bindir=%{_bindir} \
|
|
libdir=%{_libdir} \
|
|
mandir=%{_mandir} \
|
|
includedir=%{_includedir} \
|
|
datarootdir=%{_datadir}
|
|
ln -s %{_libdir}/liblmdb-%{version}.so %{buildroot}%{_libdir}/liblmdb.so
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc libraries/liblmdb/CHANGES
|
|
%doc libraries/liblmdb/COPYRIGHT
|
|
%license libraries/liblmdb/LICENSE
|
|
%{_bindir}/*
|
|
%doc %{_mandir}/man1/*.1.gz
|
|
|
|
%files -n %lname
|
|
%_libdir/liblmdb-%version.so
|
|
|
|
%files devel
|
|
%_includedir/*
|
|
%_libdir/liblmdb.so
|
|
|
|
%changelog
|