From 8322980ed73dab6e7cdf93ce57c4e91e15c2f96b Mon Sep 17 00:00:00 2001 From: Ally Heev Date: Mon, 20 Jul 2026 16:22:48 +0530 Subject: [PATCH 1/6] update tools versions --- debian/control | 5 ++--- debian/watch | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/debian/control b/debian/control index 15b06af..bb89da4 100644 --- a/debian/control +++ b/debian/control @@ -1,14 +1,13 @@ Source: ladybug Section: database -Priority: optional Maintainer: Ally Heev Rules-Requires-Root: no Build-Depends: - debhelper-compat (= 13), + debhelper-compat (= 14), cmake, libssl-dev (>= 3.0.0), libssl-dev (<< 4.0.0) -Standards-Version: 4.7.2 +Standards-Version: 4.7.4 Homepage: https://ladybugdb.com/ Vcs-Browser: https://github.com/LadybugDB/ladybug Vcs-Git: https://github.com/LadybugDB/ladybug.git diff --git a/debian/watch b/debian/watch index 9b73cbc..4ea4a13 100644 --- a/debian/watch +++ b/debian/watch @@ -1,4 +1,4 @@ -version=4 +version=5 opts=filenamemangle=s/.+\/v?(\d[\d\.]+)\.tar\.gz/ladybug-$1\.tar\.gz/ \ https://github.com/LadybugDB/ladybug/tags \ .*/archive/refs/tags/v?(\d[\d\.]+)\.tar\.gz From a5635b276fb4044459d7fc0f63183cbe25adb5d4 Mon Sep 17 00:00:00 2001 From: Ally Heev Date: Mon, 20 Jul 2026 16:31:58 +0530 Subject: [PATCH 2/6] cleanup obselete patches --- debian/patches/series | 1 - debian/patches/soname.patch | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 debian/patches/series delete mode 100644 debian/patches/soname.patch diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index 4db24c4..0000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -soname.patch diff --git a/debian/patches/soname.patch b/debian/patches/soname.patch deleted file mode 100644 index 04751e5..0000000 --- a/debian/patches/soname.patch +++ /dev/null @@ -1,18 +0,0 @@ -Description: Add SONAME for shared library -Author: Ally Heev -Forwarded: not-needed - ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -23,6 +23,11 @@ - add_library(lbug STATIC ${ALL_OBJECT_FILES}) - add_library(lbug_shared SHARED ${ALL_OBJECT_FILES}) - -+set_target_properties(lbug_shared PROPERTIES -+ VERSION ${PROJECT_VERSION} -+ SOVERSION ${PROJECT_VERSION_MAJOR} -+) -+ - set(LBUG_LIBRARIES antlr4_cypher antlr4_runtime brotlidec brotlicommon fast_float utf8proc re2 fastpfor parquet snappy thrift yyjson zstd miniz mbedtls lz4 roaring_bitmap simsimd) - if (NOT __SINGLE_THREADED__) - set(LBUG_LIBRARIES ${LBUG_LIBRARIES} Threads::Threads) From 393fbe13bea2a5901ac500b71c8934002eb5e657 Mon Sep 17 00:00:00 2001 From: Ally Heev Date: Mon, 20 Jul 2026 20:38:07 +0530 Subject: [PATCH 3/6] add a separate copyright for debian/* --- debian/copyright | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/copyright b/debian/copyright index ff6d57c..be91e54 100644 --- a/debian/copyright +++ b/debian/copyright @@ -5,6 +5,12 @@ Source: https://github.com/LadybugDB/ladybug Files: * Copyright: 2024-2026 LadybugDB contributors +License: Expat + +Files: debian/* +Copyright: 2024-2026 LadybugDB contributors +License: Expat + License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From a7437020aca68edce6d05a96dda63793097caf6c Mon Sep 17 00:00:00 2001 From: Ally Heev Date: Mon, 20 Jul 2026 21:04:51 +0530 Subject: [PATCH 4/6] update changelog --- debian/changelog | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/debian/changelog b/debian/changelog index 19bef7c..71e9fc4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +ladybug (0.18.2-1) unstable; urgency=medium + + * New upstream release. + * Bump debhelper-compat to 14. + * Bump Standards-Version to 4.7.4 (no changes required). + * Update debian/watch to version 5 format. + * Remove obsolete soname.patch (no longer needed). + * Add separate copyright stanza for debian/* packaging files. + + -- Ally Heev Sun, 20 Jul 2026 21:00:00 +0530 + ladybug (0.18.0-1) unstable; urgency=medium * New upstream release. From 89053b0d5f058845356082ef1ac5e44cd6b954d5 Mon Sep 17 00:00:00 2001 From: Ally Heev Date: Mon, 20 Jul 2026 22:41:19 +0530 Subject: [PATCH 5/6] revert debhelper update --- debian/changelog | 1 - debian/control | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 71e9fc4..42edc96 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,6 @@ ladybug (0.18.2-1) unstable; urgency=medium * New upstream release. - * Bump debhelper-compat to 14. * Bump Standards-Version to 4.7.4 (no changes required). * Update debian/watch to version 5 format. * Remove obsolete soname.patch (no longer needed). diff --git a/debian/control b/debian/control index bb89da4..d8bce48 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: database Maintainer: Ally Heev Rules-Requires-Root: no Build-Depends: - debhelper-compat (= 14), + debhelper-compat (= 13), cmake, libssl-dev (>= 3.0.0), libssl-dev (<< 4.0.0) From 18e222378de51df7855329eaae9c0d384812d64d Mon Sep 17 00:00:00 2001 From: Ally Heev Date: Tue, 21 Jul 2026 14:57:05 +0530 Subject: [PATCH 6/6] fix day in changelog --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 42edc96..574cd0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,7 +6,7 @@ ladybug (0.18.2-1) unstable; urgency=medium * Remove obsolete soname.patch (no longer needed). * Add separate copyright stanza for debian/* packaging files. - -- Ally Heev Sun, 20 Jul 2026 21:00:00 +0530 + -- Ally Heev Mon, 20 Jul 2026 21:00:00 +0530 ladybug (0.18.0-1) unstable; urgency=medium