notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: databases/cego/Makefile

Number of commits found: 322 (showing only 100 on this page)

«  1 | 2 | 3 | 4  »  

Tuesday, 21 Jul 2015
07:39 pi search for other commits by this committer
databases/cego: 2.23.10 -> 2.23.11

- Added performance patch in CegoFieldValue.
  Values with a length up to STATICFIELDBUF size ( 100 bytes ) are handled
  using a static byte array. This saves expensive memory allocation
  calls in most cases. First very rough performances analysis has
  shown a performance improvement of about 5-10 percent
- The local copy logic was shifted from CegoSelect::nextGroupedTuple
  to CegoGroupSpace::insertTuple.

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:392613 
Sunday, 19 Jul 2015
08:28 pi search for other commits by this committer
databases/cego: 2.23.9 -> 2.23.10

- Fix in CegoSelect::nextGroupedTuple.
  For the 'grouping key' values, a local copy of CegoFieldValue has to be
  created. Otherwise, grouping references might be invalidated, which result
  in aborted grouping queries with strange error message ( No token
  available ) on client side.
  For local copy creation, the CegoFieldValue::getLocalCopy method has
  been modified ( was not used until now ).
  This effect was observed with small buffer poolsizes in
  combination with grouping queries on large tables. The probability
  of grouping key invalidation is higher in that case, because
  buffer pool pages are reloaded more often.

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:392489 
Tuesday, 14 Jul 2015
15:16 amdmi3 search for other commits by this committer
- Fix shebangs
- Add LICENSE_FILE
- Fix whitespace

Approved by:	portmgr blanket
MFH:		2015Q3 (blanket)
Original commitRevision:392023 
Sunday, 12 Jul 2015
10:11 pi search for other commits by this committer
databases/cego: 2.23.8 -> 2.23.9

- Performance fix in CegoSelect::consolidateConjunctionList
  Inappropriate predicates are filtered and added to stack first.
  As a result, predicates are used for table join binding,
  so that efficient tuple retrievel is ensured.
- The fix also avoids infinite query loops for non-reference conditions,
  e.g. select a from t1 where 1 = 1;

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:391775 
Sunday, 14 Jun 2015
13:48 pi search for other commits by this committer
databases/cego: 2.23.7 -> 2.23.8

- Simplification in CegoBTreeManager and CegoBTreeNode.
  Calculation of leaf node chain is now much simpler. This ensures
  consistency and improves btree build up performance.
- Fix for btree page count and btree page release. Some of the btree
  nodes have double references, which was not treated in the page count
  and page release algorithm.
- Changed default primary and secondary values for tableset definition
  command to the configured hostname. This simplifies the define command
  in case of single node tableset configurations.

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:389632 
Tuesday, 9 Jun 2015
21:34 pi search for other commits by this committer
devel/lfcbase: 1.6.1 -> 1.6.2
databases/cego: 2.23.6 -> 2.23.7

lfcbase: Fix in Chain::visibleLength.
	Calculation may result in an infiite loop, if mbtowc returns zero.

cego:
- Fix in CegoFieldValue for VARCHAR comparison. In case of exceeded
  string length for index values, the CegoFieldValue did not work
  correctly.
- Fix in CegoClient for dump mode. BTrees habe not been dumped with
  the correct type ( primary, unique, normal )

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:389004 
Saturday, 6 Jun 2015
03:25 pi search for other commits by this committer
databases/cego: 2.23.3 -> 2.23.6

- Fix in CegoSelect::buildJoinTables.
  After growStep match, growStep is now reset to 1.
  This avoids to add tables to the joinlist, which are still not
  treated for any appropriate join condition. As an effect of this
  bug, execution plan is not evaluated in an optimal manner, which
  might lead to long execution times
- Fix in CegoTableManager::insertDataTable, in case of constraint
  violation, btrees have not been cleaned up. This may result in
  inconsistent btree objects.
- Added a fix in CegoTableManager::updateTuple.
  The core operation consists of a deleteDataTable and a
  insertDataTable method call. For the insertDataTable method call,
  the logging still was enabled. So in addition to an update
  operation, also an insert operation was done. In case of recovery
  operations, this lead to duplicate entries. Fix:
  just change isLogging parameter value for insertDataTable method
  from true to false.

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:388652 
Monday, 1 Jun 2015
20:12 pi search for other commits by this committer
databases/cego: 2.23.2 -> 2.23.3

- Added uptime command for cgclt to show database uptime
- Added pool uptime to buffer pool information, this indicates the
  database uptime
- Several fixes for cgmkdb utility

Submitted by:	lemke@lemke-it.com
Original commitRevision:388273 
Tuesday, 19 May 2015
05:31 pi search for other commits by this committer
databases/cego: 2.23.1 -> 2.23.2

- Added rowlimit argument to CegoDatabaseFormater::formatSelect method

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:386741 
Friday, 15 May 2015
20:48 pi search for other commits by this committer
databases/cego: 2.23.0 -> 2.23.1

Added some missing include files to be installed

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:386483 
Thursday, 14 May 2015
06:01 pi search for other commits by this committer
databases/cego: 2.22.0 -> 2.23.0

- Introduced CegoDatabaseFormater.
  Since the API has changed (proagation of database formatting methods),
  this is 2.23.0

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:386290 
Friday, 1 May 2015
17:21 pi search for other commits by this committer
devel/lfcbase: 1.5.11 -> 1.6.1
databases/cego: 2.21.1 -> 2.22.0
databases/p5-DBD-cego: 1.2.9 -> 1.3.0

lfcbase:
- Added syslog support
- syslog is enabled per default

cego:
- fix in CegoFieldValue::comp for correct null value ordering
- adapt to lfcbase 1.6 with syslog support

p5-DBD-cego:
- adapt to lfcbase 1.6 with syslog support

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:385129 
Sunday, 12 Apr 2015
10:51 pi search for other commits by this committer
databases/cego: 2.21.0 -> 2.21.1

- Fixes for btree handling. Some field value offsets have been corrected
  based on experiences with SAGE db import
- Improved error messages for CegoLockHandler to indicate low level lock
  error messages from pthread calls
- Added sudo command to cego rc script to run db as given user

Submitted by:	lemke@lemke-it.com
Original commitRevision:383858 
Monday, 6 Apr 2015
17:29 pi search for other commits by this committer
databases/cego: 2.20.24 -> 2.21.0

- Urgent fix in CegoFieldValue::comp method.
  New introduced null value comparison might result in a dump.
  Since, the new btree null value extension breaks specification
  to version 2.20, update to version 2.21 was required.

Submitted by:	lemke@lemke-it.com
Original commitRevision:383452 
09:48 pi search for other commits by this committer
databases/cego: 2.20.24 -> 2.20.25

- Added multibyte character evaluation in CegoOutput to show visible
  chain length
- added build_depends for a specific version of lfcbase

Submitted by:	lemke@lemke-it.com
Original commitRevision:383414 
Saturday, 4 Apr 2015
12:04 pi search for other commits by this committer
databases/cego: 2.20.23 -> 2.20.24

- Fix on update query for referenced attributes in nested select like
  update t1 tx set b = ( select d from t2 where t1.a = c )
  This table alias was not resolved correctly.

Submitted by:	lemke@lemke-it.com
Original commitRevision:383201 
Friday, 3 Apr 2015
20:02 pi search for other commits by this committer
databases/cego: 2.20.22 -> 2.20.23

- SQL optimizer improvement was added. In case of select conditions
  with "a is null", neither index nor btree was used. Just for "a = null",
  the index was used. This has been fixed.
- Added fix for btree null value handling. A dedicated null value
  flag was introduced for each btree value ( class CegoBTreeValue )
  to handle null values.

Submitted by:	lemke@lemke-it.com
Original commitRevision:383171 
Saturday, 28 Feb 2015
12:29 pi search for other commits by this committer
databases/cego: 2.20.21 -> 2.20.22

- Added command line parameter validation for poolsize, numdbthread,
  numadminthread and numlogthread parameters
- Fix in CegoFactor::evalFieldValue : For the QUERY case, the select
  instance was not reset. Since the query starts from a undefined point,
  this might lead to "list position exceeded" exceptions
- Fix in CegoQueryHelper::evalSelection for isAgg-case

Submitted by:	Bjorn Lemke <lemke@lemke-it.com> (author)
Original commitRevision:380139 
Sunday, 15 Feb 2015
21:51 pi search for other commits by this committer
databases/cego: fixing startup script

Submitted by:	lemke@lemke-it.com (author)
Original commitRevision:379053 
16:52 pi search for other commits by this committer
databases/cego: 2.20.19 -> 2.20.20

- Added fork+setsid system calls to daemon mode
- rc.d script is now part of the distribution

Submitted by:	lemke@lemke-it.com (author)
Original commitRevision:379042 
Tuesday, 13 Jan 2015
21:51 pi search for other commits by this committer
databases/cego: 2.20.18 -> 2.20.19

small fix for blob handling ( treat exception for exceeded pages )

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:376987 
Saturday, 6 Dec 2014
12:16 pi search for other commits by this committer
databases/cego: 2.20.17 -> 2.20.18

Added more detailed log information for tableset import and export operation

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:374102 
Sunday, 16 Nov 2014
09:01 pi search for other commits by this committer
databases/cego: 2.20.16 -> 2.20.17

Change for primary and secondary host evaluation.

Instead of comparing gethostbyname, the defined dbhost value is used.
This helps if the configured dbhost does not match with the result
value of gethostbyname (e.g. is multiple hostnames are configured
on a database server)

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:372626 
Friday, 24 Oct 2014
09:59 pi search for other commits by this committer
databases/cego: 2.20.15 -> 2.20.16

Added utility function blobsize for retrieving blob size information

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:371430 
Saturday, 18 Oct 2014
10:05 pi search for other commits by this committer
databases/cego: 2.20.14 -> 2.20.15

- Added restricted access for JDBC information requests
  The jdbc role now is required to perform any JDBC information requests.
- A problem occured with inner and outer joins if the same table
  occurs two times or more in the query
  For the CegoAttrComp class, the tablealias name is stored now to
  evaluate if the compare is appropriate for the corresponding table
- Small optimization in CegoDisManager::updateLocalDataTable
  Instead of requesting a new lock for the commitment phase, the lock we
  already have is also used for the commit in case of forecedTransactions
  ( update case ).
- This ensures, that the forced transaction can be done without
  risking to not obtain the lock for the corresponding table again.

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:371107 
Monday, 15 Sep 2014
07:26 pi search for other commits by this committer
databases/cego: 2.20.14 distfile was changed after initial update

Submitted by:	antoine
Original commitRevision:368248 
Sunday, 14 Sep 2014
17:55 pi search for other commits by this committer
databases/cego: 2.20.13 -> 2.20.14

- Fix in CegoQueryHelper::decodeFVL to treat also decodings for
  field value list in switched order ( btree or index fvl )
- Fix in CegoAction::execIndexCheck to conform to new object comparison
  in CegoDatabaseManager::ObjectRecord
- Fix in CegoTableManager::deleteDataTable to check for inappropriate
  AttrCond before executing tablecursor setup
- Fix in CegoDatabaseManager::Object::operator == Index comparisons
  corrected ( index can either match uindex, pindex or index, btree
  can either match ubtree, pbtree or btree )

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:368212 
Wednesday, 10 Sep 2014
14:07 pi search for other commits by this committer
databases/cego: 2.20.12 -> 2.20.13

- Fix in CegoQueryHelper::evalAttrCond. In some table ordering cases,
  the attributes had been switched and the evaluation was wrong
  ( LESS_THAN, MORE_THAN, LESS_EQUAL_THAN, MORE_EQUAL_THAN ).

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:367847 
Sunday, 31 Aug 2014
09:28 pi search for other commits by this committer
databases/cego: 2.20.11 -> 2.20.12

- Recovery added for check constraints and foreign keys
- Corrections for btree recovery, btree creation was not performed
  correctly during tableset recovery. Tableset autocorrect mode is
  enabled on default now ( by define tableset )

Submitted by:	Bjorn Lemke <lemke@lemke-it.com>
Original commitRevision:366738 
Sunday, 29 Jun 2014
08:21 pi search for other commits by this committer
databases/cego: 2.20.10 -> 2.20.11

Submitted by:	lemke@lemke-it.com
Original commitRevision:359744 
Saturday, 14 Jun 2014
20:14 pi search for other commits by this committer
databases/cego: 2.20.9 -> 2.20.10, USES libtool, strip libs

Submitted by:	lemke@lemke-it.com
Original commitRevision:357803 
Friday, 2 May 2014
20:20 pi search for other commits by this committer
databases/cego: update 2.20.1 -> 2.20.9

PR:             ports/186776
Submitted by:   pi
Approved by:    jadawin (mentor)
Original commitRevision:352848 
Saturday, 1 Feb 2014
11:50 wg search for other commits by this committer
databases/cego: update to 2.20.1

PR:		ports/186126
Submitted by:	maintainer
Original commitRevision:342123 
Tuesday, 7 Jan 2014
18:53 wg search for other commits by this committer
databases/cego: update to 2.19.14

PR:		ports/185530
Submitted by:	maintainer
Original commitRevision:339018 
Tuesday, 26 Nov 2013
00:30 wg search for other commits by this committer
databases/cego: update to 2.19.13

PR:		ports/184200
Submitted by:	maintainer
Original commitRevision:334910 
Sunday, 17 Nov 2013
16:10 wg search for other commits by this committer
databases/cego: update to 2.19.12

PR:		ports/184020
Submitted by:	maintainer
Original commitRevision:334101 
Friday, 1 Nov 2013
10:51 wg search for other commits by this committer
databases/cego: update to 2.19.11

PR:		ports/183548
Submitted by:	Kurt Jaeger <fbsd-ports opsec.eu> (maintainer)
Original commitRevision:332352 
Sunday, 27 Oct 2013
20:27 wg search for other commits by this committer
databases/cego: update to 2.19.10

- Update to 2.19.10

PR:		ports/183358
Submitted by:	Kurt Jaeger <fbsd-ports opsec.eu> (maintainer)
Original commitRevision:331803 
Tuesday, 22 Oct 2013
04:55 danilo search for other commits by this committer
- Update from 2.19.6 to 2.19.7 [1]
- Add stage support [1]
- Convert LIB_DEPENDS to new syntax

PR:		ports/183128
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer) [1]
Original commitRevision:331221 
Friday, 20 Sep 2013
16:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
Original commitRevision:327717 
Thursday, 5 Sep 2013
16:17 culot search for other commits by this committer
- Update to 2.19.6

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/181751
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:326409 
Monday, 19 Aug 2013
08:42 culot search for other commits by this committer
- Update to 2.19.4

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/181305
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:324958 
Thursday, 8 Aug 2013
13:37 culot search for other commits by this committer
- Update to 2.19.3

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/181084
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:324396 
Tuesday, 30 Jul 2013
08:25 culot search for other commits by this committer
- Update to 2.19.2

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/180901
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:323948 
Wednesday, 17 Jul 2013
23:46 wg search for other commits by this committer
databases/cego: update to 2.18.11

- Update to 2.18.11@

Changes: http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en

PR:		ports/180610
Submitted by:	Kurt Jaeger <fbsd-ports opsec.eu> (maintainer)
Original commitRevision:323194 
Tuesday, 9 Jul 2013
15:54 culot search for other commits by this committer
- Update to 2.18.10

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/180406
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:322567 
Wednesday, 26 Jun 2013
07:39 culot search for other commits by this committer
- Update to 2.18.9

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/179973
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:321788 
Tuesday, 4 Jun 2013
13:42 culot search for other commits by this committer
- Update to 2.18.8

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/179255
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:319858 
Thursday, 23 May 2013
09:31 zeising search for other commits by this committer
Move devel/lfc to devel/lfcbase, to avoid conflicts with other software using
liblfc as name. [1]
Update devel/lfcbase to 1.5.4: [1]
  Several shared lib issues were addressed
  The license was changed from GPLv2 to GPLv3.

Update devel/lfcxml to 1.1.3 and chase the move of devel/lfc [2]

Update devel/dragon to 1.3.10 and chase the move of devel/lfc [3]

Update databases/cego to 2.18.6 and chase the move of devel/lfc [4]
  Several shared lib issues were addressed.
  The license was changed from GPLv2 to GPLv3.

Update databases/my2cego to 1.1.3 and chase the move of devel/lfc [5]
  Updated the autoconf setup
  Changed License from GPLv2 to GPLv3

PR:		ports/178745 [1]
		ports/178746 [2]
		ports/178747 [3]
		ports/178752 [4]
		ports/178754 [5]
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer) [1-5]
Original commitRevision:318857 
Wednesday, 15 May 2013
19:43 zeising search for other commits by this committer
Chase updates to devel/lfc and devel/lfcxml, bump PORTREVISION
Remove versions from LIB_DEPENDS
Trim makefile headers.
Original commitRevision:318261 
Monday, 13 May 2013
08:55 culot search for other commits by this committer
- Update to 2.17.12

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/178409
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:318016 
Monday, 6 May 2013
15:34 bapt search for other commits by this committer
Convert USE_NCURSES by USES=ncurses
Convert USE_READLINE by USES=readline
Original commitRevision:317525 
13:09 culot search for other commits by this committer
- Update to 2.17.10

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/178341
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:317511 
Monday, 29 Apr 2013
18:07 culot search for other commits by this committer
- Update to 2.17.9

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/178233
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:316835 
Wednesday, 17 Apr 2013
07:02 culot search for other commits by this committer
- Update to 2.17.8

Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/177585
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Feature safe:	yes
Original commitRevision:315935 
Monday, 25 Mar 2013
16:54 culot search for other commits by this committer
- Update to 2.17.5

Changes:       
http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:             ports/177373
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:315238 
Friday, 22 Feb 2013
17:26 culot search for other commits by this committer
- Update to 2.17.4

Changes:        http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:             ports/176325
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:312780 
Monday, 18 Feb 2013
09:01 culot search for other commits by this committer
- Update to 2.17.3

Changes:        http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:             ports/176211
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:312492 
Saturday, 9 Feb 2013
13:34 culot search for other commits by this committer
- Update to 2.17.2

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/175958
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:311974 
Thursday, 7 Feb 2013
07:50 culot search for other commits by this committer
- Update to 2.17.1

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/175882
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:311814 
Tuesday, 5 Feb 2013
10:00 culot search for other commits by this committer
- Update to 2.17.0

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/175825
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:311688 
Tuesday, 29 Jan 2013
07:48 culot search for other commits by this committer
- Update to 2.16.1

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/175654
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:311155 
Monday, 28 Jan 2013
08:39 culot search for other commits by this committer
- Update to 2.16.0

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/175637
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:311102 
Wednesday, 16 Jan 2013
03:54 jgh search for other commits by this committer
- update to 2.15.8 (Bug fix in CegoQueryHelper::evalAttrCond)

PR:		175334
Submitted by:	maintainer, fbsd-ports@opsec.eu
Original commitRevision:310473 
Sunday, 13 Jan 2013
08:42 culot search for other commits by this committer
- Update to 2.15.7

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/175230
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:310308 
Thursday, 10 Jan 2013
09:13 culot search for other commits by this committer
- Update to 2.15.6

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/175164
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:310172 
Tuesday, 8 Jan 2013
15:48 culot search for other commits by this committer
- Update to 2.15.5

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/175108
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:310094 
Wednesday, 2 Jan 2013
13:46 culot search for other commits by this committer
- Update to 2.15.4

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego&lang=en
PR:		ports/174895
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:309817 
Sunday, 30 Dec 2012
23:01 pawel search for other commits by this committer
Update to version 2.15.3

PR:		ports/174839
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:309699 
Thursday, 27 Dec 2012
23:20 jgh search for other commits by this committer
- update to 2.15.2, Improvements for database backups

PR:		174745
Submitted by:	maintainer, fbsd-ports@opsec.eu
Original commitRevision:309557 
Wednesday, 19 Dec 2012
21:51 pawel search for other commits by this committer
- Update to version 2.15.1 [1]
- Respect CXXFLAGS for entire build
- Port links with readline

PR:		ports/174536 [1]
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:309269 
Sunday, 25 Nov 2012
19:26 rm search for other commits by this committer
- update to 2.14.1

while here:
- remove indefinite article from COMMENT
- remove shlib versions (portlint warning)

PR:		173890
Submitted by:	Kurt Jaeger <fbsd-ports at opsec dot eu> (maintainer)
Feature safe:	yes
Original commitRevision:307755 
Tuesday, 9 Oct 2012
06:36 culot search for other commits by this committer
- Update to 2.14.0

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego
PR:		ports/172393
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:305569 
Sunday, 2 Sep 2012
17:07 rakuco search for other commits by this committer
Update to 2.13.9.

PR:		ports/171257
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commitRevision:303563 
Tuesday, 7 Aug 2012
06:44 culot search for other commits by this committer
- Update to 2.13.7

Changes:	http://www.lemke-it.com/litnoauth?request=pubclogcego
PR:		ports/170378
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Monday, 16 Jul 2012
06:53 araujo search for other commits by this committer
- Update to 2.13.4.

PR:		ports/169892
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Monday, 2 Jul 2012
06:48 culot search for other commits by this committer
- Update to 2.13.2 [1]
- Fix plist

PR:             ports/169589 [1]
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Monday, 28 May 2012
07:50 culot search for other commits by this committer
- Update to 2.13.1

Changes:        http://www.lemke-it.com/cego_blog.html
PR:             ports/168368
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Monday, 14 May 2012
19:20 culot search for other commits by this committer
- Update to 2.13.0

Changes:        http://www.lemke-it.com/cego_blog.html
PR:             ports/167838
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Sunday, 6 May 2012
15:31 culot search for other commits by this committer
- Update to 2.12.8

Changes:        http://www.lemke-it.com/cego_blog.html
PR:             ports/167615
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Tuesday, 10 Apr 2012
18:45 rm search for other commits by this committer
- update to 2.12.7

PR:             166795
Submitted by:   Kurt Jaeger <fbsd-ports at opsec dot eu> (maintainer)
Original commit
Sunday, 8 Apr 2012
08:14 culot search for other commits by this committer
- Update to 2.12.6

Changes:        http://www.lemke-it.com/cego_blog.html
PR:             ports/166731
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Feature safe:   yes
Original commit
Friday, 6 Apr 2012
07:30 culot search for other commits by this committer
- Update to 2.12.5

Changes:        http://www.lemke-it.com/cego_blog.html
PR:             ports/166667
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Feature safe:   yes
Original commit
Wednesday, 4 Apr 2012
14:06 culot search for other commits by this committer
- Update to 2.12.4

PR:             ports/166632
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Feature safe:   yes
Original commit
Sunday, 22 Jan 2012
23:32 jgh search for other commits by this committer
- Update to 2.12.1

PR: ports/164385
Submitted by: maintainer, Kurt Jaeger <fbsd-ports at opsec.eu>
Approved by:    crees,rene (mentors, implicit)
Original commit
Monday, 16 Jan 2012
00:50 scheidell search for other commits by this committer
- Update to 2.12.0

PR:             ports/164183
Approved by:    gabor (mentor, implicit)
Original commit
Saturday, 7 Jan 2012
09:52 culot search for other commits by this committer
- Update to 2.11.7

PR:             ports/163870
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Friday, 11 Nov 2011
17:28 miwi search for other commits by this committer
- Update to 2.11.6

PR:             162388
Submitted by:   maintainer
Feature safe:   yes
Original commit
Sunday, 16 Oct 2011
15:02 eadler search for other commits by this committer
- Update to 2.11.4

PR:             ports/161662
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Approved by:    bapt,sahil (mentors, implicit)
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
20:17 sunpoet search for other commits by this committer
- Update to 2.11.2

Changes:        http://www.lemke-it.com/cego_blog.html
PR:             ports/160944
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Thursday, 15 Sep 2011
13:02 culot search for other commits by this committer
- Update to 2.11.1

PR:             ports/160713
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Monday, 12 Sep 2011
09:27 culot search for other commits by this committer
- Update to 2.11.0

PR:             ports/160638
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Monday, 15 Aug 2011
21:42 sylvio search for other commits by this committer
- Update to 2.10.13

PR:             ports/159762
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Thursday, 28 Jul 2011
17:28 culot search for other commits by this committer
- Update to 2.10.12

PR:             ports/159240
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Saturday, 23 Jul 2011
00:07 beech search for other commits by this committer
- Update to 2.10.11

PR:             ports/159122
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Wednesday, 20 Jul 2011
12:57 culot search for other commits by this committer
- Update to 2.10.10 [1]
- Add missing entries to pkg-plist (cgbackup, cgmkdb and cgrecover)

PR:             ports/159054 [1]
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Sunday, 17 Jul 2011
11:38 culot search for other commits by this committer
- Update to 2.10.8 [1]
- Pet portlint(1) by moving LICENSE earlier

PR:             ports/158991 [1]
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Sunday, 10 Jul 2011
13:08 culot search for other commits by this committer
- Update to 2.10.7

PR:             ports/158757
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit
Sunday, 3 Jul 2011
13:00 culot search for other commits by this committer
- Update to 2.10.5

PR:             ports/158578
Submitted by:   Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
Original commit

Number of commits found: 322 (showing only 100 on this page)

«  1 | 2 | 3 | 4  »