Control: clone 1142163 -1 Control: reassign -1 tinysparql Control: retitle -1 tinysparql FTBFS: sqlite3 precision Control: tags -1 + patch Control: block 1142163 -1
Hi Paul, On Thu, Jul 16, 2026 at 8:47 AM Paul Gevers <[email protected]> wrote: > The Release Team considers packages that are out-of-sync between testing and > unstable for more than 30 days as having a Release Critical bug in testing > [1]. Your package src:sqlite3 has been trying to migrate for 32 days [2], > hence this bug report. Thanks, I already know about this issue. I just didn't have time to investigate this. It turns out, this is a FTBFS due to self tests in tinysparql. To be a correct maintainer, I fixed this for Jeremy, patch is attached. > [1] https://lists.debian.org/debian-devel-announce/2023/06/msg00001.html > [2] https://qa.debian.org/excuses.php?package=sqlite3 Regards, Laszlo/GCS
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Laszlo Boszormenyi (GCS) <[email protected]> Date: Jul, 19 2026 07:37:09 +0200 Subject: [PATCH] update sqlite3 precision Newer sqlite3 versions output numbers with higher precision. Tests need to be updated to take this into consideration. Forwarded: no --- --- a/tests/core/aggregates/aggregate-1.out +++ b/tests/core/aggregates/aggregate-1.out @@ -1 +1 @@ -"9" "3.33333333333333" "5" "1" +"9" "3.3333333333333335" "5" "1" --- a/tests/core/aggregates/aggregate-distinct-1.out +++ b/tests/core/aggregates/aggregate-distinct-1.out @@ -1 +1 @@ -"3.33333333333333" "4.0" +"3.3333333333333335" "4.0" --- a/tests/core/bind/bind3.out +++ b/tests/core/bind/bind3.out @@ -1,2 +1,2 @@ -"http://example.org/ns#a2" "42" "0.0238095238095238" -"http://example.org/ns#e" "17" "0.0588235294117647" +"http://example.org/ns#a2" "42" "0.023809523809523808" +"http://example.org/ns#e" "17" "0.058823529411764705" --- a/tests/core/update/delete-where-query-3.out +++ b/tests/core/update/delete-where-query-3.out @@ -1 +1 @@ -"http://example/b" "0.444444444444444" +"http://example/b" "0.44444444444444442"

