Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
07 Jun 2019 23:22:01
1.3.0

|
truckman  |
Update devel/mtbl port to version 1.3.0
The immutable sorted string table library project, mtbl 1.3.0,
was released. This release includes improvements enabling
aggregation. In detail:
* Fix mtbl_reload_now() on filesets with open iterators.
* Add support for absolute pathnames in filesets
* Make merge function an optional parameter for mergers and filesets
to enable unmerged results.
* Add dupsort function to sort unmerged results based on data.
* Add filename filter option to filesets. This provides functionality
similar to mtbl_fileset_partition() but resilient against fileset
reloads.
* Add mtbl_fileset_dup() to open an existing fileset with different
options.
Sort Makefile to pacify portlint.
Sponsored by: Farsight Security, Inc. |
28 May 2018 23:48:03
1.2.1

|
truckman  |
Update devel/mtbl to version 1.2.1:
* Prevent fileset reloading when the fileset has iterators open.
* Add and document facility to disable reloading of filesets.
* Defer initial load of fileset until the first operation on a fileset
source.
* Handle 32bit size_t overflows, failing with an assertion upon opening
an mtbl_reader with an oversized data block.
* Fix for systems with 32-bit size_t.
* Add several unit tests for various libmtbl functions.
* Correct a library versioning error.
Sponsored by: Farsight Security, Inc. |
04 Aug 2017 00:32:21
1.1.1

|
truckman  |
Update distinfo TIMESTAMP.
Sponsored by: Farsight Security, Inc. |
04 Aug 2017 00:13:38
1.1.1

|
truckman  |
Upgrade mtbl to version 1.1.1:
* Fix iterator leak in mtbl_merger code.
Pet portlint.
Sponsored by: Farsight Security, Inc. |
14 Jun 2017 19:00:52
1.1.0

|
truckman  |
Upgrade devel/mtbl to version 1.1.0:
* Fix default zlib compression level.
* Add callback data (clos) parameter to mtbl_fileset_partition
function and its callback. Early users of mtbl_fileset_partition
will need to rewrite accordingly.
* Use 64-bit offsets in blocks with more than 4G of data.
* Fix undefined behavior when seeking past end of mtbl file.
Sponsored by: Farsight Security, Inc. |
23 Feb 2017 01:54:12
1.0.0

|
truckman  |
Upgrade devel/mtbl to version 1.0.0:
mtbl (1.0.0)
* Backwards-incompatible file format change to enable block sizes >4G.
* Add support for zstd compression. This adds a new library dependency
on libzstd.
* Add mtbl_iter_seek function.
* Add mtbl_fileset_partition function.
* Breaks ABI for version 0.x.x.
mtbl (0.8.1)
* Add portability for clock time.
* Simplify and improve portability related to byte order primitives.
* Fix assertion failure. If there is a broken mtbl file in the fileset
then a NULL reader will be returned. This change checks for that
error condition in fs_reinit_merger() and does not pass the empty
reader onwards to mtbl_merger_add_source().
Compatiblity with the latest libz4 has been added so files/patch-configure
is no longer needed.
Bump PORTREVISION on dependent ports due to ABI / shared library version
change. |
04 Feb 2017 03:32:13
0.8.0

|
truckman  |
Neuter liblz4 version check in configure to unbreak build after
liblz4 upstream changed versioning from r131 to v1.7.5.
Reported by: pkg-fallout
Sponsored by: Farsight Security, Inc. |
01 Apr 2016 14:00:57
0.8.0

|
mat  |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
23 Sep 2015 22:30:00
0.8.0

|
truckman  |
Upgrade to 0.8.0:
[ Alexey Spiridonov ]
* mtbl_reader(3): New reader getters, which expose the values stored
in the "metadata" (formerly "trailer") at the end of MTBL files. For
example: the number of bytes of source data in the keys & values is
available via mtbl_metadata_bytes_keys() & mtbl_metadata_bytes_values().
* mtbl_writer(3): Allow foreign data to be written to the beginning of a
file before its file descriptor is passed to mtbl_writer_init_fd().
[ Robert Edmonds ]
* Add mtbl_verify(1) utility which verifies the embedded data and index
block checksums in an MTBL file.
(Only the first 15 lines of the commit message are shown above ) |
22 Aug 2015 01:09:10
0.7.0

|
truckman  |
Nuke the FreeBSD 8 binutils workaround, which eliminates the need for
bsd.port.pre.mk and bsd.port.post.mk.
Sponsored by: Farsight Security, Inc. |
02 Apr 2015 23:55:10
0.7.0

|
truckman  |
Add new port devel/mtbl.
mtbl is a C library implementation of the Sorted String Table
(SSTable) data structure, based on the SSTable implementation in
the open source Google LevelDB library https://github.com/google/leveldb.
An SSTable is a file containing an immutable mapping of keys to
values. Keys are stored in sorted order, with an index at the end
of the file allowing keys to be located quickly.
mtbl is not a database library. It does not provide an updateable
key-value data store, but rather exposes primitives for creating,
searching and merging SSTable files. Unlike databases which use the
SSTable data structure internally as part of their data store,
management of SSTable files -- creation, merging, deletion, combining
of search results from multiple SSTables -- is left to the discretion
of the mtbl library user.
Differential Revision: https://reviews.freebsd.org/D2206
Approved by: mat (mentor)
Sponsored by: Farsight Security, Inc. |