From owner-svn-ports-all@freebsd.org Sun Mar 5 11:08:52 2017 Return-Path: Delivered-To: svn-ports-all@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 6DC95CFAE3B; Sun, 5 Mar 2017 11:08:52 +0000 (UTC) (envelope-from pi@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 2D3761266; Sun, 5 Mar 2017 11:08:52 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v25B8pi7023483; Sun, 5 Mar 2017 11:08:51 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v25B8oMp023476; Sun, 5 Mar 2017 11:08:50 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201703051108.v25B8oMp023476@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 5 Mar 2017 11:08:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435469 - in head: databases/cego databases/cegobridge devel/lfcbase X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Mar 2017 11:08:52 -0000 Author: pi Date: Sun Mar 5 11:08:50 2017 New Revision: 435469 URL: https://svnweb.freebsd.org/changeset/ports/435469 Log: devel/lfcbase: update 1.8.12 -> 1.9.0 databases/cego: update 2.32.8 -> 2.32.11 databases/cegobridge: update 1.1.2 -> 1.1.3, fix build with clang 4.0 devel/lfcbase: - Added Monitor class for ncurses based GUI utility implementation. This class provides GUI layout and event handling to simply ncurses based GUI tool implementaton. - Added class Pager for curses based pager implementation databases/cego: - Include stdlib.h added in CegoNet ( still missing forLinux compiles ) - Added CegoFieldValue::getDim method required for arithmetic operations on fixed values - Fix in CegoTableManager::getPoolInfo, readdelay and writedelay was not calculated correctly - Fix in CegoDistManager::stopDistTableSet, removing of btree objects from database object dictionary was still missing - In CegoTableManager::dropTableSet now also counter objects are dropped ( stored in the database xml file ). - Added some sizing optimizations for CegoAdmMon forms - Fix in CegoRecoveryManager::recoverCurrentTransactionLog, added the force option to addCounter method, since counters already could be synched to xml ( not completely transaction save ) - Online index build up tested and verified. First tests with heavy insert operations ( using cgblow ) during index build went succesful. - Improvements for CegoAdmMon role permission handling, added remove permission option - Preparation of CegoObjectCursor and CegoTableManager to support online index rebuild with write access to the table. For this, concurrent insert operations have to be performed with append =true. The ObjectCursor locks the last page until the index rebuild is finished ( method setLastPageSync ) In this way, the index can be build up in parallel, while further tuples could be appended to the table. ( just supported for btree index objects ) PR: 216621 Submitted by: Bjoern Lemke Reported by: jbeich Modified: head/databases/cego/Makefile head/databases/cego/distinfo head/databases/cegobridge/Makefile head/databases/cegobridge/distinfo head/devel/lfcbase/Makefile head/devel/lfcbase/distinfo head/devel/lfcbase/pkg-plist Modified: head/databases/cego/Makefile ============================================================================== --- head/databases/cego/Makefile Sun Mar 5 10:56:55 2017 (r435468) +++ head/databases/cego/Makefile Sun Mar 5 11:08:50 2017 (r435469) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.32.8 +PORTVERSION= 2.32.11 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cego/distinfo ============================================================================== --- head/databases/cego/distinfo Sun Mar 5 10:56:55 2017 (r435468) +++ head/databases/cego/distinfo Sun Mar 5 11:08:50 2017 (r435469) @@ -1,3 +1,3 @@ -TIMESTAMP = 1485681108 -SHA256 (cego-2.32.8.tar.gz) = c59a6d4cbaa7a060ad85a83c71e2edb82146d0e8e73935ac550c9a123e0b03d1 -SIZE (cego-2.32.8.tar.gz) = 1396470 +TIMESTAMP = 1488708824 +SHA256 (cego-2.32.11.tar.gz) = 684fa8c239bc6fbe61b575c59aa4ea0f3a2a130c8fc0498b7d7238ffbc3e2e6c +SIZE (cego-2.32.11.tar.gz) = 1394544 Modified: head/databases/cegobridge/Makefile ============================================================================== --- head/databases/cegobridge/Makefile Sun Mar 5 10:56:55 2017 (r435468) +++ head/databases/cegobridge/Makefile Sun Mar 5 11:08:50 2017 (r435469) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cegobridge -PORTVERSION= 1.1.2 +PORTVERSION= 1.1.3 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cegobridge/distinfo ============================================================================== --- head/databases/cegobridge/distinfo Sun Mar 5 10:56:55 2017 (r435468) +++ head/databases/cegobridge/distinfo Sun Mar 5 11:08:50 2017 (r435469) @@ -1,2 +1,3 @@ -SHA256 (cegobridge-1.1.2.tar.gz) = 117922e147fca49ee498e558c7f88182448a6dc7b5a2023c3c718bfb1be8ea8d -SIZE (cegobridge-1.1.2.tar.gz) = 962307 +TIMESTAMP = 1488709322 +SHA256 (cegobridge-1.1.3.tar.gz) = 53352ba3c8e2abc725612084eac628367ddec39747150bfe6bcad2c4a672ff4a +SIZE (cegobridge-1.1.3.tar.gz) = 551872 Modified: head/devel/lfcbase/Makefile ============================================================================== --- head/devel/lfcbase/Makefile Sun Mar 5 10:56:55 2017 (r435468) +++ head/devel/lfcbase/Makefile Sun Mar 5 11:08:50 2017 (r435469) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= lfcbase -PORTVERSION= 1.8.12 +PORTVERSION= 1.9.0 CATEGORIES= devel MASTER_SITES= http://www.lemke-it.com/ Modified: head/devel/lfcbase/distinfo ============================================================================== --- head/devel/lfcbase/distinfo Sun Mar 5 10:56:55 2017 (r435468) +++ head/devel/lfcbase/distinfo Sun Mar 5 11:08:50 2017 (r435469) @@ -1,3 +1,3 @@ -TIMESTAMP = 1485681093 -SHA256 (lfcbase-1.8.12.tar.gz) = ac87b4b52e864cf870cd28b44d7f7c6dfb1cec7a83970d273af219c9642a0660 -SIZE (lfcbase-1.8.12.tar.gz) = 602384 +TIMESTAMP = 1488708749 +SHA256 (lfcbase-1.9.0.tar.gz) = 6952bcfd6144b4a6be315729f9669f829fa5461a73e4f41db28695447e609f6f +SIZE (lfcbase-1.9.0.tar.gz) = 613129 Modified: head/devel/lfcbase/pkg-plist ============================================================================== --- head/devel/lfcbase/pkg-plist Sun Mar 5 10:56:55 2017 (r435468) +++ head/devel/lfcbase/pkg-plist Sun Mar 5 11:08:50 2017 (r435469) @@ -17,9 +17,11 @@ include/lfcbase/Host.h include/lfcbase/ListT.h include/lfcbase/Logger.h include/lfcbase/Matcher.h +include/lfcbase/Monitor.h include/lfcbase/NanoTimer.h include/lfcbase/Net.h include/lfcbase/NetHandler.h +include/lfcbase/Pager.h include/lfcbase/Process.h include/lfcbase/Semaphore.h include/lfcbase/SetT.h