[arch-commits] Commit in mlt/kde-unstable (2 files)

Antonio Rojas arojas at archlinux.org
Mon Mar 23 21:23:38 UTC 2015


    Date: Monday, March 23, 2015 @ 22:23:37
  Author: arojas
Revision: 234589

Remove old patch

Modified:
  mlt/kde-unstable/PKGBUILD
Deleted:
  mlt/kde-unstable/fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch

------------------------------------------------------------+
 PKGBUILD                                                   |   13 +--
 fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch |   37 -----------
 2 files changed, 6 insertions(+), 44 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2015-03-23 21:10:05 UTC (rev 234588)
+++ PKGBUILD	2015-03-23 21:23:37 UTC (rev 234589)
@@ -8,16 +8,15 @@
 # Contributor: Gustavo Alvarez <sl1pkn07 at gmail.com>
 
 pkgbase=mlt
-pkgname=('mlt' 'mlt-python-bindings')
+pkgname=(mlt mlt-python-bindings)
 pkgver=0.9.6
 pkgrel=3
 pkgdesc="An open source multimedia framework"
-arch=('i686' 'x86_64')
+arch=(i686 x86_64)
 url="http://www.mltframework.org"
-license=('GPL')
-makedepends=('ladspa' 'frei0r-plugins' 'libdv' 'sdl_image' 'libsamplerate' 'sox' 'ffmpeg' 'vid.stab' 'qt5-svg' 'jack2' 'libexif' 'python2' 'swig')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
-    	fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch)
+license=(GPL)
+makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg vid.stab qt5-svg jack2 libexif python2 swig)
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
 md5sums=('92bcc95af44ff086df0a0ce17a201d1c'
          '8227e7a1b059b1b16901166d2a508317')
 
@@ -61,7 +60,7 @@
 }
 
 package_mlt-python-bindings() {
-  depends=('python2' 'mlt')
+  depends=(python2 mlt)
 
   cd "$srcdir/mlt-$pkgver/src/swig/python"
   mkdir -p "$pkgdir/usr/lib/python2.7/"

Deleted: fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch
===================================================================
--- fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch	2015-03-23 21:10:05 UTC (rev 234588)
+++ fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch	2015-03-23 21:23:37 UTC (rev 234589)
@@ -1,37 +0,0 @@
-From ef749d7b526f0762a00a369ea35b5b12c18142fb Mon Sep 17 00:00:00 2001
-From: Nicolas Boichat <nicolas at boichat.ch>
-Date: Wed, 20 Mar 2013 16:50:56 +0800
-Subject: [PATCH] Fix Segmentation fault at exit by calling
- av_lockmgr_register( NULL );
-
----
- src/modules/avformat/factory.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/src/modules/avformat/factory.c b/src/modules/avformat/factory.c
-index ddf05fe..a273537 100644
---- a/src/modules/avformat/factory.c
-+++ b/src/modules/avformat/factory.c
-@@ -83,6 +83,11 @@ static int avformat_lockmgr(void **mutex, enum AVLockOp op)
-    return 0;
- }
- 
-+static void avformat_exit( )
-+{
-+	av_lockmgr_register( NULL );
-+}
-+
- static void avformat_init( )
- {
- 	// Initialise avformat if necessary
-@@ -98,6 +103,7 @@ static void avformat_init( )
- 		avformat_network_init();
- #endif
- 		av_log_set_level( mlt_log_get_level() );
-+		atexit(avformat_exit);
- 	}
- }
- 
--- 
-1.8.1.5
-



More information about the arch-commits mailing list