aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorChristoph Moench-Tegeder <cmt@FreeBSD.org>2019-04-26 11:08:44 +0000
committerChristoph Moench-Tegeder <cmt@FreeBSD.org>2019-04-26 11:08:44 +0000
commitf21c6e8d9cf6a718732994f892bbc9d040d006ec (patch)
tree26f24c65b69df89a7bd5b5a45d24e1920ff7d8b0 /graphics
parent9e944b405632923ba5c10f4443d544dc664e83cd (diff)
downloadports-f21c6e8d9cf6a718732994f892bbc9d040d006ec.tar.gz
ports-f21c6e8d9cf6a718732994f892bbc9d040d006ec.zip
Notes
Diffstat (limited to 'graphics')
-rw-r--r--graphics/shotwell/Makefile3
-rw-r--r--graphics/shotwell/distinfo6
-rw-r--r--graphics/shotwell/files/patch-src_photos_PhotoMetadata.vala22
3 files changed, 4 insertions, 27 deletions
diff --git a/graphics/shotwell/Makefile b/graphics/shotwell/Makefile
index 1e64c85f4832..647f48e27490 100644
--- a/graphics/shotwell/Makefile
+++ b/graphics/shotwell/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= shotwell
-PORTVERSION= 0.30.2
-PORTREVISION= 3
+PORTVERSION= 0.30.4
CATEGORIES= graphics gnome
MASTER_SITES= GNOME
diff --git a/graphics/shotwell/distinfo b/graphics/shotwell/distinfo
index 82a6c0991d42..4fe57460f225 100644
--- a/graphics/shotwell/distinfo
+++ b/graphics/shotwell/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1549625280
-SHA256 (shotwell-0.30.2.tar.xz) = 1945978be04ff6985275f70557fb4f2ea43d5fcd3415388b61738310a206555d
-SIZE (shotwell-0.30.2.tar.xz) = 6461648
+TIMESTAMP = 1556271055
+SHA256 (shotwell-0.30.4.tar.xz) = b7bccf86831536c9f87d45fb159145662f372f1c8baae10b4ae679e1811c3ffa
+SIZE (shotwell-0.30.4.tar.xz) = 6449848
diff --git a/graphics/shotwell/files/patch-src_photos_PhotoMetadata.vala b/graphics/shotwell/files/patch-src_photos_PhotoMetadata.vala
deleted file mode 100644
index 323324062497..000000000000
--- a/graphics/shotwell/files/patch-src_photos_PhotoMetadata.vala
+++ /dev/null
@@ -1,22 +0,0 @@
---- src/photos/PhotoMetadata.vala.orig 2019-03-30 21:05:25 UTC
-+++ src/photos/PhotoMetadata.vala
-@@ -276,7 +276,7 @@ public class PhotoMetadata : MediaMetadata {
- exiv2 = new GExiv2.Metadata();
- exif = null;
-
-- exiv2.open_buf(buffer, length);
-+ exiv2.open_buf(buffer[0:length]);
- exif = Exif.Data.new_from_data(buffer, length);
- source_name = "<memory buffer %d bytes>".printf(length);
- }
-@@ -285,8 +285,8 @@ public class PhotoMetadata : MediaMetadata {
- exiv2 = new GExiv2.Metadata();
- exif = null;
-
-- exiv2.from_app1_segment(buffer.get_data(), (long) buffer.get_size());
-- exif = Exif.Data.new_from_data(buffer.get_data(), buffer.get_size());
-+ exiv2.from_app1_segment(buffer.get_data());
-+ exif = Exif.Data.new_from_data(buffer.get_data(), (long) buffer.get_size());
- source_name = "<app1 segment %zu bytes>".printf(buffer.get_size());
- }
-