Your message dated Sat, 26 Mar 2022 11:59:13 +0000 with message-id <c4d20274f6d76a43fb574d2177f6e3af4235e4be.camel@adam-barratt.org.uk> and subject line Closing p-u requests for updates in 11.3 has caused the Debian Bug report #1005868, regarding bullseye-pu: package bible-kjv/4.34 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner@bugs.debian.org immediately.) -- 1005868: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1005868 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: bullseye-pu: package bible-kjv/4.34
- From: Matthew Vernon <matthew@debian.org>
- Date: Wed, 16 Feb 2022 11:54:20 +0000
- Message-id: <164501246000.12015.5106515495380680160.reportbug@tsk.empire.pick.ucam.org>
Package: release.debian.org Severity: normal Tags: bullseye User: release.debian.org@packages.debian.org Usertags: pu Hi, I think bug 1005856 in bible-kjv warrants a stable update - the search function is broken (it has an off-by-one error), and the fix is straightforward (and has been in testing for a while). [ Reason ] The bug is that searching gives you the wrong answers - specifically an off-by-one error in the verse returned. This makes searching (one of the key functions of bible-kjv) useless. The bug is a regression from old-stable; it was introduced in version 4.33 but not noticed before stable was released. I fixed it in 4.35, so testing's 4.37 has the fix. I do now also have autopktests to prevent such problems in future :-/ [ Impact ] The search function in bible-kjv doesn't work properly - the results returned do not contain the search terms, but are rather adjacent to the correct verse. [ Tests ] 4.36 and later have autopkgtests to check the search functions correctly. I have run the autopkgtest tests against 4.34+deb11u1 built and running on a bullseye system. [ Risks ] The fix is trivial (debdiff attached), which I think makes this a very low risk change. [ Checklist ] [X] *all* changes are documented in the d/changelog [X] I reviewed all changes and I approve them [X] attach debdiff against the package in stable [X] the issue is verified as fixed in unstable [ Changes ] The bible-kjv build system constructs a concordance (using makeconc.pl) - it runs through the raw text file (which is one verse per line, plus a header line), and builds (amongst other things) a "lines" associative array which records which lines (i.e. verses) a word appears in. 4.33's bug in doing this was to discard the header line but not to notice that doing so would leave $. (perl's line counter for the raw text file) 1 higher than it should be. The fix is simply to update $lines{$word} with $. -1 rather than $. [ Other info ] I have a package built in a bullseye chroot (and tested on a bullseye system) ready to go, but will wait for your OK before uploading. Thanks, Matthewdiff -Nru bible-kjv-4.34/debian/changelog bible-kjv-4.34+deb11u1/debian/changelog --- bible-kjv-4.34/debian/changelog 2021-07-19 12:36:43.000000000 +0100 +++ bible-kjv-4.34+deb11u1/debian/changelog 2022-02-16 11:15:11.000000000 +0000 @@ -1,3 +1,9 @@ +bible-kjv (4.34+deb11u1) bullseye; urgency=medium + + * Fix off-by-one-error in search (Closes: #1005856) + + -- Matthew Vernon <matthew@debian.org> Wed, 16 Feb 2022 11:15:11 +0000 + bible-kjv (4.34) unstable; urgency=medium * Check for error return value diff -Nru bible-kjv-4.34/makeconc.pl bible-kjv-4.34+deb11u1/makeconc.pl --- bible-kjv-4.34/makeconc.pl 2021-07-19 12:36:43.000000000 +0100 +++ bible-kjv-4.34+deb11u1/makeconc.pl 2022-02-16 11:15:11.000000000 +0000 @@ -52,7 +52,8 @@ next if $stopword{$word}; $count{$word}++; # Move below next line to count per-line. next if $seenonthisline{$word}++; - $lines{$word} .= " " . $.; + #the header line discard still leaves $. 1 higher than we want + $lines{$word} .= " " . ($. - 1); } } die $! if BIBLE->error();
--- End Message ---
--- Begin Message ---
- To: 1000342-done@bugs.debian.org, 1000645-done@bugs.debian.org, 1001411-done@bugs.debian.org, 1001692-done@bugs.debian.org, 1001740-done@bugs.debian.org, 1001849-done@bugs.debian.org, 1002012-done@bugs.debian.org, 1002051-done@bugs.debian.org, 1002563-done@bugs.debian.org, 1002619-done@bugs.debian.org, 1002620-done@bugs.debian.org, 1002652-done@bugs.debian.org, 1002685-done@bugs.debian.org, 1002703-done@bugs.debian.org, 1003018-done@bugs.debian.org, 1003058-done@bugs.debian.org, 1003133-done@bugs.debian.org, 1003173-done@bugs.debian.org, 1003484-done@bugs.debian.org, 1003526-done@bugs.debian.org, 1003659-done@bugs.debian.org, 1003765-done@bugs.debian.org, 1003948-done@bugs.debian.org, 1004033-done@bugs.debian.org, 1004050-done@bugs.debian.org, 1004192-done@bugs.debian.org, 1004247-done@bugs.debian.org, 1004384-done@bugs.debian.org, 1004452-done@bugs.debian.org, 1004483-done@bugs.debian.org, 1004533-done@bugs.debian.org, 1004575-done@bugs.debian.org, 1004741-done@bugs.debian.org, 1004895-done@bugs.debian.org, 1004966-done@bugs.debian.org, 1004999-done@bugs.debian.org, 1005007-done@bugs.debian.org, 1005010-done@bugs.debian.org, 1005013-done@bugs.debian.org, 1005052-done@bugs.debian.org, 1005148-done@bugs.debian.org, 1005158-done@bugs.debian.org, 1005217-done@bugs.debian.org, 1005232-done@bugs.debian.org, 1005288-done@bugs.debian.org, 1005340-done@bugs.debian.org, 1005351-done@bugs.debian.org, 1005355-done@bugs.debian.org, 1005372-done@bugs.debian.org, 1005694-done@bugs.debian.org, 1005861-done@bugs.debian.org, 1005868-done@bugs.debian.org, 1005949-done@bugs.debian.org, 1006010-done@bugs.debian.org, 1006137-done@bugs.debian.org, 1006138-done@bugs.debian.org, 1006165-done@bugs.debian.org, 1006187-done@bugs.debian.org, 1006192-done@bugs.debian.org, 1006215-done@bugs.debian.org, 1006222-done@bugs.debian.org, 1006342-done@bugs.debian.org, 1006371-done@bugs.debian.org, 1006402-done@bugs.debian.org, 1006493-done@bugs.debian.org, 1006522-done@bugs.debian.org, 1006752-done@bugs.debian.org, 1006768-done@bugs.debian.org, 1006796-done@bugs.debian.org, 1006797-done@bugs.debian.org, 1006883-done@bugs.debian.org, 1006905-done@bugs.debian.org, 1006916-done@bugs.debian.org, 1007001-done@bugs.debian.org, 1007249-done@bugs.debian.org, 1007261-done@bugs.debian.org, 1007262-done@bugs.debian.org, 1007747-done@bugs.debian.org, 1007878-done@bugs.debian.org, 1007909-done@bugs.debian.org, 1007920-done@bugs.debian.org, 1007947-done@bugs.debian.org, 1007963-done@bugs.debian.org, 1008031-done@bugs.debian.org, 1008074-done@bugs.debian.org, 1006446-done@bugs.debian.org
- Subject: Closing p-u requests for updates in 11.3
- From: "Adam D. Barratt" <adam@adam-barratt.org.uk>
- Date: Sat, 26 Mar 2022 11:59:13 +0000
- Message-id: <c4d20274f6d76a43fb574d2177f6e3af4235e4be.camel@adam-barratt.org.uk>
Package: release.debian.org Version: 11.3 Hi, The updates referenced by these bugs were included in stable as part of this morning's 11.3 point release. Regards, Adam
--- End Message ---