Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sddm for openSUSE:Factory checked in at 2021-03-12 13:30:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sddm (Old) and /work/SRC/openSUSE:Factory/.sddm.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sddm" Fri Mar 12 13:30:15 2021 rev:54 rq:878077 version:0.19.0 Changes: -------- --- /work/SRC/openSUSE:Factory/sddm/sddm.changes 2020-11-12 22:37:02.641994748 +0100 +++ /work/SRC/openSUSE:Factory/.sddm.new.2401/sddm.changes 2021-03-12 13:30:16.370069421 +0100 @@ -1,0 +2,6 @@ +Tue Mar 9 07:48:19 UTC 2021 - Fabian Vogt <[email protected]> + +- Add patch to reintroduce /etc/profile reading if fish is shell: + * 0001-Add-fish-etc-profile-and-HOME-.profile-sourcing-1331.patch + +------------------------------------------------------------------- New: ---- 0001-Add-fish-etc-profile-and-HOME-.profile-sourcing-1331.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sddm.spec ++++++ --- /var/tmp/diff_new_pack.wIkuTF/_old 2021-03-12 13:30:18.106071856 +0100 +++ /var/tmp/diff_new_pack.wIkuTF/_new 2021-03-12 13:30:18.110071862 +0100 @@ -1,7 +1,7 @@ # # spec file for package sddm # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -30,6 +30,7 @@ Source4: sddm-tmpfiles.conf # Patch0-100: PATCH-FIX-UPSTREAM Patch0: 0001-Use-PAM-s-username.patch +Patch1: 0001-Add-fish-etc-profile-and-HOME-.profile-sourcing-1331.patch # Not merged yet: https://github.com/sddm/sddm/pull/997 Patch50: 0001-Remove-suffix-for-Wayland-session.patch # Not merged yet: https://github.com/sddm/sddm/pull/1230 ++++++ 0001-Add-fish-etc-profile-and-HOME-.profile-sourcing-1331.patch ++++++ >From cf65e99eb8abfe2ee1ef7e2f7dc43862e83bf0ab Mon Sep 17 00:00:00 2001 From: soredake <[email protected]> Date: Tue, 9 Mar 2021 09:28:11 +0200 Subject: [PATCH] Add fish /etc/profile and $HOME/.profile sourcing (#1331) --- data/scripts/Xsession | 2 ++ data/scripts/wayland-session | 2 ++ 2 files changed, 4 insertions(+) diff --git a/data/scripts/Xsession b/data/scripts/Xsession index 5449810..d0c2605 100755 --- a/data/scripts/Xsession +++ b/data/scripts/Xsession @@ -39,6 +39,8 @@ case $SHELL in rm -f $xsess_tmp ;; */fish) + [ -f /etc/profile ] && . /etc/profile + [ -f $HOME/.profile ] && . $HOME/.profile xsess_tmp=`mktemp /tmp/xsess-env-XXXXXX` $SHELL --login -c "/bin/sh -c 'export -p' > $xsess_tmp" . $xsess_tmp diff --git a/data/scripts/wayland-session b/data/scripts/wayland-session index 1f90554..552a39f 100755 --- a/data/scripts/wayland-session +++ b/data/scripts/wayland-session @@ -43,6 +43,8 @@ case $SHELL in rm -f $wlsess_tmp ;; */fish) + [ -f /etc/profile ] && . /etc/profile + [ -f $HOME/.profile ] && . $HOME/.profile xsess_tmp=`mktemp /tmp/xsess-env-XXXXXX` $SHELL --login -c "/bin/sh -c 'export -p' > $xsess_tmp" . $xsess_tmp -- 2.25.1
