Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package scout for openSUSE:Factory checked in at 2021-04-29 01:36:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/scout (Old) and /work/SRC/openSUSE:Factory/.scout.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "scout" Thu Apr 29 01:36:28 2021 rev:43 rq:888123 version:0.2.5+20210424.3bff388 Changes: -------- --- /work/SRC/openSUSE:Factory/scout/scout.changes 2021-04-08 22:13:02.977531462 +0200 +++ /work/SRC/openSUSE:Factory/.scout.new.12324/scout.changes 2021-04-29 01:36:35.954425260 +0200 @@ -1,0 +2,11 @@ +Sat Apr 24 03:51:49 UTC 2021 - [email protected] + +- Update to version 0.2.5+20210424.3bff388: + * Work with newer python3-rpm + +------------------------------------------------------------------- +Sat Mar 27 19:33:01 UTC 2021 - Sasi Olin <[email protected]> + +- Rename command-not-found to scout-command-not-found and add command-not-found provides + +------------------------------------------------------------------- Old: ---- scout-0.2.4+20210325.6c2d9f3.tar.xz New: ---- scout-0.2.5+20210424.3bff388.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ scout.spec ++++++ --- /var/tmp/diff_new_pack.Xtwkwo/_old 2021-04-29 01:36:36.466425985 +0200 +++ /var/tmp/diff_new_pack.Xtwkwo/_new 2021-04-29 01:36:36.470425991 +0200 @@ -18,7 +18,7 @@ %define cnfrepo zypp Name: scout -Version: 0.2.4+20210325.6c2d9f3 +Version: 0.2.5+20210424.3bff388 Release: 0 Summary: Indexing Package Properties License: MIT @@ -39,14 +39,17 @@ %description The scout tool helps with indexing of various package properties. -%package -n command-not-found +%package command-not-found Summary: Command Not Found extension for shell Group: System/Packages Requires: python3 Requires: python3-rpm Requires: scout = %{version}-%{release} +Obsoletes: command-not-found < %{version}-%{release} +Provides: command-not-found +Conflicts: command-not-found -%description -n command-not-found +%description command-not-found The "command not found" message is not very helpful. If e.g. the unzip command is not found but it's available in a package, it would be very interesting if the system could tell that the command is currently not @@ -112,7 +115,7 @@ %config %{_sysconfdir}/bash_completion.d/* %{_mandir}/man1/scout* -%files -n command-not-found -f command-not-found.lang +%files command-not-found -f command-not-found.lang %defattr(-,root,root) %doc handlers/bin/README %{_bindir}/cnf ++++++ _service ++++++ --- /var/tmp/diff_new_pack.Xtwkwo/_old 2021-04-29 01:36:36.510426048 +0200 +++ /var/tmp/diff_new_pack.Xtwkwo/_new 2021-04-29 01:36:36.514426054 +0200 @@ -2,8 +2,8 @@ <service name="tar_scm" mode="disabled"> <param name="url">https://github.com/openSUSE/scout.git</param> <param name="scm">git</param> - <param name="versionformat">0.2.4+%cd.%h</param> - <param name="revision">v0.2.4</param> + <param name="versionformat">0.2.5+%cd.%h</param> + <param name="revision">v0.2.5</param> <param name="submodules">enable</param> <param name="changesgenerate">enable</param> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.Xtwkwo/_old 2021-04-29 01:36:36.538426088 +0200 +++ /var/tmp/diff_new_pack.Xtwkwo/_new 2021-04-29 01:36:36.538426088 +0200 @@ -1,4 +1,4 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/openSUSE/scout.git</param> - <param name="changesrevision">6c2d9f37a967e8c2e92e6fb6d983c7d5a30e0264</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">3bff388969f9f6c9a29cf5f3689f1c4b59b3db4e</param></service></servicedata> \ No newline at end of file ++++++ scout-0.2.4+20210325.6c2d9f3.tar.xz -> scout-0.2.5+20210424.3bff388.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/scout-0.2.4+20210325.6c2d9f3/VERSION new/scout-0.2.5+20210424.3bff388/VERSION --- old/scout-0.2.4+20210325.6c2d9f3/VERSION 2021-03-25 15:00:24.000000000 +0100 +++ new/scout-0.2.5+20210424.3bff388/VERSION 2021-04-24 05:51:17.000000000 +0200 @@ -1 +1 @@ -0.2.3 +0.2.5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/scout-0.2.4+20210325.6c2d9f3/handlers/bin/command-not-found new/scout-0.2.5+20210424.3bff388/handlers/bin/command-not-found --- old/scout-0.2.4+20210325.6c2d9f3/handlers/bin/command-not-found 2021-03-25 15:00:24.000000000 +0100 +++ new/scout-0.2.5+20210424.3bff388/handlers/bin/command-not-found 2021-04-24 05:51:17.000000000 +0200 @@ -79,7 +79,11 @@ ts = rpm.TransactionSet() mi = ts.dbMatch('basenames', term) try: - return next(mi)['name'].decode() + ret = next(mi)['name'] + if isinstance(ret, str): + return ret + else: + return ret.decode() except StopIteration: return None
