Updated to 0.9.14

This commit is contained in:
Jan Staněk 2014-12-11 10:16:53 +01:00
parent 76a43fa453
commit cefe465dc5
4 changed files with 21 additions and 13 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/lmdb-0.9.11.tar.gz /lmdb-0.9.11.tar.gz
/lmdb-0.9.13.tar.gz /lmdb-0.9.13.tar.gz
/lmdb-0.9.14.tar.gz

View File

@ -1,13 +1,13 @@
# Update main Makefile in oprder to build and install follow guidelines # Update main Makefile in oprder to build and install follow guidelines
diff -up liblmdb/Makefile.orig liblmdb/Makefile diff -up liblmdb/Makefile.orig liblmdb/Makefile
--- liblmdb/Makefile.orig 2014-05-22 13:56:31.804238561 +0200 --- liblmdb/Makefile.orig 2014-12-11 10:04:10.271450725 +0100
+++ liblmdb/Makefile 2014-05-22 13:56:45.959294775 +0200 +++ liblmdb/Makefile 2014-12-11 10:09:11.898187497 +0100
@@ -23,25 +23,30 @@ OPT = -O2 -g @@ -23,25 +23,30 @@ OPT = -O2 -g
CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS) CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS)
LDLIBS = LDLIBS =
SOLIBS = SOLIBS =
+SOVERSION = 0.0.0 +SOVERSION = 0.0.0
prefix = /usr/local prefix = /usr/local
+binprefix = $(prefix)/bin +binprefix = $(prefix)/bin
+libprefix = $(prefix)/lib +libprefix = $(prefix)/lib
@ -19,8 +19,8 @@ diff -up liblmdb/Makefile.orig liblmdb/Makefile
IHDRS = lmdb.h IHDRS = lmdb.h
-ILIBS = liblmdb.a liblmdb.so -ILIBS = liblmdb.a liblmdb.so
+ILIBS = liblmdb.so liblmdb.so.$(SOVERSION) +ILIBS = liblmdb.so liblmdb.so.$(SOVERSION)
IPROGS = mdb_stat mdb_copy IPROGS = mdb_stat mdb_copy mdb_dump mdb_load
IDOCS = mdb_stat.1 mdb_copy.1 IDOCS = mdb_stat.1 mdb_copy.1 mdb_dump.1 mdb_load.1
PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5 PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5
all: $(ILIBS) $(PROGS) all: $(ILIBS) $(PROGS)
@ -40,7 +40,7 @@ diff -up liblmdb/Makefile.orig liblmdb/Makefile
test: all test: all
mkdir testdb mkdir testdb
@@ -50,18 +55,22 @@ test: all @@ -50,20 +55,24 @@ test: all
liblmdb.a: mdb.o midl.o liblmdb.a: mdb.o midl.o
ar rs $@ mdb.o midl.o ar rs $@ mdb.o midl.o
@ -56,6 +56,8 @@ diff -up liblmdb/Makefile.orig liblmdb/Makefile
-mdb_stat: mdb_stat.o liblmdb.a -mdb_stat: mdb_stat.o liblmdb.a
-mdb_copy: mdb_copy.o liblmdb.a -mdb_copy: mdb_copy.o liblmdb.a
-mdb_dump: mdb_dump.o liblmdb.a
-mdb_load: mdb_load.o liblmdb.a
-mtest: mtest.o liblmdb.a -mtest: mtest.o liblmdb.a
-mtest2: mtest2.o liblmdb.a -mtest2: mtest2.o liblmdb.a
-mtest3: mtest3.o liblmdb.a -mtest3: mtest3.o liblmdb.a
@ -64,6 +66,8 @@ diff -up liblmdb/Makefile.orig liblmdb/Makefile
-mtest6: mtest6.o liblmdb.a -mtest6: mtest6.o liblmdb.a
+mdb_stat: mdb_stat.o liblmdb.so +mdb_stat: mdb_stat.o liblmdb.so
+mdb_copy: mdb_copy.o liblmdb.so +mdb_copy: mdb_copy.o liblmdb.so
+mdb_dump: mdb_dump.o liblmdb.so
+mdb_load: mdb_load.o liblmdb.so
+mtest: mtest.o liblmdb.so +mtest: mtest.o liblmdb.so
+mtest2: mtest2.o liblmdb.so +mtest2: mtest2.o liblmdb.so
+mtest3: mtest3.o liblmdb.so +mtest3: mtest3.o liblmdb.so

View File

@ -1,6 +1,6 @@
Name: lmdb Name: lmdb
Version: 0.9.13 Version: 0.9.14
Release: 2%{?dist} Release: 1%{?dist}
Summary: Memory-mapped key-value database Summary: Memory-mapped key-value database
License: OpenLDAP License: OpenLDAP
@ -95,6 +95,9 @@ LD_LIBRARY_PATH=$PWD make test
%changelog %changelog
* Thu Dec 11 2014 Jan Staněk <jstanek@redhat.com> - 0.9.14-1
- Updated to 0.9.14
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.13-2 * Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.13-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild

View File

@ -1 +1 @@
ea3158e1ea7a864e4eaa8cc39ea37f8a lmdb-0.9.13.tar.gz 5808c3822595960f8e965754f84ee99e lmdb-0.9.14.tar.gz