git: e3ae063f1592 - main - databases/ladybug: Update 0.16.1 => 0.18.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 03 Jul 2026 11:59:04 UTC
The branch main has been updated by vvd:
URL: https://cgit.FreeBSD.org/ports/commit/?id=e3ae063f1592b9d3b134b2f55d0fd5d617868457
commit e3ae063f1592b9d3b134b2f55d0fd5d617868457
Author: mahlon <mahlon@martini.nu>
AuthorDate: 2026-07-03 11:58:04 +0000
Commit: Vladimir Druzenko <vvd@FreeBSD.org>
CommitDate: 2026-07-03 11:58:04 +0000
databases/ladybug: Update 0.16.1 => 0.18.0
Changelogs:
https://github.com/LadybugDB/ladybug/releases/tag/v0.17.0
https://github.com/LadybugDB/ladybug/releases/tag/v0.17.1
https://github.com/LadybugDB/ladybug/releases/tag/v0.18.0
PR: 296475
Sponsored by: UNIS Labs
---
databases/ladybug/Makefile | 2 +-
databases/ladybug/distinfo | 6 +++---
databases/ladybug/files/patch-CMakeLists.txt | 16 ++++++++++++----
3 files changed, 16 insertions(+), 8 deletions(-)
diff --git a/databases/ladybug/Makefile b/databases/ladybug/Makefile
index eb45efb26aa1..9e1394254ecb 100644
--- a/databases/ladybug/Makefile
+++ b/databases/ladybug/Makefile
@@ -1,6 +1,6 @@
PORTNAME= ladybug
DISTVERSIONPREFIX= v
-DISTVERSION= 0.16.1
+DISTVERSION= 0.18.0
CATEGORIES= databases
MAINTAINER= mahlon@martini.nu
diff --git a/databases/ladybug/distinfo b/databases/ladybug/distinfo
index 58157256bb2d..9adc11dd07f4 100644
--- a/databases/ladybug/distinfo
+++ b/databases/ladybug/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1777958305
-SHA256 (ladybugdb-ladybug-v0.16.1_GH0.tar.gz) = c22417b46b895df7c25f8314cab27bc1afbf1a43b06463a023c98eac5ffe16c3
-SIZE (ladybugdb-ladybug-v0.16.1_GH0.tar.gz) = 15192139
+TIMESTAMP = 1782946278
+SHA256 (ladybugdb-ladybug-v0.18.0_GH0.tar.gz) = d2111d7c0037763f8b49447e1170f31428e30154866ec3fae3739469ea12046f
+SIZE (ladybugdb-ladybug-v0.18.0_GH0.tar.gz) = 15372114
diff --git a/databases/ladybug/files/patch-CMakeLists.txt b/databases/ladybug/files/patch-CMakeLists.txt
index 5e45cd010918..628b6815511d 100644
--- a/databases/ladybug/files/patch-CMakeLists.txt
+++ b/databases/ladybug/files/patch-CMakeLists.txt
@@ -1,6 +1,6 @@
---- CMakeLists.txt.orig 2026-04-29 00:05:06 UTC
+--- CMakeLists.txt.orig 2026-07-01 03:24:20 UTC
+++ CMakeLists.txt
-@@ -431,30 +431,33 @@ include_directories(third_party/antlr4_runtime/src)
+@@ -442,36 +442,39 @@ include_directories(third_party/antlr4_runtime/src)
include_directories(third_party/antlr4_cypher/include)
include_directories(third_party/antlr4_runtime/src)
@@ -38,9 +38,17 @@
+#include_directories(third_party/lz4)
include_directories(third_party/roaring_bitmap)
include_directories(SYSTEM third_party/simsimd/include)
-+
+
+include_directories($ENV{LOCALBASE}/include)
+link_directories($ENV{LOCALBASE}/lib)
-
++
add_subdirectory(third_party)
+ add_library(lbug_link_deps INTERFACE)
+-set(LBUG_STATIC_ARCHIVE_LIBRARIES antlr4_cypher antlr4_runtime brotlidec brotlicommon utf8proc re2 fastpfor parquet snappy thrift yyjson zstd miniz mbedtls lz4 roaring_bitmap simsimd)
+-set(LBUG_LINK_LIBRARIES ${LBUG_STATIC_ARCHIVE_LIBRARIES} fast_float)
++set(LBUG_STATIC_ARCHIVE_LIBRARIES antlr4_cypher antlr4_runtime utf8proc re2 fastpfor parquet snappy thrift miniz mbedtls roaring_bitmap simsimd)
++set(LBUG_LINK_LIBRARIES ${LBUG_STATIC_ARCHIVE_LIBRARIES} fast_float brotlidec brotlicommon yyjson zstd lz4)
+ if (NOT __SINGLE_THREADED__)
+ list(APPEND LBUG_LINK_LIBRARIES Threads::Threads)
+ endif()