Your message dated Wed, 18 Feb 2026 23:00:15 +0000
with message-id <[email protected]>
and subject line Bug#1111263: fixed in golang-github-zombiezen-go-sqlite 1.4.2-1
has caused the Debian Bug report #1111263,
regarding ITP: golang-github-zombiezen-go-sqlite -- Low-level Go interface to
SQLite 3
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 [email protected]
immediately.)
--
1111263: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1111263
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Simon Josefsson <[email protected]>
* Package name : golang-github-zombiezen-go-sqlite
Version : 1.4.2-1
Upstream Author : Roxy Light
* URL : https://github.com/zombiezen/go-sqlite
* License : ISC
Programming Lang: Go
Description : Low-level Go interface to SQLite 3
zombiezen.com/go/sqlite
.
Go Reference (https://pkg.go.dev/zombiezen.com/go/sqlite)
.
This package provides a low-level Go interface to SQLite 3
(https://sqlite.org/). It is a fork of crawshaw.io/sqlite
(https://github.com/crawshaw/sqlite) that uses modernc.org/sqlite
(https://pkg.go.dev/modernc.org/sqlite), a CGo-free SQLite package. It
aims to be a mostly drop-in replacement for crawshaw.io/sqlite.
.
This package deliberately does not provide a database/sql driver. See
David Crawshaw's rationale (https://crawshaw.io/blog/go-and-sqlite) for an
in-depth explanation. If you want to use database/sql with SQLite without
CGo, use modernc.org/sqlite directly.
.
Features
.
* Full SQLite functionality via modernc.org/sqlite,
an automatically generated translation of the original C source code of
SQLite into Go
* Builds with CGO_ENABLED=0,
allowing cross-compiling and data race detection
* Allows access to SQLite-specific features
like blob I/O (https://pkg.go.dev/zombiezen.com/go/sqlite#Blob) and
user-defined functions
(https://pkg.go.dev/zombiezen.com/go/sqlite#Conn.CreateFunction)
* Includes a simple schema migration package
(https://pkg.go.dev/zombiezen.com/go/sqlite/sqlitemigration)
* Utilities for running embedded SQL scripts
(https://pkg.go.dev/zombiezen.com/go/sqlite/sqlitex#ExecScriptFS) using
the
Go 1.16 embedding feature (https://pkg.go.dev/embed)
* A go fix-like tool (/cmd/zombiezen-sqlite-migrate/README.md) for
migrating existing code using
crawshaw.io/sqlite
* A simple REPL (https://pkg.go.dev/zombiezen.com/go/sqlite/shell) for
debugging
.
Install
.
go get zombiezen.com/go/sqlite
.
While this library does not use CGo, make sure that you are building for
one of the supported architectures
(https://pkg.go.dev/modernc.org/sqlite#hdr-
Supported_platforms_and_architectures).
.
Getting Started
.
import (
"fmt"
.
"zombiezen.com/go/sqlite"
"zombiezen.com/go/sqlite/sqlitex"
)
.
// ...
.
// Open an in-memory database.
conn, err := sqlite.OpenConn(":memory:", sqlite.OpenReadWrite)
if err != nil {
return err
}
defer conn.Close()
.
// Execute a query.
err = sqlitex.ExecuteTransient(conn, "SELECT 'hello, world';",
&sqlitex.ExecOptions{
ResultFunc: func(stmt *sqlite.Stmt) error {
fmt.Println(stmt.ColumnText(0))
return nil
},
})
if err != nil {
return err
}
.
If you're creating a new application, see the package examples
(https://pkg.go.dev/zombiezen.com/go/sqlite#pkg-examples) or the
reference docs (https://pkg.go.dev/zombiezen.com/go/sqlite).
.
If you're looking to switch existing code that uses crawshaw.io/sqlite,
take a look at the migration docs (/cmd/zombiezen-sqlite-
migrate/README.md).
Used by litetlog, see: https://github.com/FiloSottile/torchwood/issues/27
https://salsa.debian.org/go-team/packages/golang-github-zombiezen-go-sqlite
https://salsa.debian.org/jas/golang-github-zombiezen-go-sqlite/-/pipelines
/Simon
signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: golang-github-zombiezen-go-sqlite
Source-Version: 1.4.2-1
Done: Simon Josefsson <[email protected]>
We believe that the bug you reported is fixed in the latest version of
golang-github-zombiezen-go-sqlite, which is due to be installed in the Debian
FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Simon Josefsson <[email protected]> (supplier of updated
golang-github-zombiezen-go-sqlite package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Sun, 15 Feb 2026 15:00:41 +0100
Source: golang-github-zombiezen-go-sqlite
Binary: golang-github-zombiezen-go-sqlite-dev
Architecture: source all
Version: 1.4.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <[email protected]>
Changed-By: Simon Josefsson <[email protected]>
Description:
golang-github-zombiezen-go-sqlite-dev - Low-level Go interface to SQLite 3
(library)
Closes: 1111263
Changes:
golang-github-zombiezen-go-sqlite (1.4.2-1) unstable; urgency=medium
.
* Initial release (Closes: #1111263)
Checksums-Sha1:
24e03fc6736003c37bb1162b4b57de0b8c57b633 3064
golang-github-zombiezen-go-sqlite_1.4.2-1.dsc
8fc5c9347164b90ce94afdc043121e27a18ce731 130495
golang-github-zombiezen-go-sqlite_1.4.2.orig.tar.gz
f11d9e18c0bd18ec779c8640f5a523bdfb1475a6 2752
golang-github-zombiezen-go-sqlite_1.4.2-1.debian.tar.xz
ec3d5278b83376e83cfcce14b1f7895041fffc18 82280
golang-github-zombiezen-go-sqlite-dev_1.4.2-1_all.deb
bff99367a170d3045aed44ecd785adadfe44a832 7419
golang-github-zombiezen-go-sqlite_1.4.2-1_amd64.buildinfo
Checksums-Sha256:
65b0c319debac7922291a1bd1e25d357bcade17bd3cb91de665961179eddecb1 3064
golang-github-zombiezen-go-sqlite_1.4.2-1.dsc
a686438951d8331b83d74ff32dc615aa50636b21b81db3a1390b4ba610fdaf23 130495
golang-github-zombiezen-go-sqlite_1.4.2.orig.tar.gz
b8e0ffd1ef41bd96d29e5643d2620a142220c9ffde18acbf11149eefe758fa55 2752
golang-github-zombiezen-go-sqlite_1.4.2-1.debian.tar.xz
73ed3c6958e73726a8c37823c5887c7470d5a84b87f26ee76b314152621cfe03 82280
golang-github-zombiezen-go-sqlite-dev_1.4.2-1_all.deb
f52db409f4d0cda2fe98de7a2e016ebbe8076d6e584bed6151e40a3cabfb2cc4 7419
golang-github-zombiezen-go-sqlite_1.4.2-1_amd64.buildinfo
Files:
dda9fb90a9953815976935cba1265ed7 3064 golang optional
golang-github-zombiezen-go-sqlite_1.4.2-1.dsc
290f702b3a61aa1f126f89c6f4c11eee 130495 golang optional
golang-github-zombiezen-go-sqlite_1.4.2.orig.tar.gz
d4440850422234753948af5004b57845 2752 golang optional
golang-github-zombiezen-go-sqlite_1.4.2-1.debian.tar.xz
35af21434358bb70bef37819148c2dc2 82280 golang optional
golang-github-zombiezen-go-sqlite-dev_1.4.2-1_all.deb
9d5770a28e2ec0706a67f4341cda9fd4 7419 golang optional
golang-github-zombiezen-go-sqlite_1.4.2-1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQNoBAEWCgMQFiEEo8ychwudMQq61M8vUXIrCP5HRaIFAmmR0kYUHHNpbW9uQGpv
c2Vmc3Nvbi5vcmfCHCYAmDMEXJLOtBYJKwYBBAHaRw8BAQdACIcrZIvhrxDBkK9f
V+QlTmXxo2naObDuGtw58YaxlOu0JVNpbW9uIEpvc2Vmc3NvbiA8c2ltb25Aam9z
ZWZzc29uLm9yZz6IlgQTFggAPgIbAwULCQgHAgYVCAkKCwIEFgIDAQIeAQIXgBYh
BLHSvRN1vst4TPT4xNc89jjFPAa+BQJn0XQkBQkNZGbwAAoJENc89jjFPAa+BtIA
/iR73CfBurG9y8pASh3cbGOMHpDZfMAtosu6jbpO69GHAP4p7l57d+iVty2VQMsx
+3TCSAvZkpr4P/FuTzZ8JZe8BrgzBFySz4EWCSsGAQQB2kcPAQEHQOxTCIOaeXAx
I2hIX4HK9bQTpNVei708oNr1Klm8qCGKiPUEGBYIACYCGwIWIQSx0r0Tdb7LeEz0
+MTXPPY4xTwGvgUCZ9F0SgUJDWRmSQCBdiAEGRYIAB0WIQSjzJyHC50xCrrUzy9R
cisI/kdFogUCXJLPgQAKCRBRcisI/kdFoqdMAQCgH45aseZgIrwKOvUOA9QfsmeE
8GZHYNuFHmM9FEQS6AD6A4x5aYvoY6lo98pgtw2HPDhmcCXFItjXCrV4A0GmJA4J
ENc89jjFPAa+wUUBAO64fbZek6FPlRK0DrlWsrjCXuLi6PUxyzCAY6lG2nhUAQC6
qobB9mkZlZ0qihy1x4JRtflqFcqqT9n7iUZkCDIiDbg4BFySz2oSCisGAQQBl1UB
BQEBB0AxlRumDW6nZY7A+VCfek9VpEx6PJmdJyYPt3lNHMd6HAMBCAeIfgQYFggA
JgIbDBYhBLHSvRN1vst4TPT4xNc89jjFPAa+BQJn0XTSBQkNZGboAAoJENc89jjF
PAa+0M0BAPPRq73kLnHYNDMniVBOzUdi2XeF32idjEWWfjvyIJUOAP4wZ+ALxIeh
is3Uw2BzGZE6ttXQ2Q+DeCJO3TPpIqaXDAAKCRBRcisI/kdFoo9ZAP4jzENvadDH
YNw0TfrcBvWQzBRa2K4fwTNT7JSkxwhYGwEAwjsgaphCBUQGCxHYu3wopKcFvnST
LKVAiS/Y2/nATAM=
=6SUW
-----END PGP SIGNATURE-----
pgpEdQLQkCjP2.pgp
Description: PGP signature
--- End Message ---