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-05-15 23:53:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/distrobox (Old) and /work/SRC/openSUSE:Factory/.distrobox.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "distrobox" Fri May 15 23:53:22 2026 rev:35 rq:1353237 version:1.8.2.5 Changes: -------- --- /work/SRC/openSUSE:Factory/distrobox/distrobox.changes 2026-05-06 19:19:31.665115969 +0200 +++ /work/SRC/openSUSE:Factory/.distrobox.new.1966/distrobox.changes 2026-05-15 23:53:31.853160172 +0200 @@ -1,0 +2,6 @@ +Sun May 10 06:18:16 UTC 2026 - Bjørn Lie <[email protected]> + +- Add 892f93baaa066ea36b31b2f721332ca49c9e5ad7.patch: fix: flags + for read-only and recursive slave mount. + +------------------------------------------------------------------- New: ---- 892f93baaa066ea36b31b2f721332ca49c9e5ad7.patch ----------(New B)---------- New: - Add 892f93baaa066ea36b31b2f721332ca49c9e5ad7.patch: fix: flags for read-only and recursive slave mount. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ distrobox.spec ++++++ --- /var/tmp/diff_new_pack.smV9se/_old 2026-05-15 23:53:32.637192445 +0200 +++ /var/tmp/diff_new_pack.smV9se/_new 2026-05-15 23:53:32.637192445 +0200 @@ -22,9 +22,11 @@ Summary: Use any linux distribution inside your terminal License: GPL-3.0-only URL: https://github.com/89luca89/distrobox -Source: https://github.com/89luca89/distrobox/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz +Source: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: distrobox.conf Patch1: 0001-add-newline-when-appending-tty-group-via-printf-bsc-.patch +# PATCH-FIX-UPSTREAM 892f93baaa066ea36b31b2f721332ca49c9e5ad7.patch -- fix: flags for read-only and recursive slave mount +Patch2: %{url}/commit/892f93baaa066ea36b31b2f721332ca49c9e5ad7.patch Requires: %{_bindir}/basename Requires: %{_bindir}/find Requires: %{_bindir}/grep ++++++ 892f93baaa066ea36b31b2f721332ca49c9e5ad7.patch ++++++ >From 892f93baaa066ea36b31b2f721332ca49c9e5ad7 Mon Sep 17 00:00:00 2001 From: Fred Fu <[email protected]> Date: Mon, 4 May 2026 05:10:30 -0400 Subject: [PATCH] fix: flags for read-only and recursive slave mount (#2086) closes #2083 --- distrobox-create | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/distrobox-create b/distrobox-create index f1ccfb01c6..57e0ca2a20 100755 --- a/distrobox-create +++ b/distrobox-create @@ -678,8 +678,10 @@ generate_create_command() # so rslave/rshared bind propagation is not supported. if [ "$(uname -s)" = "Darwin" ]; then rslave="" + rorslave=":ro" else rslave=":rslave" + rorslave=":ro,rslave" fi # Set the container hostname the same as the container name. @@ -751,7 +753,7 @@ generate_create_command() tr ',' '\n' | grep -q "^ro$"; then result_command="${result_command} - --volume ${rootdir}:/run/host${rootdir}:ro${rslave}" + --volume ${rootdir}:/run/host${rootdir}${rorslave}" continue fi
