[arch-commits] Commit in gst-plugins-bad/repos (6 files)

2016-09-29 Thread Maxime Gauduin
Date: Thursday, September 29, 2016 @ 19:38:12
  Author: alucryd
Revision: 277288

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gst-plugins-bad/repos/staging-i686/
  gst-plugins-bad/repos/staging-i686/PKGBUILD
(from rev 277287, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/staging-i686/wildmidi-0.4.patch
(from rev 277287, gst-plugins-bad/trunk/wildmidi-0.4.patch)
  gst-plugins-bad/repos/staging-x86_64/
  gst-plugins-bad/repos/staging-x86_64/PKGBUILD
(from rev 277287, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/staging-x86_64/wildmidi-0.4.patch
(from rev 277287, gst-plugins-bad/trunk/wildmidi-0.4.patch)

---+
 staging-i686/PKGBUILD |   55 
 staging-i686/wildmidi-0.4.patch   |   24 +++
 staging-x86_64/PKGBUILD   |   55 
 staging-x86_64/wildmidi-0.4.patch |   24 +++
 4 files changed, 158 insertions(+)

Copied: gst-plugins-bad/repos/staging-i686/PKGBUILD (from rev 277287, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-09-29 19:38:12 UTC (rev 277288)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.8.3
+pkgrel=2
+pkgdesc="GStreamer Multimedia Framework Bad Plugins"
+arch=(i686 x86_64)
+license=(LGPL)
+url="http://gstreamer.freedesktop.org/;
+depends=(mjpegtools gst-plugins-base-libs curl chromaprint libmms faad2 faac 
celt libdca
+ soundtouch spandsp libdvdnav libmodplug libgme wayland neon libofa 
fluidsynth
+ openjpeg2 libwebp libsrtp gnutls wildmidi glu sbc rtmpdump libgudev 
graphene)
+makedepends=(schroedinger libexif libdvdread libvdpau libmpeg2 python valgrind 
wildmidi librsvg
+ gobject-introspection gtk-doc gtk3 clutter libtiger ladspa openal 
libusb
+ qt5-declarative qt5-x11extras qt5-wayland vulkan-headers 
vulkan-icd-loader
+ zbar)
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz
+wildmidi-0.4.patch)
+sha256sums=('7899fcb18e6a1af2888b19c90213af018a57d741c6e72ec56b133bc73ec8509b'
+'b234c5d1a8b33342d9f807a46c26623e21f3d1b33a9b2903a41fadd53e0cac47')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../wildmidi-0.4.patch
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # don't have a camera for the camerabin test
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Copied: gst-plugins-bad/repos/staging-i686/wildmidi-0.4.patch (from rev 277287, 
gst-plugins-bad/trunk/wildmidi-0.4.patch)
===
--- staging-i686/wildmidi-0.4.patch (rev 0)
+++ staging-i686/wildmidi-0.4.patch 2016-09-29 19:38:12 UTC (rev 277288)
@@ -0,0 +1,24 @@
+From 04199db2aeea966c2c879b1764427c87433570f1 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= 
+Date: Tue, 16 Aug 2016 10:37:28 +0300
+Subject: wildmidi: Fix compilation with wildmidi 0.4
+
+Old versions used char* for the data, new versions use int8_t*. They're often
+not the same and differ in signedness.
+
+diff --git a/ext/timidity/gstwildmidi.c b/ext/timidity/gstwildmidi.c
+index 3e82ca2..f52ea9d 100644
+--- a/ext/timidity/gstwildmidi.c
 b/ext/timidity/gstwildmidi.c
+@@ -672,7 +672,7 @@ gst_wildmidi_get_buffer (GstWildmidi * wildmidi)
+   gst_buffer_map (buffer, , GST_MAP_READWRITE);
+ 
+   GST_OBJECT_LOCK (wildmidi);
+-  size = WildMidi_GetOutput (wildmidi->song, (char *) info.data,
++  size = WildMidi_GetOutput (wildmidi->song, (gpointer) info.data,
+   (unsigned long int) info.size);
+   GST_OBJECT_UNLOCK (wildmidi);
+ 
+-- 
+cgit v0.10.2
+

Copied: gst-plugins-bad/repos/staging-x86_64/PKGBUILD (from rev 277287, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-09-29 19:38:12 UTC (rev 277288)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.8.3
+pkgrel=2

[arch-commits] Commit in gst-plugins-bad/repos (6 files)

2016-08-19 Thread Jan de Groot
Date: Friday, August 19, 2016 @ 13:57:41
  Author: jgc
Revision: 273963

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gst-plugins-bad/repos/staging-i686/
  gst-plugins-bad/repos/staging-i686/PKGBUILD
(from rev 273962, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/staging-i686/wildmidi-0.4.patch
(from rev 273962, gst-plugins-bad/trunk/wildmidi-0.4.patch)
  gst-plugins-bad/repos/staging-x86_64/
  gst-plugins-bad/repos/staging-x86_64/PKGBUILD
(from rev 273962, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/staging-x86_64/wildmidi-0.4.patch
(from rev 273962, gst-plugins-bad/trunk/wildmidi-0.4.patch)

---+
 staging-i686/PKGBUILD |   55 
 staging-i686/wildmidi-0.4.patch   |   24 +++
 staging-x86_64/PKGBUILD   |   55 
 staging-x86_64/wildmidi-0.4.patch |   24 +++
 4 files changed, 158 insertions(+)

Copied: gst-plugins-bad/repos/staging-i686/PKGBUILD (from rev 273962, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-08-19 13:57:41 UTC (rev 273963)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.8.3
+pkgrel=1
+pkgdesc="GStreamer Multimedia Framework Bad Plugins"
+arch=(i686 x86_64)
+license=(LGPL)
+url="http://gstreamer.freedesktop.org/;
+depends=(mjpegtools gst-plugins-base-libs curl chromaprint libmms faad2 faac 
celt libdca
+ soundtouch spandsp libdvdnav libmodplug libgme wayland neon libofa 
fluidsynth
+ openjpeg2 libwebp libsrtp gnutls wildmidi glu sbc rtmpdump libgudev 
graphene)
+makedepends=(schroedinger libexif libdvdread libvdpau libmpeg2 python valgrind 
wildmidi librsvg
+ gobject-introspection gtk-doc gtk3 clutter libtiger ladspa openal 
libusb
+ qt5-declarative qt5-x11extras qt5-wayland vulkan-headers 
vulkan-icd-loader
+ zbar)
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz
+wildmidi-0.4.patch)
+sha256sums=('7899fcb18e6a1af2888b19c90213af018a57d741c6e72ec56b133bc73ec8509b'
+'b234c5d1a8b33342d9f807a46c26623e21f3d1b33a9b2903a41fadd53e0cac47')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../wildmidi-0.4.patch
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # don't have a camera for the camerabin test
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Copied: gst-plugins-bad/repos/staging-i686/wildmidi-0.4.patch (from rev 273962, 
gst-plugins-bad/trunk/wildmidi-0.4.patch)
===
--- staging-i686/wildmidi-0.4.patch (rev 0)
+++ staging-i686/wildmidi-0.4.patch 2016-08-19 13:57:41 UTC (rev 273963)
@@ -0,0 +1,24 @@
+From 04199db2aeea966c2c879b1764427c87433570f1 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= 
+Date: Tue, 16 Aug 2016 10:37:28 +0300
+Subject: wildmidi: Fix compilation with wildmidi 0.4
+
+Old versions used char* for the data, new versions use int8_t*. They're often
+not the same and differ in signedness.
+
+diff --git a/ext/timidity/gstwildmidi.c b/ext/timidity/gstwildmidi.c
+index 3e82ca2..f52ea9d 100644
+--- a/ext/timidity/gstwildmidi.c
 b/ext/timidity/gstwildmidi.c
+@@ -672,7 +672,7 @@ gst_wildmidi_get_buffer (GstWildmidi * wildmidi)
+   gst_buffer_map (buffer, , GST_MAP_READWRITE);
+ 
+   GST_OBJECT_LOCK (wildmidi);
+-  size = WildMidi_GetOutput (wildmidi->song, (char *) info.data,
++  size = WildMidi_GetOutput (wildmidi->song, (gpointer) info.data,
+   (unsigned long int) info.size);
+   GST_OBJECT_UNLOCK (wildmidi);
+ 
+-- 
+cgit v0.10.2
+

Copied: gst-plugins-bad/repos/staging-x86_64/PKGBUILD (from rev 273962, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-08-19 13:57:41 UTC (rev 273963)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.8.3
+pkgrel=1

[arch-commits] Commit in gst-plugins-bad/repos (6 files)

2015-10-11 Thread Maxime Gauduin
Date: Sunday, October 11, 2015 @ 14:36:58
  Author: alucryd
Revision: 248886

db-move: moved gst-plugins-bad from [testing] to [extra] (i686, x86_64)

Added:
  gst-plugins-bad/repos/extra-i686/PKGBUILD
(from rev 248885, gst-plugins-bad/repos/testing-i686/PKGBUILD)
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD
(from rev 248885, gst-plugins-bad/repos/testing-x86_64/PKGBUILD)
Deleted:
  gst-plugins-bad/repos/extra-i686/PKGBUILD
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD
  gst-plugins-bad/repos/testing-i686/
  gst-plugins-bad/repos/testing-x86_64/

---+
 /PKGBUILD |   94 
 extra-i686/PKGBUILD   |   47 
 extra-x86_64/PKGBUILD |   47 
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-11 12:36:57 UTC (rev 248885)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:58 UTC (rev 248886)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-bad
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework Bad Plugins"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/;
-depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 'rtmpdump' 'libgudev')
-makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
- 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('d8ff26128d4ecd2ffeb28e14843808d2d971b09056b7cee6f08afcae01fc0f49')
-
-prepare() {
-  cd $pkgname-$pkgver
-  autoreconf -vi
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental --enable-gtk-doc \
---with-package-name="GStreamer Bad Plugins (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/; \
---with-gtk=3.0
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # don't have a camera for the camerabin test
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gst-plugins-bad/repos/extra-i686/PKGBUILD (from rev 248885, 
gst-plugins-bad/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-11 12:36:58 UTC (rev 248886)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.6.0
+pkgrel=2
+pkgdesc="GStreamer Multimedia Framework Bad Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 'rtmpdump' 'libgudev')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
+ 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('d8ff26128d4ecd2ffeb28e14843808d2d971b09056b7cee6f08afcae01fc0f49')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # don't have a camera for the camerabin test
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-10-11 12:36:57 UTC (rev 248885)
+++ extra-x86_64/PKGBUILD   2015-10-11 12:36:58 UTC (rev 248886)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-bad
-pkgver=1.6.0

[arch-commits] Commit in gst-plugins-bad/repos (6 files)

2015-06-21 Thread Evangelos Foutras
Date: Sunday, June 21, 2015 @ 15:22:18
  Author: foutrelis
Revision: 241158

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gst-plugins-bad/repos/testing-i686/PKGBUILD
(from rev 241157, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/testing-i686/fix-faad2-version-check.patch
(from rev 241157, gst-plugins-bad/trunk/fix-faad2-version-check.patch)
  gst-plugins-bad/repos/testing-x86_64/PKGBUILD
(from rev 241157, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/testing-x86_64/fix-faad2-version-check.patch
(from rev 241157, gst-plugins-bad/trunk/fix-faad2-version-check.patch)
Deleted:
  gst-plugins-bad/repos/testing-i686/PKGBUILD
  gst-plugins-bad/repos/testing-x86_64/PKGBUILD

--+
 /PKGBUILD|  106 +
 testing-i686/PKGBUILD|   42 -
 testing-i686/fix-faad2-version-check.patch   |   35 
 testing-x86_64/PKGBUILD  |   42 -
 testing-x86_64/fix-faad2-version-check.patch |   35 
 5 files changed, 176 insertions(+), 84 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-06-21 13:22:01 UTC (rev 241157)
+++ testing-i686/PKGBUILD   2015-06-21 13:22:18 UTC (rev 241158)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-bad
-pkgver=1.4.5
-pkgrel=3
-pkgdesc=GStreamer Multimedia Framework Bad Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 'rtmpdump' 'libgudev')
-makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
- 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('152fad7250683d72f9deb36c5685428338365fe4a4c87ffe15e38783b14f983c')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental --enable-gtk-doc \
---with-package-name=GStreamer Bad Plugins (Arch Linux) \
---with-package-origin=http://www.archlinux.org/; \
---with-gtk=3.0
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # don't have a camera for the camerabin test
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: gst-plugins-bad/repos/testing-i686/PKGBUILD (from rev 241157, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-21 13:22:18 UTC (rev 241158)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-bad
+pkgver=1.4.5
+pkgrel=4
+pkgdesc=GStreamer Multimedia Framework Bad Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 'rtmpdump' 'libgudev')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
+ 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz
+fix-faad2-version-check.patch)
+sha256sums=('152fad7250683d72f9deb36c5685428338365fe4a4c87ffe15e38783b14f983c'
+'741492ae7a9518603fc51d87ae331d882f075547ea7fdec19c60f399085f18cc')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=748571
+  patch -Np1 -i ../fix-faad2-version-check.patch
+
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name=GStreamer Bad Plugins (Arch Linux) \
+--with-package-origin=http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd 

[arch-commits] Commit in gst-plugins-bad/repos (6 files)

2012-12-19 Thread Jan Steffens
Date: Wednesday, December 19, 2012 @ 14:49:25
  Author: heftig
Revision: 173511

db-move: moved gst-plugins-bad from [testing] to [extra] (i686, x86_64)

Added:
  gst-plugins-bad/repos/extra-i686/PKGBUILD
(from rev 173507, gst-plugins-bad/repos/testing-i686/PKGBUILD)
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD
(from rev 173507, gst-plugins-bad/repos/testing-x86_64/PKGBUILD)
Deleted:
  gst-plugins-bad/repos/extra-i686/PKGBUILD
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD
  gst-plugins-bad/repos/testing-i686/
  gst-plugins-bad/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   74 
 extra-x86_64/PKGBUILD |   74 
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-12-19 19:49:23 UTC (rev 173510)
+++ extra-i686/PKGBUILD 2012-12-19 19:49:25 UTC (rev 173511)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-bad
-pkgver=1.0.3
-pkgrel=1
-pkgdesc=GStreamer Multimedia Framework Bad Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus')
-makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2')
-options=(!libtool !emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('2eae746be0b4c7fa2f1e057c91bd36940d7c25593ab612b707904461360031f0')
-
-build() {
-  cd $pkgname-$pkgver
-  sed -i '/AC_PATH_XTRA/d' configure.ac
-  autoreconf
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name=GStreamer Bad Plugins (Archlinux) \
---with-package-origin=http://www.archlinux.org/; \
---with-gtk=3.0
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: gst-plugins-bad/repos/extra-i686/PKGBUILD (from rev 173507, 
gst-plugins-bad/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-12-19 19:49:25 UTC (rev 173511)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-bad
+pkgver=1.0.4
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Bad Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2')
+options=(!libtool !emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('198759adb10ceb1777245f5706a198708e4539cd1e19b8a900f5d573fc76089f')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  autoreconf
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Bad Plugins (Archlinux) \
+--with-package-origin=http://www.archlinux.org/; \
+--with-gtk=3.0
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-12-19 19:49:23 UTC (rev 173510)
+++ extra-x86_64/PKGBUILD   2012-12-19 19:49:25 UTC (rev 173511)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-bad
-pkgver=1.0.3
-pkgrel=1
-pkgdesc=GStreamer Multimedia Framework Bad Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus')
-makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2')
-options=(!libtool !emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('2eae746be0b4c7fa2f1e057c91bd36940d7c25593ab612b707904461360031f0')
-
-build() {
-  cd $pkgname-$pkgver
-  sed -i '/AC_PATH_XTRA/d' configure.ac
-  autoreconf
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name=GStreamer Bad Plugins (Archlinux) \
---with-package-origin=http://www.archlinux.org/; \
---with-gtk=3.0
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
- 

[arch-commits] Commit in gst-plugins-bad/repos (6 files)

2012-10-30 Thread Jan Steffens
Date: Tuesday, October 30, 2012 @ 18:45:29
  Author: heftig
Revision: 169930

db-move: moved gst-plugins-bad from [testing] to [extra] (i686, x86_64)

Added:
  gst-plugins-bad/repos/extra-i686/
  gst-plugins-bad/repos/extra-i686/PKGBUILD
(from rev 169922, gst-plugins-bad/repos/testing-i686/PKGBUILD)
  gst-plugins-bad/repos/extra-x86_64/
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD
(from rev 169922, gst-plugins-bad/repos/testing-x86_64/PKGBUILD)
Deleted:
  gst-plugins-bad/repos/testing-i686/
  gst-plugins-bad/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   37 +
 extra-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: gst-plugins-bad/repos/extra-i686/PKGBUILD (from rev 169922, 
gst-plugins-bad/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-30 22:45:29 UTC (rev 169930)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 153258 2012-03-12 16:05:19Z jgc $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-bad
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Bad Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2')
+options=(!libtool !emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('9e503305799a2b6eb9d0b77c59b8aa8bbe9e6eb815a0635bd013560c73996579')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  autoreconf
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Bad Plugins (Archlinux) \
+--with-package-origin=http://www.archlinux.org/; \
+--with-gtk=3.0
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: gst-plugins-bad/repos/extra-x86_64/PKGBUILD (from rev 169922, 
gst-plugins-bad/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-10-30 22:45:29 UTC (rev 169930)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 153258 2012-03-12 16:05:19Z jgc $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-bad
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Bad Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2')
+options=(!libtool !emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('9e503305799a2b6eb9d0b77c59b8aa8bbe9e6eb815a0635bd013560c73996579')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  autoreconf
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Bad Plugins (Archlinux) \
+--with-package-origin=http://www.archlinux.org/; \
+--with-gtk=3.0
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in gst-plugins-bad/repos (6 files)

2012-10-18 Thread Jan de Groot
Date: Thursday, October 18, 2012 @ 15:24:53
  Author: jgc
Revision: 169198

db-move: moved gst-plugins-bad from [gnome-unstable] to [testing] (i686, x86_64)

Added:
  gst-plugins-bad/repos/testing-i686/
  gst-plugins-bad/repos/testing-i686/PKGBUILD
(from rev 169138, gst-plugins-bad/repos/gnome-unstable-i686/PKGBUILD)
  gst-plugins-bad/repos/testing-x86_64/
  gst-plugins-bad/repos/testing-x86_64/PKGBUILD
(from rev 169138, gst-plugins-bad/repos/gnome-unstable-x86_64/PKGBUILD)
Deleted:
  gst-plugins-bad/repos/gnome-unstable-i686/
  gst-plugins-bad/repos/gnome-unstable-x86_64/

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: gst-plugins-bad/repos/testing-i686/PKGBUILD (from rev 169138, 
gst-plugins-bad/repos/gnome-unstable-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-18 19:24:53 UTC (rev 169198)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 153258 2012-03-12 16:05:19Z jgc $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-bad
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Bad Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus')
+makedepends=('gstreamer' 'schroedinger' 'gtk3' 'libexif' 'libdvdread' 
'libvdpau' 'libmpeg2')
+options=(!libtool !emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('5e3cffcd258c4c722c880a52ebc9920d6b38aa4153bbc49d1b5a9893885d45f3')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  autoreconf
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Bad Plugins (Archlinux) \
+--with-package-origin=http://www.archlinux.org/; \
+--with-gtk=3.0
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: gst-plugins-bad/repos/testing-x86_64/PKGBUILD (from rev 169138, 
gst-plugins-bad/repos/gnome-unstable-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-10-18 19:24:53 UTC (rev 169198)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 153258 2012-03-12 16:05:19Z jgc $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-bad
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Bad Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus')
+makedepends=('gstreamer' 'schroedinger' 'gtk3' 'libexif' 'libdvdread' 
'libvdpau' 'libmpeg2')
+options=(!libtool !emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('5e3cffcd258c4c722c880a52ebc9920d6b38aa4153bbc49d1b5a9893885d45f3')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  autoreconf
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Bad Plugins (Archlinux) \
+--with-package-origin=http://www.archlinux.org/; \
+--with-gtk=3.0
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}