Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package feh for openSUSE:Factory checked in at 2022-09-20 19:23:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/feh (Old) and /work/SRC/openSUSE:Factory/.feh.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "feh" Tue Sep 20 19:23:42 2022 rev:45 rq:1004739 version:3.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/feh/feh.changes 2022-07-10 23:15:45.180987645 +0200 +++ /work/SRC/openSUSE:Factory/.feh.new.2083/feh.changes 2022-09-20 19:23:46.694507526 +0200 @@ -1,0 +2,7 @@ +Sun Sep 18 09:02:18 UTC 2022 - Dirk M??ller <[email protected]> + +- update to 3.9.1: + * Set libcurl user agent to "feh/3.9.1". Previously, feh did not send a + user agent. + +------------------------------------------------------------------- Old: ---- feh-3.9.tar.bz2 feh-3.9.tar.bz2.asc New: ---- feh-3.9.1.tar.bz2 feh-3.9.1.tar.bz2.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ feh.spec ++++++ --- /var/tmp/diff_new_pack.AJ608L/_old 2022-09-20 19:23:47.286509224 +0200 +++ /var/tmp/diff_new_pack.AJ608L/_new 2022-09-20 19:23:47.290509236 +0200 @@ -17,7 +17,7 @@ Name: feh -Version: 3.9 +Version: 3.9.1 Release: 0 Summary: X11 image viewer License: LGPL-2.0-or-later AND MIT @@ -47,8 +47,8 @@ Requires: libjpeg-turbo Requires(post): desktop-file-utils Requires(post): hicolor-icon-theme -Requires(postun): desktop-file-utils -Requires(postun): hicolor-icon-theme +Requires(postun):desktop-file-utils +Requires(postun):hicolor-icon-theme %description feh is an X11 image viewer aimed mostly at console users. It does not ++++++ feh-3.9.tar.bz2 -> feh-3.9.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/feh-3.9/ChangeLog new/feh-3.9.1/ChangeLog --- old/feh-3.9/ChangeLog 2022-06-12 13:40:22.000000000 +0200 +++ new/feh-3.9.1/ChangeLog 2022-08-22 17:52:07.000000000 +0200 @@ -1,3 +1,9 @@ +Mon, 22 Aug 2022 17:49:11 +0200 Daniel Friesel <[email protected]> + +* Release v3.9.1 + * Set libcurl user agent to "feh/3.9.1". Previously, feh did not send a + user agent. + Sun, 12 Jun 2022 13:12:00 +0200 Daniel Friesel <[email protected]> * Release v3.9 @@ -11,7 +17,7 @@ in feh is no longer required. For a slight speed-up, or to use feh with an affected Imlib2 version (1.6.x or 1.7.0), compile feh with 'magic=1'. In this case, feh will use libmagic to determine whether a file is an - image, and only pass images to Imlib2. + image, and only pass images to Imlib2. (Patch by Christian Hesse) * Fix crash (segmentation fault due to null pointer dereference) when toggling fullscreen mode while moving the cursor. * Note that feh no longer supplies its own getopt_long function. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/feh-3.9/README.md new/feh-3.9.1/README.md --- old/feh-3.9/README.md 2022-06-12 13:40:22.000000000 +0200 +++ new/feh-3.9.1/README.md 2022-08-22 17:52:07.000000000 +0200 @@ -24,6 +24,7 @@ * libcurl (disable with make curl=0) * libpng * libX11 + * libXt * libXinerama (disable with make xinerama=0) If built with exif=1: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/feh-3.9/config.mk new/feh-3.9.1/config.mk --- old/feh-3.9/config.mk 2022-06-12 13:40:22.000000000 +0200 +++ new/feh-3.9.1/config.mk 2022-08-22 17:52:07.000000000 +0200 @@ -1,5 +1,5 @@ PACKAGE ?= feh -VERSION ?= 3.9 +VERSION ?= 3.9.1 app ?= 0 curl ?= 1 @@ -104,7 +104,7 @@ MAN_INOTIFY = disabled endif -MAN_DATE ?= June 12, 2022 +MAN_DATE ?= August 22, 2022 # Uncomment this to use dmalloc #CFLAGS += -DWITH_DMALLOC diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/feh-3.9/src/imlib.c new/feh-3.9.1/src/imlib.c --- old/feh-3.9/src/imlib.c 2022-06-12 13:40:22.000000000 +0200 +++ new/feh-3.9.1/src/imlib.c 2022-08-22 17:52:07.000000000 +0200 @@ -895,6 +895,7 @@ curl_easy_setopt(curl, CURLOPT_WRITEDATA, sfp); ebuff = emalloc(CURL_ERROR_SIZE); curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, ebuff); + curl_easy_setopt(curl, CURLOPT_USERAGENT, PACKAGE "/" VERSION); curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1); #if LIBCURL_VERSION_NUM >= 0x072000 /* 07.32.0 */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/feh-3.9/src/winwidget.c new/feh-3.9.1/src/winwidget.c --- old/feh-3.9/src/winwidget.c 2022-06-12 13:40:22.000000000 +0200 +++ new/feh-3.9.1/src/winwidget.c 2022-08-22 17:52:07.000000000 +0200 @@ -739,7 +739,7 @@ #ifdef HAVE_INOTIFY void winwidget_inotify_add(winwidget winwid, feh_file * file) { - if (opt.auto_reload) { + if (opt.auto_reload && !path_is_url(file->filename)) { D(("Adding inotify watch for %s\n", file->filename)); char dir[PATH_MAX]; feh_file_dirname(dir, file, PATH_MAX); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/feh-3.9/test/feh.t new/feh-3.9.1/test/feh.t --- old/feh-3.9/test/feh.t 2022-06-12 13:40:22.000000000 +0200 +++ new/feh-3.9.1/test/feh.t 2022-08-22 17:52:07.000000000 +0200 @@ -47,7 +47,7 @@ } my $re_warning - = qr{${feh_name} WARNING: test/fail/... \- Does not look like an image \(magic bytes missing\)\n}; + = qr{${feh_name} WARNING: test/fail/... \- No Imlib2 loader for that file format\n}; my $re_loadable = qr{test/ok/...}; my $re_unloadable = qr{test/fail/...}; my $re_list_action = qr{test/ok/... 16x16};
