Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package patterns-microos for openSUSE:Factory checked in at 2023-01-17 17:34:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/patterns-microos (Old) and /work/SRC/openSUSE:Factory/.patterns-microos.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "patterns-microos" Tue Jan 17 17:34:49 2023 rev:60 rq:1058720 version:5.0 Changes: -------- --- /work/SRC/openSUSE:Factory/patterns-microos/patterns-microos.changes 2022-11-26 18:45:13.839133631 +0100 +++ /work/SRC/openSUSE:Factory/.patterns-microos.new.32243/patterns-microos.changes 2023-01-17 17:35:02.625087095 +0100 @@ -1,0 +2,15 @@ +Wed Jan 11 15:55:38 UTC 2023 - Luciano Santos <luc1...@opensuse.org> + +- Add transactional-update-notifier to the microos_desktop_common + Pattern. This is a long waited change that will provide Desktop + notifications about transactional updates succeeding/failing for + MicroOS Desktop users. +- Improve readability of FOR loop shell construct, in the install + directive, by assigning all the Patterns iterated by FOR to the + PATTERNS variable (for i in $PATTERNS) instead of passing them + directly (for i in pattern1 pattern2 pattern3 ...). +- Rename patterns-microos-rpmlintrc to patterns-microos.rpmlintrc. + While the former is obviously supported, the latter is both + preferred and recommended by upstream. + +------------------------------------------------------------------- Old: ---- patterns-microos-rpmlintrc New: ---- patterns-microos.rpmlintrc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ patterns-microos.spec ++++++ --- /var/tmp/diff_new_pack.ykzJHb/_old 2023-01-17 17:35:03.293090970 +0100 +++ /var/tmp/diff_new_pack.ykzJHb/_new 2023-01-17 17:35:03.297090993 +0100 @@ -1,7 +1,7 @@ # # spec file for package patterns-microos # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,7 +25,7 @@ License: MIT Group: Metapackages URL: http://en.opensuse.org/Patterns -Source0: %name-rpmlintrc +Source0: %name.rpmlintrc ExclusiveArch: x86_64 %arm32 aarch64 ppc64le s390x riscv64 %description @@ -401,6 +401,10 @@ Requires: avahi %endif +# Desktop notifications about transactional update succeeding/failing +# for the masses +Requires: transactional-update-notifier + %description desktop-common Packages required for openSUSE MicroOS Desktops. @@ -685,11 +689,15 @@ # empty on purpose %install -mkdir -p %buildroot/usr/share/doc/packages/patterns-microos/ -for i in basesystem base base_zypper base_microdnf base_packagekit \ - defaults hardware ima_evm ra_agent ra_verifier apparmor selinux cockpit \ - sssd_ldap cloud desktop-common desktop-gnome desktop-kde onlyDVD alt_onlyDVD; do - echo "This file marks the pattern $i to be installed." >%buildroot/usr/share/doc/packages/patterns-microos/$i.txt +mkdir -p %{buildroot}%{_docdir}/patterns-microos/ +PATTERNS=' + basesystem base base_zypper base_microdnf base_packagekit defaults hardware + sssd_ldap ima_evm ra_agent ra_verifier apparmor selinux cockpit cloud + desktop-common desktop-gnome desktop-kde onlyDVD alt_onlyDVD +' +for i in $PATTERNS; do + echo "This file marks the pattern $i to be installed." \ + > %{buildroot}%{_docdir}/patterns-microos/${i}.txt done %files basesystem ++++++ patterns-microos-rpmlintrc -> patterns-microos.rpmlintrc ++++++