1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-21 08:42:23 +00:00

x11-fm/nautilus: Update to 42.2

This commit is contained in:
Neel Chauhan 2022-07-20 12:16:59 -07:00
parent 59a631e412
commit ac13076474
3 changed files with 4 additions and 38 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= nautilus
PORTVERSION= 42.1
PORTVERSION= 42.2
CATEGORIES= x11-fm gnome
MASTER_SITES= GNOME/sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+)\..*/\1/}
DIST_SUBDIR= gnome

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1656522127
SHA256 (gnome/nautilus-42.1.tar.xz) = 4135e723d3e62fc333d4973b80b3dbe81d0edef2f0d7b5a8e3d06ba44482403a
SIZE (gnome/nautilus-42.1.tar.xz) = 3259664
TIMESTAMP = 1658342455
SHA256 (gnome/nautilus-42.2.tar.xz) = 99212d2eb75996f181728ad04a2e2d86f2577b064e68a34c8b81a7037df4ccb2
SIZE (gnome/nautilus-42.2.tar.xz) = 3254912

View File

@ -1,34 +0,0 @@
--- src/nautilus-thumbnails.c.orig 2022-06-29 19:28:36 UTC
+++ src/nautilus-thumbnails.c
@@ -530,9 +530,7 @@ thumbnail_thread_func (GTask *task,
pixbuf = gnome_desktop_thumbnail_factory_generate_thumbnail (thumbnail_factory,
info->image_uri,
- info->mime_type,
- NULL,
- &error);
+ info->mime_type);
if (pixbuf)
{
@@ -542,9 +540,7 @@ thumbnail_thread_func (GTask *task,
gnome_desktop_thumbnail_factory_save_thumbnail (thumbnail_factory,
pixbuf,
info->image_uri,
- current_orig_mtime,
- NULL,
- &error);
+ current_orig_mtime);
if (error)
{
DEBUG ("(Thumbnail Thread) Saving thumbnail failed: %s (%s)\n",
@@ -561,8 +557,7 @@ thumbnail_thread_func (GTask *task,
gnome_desktop_thumbnail_factory_create_failed_thumbnail (thumbnail_factory,
info->image_uri,
- current_orig_mtime,
- NULL, NULL);
+ current_orig_mtime);
}
/* We need to call nautilus_file_changed(), but I don't think that is
* thread safe. So add an idle handler and do it from the main loop. */