Your message dated Sat, 17 Jan 2026 04:49:31 +0000
with message-id <[email protected]>
and subject line Bug#1123878: fixed in atuin 18.8.0-1.2
has caused the Debian Bug report #1123878,
regarding atuin - upcoming dirs and sysinfo updates.
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.)


-- 
1123878: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1123878
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: atuin

I hope to update the dirs crate to version 6 and the sysinfo crate to version
0.37 soon (probablly not at the same time).

For dirs, atuin just needs a dependency bump, for sysinfo some code changes
are needed, but I was able to make those code changes in a way that the
code builds with both the old and new version.
diff -Nru atuin-18.8.0/debian/changelog atuin-18.8.0/debian/changelog
--- atuin-18.8.0/debian/changelog       2025-12-05 17:20:14.000000000 +0000
+++ atuin-18.8.0/debian/changelog       2025-12-23 12:17:58.000000000 +0000
@@ -1,3 +1,10 @@
+atuin (18.8.0-1.2) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Relax cargo dependency on sysinfo.
+
+ -- Peter Michael Green <[email protected]>  Tue, 23 Dec 2025 12:17:58 +0000
+
 atuin (18.8.0-1.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru atuin-18.8.0/debian/patches/relax-deps.patch 
atuin-18.8.0/debian/patches/relax-deps.patch
--- atuin-18.8.0/debian/patches/relax-deps.patch        2025-12-05 
17:20:14.000000000 +0000
+++ atuin-18.8.0/debian/patches/relax-deps.patch        2025-12-23 
12:17:58.000000000 +0000
@@ -1,7 +1,8 @@
-Forwarded: not-needed
-Last-Update: 2025-08-17
---- a/Cargo.toml
-+++ b/Cargo.toml
+--- atuin-18.8.0.orig/Cargo.toml
++++ atuin-18.8.0/Cargo.toml
+@@ -27 +27 @@
+-directories = "5.0.1"
++directories = ">= 5.0.1"
 @@ -30 +30 @@
 -interim = { version = "0.2.0", features = ["time_0_3"] }
 +interim = { version = "0.1.2", features = ["time"] }
@@ -19,8 +20,8 @@
 @@ -54 +54 @@
 -version = "0.11"
 +version = "0.12"
---- a/crates/atuin-client/Cargo.toml
-+++ b/crates/atuin-client/Cargo.toml
+--- atuin-18.8.0.orig/crates/atuin-client/Cargo.toml
++++ atuin-18.8.0/crates/atuin-client/Cargo.toml
 @@ -42 +42 @@
 -minspan = "0.1.5"
 +minspan = "0.1.1"
@@ -30,13 +31,13 @@
 @@ -71 +71 @@
 -crossterm = { version = "0.28.1", features = ["serde"] }
 +crossterm = { version = "0.28", features = ["serde"] }
---- a/crates/atuin-history/Cargo.toml
-+++ b/crates/atuin-history/Cargo.toml
+--- atuin-18.8.0.orig/crates/atuin-history/Cargo.toml
++++ atuin-18.8.0/crates/atuin-history/Cargo.toml
 @@ -21 +21 @@
 -crossterm = { version = "0.28.1", features = ["use-dev-tty"] }
 +crossterm = { version = "0.28", features = ["use-dev-tty"] }
---- a/crates/atuin/Cargo.toml
-+++ b/crates/atuin/Cargo.toml
+--- atuin-18.8.0.orig/crates/atuin/Cargo.toml
++++ atuin-18.8.0/crates/atuin/Cargo.toml
 @@ -65 +65 @@
 -indicatif = "0.18.0"
 +indicatif = "0.17"
@@ -48,8 +49,8 @@
 -ratatui = "0.29.0"
 +colored = "3"
 +ratatui = "0.28"
---- a/crates/atuin-daemon/Cargo.toml
-+++ b/crates/atuin-daemon/Cargo.toml
+--- atuin-18.8.0.orig/crates/atuin-daemon/Cargo.toml
++++ atuin-18.8.0/crates/atuin-daemon/Cargo.toml
 @@ -29 +29 @@
 -dashmap = "5.5.3"
 +dashmap = "6.1"
diff -Nru atuin-18.8.0/debian/patches/series atuin-18.8.0/debian/patches/series
--- atuin-18.8.0/debian/patches/series  2025-12-05 17:12:58.000000000 +0000
+++ atuin-18.8.0/debian/patches/series  2025-12-23 12:17:58.000000000 +0000
@@ -4,6 +4,7 @@
 disable-email-verify.patch
 disable-check-update.patch
 disable-benches.patch
-relax-deps.patch
 change-sqlx-runtime.patch
 disable-tests-requiring-db.patch
+relax-deps.patch
+sysinfo-0.37.patch
diff -Nru atuin-18.8.0/debian/patches/sysinfo-0.37.patch 
atuin-18.8.0/debian/patches/sysinfo-0.37.patch
--- atuin-18.8.0/debian/patches/sysinfo-0.37.patch      1970-01-01 
00:00:00.000000000 +0000
+++ atuin-18.8.0/debian/patches/sysinfo-0.37.patch      2025-12-23 
12:17:58.000000000 +0000
@@ -0,0 +1,58 @@
+--- atuin-18.8.0.orig/crates/atuin/Cargo.toml
++++ atuin-18.8.0/crates/atuin/Cargo.toml
+@@ -25 +25 @@
+-sysinfo = "0.30.7"
++sysinfo = ">= 0.30.7"
+--- atuin-18.8.0.orig/crates/atuin-common/Cargo.toml
++++ atuin-18.8.0/crates/atuin-common/Cargo.toml
+@@ -25 +25 @@
+-sysinfo = "0.30.7"
++sysinfo = ">= 0.30.7"
+Index: atuin-18.8.0/crates/atuin-common/src/shell.rs
+===================================================================
+--- atuin-18.8.0.orig/crates/atuin-common/src/shell.rs
++++ atuin-18.8.0/crates/atuin-common/src/shell.rs
+@@ -56,7 +56,10 @@ impl Shell {
+             .process(process.parent().expect("Atuin running with no parent!"))
+             .expect("Process with parent pid does not exist");
+ 
+-        let shell = parent.name().trim().to_lowercase();
++        //depending on the version of sysinfo, parent.name may return either a
++        //str or an OsStr, use as_ref to get a consistent OsStr.
++        let shell: &OsStr = parent.name().as_ref();
++        let shell = shell.to_string_lossy().trim().to_lowercase();
+         let shell = shell.strip_prefix('-').unwrap_or(&shell);
+ 
+         Shell::from_string(shell.to_string())
+@@ -170,7 +173,10 @@ pub fn shell_name(parent: Option<&Proces
+             .expect("Process with parent pid does not exist")
+     };
+ 
+-    let shell = parent.name().trim().to_lowercase();
++    //depending on the version of sysinfo, parent.name may return either a
++    //str or an OsStr, use as_ref to get a consistent OsStr.
++    let shell: &OsStr = parent.name().as_ref();
++    let shell = shell.to_string_lossy().trim().to_lowercase();
+     let shell = shell.strip_prefix('-').unwrap_or(&shell);
+ 
+     shell.to_string()
+Index: atuin-18.8.0/crates/atuin/src/command/client/doctor.rs
+===================================================================
+--- atuin-18.8.0.orig/crates/atuin/src/command/client/doctor.rs
++++ atuin-18.8.0/crates/atuin/src/command/client/doctor.rs
+@@ -213,6 +213,15 @@ struct SystemInfo {
+     pub disks: Vec<DiskInfo>,
+ }
+ 
++//depending on the version of sysinfo, cpu_arch may return either a String
++//or an Option<String>, this trait works around that difference.
++trait DummyUnwrap<D> {
++    fn unwrap_or_else(self, dummy: D) -> Self where Self: Sized {
++        self
++    }
++}
++impl <T> DummyUnwrap<T> for String {}
++
+ impl SystemInfo {
+     pub fn new() -> Self {
+         let disks = Disks::new_with_refreshed_list();

--- End Message ---
--- Begin Message ---
Source: atuin
Source-Version: 18.8.0-1.2
Done: NoisyCoil <[email protected]>

We believe that the bug you reported is fixed in the latest version of
atuin, 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.
NoisyCoil <[email protected]> (supplier of updated atuin 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: Sat, 17 Jan 2026 01:43:52 +0100
Source: atuin
Architecture: source
Version: 18.8.0-1.2
Distribution: unstable
Urgency: medium
Maintainer: Blair Noctis <[email protected]>
Changed-By: NoisyCoil <[email protected]>
Closes: 1123878 1124092 1124145
Changes:
 atuin (18.8.0-1.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
 .
   [ Peter Michael Green ]
   * Relax cargo dependency on directories and sysinfo.
     (Closes: #1123878)
 .
   [ NoisyCoil ]
   * Stop patching the ratatui dependency, bump to v0.29. Thanks to
     werdahias. (Closes: #1124092)
   * Bump the typed-builder dependency to v0.23. (Closes: #1124145)
   * Bump the axum and axum-server dependencies to v0.8.
Checksums-Sha1:
 ad75e90418e259624f3aee4dc2b37f58132b0bbc 3126 atuin_18.8.0-1.2.dsc
 59b4bcfd899d1d6b169a751e78b4afbcae078245 8284 atuin_18.8.0-1.2.debian.tar.xz
 f3a527683cf67c07f21908425ed59e2f8dfb3b57 7184 atuin_18.8.0-1.2_source.buildinfo
Checksums-Sha256:
 96d05c1b7a4a45973e50ad053dd5b61b2ad3e642e36f45a4ecd65302e2680d54 3126 
atuin_18.8.0-1.2.dsc
 de9ad2446d20a2a435b3a3a972c817aca864425b196769e5485e3d79700936f0 8284 
atuin_18.8.0-1.2.debian.tar.xz
 a4895ce9f74d82a4498bf304f6e6bbf1901ee0fb83c70b82f8f63a9082fde574 7184 
atuin_18.8.0-1.2_source.buildinfo
Files:
 4c975205046b8d38b829b4b615bbfb54 3126 utils optional atuin_18.8.0-1.2.dsc
 dbcdbc8e2eba2daf1fc595690a8e09fb 8284 utils optional 
atuin_18.8.0-1.2.debian.tar.xz
 bcd02d4e8bba1b812960ab2c809aae4c 7184 utils optional 
atuin_18.8.0-1.2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

wr0EARYKAG8Fgmlq3GgJECSH/ff4H0wjRxQAAAAAAB4AIHNhbHRAbm90YXRpb25z
LnNlcXVvaWEtcGdwLm9yZyvvF47LWcdOG0HnQwyrA7O7ap936QqiJPo5vS/dSZrk
FiEExtrZwQRwX0G4cqC9JIf99/gfTCMAAHW6AP4o6QnrAkAjvtblbXhFVzBNDK25
O6ZhgHNxLc9sTnhutQD6AuK4nfOpcCTbIj4nUejZCd6mQWZ6NldXzgFOD63qrws=
=8gMA
-----END PGP SIGNATURE-----

Attachment: pgp5Wy2guWakl.pgp
Description: PGP signature


--- End Message ---

Reply via email to