summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD17
-rw-r--r--c247745faaf885fd3fa094198fc0ea288e295dbf.patch66
3 files changed, 8 insertions, 87 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0bd0365f6449..eeaa272af272 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,7 @@
-# Generated by mksrcinfo v8
-# Sat Aug 25 06:19:37 UTC 2018
pkgbase = mingw-w64-gst-plugins-bad
pkgdesc = GStreamer Multimedia Framework Bad Plugins (mingw-w64)
- pkgver = 1.14.2
- pkgrel = 4
+ pkgver = 1.14.3
+ pkgrel = 1
url = http://gstreamer.freedesktop.org/
arch = any
license = LGPL
@@ -42,10 +40,8 @@ pkgbase = mingw-w64-gst-plugins-bad
options = !strip
options = !buildflags
options = staticlibs
- source = http://gstreamer.freedesktop.org//src/gst-plugins-bad/gst-plugins-bad-1.14.2.tar.xz
- source = c247745faaf885fd3fa094198fc0ea288e295dbf.patch
- sha256sums = 34fab7da70994465a64468330b2168a4a0ed90a7de7e4c499b6d127c6c1b1eaf
- sha256sums = 65f6de70e7f08cd60fa913270f44c99baabd51b64bae3669c62d2b5cde1142eb
+ source = http://gstreamer.freedesktop.org//src/gst-plugins-bad/gst-plugins-bad-1.14.3.tar.xz
+ sha256sums = b2224e5d9c1b85ad51233f6135524bb9e16a9172d395edc79c73b89094659fd5
pkgname = mingw-w64-gst-plugins-bad
diff --git a/PKGBUILD b/PKGBUILD
index 5e5297433be1..7b83762abfa4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: drakkan <nicola.murino at gmail dot com>
pkgname=mingw-w64-gst-plugins-bad
-pkgver=1.14.2
-pkgrel=4
+pkgver=1.14.3
+pkgrel=1
pkgdesc="GStreamer Multimedia Framework Bad Plugins (mingw-w64)"
arch=(any)
url="http://gstreamer.freedesktop.org/"
@@ -25,20 +25,11 @@ optdepends=(
)
options=('!strip' '!buildflags' 'staticlibs')
-source=(${url}/src/gst-plugins-bad/gst-plugins-bad-${pkgver}.tar.xz
- 'c247745faaf885fd3fa094198fc0ea288e295dbf.patch')
-sha256sums=('34fab7da70994465a64468330b2168a4a0ed90a7de7e4c499b6d127c6c1b1eaf'
- '65f6de70e7f08cd60fa913270f44c99baabd51b64bae3669c62d2b5cde1142eb')
+source=(${url}/src/gst-plugins-bad/gst-plugins-bad-${pkgver}.tar.xz)
+sha256sums=('b2224e5d9c1b85ad51233f6135524bb9e16a9172d395edc79c73b89094659fd5')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
-prepare() {
- cd "${srcdir}/gst-plugins-bad-${pkgver}"
-
- patch -Np1 < ../c247745faaf885fd3fa094198fc0ea288e295dbf.patch
-}
-
-
build() {
cd "${srcdir}/gst-plugins-bad-${pkgver}"
for _arch in $_architectures; do
diff --git a/c247745faaf885fd3fa094198fc0ea288e295dbf.patch b/c247745faaf885fd3fa094198fc0ea288e295dbf.patch
deleted file mode 100644
index 6671e058c85c..000000000000
--- a/c247745faaf885fd3fa094198fc0ea288e295dbf.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-From c247745faaf885fd3fa094198fc0ea288e295dbf Mon Sep 17 00:00:00 2001
-From: Thibault Saunier <tsaunier@igalia.com>
-Date: Fri, 13 Jul 2018 14:42:28 -0400
-Subject: opencv: Fix build for opencv >= 3.4.2
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-The `CV_RGB` macro is now in `imgproc.hpp`.
-
-Fixes:
-
- ../subprojects/gst-plugins-bad/ext/opencv/gsthanddetect.cpp:497:40: error: ‘CV_RGB’ was not declared in this scope
- cvCircle (img, center, radius, CV_RGB (0, 0, 200), 1, 8, 0);
- ^~~~~~
----
- ext/opencv/MotionCells.cpp | 3 +++
- ext/opencv/gsthanddetect.cpp | 3 +++
- ext/opencv/gsttemplatematch.cpp | 3 +++
- 3 files changed, 9 insertions(+)
-
-diff --git a/ext/opencv/MotionCells.cpp b/ext/opencv/MotionCells.cpp
-index f85989e..175ec90 100644
---- a/ext/opencv/MotionCells.cpp
-+++ b/ext/opencv/MotionCells.cpp
-@@ -51,6 +51,9 @@
-
- #include <errno.h>
- #include "MotionCells.h"
-+#if (CV_MAJOR_VERSION >= 3)
-+#include <opencv2/imgproc.hpp>
-+#endif
- #include <opencv2/imgproc/imgproc_c.h>
-
- MotionCells::MotionCells ()
-diff --git a/ext/opencv/gsthanddetect.cpp b/ext/opencv/gsthanddetect.cpp
-index 60fd5be..47203fd 100644
---- a/ext/opencv/gsthanddetect.cpp
-+++ b/ext/opencv/gsthanddetect.cpp
-@@ -62,6 +62,9 @@
-
- /* element header */
- #include "gsthanddetect.h"
-+#if (CV_MAJOR_VERSION >= 3)
-+#include <opencv2/imgproc.hpp>
-+#endif
- #include <opencv2/imgproc/imgproc_c.h>
-
- GST_DEBUG_CATEGORY_STATIC (gst_handdetect_debug);
-diff --git a/ext/opencv/gsttemplatematch.cpp b/ext/opencv/gsttemplatematch.cpp
-index f39208d..ec0b56a 100644
---- a/ext/opencv/gsttemplatematch.cpp
-+++ b/ext/opencv/gsttemplatematch.cpp
-@@ -63,6 +63,9 @@
-
- #include "../../gst-libs/gst/gst-i18n-plugin.h"
- #include "gsttemplatematch.h"
-+#if (CV_MAJOR_VERSION >= 3)
-+#include <opencv2/imgproc.hpp>
-+#endif
- #include <opencv2/imgproc/imgproc_c.h>
-
- GST_DEBUG_CATEGORY_STATIC (gst_template_match_debug);
---
-cgit v1.1
-