diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-09 19:40:36 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-09 19:56:25 +0000 |
commit | 21cb7204933d61f653df8bfe0550aa57cb5a0e29 (patch) | |
tree | a0a03d62f0e4902ccecdbb1d2f65ba2599d96d09 /testing/mlt | |
parent | 8950e2c8a9b9784d464717066ecd25910fa74642 (diff) | |
download | aports-21cb7204933d61f653df8bfe0550aa57cb5a0e29.tar.bz2 aports-21cb7204933d61f653df8bfe0550aa57cb5a0e29.tar.xz |
testing/mlt: upgrade to 6.16.0
Adopt package as it's unmaintained
Diffstat (limited to 'testing/mlt')
-rw-r--r-- | testing/mlt/APKBUILD | 8 | ||||
-rw-r--r-- | testing/mlt/musl-locale.patch | 12 |
2 files changed, 11 insertions, 9 deletions
diff --git a/testing/mlt/APKBUILD b/testing/mlt/APKBUILD index a752b9853b..92f4ab13c3 100644 --- a/testing/mlt/APKBUILD +++ b/testing/mlt/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Carlo Landmeter <clandmeter@gmail.com> -# Maintainer: +# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org> pkgname=mlt -pkgver=6.10.0 +pkgver=6.16.0 pkgrel=0 pkgdesc="MLT Multimedia Framework" url="https://www.mltframework.org/" @@ -39,5 +39,5 @@ package() { make DESTDIR="$pkgdir" install } -sha512sums="d0c353e961bb77a4ff952dd40f7f8dac37743e7027d6928b880a02ec65a98a42503e5de33275357ab256be8fa11ee2d7a53cbd2b1a7c777d711fef18980aa8c5 mlt-6.10.0.tar.gz -096ce8b8ac7e41540a8f83639335bd9021efaf2a8eb51a28e1a647a2ea586fa53f6d7eac21b077b3d530f178b842940dfd665cc128ec82b135bf0e4e915eed14 musl-locale.patch" +sha512sums="554e8b9baa7a8578cc52315fe0583c61762bf6fbbcdd4a1e4f25753846d92f013e7d74745498625fcc781de993aa0526fd761920450b4314e67105783b9bde26 mlt-6.16.0.tar.gz +dfa4c192ce6121a3c86141c46a08eaf6cd6bd81c120786bdb1ef564bf7878dcb44031280b34609048409c3d09e8c0e1bd430dae1fe777ef030daf09b1dfd90a3 musl-locale.patch" diff --git a/testing/mlt/musl-locale.patch b/testing/mlt/musl-locale.patch index 8a71f7cb69..46f7534253 100644 --- a/testing/mlt/musl-locale.patch +++ b/testing/mlt/musl-locale.patch @@ -1,11 +1,13 @@ ---- ./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 +diff --git a/src/framework/mlt_property.h b/src/framework/mlt_property.h +index 1bfc971fb7..e2ba1c1d6d 100644 +--- a/src/framework/mlt_property.h ++++ b/src/framework/mlt_property.h @@ -30,7 +30,7 @@ #include <sys/param.h> #endif --#if (defined(__GLIBC__) && !defined(__APPLE__)) || HAVE_LOCALE_H -+#if (defined(__linux__) && !defined(__APPLE__)) || HAVE_LOCALE_H +-#if (defined(__GLIBC__) && !defined(__APPLE__)) || defined(HAVE_LOCALE_H) ++#if (defined(__linux__) && !defined(__APPLE__)) || defined(HAVE_LOCALE_H) # include <locale.h> - #elif defined(__APPLE__) || (__FreeBSD_version >= 900506) + #elif defined(__APPLE__) || (defined(__FreeBSD_version) && __FreeBSD_version >= 900506) # include <xlocale.h> |