From owner-svn-ports-head@freebsd.org Sat Feb 6 15:59:40 2016 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 A3526A9FF0E; Sat, 6 Feb 2016 15:59:40 +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 63A73197E; Sat, 6 Feb 2016 15:59:40 +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 u16Fxd2P088660; Sat, 6 Feb 2016 15:59:39 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u16Fxcup088653; Sat, 6 Feb 2016 15:59:38 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201602061559.u16Fxcup088653@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 6 Feb 2016 15:59:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408300 - in head: databases/cego databases/cegobridge databases/cegobridge/files devel/lfcbase devel/lfcbase/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.20 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: Sat, 06 Feb 2016 15:59:40 -0000 Author: pi Date: Sat Feb 6 15:59:38 2016 New Revision: 408300 URL: https://svnweb.freebsd.org/changeset/ports/408300 Log: devel/lfcbase: 1.7.0 -> 1.7.2 databases/cego: 2.28.3 -> 2.29.1 databases/cegobridge: 1.1.1 -> 1.1.2 Please note: Updating cego databases needs an export/import cycle for 2.28 -> 2.29 lfcbase: - Fix in Datetime.cc, added include config.h, otherwiese the local implementation of strptime ist used. This should just be done, if the system API does not provide this call ( e.g. MINGW ) . - Memory leak fixed in File::readLine cego: - Started with clob datatype implementation - Fix in CegoSelect constructor, _cacheEnabled var was not initialized in the decoding constructor, which might lead to core dumps in case of recovery of complex with enabled querycache Fix in CegoAdminThread constructor, disableAuth method for TableManger called, otherwise tableset recovery might fail with auth error - Required network protocol expansions done for clob handling (putclob, getclob, delclob) - More work on clob handling. A fix was done for update operations on clob values in CegoTableManager::updateTuple method. Before updating the tuple, all clob references must be cloned, otherwise in case of untouched clobs, references are invalid. This approach is brute force, better would be, to stay on the untouched clob references. But in terms of transaction and recovery handling, this is not trivial - Very long strings are handled now in CegoAction and CegoClient to also parse large clob values - Modification in cgclt for raw mode, Now just plain data is listed, with the command line option --raw=X, a separator token can be setup as a column separator cegobridge: - fix build problem Submitted by: Bjoern Lemke Deleted: head/databases/cegobridge/files/ head/devel/lfcbase/files/ Modified: head/databases/cego/Makefile head/databases/cego/distinfo head/databases/cego/pkg-plist head/databases/cegobridge/Makefile head/databases/cegobridge/distinfo head/devel/lfcbase/Makefile head/devel/lfcbase/distinfo Modified: head/databases/cego/Makefile ============================================================================== --- head/databases/cego/Makefile Sat Feb 6 14:02:48 2016 (r408299) +++ head/databases/cego/Makefile Sat Feb 6 15:59:38 2016 (r408300) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.28.3 +PORTVERSION= 2.29.1 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cego/distinfo ============================================================================== --- head/databases/cego/distinfo Sat Feb 6 14:02:48 2016 (r408299) +++ head/databases/cego/distinfo Sat Feb 6 15:59:38 2016 (r408300) @@ -1,2 +1,2 @@ -SHA256 (cego-2.28.3.tar.gz) = fbe9c14d0c4bc8dcf972df37fca3c861ac67a13a5d7d252df779dbbf6e66df4c -SIZE (cego-2.28.3.tar.gz) = 1356439 +SHA256 (cego-2.29.1.tar.gz) = 1549e6a19b8339582792d5f14fb47e37d2a6640e46d92641e62905ac0ef631df +SIZE (cego-2.29.1.tar.gz) = 1365783 Modified: head/databases/cego/pkg-plist ============================================================================== --- head/databases/cego/pkg-plist Sat Feb 6 14:02:48 2016 (r408299) +++ head/databases/cego/pkg-plist Sat Feb 6 15:59:38 2016 (r408300) @@ -34,6 +34,7 @@ include/cego/CegoBufferPoolEntry.h include/cego/CegoCaseCond.h include/cego/CegoCheckObject.h include/cego/CegoCheckpoint.h +include/cego/CegoClob.h include/cego/CegoComparison.h include/cego/CegoCondDesc.h include/cego/CegoContentObject.h Modified: head/databases/cegobridge/Makefile ============================================================================== --- head/databases/cegobridge/Makefile Sat Feb 6 14:02:48 2016 (r408299) +++ head/databases/cegobridge/Makefile Sat Feb 6 15:59:38 2016 (r408300) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cegobridge -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cegobridge/distinfo ============================================================================== --- head/databases/cegobridge/distinfo Sat Feb 6 14:02:48 2016 (r408299) +++ head/databases/cegobridge/distinfo Sat Feb 6 15:59:38 2016 (r408300) @@ -1,2 +1,2 @@ -SHA256 (cegobridge-1.1.1.tar.gz) = 3668bf9d705d4e2c779014dbc5657db16964f4c73bd582a0230fb7837b365d00 -SIZE (cegobridge-1.1.1.tar.gz) = 557463 +SHA256 (cegobridge-1.1.2.tar.gz) = 117922e147fca49ee498e558c7f88182448a6dc7b5a2023c3c718bfb1be8ea8d +SIZE (cegobridge-1.1.2.tar.gz) = 962307 Modified: head/devel/lfcbase/Makefile ============================================================================== --- head/devel/lfcbase/Makefile Sat Feb 6 14:02:48 2016 (r408299) +++ head/devel/lfcbase/Makefile Sat Feb 6 15:59:38 2016 (r408300) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= lfcbase -PORTVERSION= 1.7.0 -PORTREVISION= 1 +PORTVERSION= 1.7.2 CATEGORIES= devel MASTER_SITES= http://www.lemke-it.com/ Modified: head/devel/lfcbase/distinfo ============================================================================== --- head/devel/lfcbase/distinfo Sat Feb 6 14:02:48 2016 (r408299) +++ head/devel/lfcbase/distinfo Sat Feb 6 15:59:38 2016 (r408300) @@ -1,2 +1,2 @@ -SHA256 (lfcbase-1.7.0.tar.gz) = 79d2b07d8d2a76b811e7ce2a80bc717c58b77e8751d97bb3c8b1d7f397b6ffd1 -SIZE (lfcbase-1.7.0.tar.gz) = 610085 +SHA256 (lfcbase-1.7.2.tar.gz) = ac1327d6c5fc12d4a1aa7e78f9a6708bbb1f27a7bd12c89c59611adc051c67d6 +SIZE (lfcbase-1.7.2.tar.gz) = 586240