aboutsummaryrefslogtreecommitdiffstats
path: root/testing/mlt
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-11-12 15:12:18 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-11-12 15:12:54 +0000
commit16973debe2b71b852fc663e8b974e345a67c3fac (patch)
treec5f63851bb07f88adde529fcf3c2e43bee7e8938 /testing/mlt
parent959d90e891d4978c2627eb252511c85c0f3c726f (diff)
downloadaports-16973debe2b71b852fc663e8b974e345a67c3fac.tar.bz2
aports-16973debe2b71b852fc663e8b974e345a67c3fac.tar.xz
testing/mlt: upgrade to 6.10.0
Diffstat (limited to 'testing/mlt')
-rw-r--r--testing/mlt/APKBUILD6
-rw-r--r--testing/mlt/musl-locale.patch18
2 files changed, 11 insertions, 13 deletions
diff --git a/testing/mlt/APKBUILD b/testing/mlt/APKBUILD
index ba6f559e69..a752b9853b 100644
--- a/testing/mlt/APKBUILD
+++ b/testing/mlt/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer:
pkgname=mlt
-pkgver=6.4.1
+pkgver=6.10.0
pkgrel=0
pkgdesc="MLT Multimedia Framework"
url="https://www.mltframework.org/"
@@ -39,5 +39,5 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="b5489e6f414d50a62eb578c65d6973e09a89502856f467034594740db6f19942be09f2c475cee898b50825617c9b7a0a142fda779f1428073550379515e6eac4 mlt-6.4.1.tar.gz
-44045f433408ef5a38a0d190a625f5d1cb5fb959de7aec595c6b80981f3600c2b35b521ef6bd2eb6c90f38a13ff8276ea44896977b6cf66743d817c99260dffa musl-locale.patch"
+sha512sums="d0c353e961bb77a4ff952dd40f7f8dac37743e7027d6928b880a02ec65a98a42503e5de33275357ab256be8fa11ee2d7a53cbd2b1a7c777d711fef18980aa8c5 mlt-6.10.0.tar.gz
+096ce8b8ac7e41540a8f83639335bd9021efaf2a8eb51a28e1a647a2ea586fa53f6d7eac21b077b3d530f178b842940dfd665cc128ec82b135bf0e4e915eed14 musl-locale.patch"
diff --git a/testing/mlt/musl-locale.patch b/testing/mlt/musl-locale.patch
index 030bb781d1..8a71f7cb69 100644
--- a/testing/mlt/musl-locale.patch
+++ b/testing/mlt/musl-locale.patch
@@ -1,13 +1,11 @@
---- ./src/framework/mlt_property.h.orig
-+++ ./src/framework/mlt_property.h
-@@ -30,8 +30,8 @@
+--- ./src/framework/mlt_property.h.orig 2018-11-12 15:08:18.251882145 +0000
++++ ./src/framework/mlt_property.h 2018-11-12 15:08:43.245342335 +0000
+@@ -30,7 +30,7 @@
#include <sys/param.h>
#endif
--#if defined(__GLIBC__) || defined(__APPLE__) || (__FreeBSD_version >= 900506)
--#include <xlocale.h>
-+#if defined(__linux__) || defined(__APPLE__) || (__FreeBSD_version >= 900506)
-+#include <locale.h>
- #else
- typedef char* locale_t;
- #endif
+-#if (defined(__GLIBC__) && !defined(__APPLE__)) || HAVE_LOCALE_H
++#if (defined(__linux__) && !defined(__APPLE__)) || HAVE_LOCALE_H
+ # include <locale.h>
+ #elif defined(__APPLE__) || (__FreeBSD_version >= 900506)
+ # include <xlocale.h>