Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Nov 2019 16:42:19 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r516899 - in head/multimedia/vapoursynth: . files
Message-ID:  <201911061642.xA6GgJr7040879@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed Nov  6 16:42:19 2019
New Revision: 516899
URL: https://svnweb.freebsd.org/changeset/ports/516899

Log:
  multimedia/vapoursynth: update to R48
  
  Changes:	http://www.vapoursynth.com/2019/10/r48-avx2-instrinsics-for-everyone/
  Changes:	https://github.com/vapoursynth/vapoursynth/compare/R47.2...R48
  Reported by:	GitHub (watch releases)

Modified:
  head/multimedia/vapoursynth/Makefile   (contents, props changed)
  head/multimedia/vapoursynth/distinfo   (contents, props changed)
  head/multimedia/vapoursynth/files/patch-non-x86   (contents, props changed)

Modified: head/multimedia/vapoursynth/Makefile
==============================================================================
--- head/multimedia/vapoursynth/Makefile	Wed Nov  6 16:36:43 2019	(r516898)
+++ head/multimedia/vapoursynth/Makefile	Wed Nov  6 16:42:19 2019	(r516899)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	vapoursynth
-PORTVERSION=	R47.2
+DISTVERSION=	R48
 CATEGORIES=	multimedia
 
 MAINTAINER=	jbeich@FreeBSD.org

Modified: head/multimedia/vapoursynth/distinfo
==============================================================================
--- head/multimedia/vapoursynth/distinfo	Wed Nov  6 16:36:43 2019	(r516898)
+++ head/multimedia/vapoursynth/distinfo	Wed Nov  6 16:42:19 2019	(r516899)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1565895705
-SHA256 (vapoursynth-vapoursynth-R47.2_GH0.tar.gz) = 8ce4553f9fc5e5bbfb26ec9c0c5bf94be307530f947424c713ef67bc8a6d22b2
-SIZE (vapoursynth-vapoursynth-R47.2_GH0.tar.gz) = 585731
+TIMESTAMP = 1571984167
+SHA256 (vapoursynth-vapoursynth-R48_GH0.tar.gz) = 3e98d134e16af894cf7040e4383e4ef753cafede34d5d77c42a2bb89790c50a8
+SIZE (vapoursynth-vapoursynth-R48_GH0.tar.gz) = 611523

Modified: head/multimedia/vapoursynth/files/patch-non-x86
==============================================================================
--- head/multimedia/vapoursynth/files/patch-non-x86	Wed Nov  6 16:36:43 2019	(r516898)
+++ head/multimedia/vapoursynth/files/patch-non-x86	Wed Nov  6 16:42:19 2019	(r516899)
@@ -1,6 +1,6 @@
---- src/core/cpufeatures.c.orig	2018-07-13 15:12:57 UTC
-+++ src/core/cpufeatures.c
-@@ -69,7 +69,7 @@ void getCPUFeatures(CPUFeatures *cpuFeatures) {
+--- 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)
          }
      }
  }
@@ -8,21 +8,23 @@
 +#elif defined(VS_TARGET_OS_LINUX) && defined(__linux__)
  #include <sys/auxv.h>
  
- void getCPUFeatures(CPUFeatures *cpuFeatures) {
-@@ -98,5 +98,9 @@ void getCPUFeatures(CPUFeatures *cpuFeatures) {
+ 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."
-+void getCPUFeatures(CPUFeatures *cpuFeatures) {
++static void doGetCPUFeatures(CPUFeatures *cpuFeatures) {
 +    memset(cpuFeatures, 0, sizeof(CPUFeatures));
 +
 +    cpuFeatures->can_run_vs = 1;
 +}
  #endif
---- src/core/cpufeatures.h.orig	2018-07-13 15:12:57 UTC
+ 
+ const CPUFeatures *getCPUFeatures(void) {
+--- src/core/cpufeatures.h.orig	2019-10-25 06:16:07 UTC
 +++ src/core/cpufeatures.h
-@@ -59,8 +59,6 @@ typedef struct CPUFeatures {
+@@ -63,8 +63,6 @@ typedef struct CPUFeatures {
      char efp_double;
      char dfp;
      char vsx;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911061642.xA6GgJr7040879>