aboutsummaryrefslogtreecommitdiff
path: root/multimedia/vapoursynth
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2020-03-26 20:46:50 +0000
committerJan Beich <jbeich@FreeBSD.org>2020-03-26 20:46:50 +0000
commit31f887a4e10305f045e375049e5dbcd7d784d4f4 (patch)
tree73984749ddc0c873fa0f3f122e1c44124769a7a1 /multimedia/vapoursynth
parent1625f8868f0e8e3dcabf915fa38242e163d345ed (diff)
downloadports-31f887a4e10305f045e375049e5dbcd7d784d4f4.tar.gz
ports-31f887a4e10305f045e375049e5dbcd7d784d4f4.zip
multimedia/vapoursynth: update to R49
Notes
Notes: svn path=/head/; revision=529217
Diffstat (limited to 'multimedia/vapoursynth')
-rw-r--r--multimedia/vapoursynth/Makefile7
-rw-r--r--multimedia/vapoursynth/distinfo10
-rw-r--r--multimedia/vapoursynth/files/patch-non-x8635
3 files changed, 5 insertions, 47 deletions
diff --git a/multimedia/vapoursynth/Makefile b/multimedia/vapoursynth/Makefile
index 65f3056c9bc5..9aafe8d2b827 100644
--- a/multimedia/vapoursynth/Makefile
+++ b/multimedia/vapoursynth/Makefile
@@ -1,12 +1,9 @@
# $FreeBSD$
PORTNAME= vapoursynth
-DISTVERSION= R48
+DISTVERSION= R49
CATEGORIES= multimedia
-PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
-PATCHFILES+= a9b657d8b014.patch:-p1 4d4f8cbf272c.patch:-p1
-
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Video processing framework with simplicity in mind
@@ -54,7 +51,7 @@ SIMD_CONFIGURE_ENABLE= x86-asm
# COMPS group
CORE_DESC= Core library
-CORE_BUILD_DEPENDS= sekrit-twc-zimg>=2.9.1:graphics/sekrit-twc-zimg
+CORE_BUILD_DEPENDS= sekrit-twc-zimg>=2.9.3:graphics/sekrit-twc-zimg
CORE_LIB_DEPENDS= libzimg.so:graphics/sekrit-twc-zimg
CORE_USES= compiler:c++11-lib
CORE_CONFIGURE_ENABLE= core
diff --git a/multimedia/vapoursynth/distinfo b/multimedia/vapoursynth/distinfo
index d83340773c7f..4da9234d0788 100644
--- a/multimedia/vapoursynth/distinfo
+++ b/multimedia/vapoursynth/distinfo
@@ -1,7 +1,3 @@
-TIMESTAMP = 1571984167
-SHA256 (vapoursynth-vapoursynth-R48_GH0.tar.gz) = 3e98d134e16af894cf7040e4383e4ef753cafede34d5d77c42a2bb89790c50a8
-SIZE (vapoursynth-vapoursynth-R48_GH0.tar.gz) = 611523
-SHA256 (a9b657d8b014.patch) = 95e5f2ec7b3c2d4c252721ee986f4c91fe7ab12a35c3de6ce13dede6543cb9c1
-SIZE (a9b657d8b014.patch) = 2712
-SHA256 (4d4f8cbf272c.patch) = b217e1d5d0278b65a1169d386a34d7882db05652585723194496de081281381e
-SIZE (4d4f8cbf272c.patch) = 654
+TIMESTAMP = 1584473787
+SHA256 (vapoursynth-vapoursynth-R49_GH0.tar.gz) = 126d1e68d3a3e80d1e215c8a2a5dc8773f5fcac70a6c22dadc837bccb603bccd
+SIZE (vapoursynth-vapoursynth-R49_GH0.tar.gz) = 612156
diff --git a/multimedia/vapoursynth/files/patch-non-x86 b/multimedia/vapoursynth/files/patch-non-x86
deleted file mode 100644
index 7484ac6f981c..000000000000
--- a/multimedia/vapoursynth/files/patch-non-x86
+++ /dev/null
@@ -1,35 +0,0 @@
---- src/core/cpufeatures.cpp.orig 2019-10-25 06:16:07 UTC
-+++ src/core/cpufeatures.cpp
-@@ -102,7 +102,7 @@ static void doGetCPUFeatures(CPUFeatures *cpuFeatures)
- }
- }
- }
--#elif defined(VS_TARGET_OS_LINUX)
-+#elif defined(VS_TARGET_OS_LINUX) && defined(__linux__)
- #include <sys/auxv.h>
-
- static void doGetCPUFeatures(CPUFeatures *cpuFeatures) {
-@@ -131,7 +131,11 @@ static void doGetCPUFeatures(CPUFeatures *cpuFeatures)
- #endif
- }
- #else
--#warning "Do not know how to get CPU features."
-+static void doGetCPUFeatures(CPUFeatures *cpuFeatures) {
-+ memset(cpuFeatures, 0, sizeof(CPUFeatures));
-+
-+ cpuFeatures->can_run_vs = 1;
-+}
- #endif
-
- const CPUFeatures *getCPUFeatures(void) {
---- src/core/cpufeatures.h.orig 2019-10-25 06:16:07 UTC
-+++ src/core/cpufeatures.h
-@@ -63,8 +63,6 @@ typedef struct CPUFeatures {
- char efp_double;
- char dfp;
- char vsx;
--#else
--#warning "No VS_TARGET_CPU_* defined/handled!"
- #endif
- } CPUFeatures;
-