Date: Sat, 6 Feb 2016 15:59:38 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> 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 Message-ID: <201602061559.u16Fxcup088653@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <lemke@lemke-it.com> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602061559.u16Fxcup088653>