From owner-svn-ports-head@freebsd.org Wed Jan 18 17:46:55 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2A2ACB6A55; Wed, 18 Jan 2017 17:46:55 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 608DC1F66; Wed, 18 Jan 2017 17:46:55 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0IHksGV055651; Wed, 18 Jan 2017 17:46:54 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0IHksv3055648; Wed, 18 Jan 2017 17:46:54 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201701181746.v0IHksv3055648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Wed, 18 Jan 2017 17:46:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431818 - in head/databases/lmdb: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 17:46:55 -0000 Author: delphij Date: Wed Jan 18 17:46:54 2017 New Revision: 431818 URL: https://svnweb.freebsd.org/changeset/ports/431818 Log: Downgrade to 0.9.18 due to regressions. Modified: head/databases/lmdb/Makefile head/databases/lmdb/distinfo head/databases/lmdb/files/patch-Makefile Modified: head/databases/lmdb/Makefile ============================================================================== --- head/databases/lmdb/Makefile Wed Jan 18 16:42:57 2017 (r431817) +++ head/databases/lmdb/Makefile Wed Jan 18 17:46:54 2017 (r431818) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= lmdb -PORTVERSION= 0.9.20 +PORTVERSION= 0.9.18 +PORTEPOCH= 1 DISTVERSIONPREFIX= ${PORTNAME:tu}_ CATEGORIES= databases Modified: head/databases/lmdb/distinfo ============================================================================== --- head/databases/lmdb/distinfo Wed Jan 18 16:42:57 2017 (r431817) +++ head/databases/lmdb/distinfo Wed Jan 18 17:46:54 2017 (r431818) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484206474 -SHA256 (LMDB-lmdb-LMDB_0.9.20_GH0.tar.gz) = 8ae77a093352d3e894fdfaa387266fc650a04746429cdf303b3d93fd0751d971 -SIZE (LMDB-lmdb-LMDB_0.9.20_GH0.tar.gz) = 143309 +TIMESTAMP = 1484761556 +SHA256 (LMDB-lmdb-LMDB_0.9.18_GH0.tar.gz) = dd35b471d6eea84f48f2feece13d121abf59ef255308b8624a36223ffbdf9989 +SIZE (LMDB-lmdb-LMDB_0.9.18_GH0.tar.gz) = 139156 Modified: head/databases/lmdb/files/patch-Makefile ============================================================================== --- head/databases/lmdb/files/patch-Makefile Wed Jan 18 16:42:57 2017 (r431817) +++ head/databases/lmdb/files/patch-Makefile Wed Jan 18 17:46:54 2017 (r431818) @@ -1,6 +1,6 @@ ---- Makefile.orig 2017-01-11 16:19:33 UTC +--- Makefile.orig 2016-02-05 21:22:15 UTC +++ Makefile -@@ -23,17 +23,17 @@ AR = ar +@@ -23,7 +23,7 @@ AR = ar W = -W -Wall -Wno-unused-parameter -Wbad-function-cast -Wuninitialized THREADS = -pthread OPT = -O2 -g @@ -8,11 +8,8 @@ +CFLAGS += $(THREADS) $(W) LDLIBS = SOLIBS = --SOEXT = .so -+SOEXT = .so.0 prefix = /usr/local - exec_prefix = $(prefix) - bindir = $(exec_prefix)/bin +@@ -32,26 +32,26 @@ bindir = $(exec_prefix)/bin libdir = $(exec_prefix)/lib includedir = $(prefix)/include datarootdir = $(prefix)/share @@ -21,7 +18,9 @@ ######################################################################## -@@ -42,17 +42,17 @@ ILIBS = liblmdb.a liblmdb$(SOEXT) + IHDRS = lmdb.h +-ILIBS = liblmdb.a liblmdb.so ++ILIBS = liblmdb.a liblmdb.so.0 IPROGS = mdb_stat mdb_copy mdb_dump mdb_load IDOCS = mdb_stat.1 mdb_copy.1 mdb_dump.1 mdb_load.1 PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5 @@ -44,9 +43,12 @@ clean: rm -rf $(PROGS) *.[ao] *.[ls]o *~ testdb -@@ -66,12 +66,16 @@ liblmdb.a: mdb.o midl.o +@@ -63,14 +63,18 @@ test: all + liblmdb.a: mdb.o midl.o + $(AR) rs $@ mdb.o midl.o - liblmdb$(SOEXT): mdb.lo midl.lo +-liblmdb.so: mdb.lo midl.lo ++liblmdb.so.0: mdb.lo midl.lo # $(CC) $(LDFLAGS) -pthread -shared -Wl,-Bsymbolic -o $@ mdb.o midl.o $(SOLIBS) - $(CC) $(LDFLAGS) -pthread -shared -o $@ mdb.lo midl.lo $(SOLIBS) + $(CC) $(LDFLAGS) -pthread -shared -Wl,-soname,$@ -o $@ mdb.lo midl.lo $(SOLIBS)