Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package iotop for openSUSE:Factory checked in at 2023-09-11 21:22:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/iotop (Old) and /work/SRC/openSUSE:Factory/.iotop.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "iotop" Mon Sep 11 21:22:12 2023 rev:28 rq:1110251 version:0.6git.20230403 Changes: -------- --- /work/SRC/openSUSE:Factory/iotop/iotop.changes 2022-10-18 16:21:40.754760399 +0200 +++ /work/SRC/openSUSE:Factory/.iotop.new.1766/iotop.changes 2023-09-11 21:26:49.267295841 +0200 @@ -1,0 +2,6 @@ +Fri Sep 8 14:05:49 UTC 2023 - Manfred Schwarb <[email protected]> + +- Update to head checkout 4b2e1aa: + * data.py get_cmdline: use errors=replace for unicode errors + +------------------------------------------------------------------- Old: ---- iotop-HEAD-a14256a.tar.gz New: ---- iotop-HEAD-4b2e1aa.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ iotop.spec ++++++ --- /var/tmp/diff_new_pack.LhBZng/_old 2023-09-11 21:26:50.383335627 +0200 +++ /var/tmp/diff_new_pack.LhBZng/_new 2023-09-11 21:26:50.387335769 +0200 @@ -1,7 +1,7 @@ # # spec file for package iotop # -# 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 @@ -16,8 +16,8 @@ # -%define gitdate 20220308 -%define gitversion HEAD-a14256a +%define gitdate 20230403 +%define gitversion HEAD-4b2e1aa Name: iotop Version: 0.6git.%{gitdate} @@ -40,7 +40,7 @@ which process is the I/O going on. %prep -%autosetup -p1 -n %{name}-%{gitversion} +%autosetup -n %{name}-%{gitversion} %build %python3_build ++++++ iotop-HEAD-a14256a.tar.gz -> iotop-HEAD-4b2e1aa.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iotop-HEAD-a14256a/iotop/data.py new/iotop-HEAD-4b2e1aa/iotop/data.py --- old/iotop-HEAD-a14256a/iotop/data.py 2022-03-08 00:21:27.000000000 +0100 +++ new/iotop-HEAD-4b2e1aa/iotop/data.py 2023-04-03 15:02:22.000000000 +0200 @@ -307,7 +307,7 @@ def get_cmdline(self): # A process may exec, so we must always reread its cmdline try: - proc_cmdline = open('/proc/%d/cmdline' % self.pid) + proc_cmdline = open('/proc/%d/cmdline' % self.pid, errors='replace') cmdline = proc_cmdline.read(4096) except IOError: return '{no such process}'
