Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package distrobox for openSUSE:Factory checked in at 2026-03-27 16:51:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/distrobox (Old) and /work/SRC/openSUSE:Factory/.distrobox.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "distrobox" Fri Mar 27 16:51:03 2026 rev:32 rq:1343118 version:1.8.2.4 Changes: -------- --- /work/SRC/openSUSE:Factory/distrobox/distrobox.changes 2026-03-04 21:11:30.676038520 +0100 +++ /work/SRC/openSUSE:Factory/.distrobox.new.8177/distrobox.changes 2026-03-27 16:53:48.730260295 +0100 @@ -1,0 +2,6 @@ +Fri Mar 20 12:43:14 UTC 2026 - Thomas Blume <[email protected]> + +- append newline after manually adding tty group (bsc#12594379) + add 0001-add-newline-when-appending-tty-group-via-printf-bsc-.patch + +------------------------------------------------------------------- New: ---- 0001-add-newline-when-appending-tty-group-via-printf-bsc-.patch ----------(New B)---------- New:- append newline after manually adding tty group (bsc#12594379) add 0001-add-newline-when-appending-tty-group-via-printf-bsc-.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ distrobox.spec ++++++ --- /var/tmp/diff_new_pack.oxllQd/_old 2026-03-27 16:53:49.334285580 +0100 +++ /var/tmp/diff_new_pack.oxllQd/_new 2026-03-27 16:53:49.334285580 +0100 @@ -26,6 +26,7 @@ Source1: distrobox.conf # https://github.com/89luca89/distrobox/pull/2007 Patch0: fix-distrobox-to-newer-zypper.patch +Patch1: 0001-add-newline-when-appending-tty-group-via-printf-bsc-.patch Requires: %{_bindir}/basename Requires: %{_bindir}/find Requires: %{_bindir}/grep ++++++ 0001-add-newline-when-appending-tty-group-via-printf-bsc-.patch ++++++ >From bca2e95527ea2956c7542aa630ad544c3e2c93ee Mon Sep 17 00:00:00 2001 From: Thomas Blume <[email protected]> Date: Fri, 20 Mar 2026 13:40:42 +0100 Subject: [PATCH] add newline when appending tty group via printf (bsc#1259437) --- distrobox-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrobox-init b/distrobox-init index 2490878..950565d 100755 --- a/distrobox-init +++ b/distrobox-init @@ -1904,7 +1904,7 @@ printf "distrobox: Setting up devpts mounts...\n" # First we need to ensure we have a tty group to assign /dev/pts to if ! grep -q tty /etc/group; then - printf "%s" 'tty:x:5:' >> /etc/group + printf "%s\n" 'tty:x:5:' >> /etc/group fi # Instantiate a new /dev/pts mount, this will ensure pseudoterminals are container-scoped -- 2.53.0
