commit: 3505c88418253cf329b0ca92a4c25ed1c98d4c3d
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 8 19:50:56 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jun 8 19:51:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3505c884
media-gfx/hugin: Drop mistakenly added file
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../files/hugin-2022.0.0-exiv2-0.28.patch.orig | 76 ----------------------
1 file changed, 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
- {