From 72f74d535af8393d475e22f71c14ebf779605c55 Mon Sep 17 00:00:00 2001 From: Miroslav Lisik Date: Tue, 1 Feb 2022 15:06:31 +0100 Subject: [PATCH 1/3] Rebased to latest upstream sources (see CHANGELOG.md) - Updated pcs-web-ui --- .gitignore | 3 ++ ...end-parameter-all-in-cluster-destroy.patch | 23 +++++++++ pcs.spec | 47 +++++++++++++------ simplify-ternar-expression.patch | 26 ++++++++++ sources | 6 +-- tests/tests.yml | 11 ++--- 6 files changed, 91 insertions(+), 25 deletions(-) create mode 100644 fix-backend-parameter-all-in-cluster-destroy.patch create mode 100644 simplify-ternar-expression.patch diff --git a/.gitignore b/.gitignore index 3210b8f..c6b545c 100644 --- a/.gitignore +++ b/.gitignore @@ -94,3 +94,6 @@ /pcs-0.10.11.tar.gz /pcs-web-ui-0.1.9.tar.gz /pcs-web-ui-node-modules-0.1.9.tar.xz +/pcs-web-ui-0.1.12.tar.gz +/pcs-web-ui-node-modules-0.1.12.tar.xz +/pcs-0.10.13.tar.gz diff --git a/fix-backend-parameter-all-in-cluster-destroy.patch b/fix-backend-parameter-all-in-cluster-destroy.patch new file mode 100644 index 0000000..1131d7f --- /dev/null +++ b/fix-backend-parameter-all-in-cluster-destroy.patch @@ -0,0 +1,23 @@ +From fa75f40361bc39cbd645b8014713e4c0ad0cda18 Mon Sep 17 00:00:00 2001 +From: Ivan Devat +Date: Mon, 24 Jan 2022 14:08:54 +0100 +Subject: [PATCH 2/2] fix backend parameter "all" in cluster destroy + +--- + src/app/backend/calls/destroyCluster.ts | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/app/backend/calls/destroyCluster.ts b/src/app/backend/calls/destroyCluster.ts +index b6e83a41..cf41ea42 100644 +--- a/src/app/backend/calls/destroyCluster.ts ++++ b/src/app/backend/calls/destroyCluster.ts +@@ -4,5 +4,5 @@ const { url } = endpoints.destroyCluster; + + export const destroyCluster = (clusterName: string): CallResult => + http.post(url({ clusterName }), { +- params: [["--all", "1"]], ++ params: [["all", "1"]], + }); +-- +2.31.1 + diff --git a/pcs.spec b/pcs.spec index 7217433..ca25668 100644 --- a/pcs.spec +++ b/pcs.spec @@ -1,5 +1,5 @@ Name: pcs -Version: 0.10.11 +Version: 0.10.13 Release: 1%{?dist} # https://docs.fedoraproject.org/en-US/packaging-guidelines/LicensingGuidelines/ # https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing#Good_Licenses @@ -17,8 +17,8 @@ Summary: Pacemaker Configuration System %global pcs_source_name %{name}-%{version_or_commit} # ui_commit can be determined by hash, tag or branch -%global ui_commit 0.1.9 -%global ui_modules_version 0.1.9 +%global ui_commit 0.1.12 +%global ui_modules_version 0.1.12 %global ui_src_name pcs-web-ui-%{ui_commit} %global pcs_snmp_pkg_name pcs-snmp @@ -51,8 +51,14 @@ Source88: https://rubygems.org/downloads/thin-%{version_rubygem_thin}.gem Source100: https://github.com/ClusterLabs/pcs-web-ui/archive/%{ui_commit}/%{ui_src_name}.tar.gz Source101: https://github.com/ClusterLabs/pcs-web-ui/releases/download/%{ui_commit}/pcs-web-ui-node-modules-%{ui_modules_version}.tar.xz +# pcs patches: <= 200 # Patch0: name.patch +# ui patches: >200 +# Patch201: name.patch +Patch201: simplify-ternar-expression.patch +Patch202: fix-backend-parameter-all-in-cluster-destroy.patch + # git for patches BuildRequires: git-core BuildRequires: make @@ -211,8 +217,6 @@ Provides: bundled(pyagentx) = %{pyagentx_version} SNMP agent that provides information about pacemaker cluster to the master agent (snmpd) %prep -%autosetup -p1 -S git -n %{pcs_source_name} - # -- following is inspired by python-simplejon.el5 -- # Update timestamps on the files touched by a patch, to avoid non-equal # .pyc/.pyo files across the multilib peers within a build @@ -252,12 +256,20 @@ update_times_patch(){ update_times ${patch_file_name} `diffstat -p1 -l ${patch_file_name}` } -# update_times_patch %{PATCH0} +# documentation for setup/autosetup/autopatch: +# * http://ftp.rpm.org/max-rpm/s1-rpm-inside-macros.html +# * https://rpm-software-management.github.io/rpm/manual/autosetup.html +# patch web-ui sources +%autosetup -D -T -b 100 -a 101 -S git -n %{ui_src_name} -N +%autopatch -p1 -m 201 +# update_times_patch %%{PATCH201} +update_times_patch %{PATCH201} +update_times_patch %{PATCH202} -# prepare dirs/files necessary for building web ui -# inside SOURCE100 is only directory %%{ui_src_name} -tar -xzf %SOURCE100 -C %{pcsd_public_dir} -tar -xf %SOURCE101 -C %{pcsd_public_dir}/%{ui_src_name} +# patch pcs sources +%autosetup -S git -n %{pcs_source_name} -N +%autopatch -p1 -M 200 +# update_times_patch %{PATCH0} # prepare dirs/files necessary for building all bundles # ----------------------------------------------------- @@ -275,19 +287,20 @@ cp -f %SOURCE42 rpm/ %define debug_package %{nil} ./autogen.sh -%{configure} --enable-local-build --enable-use-local-cache-only --enable-individual-bundling PYTHON=%{__python3} +%{configure} --enable-local-build --enable-use-local-cache-only --enable-individual-bundling PYTHON=%{__python3} ruby_CFLAGS="%{optflags}" ruby_LIBS="%{build_ldflags}" make all +# build pcs-web-ui +make -C %{_builddir}/%{ui_src_name} build BUILD_USE_EXISTING_NODE_MODULES=true + %install rm -rf $RPM_BUILD_ROOT pwd %make_install -# build web ui and put it to pcsd -make -C %{pcsd_public_dir}/%{ui_src_name} build BUILD_USE_EXISTING_NODE_MODULES=true -mv %{pcsd_public_dir}/%{ui_src_name}/build ${RPM_BUILD_ROOT}%{_libdir}/%{pcsd_public_dir}/ui -rm -r %{pcsd_public_dir}/%{ui_src_name} +# install pcs-web-ui +cp -r %{_builddir}/%{ui_src_name}/build ${RPM_BUILD_ROOT}%{_libdir}/%{pcsd_public_dir}/ui # symlink favicon into pcsd directories ln -fs /etc/favicon.png ${RPM_BUILD_ROOT}%{_libdir}/%{pcsd_public_dir}/images/favicon.png @@ -434,6 +447,10 @@ remove_all_tests %license pyagentx_LICENSE.txt %changelog +* Tue Feb 01 2022 Miroslav Lisik - 0.10.13-1 +- Rebased to latest upstream sources (see CHANGELOG.md) +- Updated pcs-web-ui + * Tue Oct 05 2021 Miroslav Lisik - 0.10.11-1 - Rebased to latest upstream sources (see CHANGELOG.md) - Updated pcs-web-ui diff --git a/simplify-ternar-expression.patch b/simplify-ternar-expression.patch new file mode 100644 index 0000000..0835fbd --- /dev/null +++ b/simplify-ternar-expression.patch @@ -0,0 +1,26 @@ +From f44cdc871a39da3960bd04565b4d1d5ffa19bd23 Mon Sep 17 00:00:00 2001 +From: Ivan Devat +Date: Thu, 20 Jan 2022 13:32:49 +0100 +Subject: [PATCH 1/2] simplify ternar expression + +The motivation for this is that covscan complains about it. +--- + src/app/view/share/useUrlTabs.ts | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/app/view/share/useUrlTabs.ts b/src/app/view/share/useUrlTabs.ts +index 7278dad8..a1136bf3 100644 +--- a/src/app/view/share/useUrlTabs.ts ++++ b/src/app/view/share/useUrlTabs.ts +@@ -13,7 +13,7 @@ export const useUrlTabs = >( + + return { + currentTab, +- matchedContext: tab !== null ? tab.matched : `/${defaultTab}`, ++ matchedContext: tab?.matched ?? `/${defaultTab}`, + tabList, + }; + }; +-- +2.31.1 + diff --git a/sources b/sources index 4fc469e..2c10a3d 100644 --- a/sources +++ b/sources @@ -1,6 +1,6 @@ SHA512 (pyagentx-0.4.pcs.2.tar.gz) = d4194fec9a3e5fefe3793d49b7fec1feafef294c7e613a06046c2993daeefc5cb39d7c5b2b402ff83e49b2d976953f862264288c758c0be09d997b5323cc558a SHA512 (dacite-1.6.0.tar.gz) = 034255f095589d309fe5805413d8b148f430cd20a0de305b7954083b530d516da1d8f3f00ebb5264a8cfb77f2b2a76f1e2d863e78bd191f1d85021c5553815da SHA512 (thin-1.8.1.gem) = c200ea03b7876b2a17b5875557fa967b8d01db20cc401811f314f3285f8249b8793e4709b7bc033a9c5813b9a51e3093c55f717b4a98b8fda171aa82813b7419 -SHA512 (pcs-0.10.11.tar.gz) = 220dcba99c479a6a7c6d35c7a4c04e46a336c0ff6454da997560c1e9c8fd39f41d16cbcc247502baa9508ac7e6a4cf7357f4d5bfccafc3d36164dbc7334877a4 -SHA512 (pcs-web-ui-0.1.9.tar.gz) = 6572c9afcc31cac4be89e474e6abb31f0e21ebbc4ebf6cbcff4d391496003b8abbfb44e99752447741b3ca8bab551d55ddd442a7ead94fa44240f9879776fc60 -SHA512 (pcs-web-ui-node-modules-0.1.9.tar.xz) = de1adaeb0c6e93f9487ccfa20f6c517d71d0a3d40ede98c09dac2fa4d7f3f1e58eb4d47b598b56e4d07ace5faf157229c53878e095eb0d11806dfa539e90261d +SHA512 (pcs-web-ui-0.1.12.tar.gz) = 0c1e3e71ce4cf5a1a39319b379985267642ed36d54bc18c6b0c4c5c9f8cd24e59c4f6137a64ffe704fe22a056960c3a205308dba17060680f3bbd92abe9ab9f4 +SHA512 (pcs-web-ui-node-modules-0.1.12.tar.xz) = 4f72f5f239613ab93ce1f32126050fae1b1c00ec3b73799a1ace3687c1a35370168ff1b6e070c2b661ece84e3ed4463189453247a2799f20dac1028b0c9b83f6 +SHA512 (pcs-0.10.13.tar.gz) = 6b32ee09430836364d7412edffce434f6c394027fddba56f5cd9f99d04da876ba79a9ea548633c2bb2fd418067a94296e3a540d9a6b250d473ac220a4f6be53d diff --git a/tests/tests.yml b/tests/tests.yml index 174884c..cc56ada 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -37,14 +37,9 @@ - fence-agents-ipmilan - fence-agents-scsi - fence-virt - - fontconfig - - openssl - pcs - - pcs-snmp - - python3-pip - python3-setuptools_scm - python3-wheel - - rubygem-json - rubygem-test-unit - wget required_services: @@ -54,12 +49,14 @@ - prepare-source: dir: ./ run: rpmbuild -bp {{tenv_workdir}}/*.spec --nodeps --define "_sourcedir {{tenv_workdir}}" --define "_builddir {{tenv_workdir}}/source" + # pcs-web-ui sources are deleted because there are conflicts during move of sources + # pcs-web-ui sources aren't needed during testing - flatten-source: dir: ./ - run: shopt -s dotglob; mv {{tenv_workdir}}/source/*/* {{tenv_workdir}}/source + run: rm -rf {{tenv_workdir}}/source/pcs-web-ui-*; shopt -s dotglob; mv {{tenv_workdir}}/source/*/* {{tenv_workdir}}/source - build_sources: dir: ./source - run: "export PYTHONPATH=/usr/lib64/pcs/pcs_bundled/packages/; export GEM_HOME=/usr/lib64/pcsd/vendor/bundle/; ./autogen.sh && ./configure" + run: "export PYTHONPATH=/usr/lib64/pcs/pcs_bundled/packages/; export GEM_HOME=/usr/lib64/pcsd/vendor/bundle/; ./autogen.sh && ./configure --enable-tests-only" - remove_sources: dir: ./source run: rm -rfv pcs From 2ed9e0e6430f78b657905bdcbc7dcc7b58cb5821 Mon Sep 17 00:00:00 2001 From: Miroslav Lisik Date: Tue, 28 Jun 2022 15:45:46 +0200 Subject: [PATCH 2/3] Rebased to latest upstream sources (see CHANGELOG.md) - Updated pcs-web-ui - Resolves: rhbz#2068452 --- .gitignore | 3 +++ ...end-parameter-all-in-cluster-destroy.patch | 23 ---------------- pcs.spec | 15 ++++++----- simplify-ternar-expression.patch | 26 ------------------- sources | 6 ++--- tests/tests.yml | 1 + 6 files changed, 15 insertions(+), 59 deletions(-) delete mode 100644 fix-backend-parameter-all-in-cluster-destroy.patch delete mode 100644 simplify-ternar-expression.patch diff --git a/.gitignore b/.gitignore index c6b545c..7ce9a40 100644 --- a/.gitignore +++ b/.gitignore @@ -97,3 +97,6 @@ /pcs-web-ui-0.1.12.tar.gz /pcs-web-ui-node-modules-0.1.12.tar.xz /pcs-0.10.13.tar.gz +/pcs-0.10.14.tar.gz +/pcs-web-ui-0.1.14.tar.gz +/pcs-web-ui-node-modules-0.1.14.tar.xz diff --git a/fix-backend-parameter-all-in-cluster-destroy.patch b/fix-backend-parameter-all-in-cluster-destroy.patch deleted file mode 100644 index 1131d7f..0000000 --- a/fix-backend-parameter-all-in-cluster-destroy.patch +++ /dev/null @@ -1,23 +0,0 @@ -From fa75f40361bc39cbd645b8014713e4c0ad0cda18 Mon Sep 17 00:00:00 2001 -From: Ivan Devat -Date: Mon, 24 Jan 2022 14:08:54 +0100 -Subject: [PATCH 2/2] fix backend parameter "all" in cluster destroy - ---- - src/app/backend/calls/destroyCluster.ts | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/app/backend/calls/destroyCluster.ts b/src/app/backend/calls/destroyCluster.ts -index b6e83a41..cf41ea42 100644 ---- a/src/app/backend/calls/destroyCluster.ts -+++ b/src/app/backend/calls/destroyCluster.ts -@@ -4,5 +4,5 @@ const { url } = endpoints.destroyCluster; - - export const destroyCluster = (clusterName: string): CallResult => - http.post(url({ clusterName }), { -- params: [["--all", "1"]], -+ params: [["all", "1"]], - }); --- -2.31.1 - diff --git a/pcs.spec b/pcs.spec index ca25668..801c861 100644 --- a/pcs.spec +++ b/pcs.spec @@ -1,5 +1,5 @@ Name: pcs -Version: 0.10.13 +Version: 0.10.14 Release: 1%{?dist} # https://docs.fedoraproject.org/en-US/packaging-guidelines/LicensingGuidelines/ # https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing#Good_Licenses @@ -17,8 +17,8 @@ Summary: Pacemaker Configuration System %global pcs_source_name %{name}-%{version_or_commit} # ui_commit can be determined by hash, tag or branch -%global ui_commit 0.1.12 -%global ui_modules_version 0.1.12 +%global ui_commit 0.1.14 +%global ui_modules_version 0.1.14 %global ui_src_name pcs-web-ui-%{ui_commit} %global pcs_snmp_pkg_name pcs-snmp @@ -56,8 +56,6 @@ Source101: https://github.com/ClusterLabs/pcs-web-ui/releases/download/%{ui_comm # ui patches: >200 # Patch201: name.patch -Patch201: simplify-ternar-expression.patch -Patch202: fix-backend-parameter-all-in-cluster-destroy.patch # git for patches BuildRequires: git-core @@ -263,8 +261,6 @@ update_times_patch(){ %autosetup -D -T -b 100 -a 101 -S git -n %{ui_src_name} -N %autopatch -p1 -m 201 # update_times_patch %%{PATCH201} -update_times_patch %{PATCH201} -update_times_patch %{PATCH202} # patch pcs sources %autosetup -S git -n %{pcs_source_name} -N @@ -447,6 +443,11 @@ remove_all_tests %license pyagentx_LICENSE.txt %changelog +* Tue Jun 28 2022 Miroslav Lisik - 0.10.14-1 +- Rebased to latest upstream sources (see CHANGELOG.md) +- Updated pcs-web-ui +- Resolves: rhbz#2068452 + * Tue Feb 01 2022 Miroslav Lisik - 0.10.13-1 - Rebased to latest upstream sources (see CHANGELOG.md) - Updated pcs-web-ui diff --git a/simplify-ternar-expression.patch b/simplify-ternar-expression.patch deleted file mode 100644 index 0835fbd..0000000 --- a/simplify-ternar-expression.patch +++ /dev/null @@ -1,26 +0,0 @@ -From f44cdc871a39da3960bd04565b4d1d5ffa19bd23 Mon Sep 17 00:00:00 2001 -From: Ivan Devat -Date: Thu, 20 Jan 2022 13:32:49 +0100 -Subject: [PATCH 1/2] simplify ternar expression - -The motivation for this is that covscan complains about it. ---- - src/app/view/share/useUrlTabs.ts | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/app/view/share/useUrlTabs.ts b/src/app/view/share/useUrlTabs.ts -index 7278dad8..a1136bf3 100644 ---- a/src/app/view/share/useUrlTabs.ts -+++ b/src/app/view/share/useUrlTabs.ts -@@ -13,7 +13,7 @@ export const useUrlTabs = >( - - return { - currentTab, -- matchedContext: tab !== null ? tab.matched : `/${defaultTab}`, -+ matchedContext: tab?.matched ?? `/${defaultTab}`, - tabList, - }; - }; --- -2.31.1 - diff --git a/sources b/sources index 2c10a3d..dd02551 100644 --- a/sources +++ b/sources @@ -1,6 +1,6 @@ SHA512 (pyagentx-0.4.pcs.2.tar.gz) = d4194fec9a3e5fefe3793d49b7fec1feafef294c7e613a06046c2993daeefc5cb39d7c5b2b402ff83e49b2d976953f862264288c758c0be09d997b5323cc558a SHA512 (dacite-1.6.0.tar.gz) = 034255f095589d309fe5805413d8b148f430cd20a0de305b7954083b530d516da1d8f3f00ebb5264a8cfb77f2b2a76f1e2d863e78bd191f1d85021c5553815da SHA512 (thin-1.8.1.gem) = c200ea03b7876b2a17b5875557fa967b8d01db20cc401811f314f3285f8249b8793e4709b7bc033a9c5813b9a51e3093c55f717b4a98b8fda171aa82813b7419 -SHA512 (pcs-web-ui-0.1.12.tar.gz) = 0c1e3e71ce4cf5a1a39319b379985267642ed36d54bc18c6b0c4c5c9f8cd24e59c4f6137a64ffe704fe22a056960c3a205308dba17060680f3bbd92abe9ab9f4 -SHA512 (pcs-web-ui-node-modules-0.1.12.tar.xz) = 4f72f5f239613ab93ce1f32126050fae1b1c00ec3b73799a1ace3687c1a35370168ff1b6e070c2b661ece84e3ed4463189453247a2799f20dac1028b0c9b83f6 -SHA512 (pcs-0.10.13.tar.gz) = 6b32ee09430836364d7412edffce434f6c394027fddba56f5cd9f99d04da876ba79a9ea548633c2bb2fd418067a94296e3a540d9a6b250d473ac220a4f6be53d +SHA512 (pcs-0.10.14.tar.gz) = c1760b733a4cf8fdd799adabaf857f45627bf227cf142c6deb5fffdf61368c8dde6dd28e2ca527bea54a320433f201dcaae96cb3875d1b55b0c541f188ac3d05 +SHA512 (pcs-web-ui-0.1.14.tar.gz) = aaaef6dcdd2255a3d48b9b03984debb61a5f83761fa70e5e2ecaf5c99bc38328cb8fc4347f2115b155ebcc862823ac6f89ef573f011ffe1118cb389e3cbe5661 +SHA512 (pcs-web-ui-node-modules-0.1.14.tar.xz) = 5042023409fb49fd0fee12d86794d410e3e28608e28e5bc419aa1cf98f17dd3668081821edbf4f6d660707d40697b3dbde697702c7039459325fb6a4171d5d93 diff --git a/tests/tests.yml b/tests/tests.yml index cc56ada..e732010 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -38,6 +38,7 @@ - fence-agents-scsi - fence-virt - pcs + - python3-pip - python3-setuptools_scm - python3-wheel - rubygem-test-unit From 0d1e3b09c6dda5722ed15de4a384436d1d4a717e Mon Sep 17 00:00:00 2001 From: Miroslav Lisik Date: Thu, 8 Sep 2022 11:39:42 +0200 Subject: [PATCH 3/3] Fixed ruby socket permissions --- fix-ruby-socket-permissions.patch | 46 +++++++++++++++++++++++++++++++ pcs.spec | 8 ++++-- 2 files changed, 52 insertions(+), 2 deletions(-) create mode 100644 fix-ruby-socket-permissions.patch diff --git a/fix-ruby-socket-permissions.patch b/fix-ruby-socket-permissions.patch new file mode 100644 index 0000000..acc5522 --- /dev/null +++ b/fix-ruby-socket-permissions.patch @@ -0,0 +1,46 @@ +From 70b2d3840336db9df0577b85c0a551b8867526d1 Mon Sep 17 00:00:00 2001 +From: Tomas Jelinek +Date: Wed, 10 Aug 2022 14:47:53 +0200 +Subject: [PATCH] fix ruby socket permissions + +--- + pcsd/rserver.rb | 23 +++++++++++++++++++++++ + 1 file changed, 23 insertions(+) + +diff --git a/pcsd/rserver.rb b/pcsd/rserver.rb +index c37f9df4..a54509fe 100644 +--- a/pcsd/rserver.rb ++++ b/pcsd/rserver.rb +@@ -7,6 +7,29 @@ require 'thin' + + require 'settings.rb' + ++# Replace Thin::Backends::UnixServer:connect ++# The only change is 'File.umask(0o777)' instead of 'File.umask(0)' to properly ++# set python-ruby socket permissions ++module Thin ++ module Backends ++ class UnixServer < Base ++ def connect ++ at_exit { remove_socket_file } # In case it crashes ++ old_umask = File.umask(0o077) ++ begin ++ EventMachine.start_unix_domain_server(@socket, UnixConnection, &method(:initialize_connection)) ++ # HACK EventMachine.start_unix_domain_server doesn't return the connection signature ++ # so we have to go in the internal stuff to find it. ++ @signature = EventMachine.instance_eval{@acceptors.keys.first} ++ ensure ++ File.umask(old_umask) ++ end ++ end ++ end ++ end ++end ++ ++ + def pack_response(response) + return [200, {}, [response.to_json.to_str]] + end +-- +2.37.3 + diff --git a/pcs.spec b/pcs.spec index 801c861..6662e20 100644 --- a/pcs.spec +++ b/pcs.spec @@ -1,6 +1,6 @@ Name: pcs Version: 0.10.14 -Release: 1%{?dist} +Release: 2%{?dist} # https://docs.fedoraproject.org/en-US/packaging-guidelines/LicensingGuidelines/ # https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing#Good_Licenses # GPLv2: pcs @@ -53,6 +53,7 @@ Source101: https://github.com/ClusterLabs/pcs-web-ui/releases/download/%{ui_comm # pcs patches: <= 200 # Patch0: name.patch +Patch0: fix-ruby-socket-permissions.patch # ui patches: >200 # Patch201: name.patch @@ -265,7 +266,7 @@ update_times_patch(){ # patch pcs sources %autosetup -S git -n %{pcs_source_name} -N %autopatch -p1 -M 200 -# update_times_patch %{PATCH0} +update_times_patch %{PATCH0} # prepare dirs/files necessary for building all bundles # ----------------------------------------------------- @@ -443,6 +444,9 @@ remove_all_tests %license pyagentx_LICENSE.txt %changelog +* Thu Sep 08 2022 Miroslav Lisik - 0.10.14-2 +- Fixed ruby socket permissions + * Tue Jun 28 2022 Miroslav Lisik - 0.10.14-1 - Rebased to latest upstream sources (see CHANGELOG.md) - Updated pcs-web-ui