Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package diffoscope for openSUSE:Factory checked in at 2022-04-26 20:16:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/diffoscope (Old) and /work/SRC/openSUSE:Factory/.diffoscope.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "diffoscope" Tue Apr 26 20:16:13 2022 rev:32 rq:972927 version:210 Changes: -------- --- /work/SRC/openSUSE:Factory/diffoscope/diffoscope.changes 2022-04-08 22:47:00.542279865 +0200 +++ /work/SRC/openSUSE:Factory/.diffoscope.new.1538/diffoscope.changes 2022-04-26 20:18:02.504780520 +0200 @@ -1,0 +2,10 @@ +Tue Apr 19 14:29:46 UTC 2022 - Sebastian Wagner <sebix+novell....@sebix.at> + +- - update to version 210: + - Make sure that PATH is properly mangled for all diffoscope actions, not + just when running comparators. +- update to version 209: + - Update R test fixture for R 4.2.x series. (Closes: #1008446) + - Update minimum version of Black to prevent test failure on Ubuntu jammy. + +------------------------------------------------------------------- Old: ---- diffoscope-209.tar.bz2 diffoscope-209.tar.bz2.asc New: ---- diffoscope-210.tar.bz2 diffoscope-210.tar.bz2.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ diffoscope.spec ++++++ --- /var/tmp/diff_new_pack.pi629U/_old 2022-04-26 20:18:03.004781124 +0200 +++ /var/tmp/diff_new_pack.pi629U/_new 2022-04-26 20:18:03.012781134 +0200 @@ -17,7 +17,7 @@ Name: diffoscope -Version: 209 +Version: 210 Release: 0 Summary: In-depth comparison of files, archives, and directories License: GPL-3.0-or-later ++++++ diffoscope-209.tar.bz2 -> diffoscope-210.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/diffoscope-209/debian/changelog new/diffoscope-210/debian/changelog --- old/diffoscope-209/debian/changelog 2022-03-27 10:23:06.000000000 +0200 +++ new/diffoscope-210/debian/changelog 2022-04-15 10:02:29.000000000 +0200 @@ -1,3 +1,11 @@ +diffoscope (210) unstable; urgency=medium + + [ Mattia Rizzolo ] + * Make sure that PATH is properly mangled for all diffoscope actions, not + just when running comparators. + + -- Chris Lamb <la...@debian.org> Fri, 15 Apr 2022 09:02:25 +0100 + diffoscope (209) unstable; urgency=medium * Update R test fixture for R 4.2.x series. (Closes: #1008446) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/diffoscope-209/diffoscope/__init__.py new/diffoscope-210/diffoscope/__init__.py --- old/diffoscope-209/diffoscope/__init__.py 2022-03-27 10:23:06.000000000 +0200 +++ new/diffoscope-210/diffoscope/__init__.py 2022-04-15 10:02:29.000000000 +0200 @@ -17,4 +17,4 @@ # You should have received a copy of the GNU General Public License # along with diffoscope. If not, see <https://www.gnu.org/licenses/>. -VERSION = "209" +VERSION = "210" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/diffoscope-209/diffoscope/main.py new/diffoscope-210/diffoscope/main.py --- old/diffoscope-209/diffoscope/main.py 2022-03-27 10:23:06.000000000 +0200 +++ new/diffoscope-210/diffoscope/main.py 2022-04-15 10:02:29.000000000 +0200 @@ -686,7 +686,6 @@ ) configure(parsed_args) - set_path() normalize_environment() path1, path2 = parsed_args.path1, parsed_args.path2 @@ -748,6 +747,7 @@ sys.exit(2) parsed_args = None + set_path() try: with profile("main", "parse_args"):