Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cockpit-machines for 
openSUSE:Factory checked in at 2022-05-26 21:45:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cockpit-machines (Old)
 and      /work/SRC/openSUSE:Factory/.cockpit-machines.new.2254 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cockpit-machines"

Thu May 26 21:45:17 2022 rev:6 rq:979392 version:243.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/cockpit-machines/cockpit-machines.changes        
2022-03-24 23:00:44.512409322 +0100
+++ 
/work/SRC/openSUSE:Factory/.cockpit-machines.new.2254/cockpit-machines.changes  
    2022-05-26 21:45:19.787203637 +0200
@@ -1,0 +2,6 @@
+Thu May 19 18:10:51 UTC 2022 - Jacek Tomasiak <jtomas...@suse.com>
+
+- Add suse-vv-install.patch to display SUSE hint for virt-viewer
+  installation (bsc#1199673)
+
+-------------------------------------------------------------------

New:
----
  suse-vv-install.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ cockpit-machines.spec ++++++
--- /var/tmp/diff_new_pack.83GKfw/_old  2022-05-26 21:45:20.659204218 +0200
+++ /var/tmp/diff_new_pack.83GKfw/_new  2022-05-26 21:45:20.663204221 +0200
@@ -29,6 +29,8 @@
 Source11:       node_modules.spec.inc
 %include %_sourcedir/node_modules.spec.inc
 Patch0:         hide-docs.patch
+# patches for node modules start with 100
+Patch100:       suse-vv-install.patch
 BuildArch:      noarch
 BuildRequires:  appstream-glib
 BuildRequires:  make
@@ -56,11 +58,12 @@
 
 If "virt-install" is installed, you can also create new virtual machines.
 
-
 %prep
-%autosetup -p1 -n %{name}
+%setup -n %{name}
+%patch0 -p1
 rm -f package-lock.json
 local-npm-registry %{_sourcedir} install --with=dev --legacy-peer-deps || ( 
find ~/.npm/_logs -name '*-debug.log' -print0 | xargs -0 cat; false)
+%patch100 -p1
 
 %build
 cp -r %{_datadir}/cockpit/devel/lib src/lib

++++++ suse-vv-install.patch ++++++
diff --git 
a/node_modules/@patternfly/react-console/dist/esm/components/DesktopViewer/MoreInformationDefaultContent.js
 
b/node_modules/@patternfly/react-console/dist/esm/components/DesktopViewer/MoreInformationDefaultContent.js
index fef60fe..47f02b6 100644
--- 
a/node_modules/@patternfly/react-console/dist/esm/components/DesktopViewer/MoreInformationDefaultContent.js
+++ 
b/node_modules/@patternfly/react-console/dist/esm/components/DesktopViewer/MoreInformationDefaultContent.js
@@ -12,6 +12,7 @@ export const MoreInformationDefaultContent = ({ 
textMoreInfoContent = (React.cre
     React.createElement(DescriptionList, { isHorizontal: true },
         React.createElement(MoreInformationInstallVariant, { os: "RHEL, 
CentOS", content: "sudo yum install virt-viewer" }),
         React.createElement(MoreInformationInstallVariant, { os: "Fedora", 
content: "sudo dnf install virt-viewer" }),
+        React.createElement(MoreInformationInstallVariant, { os: "SLE, 
openSUSE", content: "sudo zypper install virt-viewer" }),
         React.createElement(MoreInformationInstallVariant, { os: "Ubuntu, 
Debian", content: "sudo apt-get install virt-viewer" }),
         React.createElement(MoreInformationInstallVariant, { os: "Windows" },
             React.createElement("div", null,
diff --git 
a/node_modules/@patternfly/react-console/dist/js/components/DesktopViewer/MoreInformationDefaultContent.js
 
b/node_modules/@patternfly/react-console/dist/js/components/DesktopViewer/MoreInformationDefaultContent.js
index d74617f..30e58aa 100644
--- 
a/node_modules/@patternfly/react-console/dist/js/components/DesktopViewer/MoreInformationDefaultContent.js
+++ 
b/node_modules/@patternfly/react-console/dist/js/components/DesktopViewer/MoreInformationDefaultContent.js
@@ -16,6 +16,7 @@ exports.MoreInformationDefaultContent = ({ 
textMoreInfoContent = (react_1.defaul
     react_1.default.createElement(react_core_1.DescriptionList, { 
isHorizontal: true },
         
react_1.default.createElement(MoreInformationInstallVariant_1.MoreInformationInstallVariant,
 { os: "RHEL, CentOS", content: "sudo yum install virt-viewer" }),
         
react_1.default.createElement(MoreInformationInstallVariant_1.MoreInformationInstallVariant,
 { os: "Fedora", content: "sudo dnf install virt-viewer" }),
+        
react_1.default.createElement(MoreInformationInstallVariant_1.MoreInformationInstallVariant,
 { os: "SLE, openSUSE", content: "sudo zypper install virt-viewer" }),
         
react_1.default.createElement(MoreInformationInstallVariant_1.MoreInformationInstallVariant,
 { os: "Ubuntu, Debian", content: "sudo apt-get install virt-viewer" }),
         
react_1.default.createElement(MoreInformationInstallVariant_1.MoreInformationInstallVariant,
 { os: "Windows" },
             react_1.default.createElement("div", null,
diff --git 
a/node_modules/@patternfly/react-console/src/components/DesktopViewer/MoreInformationDefaultContent.tsx
 
b/node_modules/@patternfly/react-console/src/components/DesktopViewer/MoreInformationDefaultContent.tsx
index 02db247..68fb507 100644
--- 
a/node_modules/@patternfly/react-console/src/components/DesktopViewer/MoreInformationDefaultContent.tsx
+++ 
b/node_modules/@patternfly/react-console/src/components/DesktopViewer/MoreInformationDefaultContent.tsx
@@ -24,6 +24,7 @@ export const MoreInformationDefaultContent: 
React.FunctionComponent<MoreInformat
     <DescriptionList isHorizontal>
       <MoreInformationInstallVariant os="RHEL, CentOS" content="sudo yum 
install virt-viewer" />
       <MoreInformationInstallVariant os="Fedora" content="sudo dnf install 
virt-viewer" />
+      <MoreInformationInstallVariant os="SLE, openSUSE" content="sudo zypper 
install virt-viewer" />
       <MoreInformationInstallVariant os="Ubuntu, Debian" content="sudo apt-get 
install virt-viewer" />
       <MoreInformationInstallVariant os="Windows">
         <div>

Reply via email to