diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-06-08 21:50:56 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-06-08 21:51:27 +0200 |
commit | 3505c88418253cf329b0ca92a4c25ed1c98d4c3d (patch) | |
tree | 16e9efa641f233c83a04e87e775302a9f65cb672 /media-gfx/hugin | |
parent | media-gfx/kphotoalbum: Fix build with >=exiv2-0.28 (diff) | |
download | gentoo-3505c88418253cf329b0ca92a4c25ed1c98d4c3d.tar.gz gentoo-3505c88418253cf329b0ca92a4c25ed1c98d4c3d.tar.bz2 gentoo-3505c88418253cf329b0ca92a4c25ed1c98d4c3d.zip |
media-gfx/hugin: Drop mistakenly added file
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-gfx/hugin')
-rw-r--r-- | media-gfx/hugin/files/hugin-2022.0.0-exiv2-0.28.patch.orig | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/media-gfx/hugin/files/hugin-2022.0.0-exiv2-0.28.patch.orig b/media-gfx/hugin/files/hugin-2022.0.0-exiv2-0.28.patch.orig deleted file mode 100644 index b1653a312cab..000000000000 --- a/media-gfx/hugin/files/hugin-2022.0.0-exiv2-0.28.patch.orig +++ /dev/null @@ -1,76 +0,0 @@ -diff -r 79cd11a7a66f src/hugin_base/panodata/Exiv2Helper.cpp ---- a/src/hugin_base/panodata/Exiv2Helper.cpp Wed May 24 19:13:20 2023 +0200 -+++ b/src/hugin_base/panodata/Exiv2Helper.cpp Mon Jun 05 00:31:19 2023 +0200 -@@ -40,7 +40,7 @@ - Exiv2::ExifData::iterator itr = exifData.findKey(Exiv2::ExifKey(keyName)); - if (itr != exifData.end() && itr->count()) - { -- value = itr->toLong(); -+ value = itr->toUint32(); - return true; - } - else -@@ -165,7 +165,7 @@ - { - if(it!=exifData.end() && it->count()) - { -- return it->toLong(); -+ return it->toUint32(); - } - return 0; - }; -@@ -600,4 +600,4 @@ - }; - - }; //namespace Exiv2Helper --}; //namespace HuginBase -\ No newline at end of file -+}; //namespace HuginBase -diff -r 79cd11a7a66f src/hugin_base/panodata/SrcPanoImage.cpp ---- a/src/hugin_base/panodata/SrcPanoImage.cpp Wed May 24 19:13:20 2023 +0200 -+++ b/src/hugin_base/panodata/SrcPanoImage.cpp Mon Jun 05 00:31:19 2023 +0200 -@@ -384,7 +384,7 @@ - pos = xmpData.findKey(Exiv2::XmpKey("Xmp.GPano.CroppedAreaImageWidthPixels")); - if (pos != xmpData.end()) - { -- croppedWidth = pos->toLong(); -+ croppedWidth = pos->toUint32(); - } - else - { -@@ -394,7 +394,7 @@ - pos = xmpData.findKey(Exiv2::XmpKey("Xmp.GPano.CroppedAreaImageHeightPixels")); - if (pos != xmpData.end()) - { -- croppedHeight = pos->toLong(); -+ croppedHeight = pos->toUint32(); - } - else - { -@@ -408,7 +408,7 @@ - double hfov = 0; - if (pos != xmpData.end()) - { -- hfov = 360 * croppedWidth / (double)pos->toLong(); -+ hfov = 360 * croppedWidth / (double)pos->toUint32(); - } - else - { -@@ -419,7 +419,7 @@ - pos = xmpData.findKey(Exiv2::XmpKey("Xmp.GPano.FullPanoHeightPixels")); - if (pos != xmpData.end()) - { -- fullHeight = pos->toLong(); -+ fullHeight = pos->toUint32(); - } - else - { -@@ -430,7 +430,7 @@ - pos = xmpData.findKey(Exiv2::XmpKey("Xmp.GPano.CroppedAreaTopPixels")); - if (pos != xmpData.end()) - { -- cropTop = pos->toLong(); -+ cropTop = pos->toUint32(); - } - else - { |