Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] libva: update to 2.9.1
@ 2020-11-11  0:47 ndowens
  2020-11-11  0:48 ` [PR PATCH] [Updated] " ndowens
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: ndowens @ 2020-11-11  0:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

There is a new pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages libva
https://github.com/void-linux/void-packages/pull/26279

libva: update to 2.9.1


A patch file from https://github.com/void-linux/void-packages/pull/26279.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-libva-26279.patch --]
[-- Type: text/x-diff, Size: 2996 bytes --]

From a6e0ac981e7af071a3b0e7ca651469f9cbe9c4bf Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:43:43 -0600
Subject: [PATCH 1/2] libva: update to 2.9.1

---
 srcpkgs/libva/template | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libva/template b/srcpkgs/libva/template
index d681e84c848..2c2abafdba4 100644
--- a/srcpkgs/libva/template
+++ b/srcpkgs/libva/template
@@ -1,10 +1,10 @@
 # Template file for 'libva'
 pkgname=libva
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Dwith_glx=no $(vopt_if wayland -Dwith_wayland=yes)"
-hostmakedepends="pkg-config $(vopt_if wayland wayland-devel)"
+hostmakedepends="pkg-config"
 makedepends="libXfixes-devel libXext-devel libdrm-devel
  $(vopt_if wayland 'libffi-devel wayland-devel')"
 short_desc="Video Acceleration (VA) API"
@@ -13,11 +13,15 @@ license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
 distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
-checksum=f31549dd476e01504ba6ff62f69862eb78555a9809ebe737056543a189d619dc
+checksum=4e8640f65ad659332c5d24b7715703c95e820083ee11126c9cd051d418e3d9e0
 
 build_options="wayland"
 build_options_default="wayland"
 
+if [ "$CROSS_BUILD" ]; then
+	hostmakedepends+=" $(vopt_if wayland wayland-devel)"
+fi
+
 case "$XBPS_TARGET_MACHINE" in
 	i686*) configure_args+=" -Ddriverdir=/usr/lib32/dri";;
 esac

From e0a126e79435a0bd14756f2bb17636a269d38ab1 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:47:18 -0600
Subject: [PATCH 2/2] libva-utils: update to 2.9.1

---
 srcpkgs/libva-utils/template | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/libva-utils/template b/srcpkgs/libva-utils/template
index b86a5c9c53a..719eb214544 100644
--- a/srcpkgs/libva-utils/template
+++ b/srcpkgs/libva-utils/template
@@ -1,18 +1,23 @@
 # Template file for 'libva-utils'
 pkgname=libva-utils
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Ddrm=true -Dx11=true -Dwayland=true"
-hostmakedepends="pkg-config wayland-devel"
-makedepends="libva-devel libXfixes-devel libXext-devel libdrm-devel wayland-devel"
+hostmakedepends="pkg-config"
+makedepends="libva-devel libXfixes-devel libXext-devel
+ libdrm-devel wayland-devel"
 short_desc="Video Acceleration (VA) API - Utilities"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva-utils/master/NEWS"
 distfiles="https://github.com/intel/libva-utils/archive/${version}.tar.gz"
-checksum=d363210a42cd2667f6f7cff0e57db1d527feb067ffebe3ba233bc80b1bdcd9b4
+checksum=7cd7111349cdc227c64d5ab68de4a03eacbea26441c7781ccd548491994f0320
+
+if [ "$CROSS_BUILD" ]; then
+	hostmakedepends+=" wayland-devel"
+fi
 
 post_install() {
 	vlicense COPYING

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] libva: update to 2.9.1
  2020-11-11  0:47 [PR PATCH] libva: update to 2.9.1 ndowens
@ 2020-11-11  0:48 ` ndowens
  2020-11-11 22:16 ` travankor
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: ndowens @ 2020-11-11  0:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages libva
https://github.com/void-linux/void-packages/pull/26279

libva: update to 2.9.1


A patch file from https://github.com/void-linux/void-packages/pull/26279.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-libva-26279.patch --]
[-- Type: text/x-diff, Size: 2996 bytes --]

From 04b2df62dcf11611f70624a8e9088ce3884e7df4 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:47:18 -0600
Subject: [PATCH 1/2] libva-utils: update to 2.9.1

---
 srcpkgs/libva-utils/template | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/libva-utils/template b/srcpkgs/libva-utils/template
index b86a5c9c53a..719eb214544 100644
--- a/srcpkgs/libva-utils/template
+++ b/srcpkgs/libva-utils/template
@@ -1,18 +1,23 @@
 # Template file for 'libva-utils'
 pkgname=libva-utils
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Ddrm=true -Dx11=true -Dwayland=true"
-hostmakedepends="pkg-config wayland-devel"
-makedepends="libva-devel libXfixes-devel libXext-devel libdrm-devel wayland-devel"
+hostmakedepends="pkg-config"
+makedepends="libva-devel libXfixes-devel libXext-devel
+ libdrm-devel wayland-devel"
 short_desc="Video Acceleration (VA) API - Utilities"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva-utils/master/NEWS"
 distfiles="https://github.com/intel/libva-utils/archive/${version}.tar.gz"
-checksum=d363210a42cd2667f6f7cff0e57db1d527feb067ffebe3ba233bc80b1bdcd9b4
+checksum=7cd7111349cdc227c64d5ab68de4a03eacbea26441c7781ccd548491994f0320
+
+if [ "$CROSS_BUILD" ]; then
+	hostmakedepends+=" wayland-devel"
+fi
 
 post_install() {
 	vlicense COPYING

From 3713b9c00197a710d792ba1b681830cfe8fe6b80 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:43:43 -0600
Subject: [PATCH 2/2] libva: update to 2.9.1

---
 srcpkgs/libva/template | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libva/template b/srcpkgs/libva/template
index d681e84c848..2c2abafdba4 100644
--- a/srcpkgs/libva/template
+++ b/srcpkgs/libva/template
@@ -1,10 +1,10 @@
 # Template file for 'libva'
 pkgname=libva
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Dwith_glx=no $(vopt_if wayland -Dwith_wayland=yes)"
-hostmakedepends="pkg-config $(vopt_if wayland wayland-devel)"
+hostmakedepends="pkg-config"
 makedepends="libXfixes-devel libXext-devel libdrm-devel
  $(vopt_if wayland 'libffi-devel wayland-devel')"
 short_desc="Video Acceleration (VA) API"
@@ -13,11 +13,15 @@ license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
 distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
-checksum=f31549dd476e01504ba6ff62f69862eb78555a9809ebe737056543a189d619dc
+checksum=4e8640f65ad659332c5d24b7715703c95e820083ee11126c9cd051d418e3d9e0
 
 build_options="wayland"
 build_options_default="wayland"
 
+if [ "$CROSS_BUILD" ]; then
+	hostmakedepends+=" $(vopt_if wayland wayland-devel)"
+fi
+
 case "$XBPS_TARGET_MACHINE" in
 	i686*) configure_args+=" -Ddriverdir=/usr/lib32/dri";;
 esac

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: libva: update to 2.9.1
  2020-11-11  0:47 [PR PATCH] libva: update to 2.9.1 ndowens
  2020-11-11  0:48 ` [PR PATCH] [Updated] " ndowens
@ 2020-11-11 22:16 ` travankor
  2020-11-11 22:21 ` [PR PATCH] [Updated] " ndowens
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: travankor @ 2020-11-11 22:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 156 bytes --]

New comment by travankor on void-packages repository

https://github.com/void-linux/void-packages/pull/26279#issuecomment-725691532

Comment:
libva-glx too

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] libva: update to 2.9.1
  2020-11-11  0:47 [PR PATCH] libva: update to 2.9.1 ndowens
  2020-11-11  0:48 ` [PR PATCH] [Updated] " ndowens
  2020-11-11 22:16 ` travankor
@ 2020-11-11 22:21 ` ndowens
  2020-11-14  0:35 ` [PR PATCH] [Closed]: " ndowens
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: ndowens @ 2020-11-11 22:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages libva
https://github.com/void-linux/void-packages/pull/26279

libva: update to 2.9.1


A patch file from https://github.com/void-linux/void-packages/pull/26279.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-libva-26279.patch --]
[-- Type: text/x-diff, Size: 4477 bytes --]

From 04b2df62dcf11611f70624a8e9088ce3884e7df4 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:47:18 -0600
Subject: [PATCH 1/3] libva-utils: update to 2.9.1

---
 srcpkgs/libva-utils/template | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/libva-utils/template b/srcpkgs/libva-utils/template
index b86a5c9c53a..719eb214544 100644
--- a/srcpkgs/libva-utils/template
+++ b/srcpkgs/libva-utils/template
@@ -1,18 +1,23 @@
 # Template file for 'libva-utils'
 pkgname=libva-utils
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Ddrm=true -Dx11=true -Dwayland=true"
-hostmakedepends="pkg-config wayland-devel"
-makedepends="libva-devel libXfixes-devel libXext-devel libdrm-devel wayland-devel"
+hostmakedepends="pkg-config"
+makedepends="libva-devel libXfixes-devel libXext-devel
+ libdrm-devel wayland-devel"
 short_desc="Video Acceleration (VA) API - Utilities"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva-utils/master/NEWS"
 distfiles="https://github.com/intel/libva-utils/archive/${version}.tar.gz"
-checksum=d363210a42cd2667f6f7cff0e57db1d527feb067ffebe3ba233bc80b1bdcd9b4
+checksum=7cd7111349cdc227c64d5ab68de4a03eacbea26441c7781ccd548491994f0320
+
+if [ "$CROSS_BUILD" ]; then
+	hostmakedepends+=" wayland-devel"
+fi
 
 post_install() {
 	vlicense COPYING

From 14353981bdcaf5c4dc5f4b009838df7c1dbcbf2d Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Wed, 11 Nov 2020 16:21:44 -0600
Subject: [PATCH 2/3] libva-glx: update to 2.9.1

---
 srcpkgs/libva-glx/template | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libva-glx/template b/srcpkgs/libva-glx/template
index 19ff3ba7980..7a5830f6847 100644
--- a/srcpkgs/libva-glx/template
+++ b/srcpkgs/libva-glx/template
@@ -7,12 +7,12 @@
 # KEEP THIS PACKAGE SYNCHRONIZED WITH "libva".
 #
 pkgname=libva-glx
-version=2.9.0
+version=2.9.1
 revision=1
 wrksrc="libva-${version}"
 build_style=meson
 configure_args="-Dwith_glx=yes -Dwith_wayland=yes"
-hostmakedepends="pkg-config wayland-devel"
+hostmakedepends="pkg-config"
 makedepends="libva-devel libXfixes-devel MesaLib-devel wayland-devel"
 short_desc="Video Acceleration (VA) API - GLX backend"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -20,7 +20,11 @@ license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
 distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
-checksum=f31549dd476e01504ba6ff62f69862eb78555a9809ebe737056543a189d619dc
+checksum=4e8640f65ad659332c5d24b7715703c95e820083ee11126c9cd051d418e3d9e0
+
+if [ "$CROSS_BUILD" ];
+	then hostnamedepends+=" wayland-devel"
+fi
 
 post_install() {
 	# We are only interested in the glx component, remove everything else.

From 6366ca45529b3e59d7c1c954652785e34e7a2f3e Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:43:43 -0600
Subject: [PATCH 3/3] libva: update to 2.9.1

---
 srcpkgs/libva/template | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libva/template b/srcpkgs/libva/template
index d681e84c848..2c2abafdba4 100644
--- a/srcpkgs/libva/template
+++ b/srcpkgs/libva/template
@@ -1,10 +1,10 @@
 # Template file for 'libva'
 pkgname=libva
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Dwith_glx=no $(vopt_if wayland -Dwith_wayland=yes)"
-hostmakedepends="pkg-config $(vopt_if wayland wayland-devel)"
+hostmakedepends="pkg-config"
 makedepends="libXfixes-devel libXext-devel libdrm-devel
  $(vopt_if wayland 'libffi-devel wayland-devel')"
 short_desc="Video Acceleration (VA) API"
@@ -13,11 +13,15 @@ license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
 distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
-checksum=f31549dd476e01504ba6ff62f69862eb78555a9809ebe737056543a189d619dc
+checksum=4e8640f65ad659332c5d24b7715703c95e820083ee11126c9cd051d418e3d9e0
 
 build_options="wayland"
 build_options_default="wayland"
 
+if [ "$CROSS_BUILD" ]; then
+	hostmakedepends+=" $(vopt_if wayland wayland-devel)"
+fi
+
 case "$XBPS_TARGET_MACHINE" in
 	i686*) configure_args+=" -Ddriverdir=/usr/lib32/dri";;
 esac

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Closed]: libva: update to 2.9.1
  2020-11-11  0:47 [PR PATCH] libva: update to 2.9.1 ndowens
                   ` (2 preceding siblings ...)
  2020-11-11 22:21 ` [PR PATCH] [Updated] " ndowens
@ 2020-11-14  0:35 ` ndowens
  2020-11-14  0:44 ` [PR PATCH] [Updated] " ndowens
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: ndowens @ 2020-11-14  0:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 156 bytes --]

There's a closed pull request on the void-packages repository

libva: update to 2.9.1
https://github.com/void-linux/void-packages/pull/26279

Description:


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] libva: update to 2.9.1
  2020-11-11  0:47 [PR PATCH] libva: update to 2.9.1 ndowens
                   ` (3 preceding siblings ...)
  2020-11-14  0:35 ` [PR PATCH] [Closed]: " ndowens
@ 2020-11-14  0:44 ` ndowens
  2020-11-14  1:01 ` ndowens
  2020-11-14 15:09 ` [PR PATCH] [Merged]: " Hoshpak
  6 siblings, 0 replies; 8+ messages in thread
From: ndowens @ 2020-11-14  0:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages libva
https://github.com/void-linux/void-packages/pull/26279

libva: update to 2.9.1


A patch file from https://github.com/void-linux/void-packages/pull/26279.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-libva-26279.patch --]
[-- Type: text/x-diff, Size: 3809 bytes --]

From 1b86869bd2e98e51c1ea638ebed6d126d9e64a7b Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:47:18 -0600
Subject: [PATCH 1/3] libva-utils: update to 2.9.1

---
 srcpkgs/libva-utils/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libva-utils/template b/srcpkgs/libva-utils/template
index b86a5c9c53a..1b3d2578b26 100644
--- a/srcpkgs/libva-utils/template
+++ b/srcpkgs/libva-utils/template
@@ -1,18 +1,19 @@
 # Template file for 'libva-utils'
 pkgname=libva-utils
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Ddrm=true -Dx11=true -Dwayland=true"
 hostmakedepends="pkg-config wayland-devel"
-makedepends="libva-devel libXfixes-devel libXext-devel libdrm-devel wayland-devel"
+makedepends="libva-devel libXfixes-devel libXext-devel
+ libdrm-devel wayland-devel"
 short_desc="Video Acceleration (VA) API - Utilities"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva-utils/master/NEWS"
 distfiles="https://github.com/intel/libva-utils/archive/${version}.tar.gz"
-checksum=d363210a42cd2667f6f7cff0e57db1d527feb067ffebe3ba233bc80b1bdcd9b4
+checksum=7cd7111349cdc227c64d5ab68de4a03eacbea26441c7781ccd548491994f0320
 
 post_install() {
 	vlicense COPYING

From 92a10575b8d1fd5e1e88a300ba62c072e814c0c6 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Wed, 11 Nov 2020 16:21:44 -0600
Subject: [PATCH 2/3] libva-glx: update to 2.9.1

---
 srcpkgs/libva-glx/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/libva-glx/template b/srcpkgs/libva-glx/template
index 19ff3ba7980..e408ac0622e 100644
--- a/srcpkgs/libva-glx/template
+++ b/srcpkgs/libva-glx/template
@@ -7,7 +7,7 @@
 # KEEP THIS PACKAGE SYNCHRONIZED WITH "libva".
 #
 pkgname=libva-glx
-version=2.9.0
+version=2.9.1
 revision=1
 wrksrc="libva-${version}"
 build_style=meson
@@ -20,7 +20,7 @@ license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
 distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
-checksum=f31549dd476e01504ba6ff62f69862eb78555a9809ebe737056543a189d619dc
+checksum=4e8640f65ad659332c5d24b7715703c95e820083ee11126c9cd051d418e3d9e0
 
 post_install() {
 	# We are only interested in the glx component, remove everything else.

From 1fb853341666171e3363face0c23b71d4d47c733 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:43:43 -0600
Subject: [PATCH 3/3] libva: update to 2.9.1

---
 srcpkgs/libva/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libva/template b/srcpkgs/libva/template
index d681e84c848..1b57fdead1d 100644
--- a/srcpkgs/libva/template
+++ b/srcpkgs/libva/template
@@ -1,10 +1,10 @@
 # Template file for 'libva'
 pkgname=libva
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Dwith_glx=no $(vopt_if wayland -Dwith_wayland=yes)"
-hostmakedepends="pkg-config $(vopt_if wayland wayland-devel)"
+hostmakedepends="pkg-config wayland-devel"
 makedepends="libXfixes-devel libXext-devel libdrm-devel
  $(vopt_if wayland 'libffi-devel wayland-devel')"
 short_desc="Video Acceleration (VA) API"
@@ -13,7 +13,7 @@ license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
 distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
-checksum=f31549dd476e01504ba6ff62f69862eb78555a9809ebe737056543a189d619dc
+checksum=4e8640f65ad659332c5d24b7715703c95e820083ee11126c9cd051d418e3d9e0
 
 build_options="wayland"
 build_options_default="wayland"

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] libva: update to 2.9.1
  2020-11-11  0:47 [PR PATCH] libva: update to 2.9.1 ndowens
                   ` (4 preceding siblings ...)
  2020-11-14  0:44 ` [PR PATCH] [Updated] " ndowens
@ 2020-11-14  1:01 ` ndowens
  2020-11-14 15:09 ` [PR PATCH] [Merged]: " Hoshpak
  6 siblings, 0 replies; 8+ messages in thread
From: ndowens @ 2020-11-14  1:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages libva
https://github.com/void-linux/void-packages/pull/26279

libva: update to 2.9.1


A patch file from https://github.com/void-linux/void-packages/pull/26279.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-libva-26279.patch --]
[-- Type: text/x-diff, Size: 3819 bytes --]

From 1b86869bd2e98e51c1ea638ebed6d126d9e64a7b Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:47:18 -0600
Subject: [PATCH 1/3] libva-utils: update to 2.9.1

---
 srcpkgs/libva-utils/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libva-utils/template b/srcpkgs/libva-utils/template
index b86a5c9c53a..1b3d2578b26 100644
--- a/srcpkgs/libva-utils/template
+++ b/srcpkgs/libva-utils/template
@@ -1,18 +1,19 @@
 # Template file for 'libva-utils'
 pkgname=libva-utils
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Ddrm=true -Dx11=true -Dwayland=true"
 hostmakedepends="pkg-config wayland-devel"
-makedepends="libva-devel libXfixes-devel libXext-devel libdrm-devel wayland-devel"
+makedepends="libva-devel libXfixes-devel libXext-devel
+ libdrm-devel wayland-devel"
 short_desc="Video Acceleration (VA) API - Utilities"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva-utils/master/NEWS"
 distfiles="https://github.com/intel/libva-utils/archive/${version}.tar.gz"
-checksum=d363210a42cd2667f6f7cff0e57db1d527feb067ffebe3ba233bc80b1bdcd9b4
+checksum=7cd7111349cdc227c64d5ab68de4a03eacbea26441c7781ccd548491994f0320
 
 post_install() {
 	vlicense COPYING

From 92a10575b8d1fd5e1e88a300ba62c072e814c0c6 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Wed, 11 Nov 2020 16:21:44 -0600
Subject: [PATCH 2/3] libva-glx: update to 2.9.1

---
 srcpkgs/libva-glx/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/libva-glx/template b/srcpkgs/libva-glx/template
index 19ff3ba7980..e408ac0622e 100644
--- a/srcpkgs/libva-glx/template
+++ b/srcpkgs/libva-glx/template
@@ -7,7 +7,7 @@
 # KEEP THIS PACKAGE SYNCHRONIZED WITH "libva".
 #
 pkgname=libva-glx
-version=2.9.0
+version=2.9.1
 revision=1
 wrksrc="libva-${version}"
 build_style=meson
@@ -20,7 +20,7 @@ license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
 distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
-checksum=f31549dd476e01504ba6ff62f69862eb78555a9809ebe737056543a189d619dc
+checksum=4e8640f65ad659332c5d24b7715703c95e820083ee11126c9cd051d418e3d9e0
 
 post_install() {
 	# We are only interested in the glx component, remove everything else.

From b0c7177ca31b369cf2750d5537351567aa56df0c Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Tue, 10 Nov 2020 18:43:43 -0600
Subject: [PATCH 3/3] libva: update to 2.9.1

[ci skip]
---
 srcpkgs/libva/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libva/template b/srcpkgs/libva/template
index d681e84c848..1b57fdead1d 100644
--- a/srcpkgs/libva/template
+++ b/srcpkgs/libva/template
@@ -1,10 +1,10 @@
 # Template file for 'libva'
 pkgname=libva
-version=2.9.0
+version=2.9.1
 revision=1
 build_style=meson
 configure_args="-Dwith_glx=no $(vopt_if wayland -Dwith_wayland=yes)"
-hostmakedepends="pkg-config $(vopt_if wayland wayland-devel)"
+hostmakedepends="pkg-config wayland-devel"
 makedepends="libXfixes-devel libXext-devel libdrm-devel
  $(vopt_if wayland 'libffi-devel wayland-devel')"
 short_desc="Video Acceleration (VA) API"
@@ -13,7 +13,7 @@ license="MIT"
 homepage="https://01.org/linuxmedia/vaapi"
 changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
 distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
-checksum=f31549dd476e01504ba6ff62f69862eb78555a9809ebe737056543a189d619dc
+checksum=4e8640f65ad659332c5d24b7715703c95e820083ee11126c9cd051d418e3d9e0
 
 build_options="wayland"
 build_options_default="wayland"

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Merged]: libva: update to 2.9.1
  2020-11-11  0:47 [PR PATCH] libva: update to 2.9.1 ndowens
                   ` (5 preceding siblings ...)
  2020-11-14  1:01 ` ndowens
@ 2020-11-14 15:09 ` Hoshpak
  6 siblings, 0 replies; 8+ messages in thread
From: Hoshpak @ 2020-11-14 15:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 156 bytes --]

There's a merged pull request on the void-packages repository

libva: update to 2.9.1
https://github.com/void-linux/void-packages/pull/26279

Description:


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-11-14 15:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-11  0:47 [PR PATCH] libva: update to 2.9.1 ndowens
2020-11-11  0:48 ` [PR PATCH] [Updated] " ndowens
2020-11-11 22:16 ` travankor
2020-11-11 22:21 ` [PR PATCH] [Updated] " ndowens
2020-11-14  0:35 ` [PR PATCH] [Closed]: " ndowens
2020-11-14  0:44 ` [PR PATCH] [Updated] " ndowens
2020-11-14  1:01 ` ndowens
2020-11-14 15:09 ` [PR PATCH] [Merged]: " Hoshpak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).