commit wsdd for openSUSE:Factory

2024-04-10 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2024-04-10 17:48:43

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.29460 (New)


Package is "wsdd"

Wed Apr 10 17:48:43 2024 rev:13 rq:1166627 version:0.8

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2024-02-25 
14:05:54.708449857 +0100
+++ /work/SRC/openSUSE:Factory/.wsdd.new.29460/wsdd.changes 2024-04-10 
17:48:47.828955601 +0200
@@ -1,0 +2,22 @@
+Wed Apr  3 10:52:13 UTC 2024 - Herbert Graeber 
+
+- Fix build for SLE_15
+
+---
+Sun Mar 31 14:32:53 UTC 2024 - Herbert Graeber 
+
+- Update to version 0.8
+  * Configuration files for firewalld added
+  * Show device type and allow filtering in API's list command
+  * Add option --metadata-timeout to set the timeout for the HTTP-based
+metadata exchange
+  * The employed UUID is now read from /etc/{machine-id,hostid} before
+falling by back to the UUID derivation from the host name.
+  * Handle addresses with zone id by ignoring the interface part
+  * Do not crash with asyncio future error when non-existing interface is
+provided
+- Remove some bashism from wsdd-init.sh
+- Use the unmodified service files from wsdd for Leap 15.5 and below, else
+  reuse ws-discovery-udp service from firewalld
+
+---

Old:

  ws-discovery-udp.xml
  wsdd-0.7.1.tar.xz

New:

  wsdd-0.8.tar.xz



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.xY2QTS/_old  2024-04-10 17:48:50.485053349 +0200
+++ /var/tmp/diff_new_pack.xY2QTS/_new  2024-04-10 17:48:50.489053496 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   wsdd
-Version:0.7.1
+Version:0.8
 Release:0
 Summary:A Web Service Discovery host daemon
 License:MIT
@@ -25,13 +25,12 @@
 Source: 
https://github.com/christgau/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.xz
 Source1:%{name}-init.sh
 Source2:%{name}.service.in
+%if 0%{suse_version} >= 1599
 Source3:%{name}.xml
+%endif
 Source4:sysconfig.%{name}
 Source5:%{name}.conf
 Source6:%{name}-user.conf
-%if 0%{suse_version} < 1599
-Source7:ws-discovery-udp.xml
-%endif
 Patch1: %{name}-shebang.patch
 BuildRequires:  firewall-macros
 BuildRequires:  python-rpm-macros
@@ -69,10 +68,12 @@
 install -m 755 -D %{SOURCE1} %{buildroot}%{_libexecdir}/wsdd-init.sh
 mkdir -p %{buildroot}%{_unitdir}
 sed 's#@LIBEXECDIR@#%{_libexecdir}#' %{SOURCE2} 
>%{buildroot}%{_unitdir}/wsdd.service
+%if 0%{?sle_version} <  150600
+install -m 644 -D etc/firewalld/services/wsdd.xml 
%{buildroot}%{_prefix}/lib/firewalld/services/wsdd.xml
+%else
 install -m 644 -D %{SOURCE3} 
%{buildroot}%{_prefix}/lib/firewalld/services/wsdd.xml
-%if 0%{suse_version} < 1599
-install -m 644 -D %{SOURCE7} 
%{buildroot}%{_prefix}/lib/firewalld/services/ws-discovery-udp.xml
 %endif
+install -m 644 -D etc/firewalld/services/wsdd-http.xml 
%{buildroot}%{_prefix}/lib/firewalld/services/wsdd-http.xml
 install -m 644 -D %{SOURCE4} %{buildroot}%{_fillupdir}/sysconfig.wsdd
 install -m 755 -d %{buildroot}%{_sbindir}
 ln -sf %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}
@@ -82,7 +83,9 @@
 mkdir -p %{buildroot}%{_localstatedir}/lib/wsdd
 mkdir -p %{buildroot}%{_sysusersdir}
 install -m 0644 %{SOURCE6} %{buildroot}%{_sysusersdir}/
-%python3_fix_shebang
+%?python3_fix_shebang
+
+%check
 
 %pre -f %{name}.pre
 %service_add_pre wsdd.service
@@ -111,9 +114,7 @@
 %dir %{_prefix}/lib/firewalld
 %dir %{_prefix}/lib/firewalld/services
 %{_prefix}/lib/firewalld/services/wsdd.xml
-%if 0%{suse_version} < 1599
-%{_prefix}/lib/firewalld/services/ws-discovery-udp.xml
-%endif
+%{_prefix}/lib/firewalld/services/wsdd-http.xml
 %{_fillupdir}/sysconfig.%{name}
 %{_sysusersdir}/%{name}-user.conf
 %dir %attr(0755,wsdd,wsdd) %ghost /run/%{name}

++ wsdd-0.7.1.tar.xz -> wsdd-0.8.tar.xz ++

++ wsdd-init.sh ++
--- /var/tmp/diff_new_pack.xY2QTS/_old  2024-04-10 17:48:50.597057470 +0200
+++ /var/tmp/diff_new_pack.xY2QTS/_new  2024-04-10 17:48:50.601057618 +0200
@@ -19,8 +19,7 @@
 
 WSDD_INTERFACE_ARGS=""
 if [ "${WSDD_INTERFACES}" != "" ]; then
-  for intf in "${WSDD_INTERFACES[@]}"; do
-echo ${intf}
+  for intf in ${WSDD_INTERFACES}; do
 WSDD_INTERFACE_ARGS="${WSDD_INTERFACE_ARGS} -i \"${intf}\""
   done
 fi

++ wsdd.xml ++
--- /var/tmp/diff_new_pack.xY2QTS/_old  2024-04-10 17:48:50.677060415 +0200
+++ /var/tmp/diff_new_pack.xY2QTS/_new  2024-04-10 17:48:50.681060562 +0200
@@ -2,7 +2,7 @@
 
   

commit wsdd for openSUSE:Factory

2024-02-25 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2024-02-25 14:05:23

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.1770 (New)


Package is "wsdd"

Sun Feb 25 14:05:23 2024 rev:12 rq:1150031 version:0.7.1

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2024-02-21 
17:52:57.247785256 +0100
+++ /work/SRC/openSUSE:Factory/.wsdd.new.1770/wsdd.changes  2024-02-25 
14:05:54.708449857 +0100
@@ -1,0 +2,6 @@
+Fri Feb 23 10:39:43 UTC 2024 - pgaj...@suse.com
+
+- remove dependency on /usr/bin/python3 using
+  %python3_fix_shebang macro, [bsc#1212476]
+
+---



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.8NE4pU/_old  2024-02-25 14:05:55.208467952 +0100
+++ /var/tmp/diff_new_pack.8NE4pU/_new  2024-02-25 14:05:55.208467952 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package wsdd
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,6 +34,7 @@
 %endif
 Patch1: %{name}-shebang.patch
 BuildRequires:  firewall-macros
+BuildRequires:  python-rpm-macros
 BuildRequires:  sysuser-tools
 Requires(post): %fillup_prereq
 Supplements:samba
@@ -81,6 +82,7 @@
 mkdir -p %{buildroot}%{_localstatedir}/lib/wsdd
 mkdir -p %{buildroot}%{_sysusersdir}
 install -m 0644 %{SOURCE6} %{buildroot}%{_sysusersdir}/
+%python3_fix_shebang
 
 %pre -f %{name}.pre
 %service_add_pre wsdd.service


commit wsdd for openSUSE:Factory

2023-10-19 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2023-10-19 22:47:31

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.1945 (New)


Package is "wsdd"

Thu Oct 19 22:47:31 2023 rev:10 rq:1118630 version:0.7.1

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2023-04-06 
16:02:01.178347750 +0200
+++ /work/SRC/openSUSE:Factory/.wsdd.new.1945/wsdd.changes  2023-10-19 
22:49:59.344241551 +0200
@@ -1,0 +2,5 @@
+Wed Oct 18 15:36:03 UTC 2023 - Herbert Graeber 
+
+- Leap 15.6 has no python 3.10 anymore, use 3.11 instead
+
+---



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.T2okNy/_old  2023-10-19 22:49:59.944263313 +0200
+++ /var/tmp/diff_new_pack.T2okNy/_new  2023-10-19 22:49:59.948263458 +0200
@@ -56,7 +56,11 @@
 %build
 %sysusers_generate_pre %{SOURCE6} %{name} %{name}-user.conf
 %if 0%{suse_version} <= 1500
+%if 0%{?sle_version} < 150600
 sed -i '1s/python3/python3.10/' src/wsdd.py
+%else
+sed -i '1s/python3/python3.11/' src/wsdd.py
+%endif
 %endif
 
 %install


commit wsdd for openSUSE:Factory

2023-04-06 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2023-04-06 16:02:00

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.19717 (New)


Package is "wsdd"

Thu Apr  6 16:02:00 2023 rev:9 rq:1077706 version:0.7.1

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2023-04-04 
21:17:40.512140251 +0200
+++ /work/SRC/openSUSE:Factory/.wsdd.new.19717/wsdd.changes 2023-04-06 
16:02:01.178347750 +0200
@@ -1,0 +2,7 @@
+Thu Apr  6 08:34:14 UTC 2023 - Dominique Leuenberger 
+
+- Fix previous change: really limit the forced change to python
+  3.10 on suse_version <= 1500 (up to SLE/Leap 15); newer products
+  already use python 3.10 (or newer) as default.
+
+---



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.lVdRHx/_old  2023-04-06 16:02:01.774351067 +0200
+++ /var/tmp/diff_new_pack.lVdRHx/_new  2023-04-06 16:02:01.782351112 +0200
@@ -55,7 +55,7 @@
 
 %build
 %sysusers_generate_pre %{SOURCE6} %{name} %{name}-user.conf
-%if 0%{suse_version} <= 1599
+%if 0%{suse_version} <= 1500
 sed -i '1s/python3/python3.10/' src/wsdd.py
 %endif
 


commit wsdd for openSUSE:Factory

2023-04-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2023-04-04 21:17:22

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.19717 (New)


Package is "wsdd"

Tue Apr  4 21:17:22 2023 rev:8 rq:1077023 version:0.7.1

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2022-07-04 
11:32:23.771976871 +0200
+++ /work/SRC/openSUSE:Factory/.wsdd.new.19717/wsdd.changes 2023-04-04 
21:17:40.512140251 +0200
@@ -1,0 +2,18 @@
+Mon Apr  3 15:09:07 UTC 2023 - Herbert Graeber 
+
+- Force the use of python 3.10 for openSUSE Leap
+
+---
+Mon Apr  3 10:14:25 UTC 2023 - Herbert Graeber 
+
+- Update to version 0.7.1
+  * GitHub workflow for static analyses added (syntax, format, and type checks 
are performed).
+  * Added EnvironmentFile and according example for systemd-based distros.
+  * Make wsdd work (again) on MacOS (#139). Thanks to Eugene Gershnik.
+  * Application profile for UFW has been added (#169)
+  * Use of implicitly present async I/O loop instead created one for API 
servers. Fixes regression due
+to changed API in Python 3.10 (see #162)
+  * Source code is spiced with type hints now.
+  * man page moved to section 8.
+
+---

Old:

  wsdd-0.7.0.tar.xz

New:

  wsdd-0.7.1.tar.xz



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.wZEPLn/_old  2023-04-04 21:17:41.176144484 +0200
+++ /var/tmp/diff_new_pack.wZEPLn/_new  2023-04-04 21:17:41.184144535 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package wsdd
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:   wsdd
-Version:0.7.0
+Version:0.7.1
 Release:0
 Summary:A Web Service Discovery host daemon
 License:MIT
@@ -34,7 +34,6 @@
 %endif
 Patch1: %{name}-shebang.patch
 BuildRequires:  firewall-macros
-BuildRequires:  python3
 BuildRequires:  sysuser-tools
 Requires(post): %fillup_prereq
 Supplements:samba
@@ -56,10 +55,13 @@
 
 %build
 %sysusers_generate_pre %{SOURCE6} %{name} %{name}-user.conf
+%if 0%{suse_version} <= 1599
+sed -i '1s/python3/python3.10/' src/wsdd.py
+%endif
 
 %install
 install -m 755 -D src/wsdd.py %{buildroot}%{_sbindir}/%{name}
-install -m 644 -D man/wsdd.1 %{buildroot}/%{_mandir}/man1/wsdd.1
+install -m 644 -D man/wsdd.8 %{buildroot}/%{_mandir}/man8/wsdd.8
 install -m 755 -D %{SOURCE1} %{buildroot}%{_libexecdir}/wsdd-init.sh
 mkdir -p %{buildroot}%{_unitdir}
 sed 's#@LIBEXECDIR@#%{_libexecdir}#' %{SOURCE2} 
>%{buildroot}%{_unitdir}/wsdd.service
@@ -96,7 +98,7 @@
 %license LICENSE
 %doc README.md
 %{_sbindir}/%{name}
-%{_mandir}/man1/wsdd.1%{?ext_man}
+%{_mandir}/man8/wsdd.8%{?ext_man}
 %{_sbindir}/rc%{name}
 %{_unitdir}/wsdd.service
 %{_libexecdir}/wsdd-init.sh

++ wsdd-0.7.0.tar.xz -> wsdd-0.7.1.tar.xz ++


commit wsdd for openSUSE:Factory

2022-07-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2022-07-04 11:32:22

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.1548 (New)


Package is "wsdd"

Mon Jul  4 11:32:22 2022 rev:7 rq:986253 version:0.7.0

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2022-02-26 
17:01:40.631532039 +0100
+++ /work/SRC/openSUSE:Factory/.wsdd.new.1548/wsdd.changes  2022-07-04 
11:32:23.771976871 +0200
@@ -1,0 +2,5 @@
+Wed Jun 29 20:07:14 UTC 2022 - Herbert Graeber 
+
+- Include ws-discovey-udp service from firewalld 1.0 as part of wsdd.xml
+
+---

New:

  ws-discovery-udp.xml



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.nz3ylZ/_old  2022-07-04 11:32:24.427977928 +0200
+++ /var/tmp/diff_new_pack.nz3ylZ/_new  2022-07-04 11:32:24.431977934 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package wsdd
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,6 +29,9 @@
 Source4:sysconfig.%{name}
 Source5:%{name}.conf
 Source6:%{name}-user.conf
+%if 0%{suse_version} < 1599
+Source7:ws-discovery-udp.xml
+%endif
 Patch1: %{name}-shebang.patch
 BuildRequires:  firewall-macros
 BuildRequires:  python3
@@ -61,6 +64,9 @@
 mkdir -p %{buildroot}%{_unitdir}
 sed 's#@LIBEXECDIR@#%{_libexecdir}#' %{SOURCE2} 
>%{buildroot}%{_unitdir}/wsdd.service
 install -m 644 -D %{SOURCE3} 
%{buildroot}%{_prefix}/lib/firewalld/services/wsdd.xml
+%if 0%{suse_version} < 1599
+install -m 644 -D %{SOURCE7} 
%{buildroot}%{_prefix}/lib/firewalld/services/ws-discovery-udp.xml
+%endif
 install -m 644 -D %{SOURCE4} %{buildroot}%{_fillupdir}/sysconfig.wsdd
 install -m 755 -d %{buildroot}%{_sbindir}
 ln -sf %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}
@@ -98,6 +104,9 @@
 %dir %{_prefix}/lib/firewalld
 %dir %{_prefix}/lib/firewalld/services
 %{_prefix}/lib/firewalld/services/wsdd.xml
+%if 0%{suse_version} < 1599
+%{_prefix}/lib/firewalld/services/ws-discovery-udp.xml
+%endif
 %{_fillupdir}/sysconfig.%{name}
 %{_sysusersdir}/%{name}-user.conf
 %dir %attr(0755,wsdd,wsdd) %ghost /run/%{name}

++ ws-discovery-udp.xml ++


  WS-Discovery (UDP)
  Web Services Dynamic Discovery (WS-Discovery) is a technical 
specification that defines a multicast discovery protocol to locate services on 
a local network.
  
  


++ wsdd.xml ++
--- /var/tmp/diff_new_pack.nz3ylZ/_old  2022-07-04 11:32:24.515978069 +0200
+++ /var/tmp/diff_new_pack.nz3ylZ/_new  2022-07-04 11:32:24.519978075 +0200
@@ -3,6 +3,6 @@
   wsdd
   Web Service Discovery
   
-  
+  
 
 


commit wsdd for openSUSE:Factory

2022-02-26 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2022-02-26 17:01:40

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.1958 (New)


Package is "wsdd"

Sat Feb 26 17:01:40 2022 rev:6 rq:957436 version:0.7.0

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2021-11-28 
21:30:20.214032416 +0100
+++ /work/SRC/openSUSE:Factory/.wsdd.new.1958/wsdd.changes  2022-02-26 
17:01:40.631532039 +0100
@@ -1,0 +2,5 @@
+Thu Feb 24 16:36:40 UTC 2022 - Callum Farmer 
+
+- Add CONFIG parameter to %sysusers_generate_pre
+
+---



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.459ZXg/_old  2022-02-26 17:01:41.423532164 +0100
+++ /var/tmp/diff_new_pack.459ZXg/_new  2022-02-26 17:01:41.427532165 +0100
@@ -52,7 +52,7 @@
 %patch1 -p1
 
 %build
-%sysusers_generate_pre %{SOURCE6} %{name}
+%sysusers_generate_pre %{SOURCE6} %{name} %{name}-user.conf
 
 %install
 install -m 755 -D src/wsdd.py %{buildroot}%{_sbindir}/%{name}


commit wsdd for openSUSE:Factory

2021-11-28 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2021-11-28 21:30:01

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.1895 (New)


Package is "wsdd"

Sun Nov 28 21:30:01 2021 rev:5 rq:933929 version:0.7.0

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2021-05-13 
22:18:09.459671524 +0200
+++ /work/SRC/openSUSE:Factory/.wsdd.new.1895/wsdd.changes  2021-11-28 
21:30:20.214032416 +0100
@@ -1,0 +2,25 @@
+Thu Nov 25 21:36:20 UTC 2021 - Herbert Graeber 
+
+- Update sources
+
+---
+Wed Nov 24 22:42:35 UTC 2021 - Herbert Graeber 
+
+- Version 0.7.0
+  * Using the server interface it is now possible to start and stop the
+host functionality (discoverable device) without terminating and
+restarting the daemon.
+  * Support multiple IP addresses in 'hello' messages from other hosts (#89)
+  * Support interfaces with IPv6-only configuration (#94)
+  * Re-enable 'probe' command of API (#116)
+  * Removed code marked as deprecated starting with Python 3.10.
+  * The example systemd unit file now uses DynamicUser instead of the unsafe
+nobody:nobody combination. It also employs the rundir as chroot directory.
+  * Code changed to use asyncio instead of selector-based
+  * The server interface does not close connections after each command anymore.
+  * For the 'list' command of the server interface, the list of discovered
+devices is terminated with a line containing only a single dot ('.')
+  * Log device discovery only once per address and interface
+- Some systemd hardening
+
+---

Old:

  wsdd-0.6.4.tar.xz

New:

  wsdd-0.7.0.tar.xz



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.YL8umw/_old  2021-11-28 21:30:20.882030278 +0100
+++ /var/tmp/diff_new_pack.YL8umw/_new  2021-11-28 21:30:20.886030266 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   wsdd
-Version:0.6.4
+Version:0.7.0
 Release:0
 Summary:A Web Service Discovery host daemon
 License:MIT

++ wsdd-0.6.4.tar.xz -> wsdd-0.7.0.tar.xz ++

++ wsdd.service.in ++
--- /var/tmp/diff_new_pack.YL8umw/_old  2021-11-28 21:30:21.042029767 +0100
+++ /var/tmp/diff_new_pack.YL8umw/_new  2021-11-28 21:30:21.046029754 +0100
@@ -4,6 +4,14 @@
 Wants=network-online.target
 
 [Service]
+ProtectSystem=full
+ProtectHome=true
+ProtectHostname=true
+ProtectKernelTunables=true
+ProtectKernelModules=true
+ProtectKernelLogs=true
+ProtectControlGroups=true
+RestrictRealtime=true
 Type=simple
 AmbientCapabilities=CAP_SYS_CHROOT
 Environment= WSDD_ARGS=-p


commit wsdd for openSUSE:Factory

2021-05-13 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2021-05-13 22:18:06

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.2988 (New)


Package is "wsdd"

Thu May 13 22:18:06 2021 rev:4 rq:892175 version:0.6.4

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2021-04-12 
12:33:40.957046427 +0200
+++ /work/SRC/openSUSE:Factory/.wsdd.new.2988/wsdd.changes  2021-05-13 
22:18:09.459671524 +0200
@@ -1,0 +2,5 @@
+Tue May 11 08:00:55 UTC 2021 - Dirk M??ller 
+
+- stop owning directories provided by filesystem rpm (bsc#1184786)
+
+---



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.MQgSUc/_old  2021-05-13 22:18:09.975669555 +0200
+++ /var/tmp/diff_new_pack.MQgSUc/_new  2021-05-13 22:18:09.995669479 +0200
@@ -93,9 +93,7 @@
 %{_mandir}/man1/wsdd.1%{?ext_man}
 %{_sbindir}/rc%{name}
 %{_unitdir}/wsdd.service
-%dir %{_libexecdir}
 %{_libexecdir}/wsdd-init.sh
-%dir %{_tmpfilesdir}
 %{_tmpfilesdir}/wsdd.conf
 %dir %{_prefix}/lib/firewalld
 %dir %{_prefix}/lib/firewalld/services


commit wsdd for openSUSE:Factory

2021-04-12 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2021-04-12 12:33:40

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.2401 (New)


Package is "wsdd"

Mon Apr 12 12:33:40 2021 rev:3 rq:883673 version:0.6.4

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2021-03-04 
17:34:50.658621792 +0100
+++ /work/SRC/openSUSE:Factory/.wsdd.new.2401/wsdd.changes  2021-04-12 
12:33:40.957046427 +0200
@@ -1,0 +2,6 @@
+Wed Apr  7 18:42:01 UTC 2021 - Herbert Graeber 
+
+- Remove unneccessary (and deprecated) PermissionsStartOnly=true
+  (boo#1184446).
+
+---



Other differences:
--
++ wsdd.service.in ++
--- /var/tmp/diff_new_pack.VkMNfQ/_old  2021-04-12 12:33:41.493047256 +0200
+++ /var/tmp/diff_new_pack.VkMNfQ/_new  2021-04-12 12:33:41.493047256 +0200
@@ -6,7 +6,6 @@
 [Service]
 Type=simple
 AmbientCapabilities=CAP_SYS_CHROOT
-PermissionsStartOnly=true
 Environment= WSDD_ARGS=-p
 ExecStartPre=@LIBEXECDIR@/wsdd-init.sh
 EnvironmentFile=-/run/wsdd/env-vars


commit wsdd for openSUSE:Factory

2021-03-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package wsdd for openSUSE:Factory checked in 
at 2021-03-04 17:34:49

Comparing /work/SRC/openSUSE:Factory/wsdd (Old)
 and  /work/SRC/openSUSE:Factory/.wsdd.new.2378 (New)


Package is "wsdd"

Thu Mar  4 17:34:49 2021 rev:2 rq:876786 version:0.6.4

Changes:

--- /work/SRC/openSUSE:Factory/wsdd/wsdd.changes2021-03-03 
18:34:09.323346330 +0100
+++ /work/SRC/openSUSE:Factory/.wsdd.new.2378/wsdd.changes  2021-03-04 
17:34:50.658621792 +0100
@@ -1,0 +2,7 @@
+Thu Mar  4 15:29:33 UTC 2021 - Dominique Leuenberger 
+
+- Add %sysusers_requires: we are creating users in pre, thus need
+  to ensure to have the tooling ready prior to package installation
+  (boo#1183047).
+
+---



Other differences:
--
++ wsdd.spec ++
--- /var/tmp/diff_new_pack.OmvJNH/_old  2021-03-04 17:34:51.406622535 +0100
+++ /var/tmp/diff_new_pack.OmvJNH/_new  2021-03-04 17:34:51.410622540 +0100
@@ -30,13 +30,14 @@
 Source5:%{name}.conf
 Source6:%{name}-user.conf
 Patch1: %{name}-shebang.patch
-BuildRequires:  sysuser-tools
 BuildRequires:  firewall-macros
 BuildRequires:  python3
+BuildRequires:  sysuser-tools
 Requires(post): %fillup_prereq
 Supplements:samba
 Supplements:samba-ad-dc
 BuildArch:  noarch
+%sysusers_requires
 
 %description
 wsdd implements a Web Service Discovery host daemon. This enables (Samba) 
hosts,