svn commit: r454880 - head/databases/cego

Kurt Jaeger pi at FreeBSD.org
Sat Nov 25 12:54:50 UTC 2017


Author: pi
Date: Sat Nov 25 12:54:48 2017
New Revision: 454880
URL: https://svnweb.freebsd.org/changeset/ports/454880

Log:
  databases/cego: update 2.38.3 -> 2.38.5
  
  - Fix in CegoBTreeValue::valueFromSchema, introduced method
    getReservedLength to return fixed value length for type fixed and
    decimal. Since for decimal and fixed type just the dimension is
    stored in CegoField::getLength, we must define a reserved area
    for those types. This is done now with constant definition
    RESERVED_BTREE_FLOATLEN in CegoDefs.h
  - Improved ordersize calculation in CegoOrderSpace:insertTuple. Now
    the following formula is used :
      int s = sizeof(fv);
      if ( fv.getLength() > STATICFIELDBUF )
        s += fv.getLength();
      orderEntryLen += s;
    The catches the base memory usage for the instance but also the
    dynamic allocated part
  
  Submitted by:	Bjoern Lemke <lemke at lemke-it.com>

Modified:
  head/databases/cego/Makefile
  head/databases/cego/distinfo

Modified: head/databases/cego/Makefile
==============================================================================
--- head/databases/cego/Makefile	Sat Nov 25 12:04:44 2017	(r454879)
+++ head/databases/cego/Makefile	Sat Nov 25 12:54:48 2017	(r454880)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	cego
-PORTVERSION=	2.38.3
+PORTVERSION=	2.38.5
 CATEGORIES=	databases
 MASTER_SITES=	http://www.lemke-it.com/
 

Modified: head/databases/cego/distinfo
==============================================================================
--- head/databases/cego/distinfo	Sat Nov 25 12:04:44 2017	(r454879)
+++ head/databases/cego/distinfo	Sat Nov 25 12:54:48 2017	(r454880)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1511375712
-SHA256 (cego-2.38.3.tar.gz) = 4ee4a0435c0ea3680a3862cbc100d07fa53ce86bd6c57d10ce5b441533d18d46
-SIZE (cego-2.38.3.tar.gz) = 1442779
+TIMESTAMP = 1511609756
+SHA256 (cego-2.38.5.tar.gz) = 8a0e4133eaeaf7050a092daf888ea0321d65e754aa31059cbf5e3fc9d43b0f78
+SIZE (cego-2.38.5.tar.gz) = 1443219


More information about the svn-ports-all mailing list