summaryrefslogtreecommitdiff
path: root/media-video/movit
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-05-06 11:18:16 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-05-06 11:18:16 +0100
commitebce8994fe3cc4ca9fbc96ca837cb4c4e98adcbd (patch)
treef2204ce5f94dc3cb13728ff93649d889944952bb /media-video/movit
parentfe1c8b732bd548b699d4c2ef725f67f8b8c8911c (diff)
gentoo resync : 06.05.2018
Diffstat (limited to 'media-video/movit')
-rw-r--r--media-video/movit/Manifest1
-rw-r--r--media-video/movit/files/movit-fix-locale.patch16
2 files changed, 0 insertions, 17 deletions
diff --git a/media-video/movit/Manifest b/media-video/movit/Manifest
index 068a5b594196..f4a38363ba75 100644
--- a/media-video/movit/Manifest
+++ b/media-video/movit/Manifest
@@ -1,4 +1,3 @@
-AUX movit-fix-locale.patch 556 BLAKE2B e291bbae87bdc4faa470ed99f98c610ef4d68a88884893629116258f0584d956f6afac00ceb986e27840f5cb422637e6abd7467f838d6ae1467cc758c203e53a SHA512 5a9d94a5b7404fd327412bd8b994710158e1d81fcbfda39b372dc2d89d592b87e3f067970dc73c68c7c335f8cd2adddb5a108068f13c506e850e4fac69bab819
DIST gtest-1.7.0.zip 1164254 BLAKE2B ba8cf5dc336e3a6889b58922b62497cdac94d9f77bc5cbac3d72e4a88f33cbe572b6f61b5323acb7ea6dfc67f92c0ba231bedc5251c276831ea7a9e77ab6d570 SHA512 8859369f2dd32cbc2ac01aba029aa3ff20a321f40658b9643aff442d34c33468221866b801b28c66a28af47dbcd362d26941fc98db92b6efb7e41ea5b7be1a07
DIST movit-1.2.0.tar.gz 534145 BLAKE2B 6409bd2d1e85e21dbce00c36152275553594f0c9d809802b5f96e8b7e56c03ccda9588631c156e34da1d54962bbdbbd03d9e78c60062bc01a04896b7fd88410f SHA512 7c75ae60e2b5248e2691074d67005728555d6b7fea320ac9d7bcd401c1640467f18f78e446e57894d9b3b3b6a597ee0603ccdd963f21a408e96c7f0d0f5ac154
DIST movit-1.6.1.tar.gz 870278 BLAKE2B 736b34cf4d5a9d9b59e56dc994d467ffc33e86c8bd04a8062362e76f4d7a4c973252a65258d6b29753942c0f320e778a4a1ae4484795b3129de779a51770f936 SHA512 36e425cc1bcfce9afd9124c696d95f2f6c74279161c178195d9f4d22a34acb1919aac5f51c29aa13b95d0a7343beacb41b1686fb4ad92acd136c6a25ccb4044d
diff --git a/media-video/movit/files/movit-fix-locale.patch b/media-video/movit/files/movit-fix-locale.patch
deleted file mode 100644
index f98c9705e9f9..000000000000
--- a/media-video/movit/files/movit-fix-locale.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/init.cpp 2016-02-14 19:53:12.141197530 +0100
-+++ b/init.cpp 2016-02-14 19:55:09.374196665 +0100
-@@ -388,7 +388,12 @@
- // Now we have something on the form X.YY. We convert it to a float, and hope
- // that if it's inexact (e.g. 1.30), atof() will round the same way the
- // compiler will.
-- float glsl_version = atof(glsl_version_str);
-+
-+ std::istringstream locale_convert(glsl_version_str);
-+ locale_convert.imbue(std::locale("C"));
-+ double glsl_version;
-+ locale_convert >> glsl_version;
-+
- free(glsl_version_str);
-
- return glsl_version;