Github messages for voidlinux
 help / color / mirror / Atom feed
From: tibequadorian <tibequadorian@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] libaom: update to 3.2.0.
Date: Sun, 20 Feb 2022 22:12:35 +0100	[thread overview]
Message-ID: <20220220211235.ufe_JzYIMh-HbHC6utwqJ6qtzP9QL0iRVwq8q3Yzn2w@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-35494@inbox.vuxu.org>

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

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

https://github.com/tibequadorian/void-packages libaom
https://github.com/void-linux/void-packages/pull/35494

libaom: update to 3.2.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 618d6c971238969377cc9226631bc2a57a34ca52 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Wed, 9 Feb 2022 19:40:15 +0100
Subject: [PATCH 1/4] libaom: update to 3.2.0.

---
 common/shlibs           |  2 +-
 srcpkgs/libaom/template | 11 +++++++----
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index 7c253776c381..e478344de356 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3460,7 +3460,7 @@ libticalcs2.so.12 libticalcs2-1.1.9_1
 libhtmlcxx.so.3 htmlcxx-0.86_1
 libcss_parser_pp.so.0 htmlcxx-0.86_1
 libcss_parser.so.0 htmlcxx-0.86_1
-libaom.so.2 libaom-2.0.0_1
+libaom.so.3 libaom-3.2.0_1
 libre.so.1 re-2.0.1_1
 libtpms.so.0 libtpms-0.9.0_1
 libswtpm_libtpms.so.0 libswtpm-0.6.1_1
diff --git a/srcpkgs/libaom/template b/srcpkgs/libaom/template
index 657301c7309a..75c2cae19e8d 100644
--- a/srcpkgs/libaom/template
+++ b/srcpkgs/libaom/template
@@ -1,9 +1,10 @@
 # Template file for 'libaom'
 pkgname=libaom
-version=2.0.1
+version=3.2.0
 revision=1
 create_wrksrc=yes
 build_style=cmake
+make_cmd=make
 configure_args="-DENABLE_DOCS=OFF -DBUILD_SHARED_LIBS=ON"
 hostmakedepends="yasm doxygen perl python"
 short_desc="AV1 Codec library implementation"
@@ -12,7 +13,9 @@ license="BSD-2-Clause"
 homepage="https://aomedia.org/"
 changelog="https://aomedia.googlesource.com/aom/+/master/CHANGELOG"
 distfiles="https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz"
-checksum=@b89acd3304531a9f6c99eba13e1de66605893ff8d08abc8c6e0586481a90033a
+checksum=@358ac353cb20555aa8ad8faa4d14b98bf89dd05f76c45548d7219673c767d247
+
+export CMAKE_GENERATOR="Unix Makefiles"
 
 # aom segfaults with default musl stack size
 LDFLAGS="-Wl,-z,stack-size=2097152"
@@ -35,11 +38,11 @@ pre_check() {
 
 do_check() {
 	cd build
-	make testdata ${makejobs}
+	${make_cmd} testdata ${makejobs}
 	../test/examples.sh --bin-path examples
 
 	if [ "$XBPS_CHECK_PKGS" = full ]; then
-		make runtests ${makejobs}
+		${make_cmd} runtests ${makejobs}
 	fi
 }
 

From 2ba37c0b85bc1a555565be0f9619c574a3c7c1d1 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Wed, 9 Feb 2022 19:41:56 +0100
Subject: [PATCH 2/4] gst-plugins-bad1: rebuild against libaom-3.2.0.

---
 srcpkgs/gst-plugins-bad1/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/gst-plugins-bad1/template b/srcpkgs/gst-plugins-bad1/template
index 451f73cb9f55..e0d7500c79e8 100644
--- a/srcpkgs/gst-plugins-bad1/template
+++ b/srcpkgs/gst-plugins-bad1/template
@@ -1,7 +1,7 @@
 # Template file for 'gst-plugins-bad1'
 pkgname=gst-plugins-bad1
 version=1.18.5
-revision=1
+revision=2
 wrksrc="${pkgname/1/}-${version}"
 build_helper="gir"
 build_style=meson

From 2a89110fc78ece57c15a06829a5819b297192acb Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Wed, 9 Feb 2022 19:43:57 +0100
Subject: [PATCH 3/4] ffmpeg: rebuild against libaom-3.2.0.

---
 srcpkgs/ffmpeg/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/ffmpeg/template b/srcpkgs/ffmpeg/template
index c5929b4582f3..51bf6a9bc105 100644
--- a/srcpkgs/ffmpeg/template
+++ b/srcpkgs/ffmpeg/template
@@ -2,7 +2,7 @@
 # audacity also needs to be bumped when a new ffmpeg version bumps libavformat's soname!
 pkgname=ffmpeg
 version=4.4.1
-revision=1
+revision=2
 short_desc="Decoding, encoding and streaming software"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-3.0-or-later"

From a0a1be3a560d5949c8ee891a4fd56205409b8250 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Wed, 9 Feb 2022 19:45:31 +0100
Subject: [PATCH 4/4] libheif: rebuild against libaom-3.2.0.

---
 srcpkgs/libaom/template  | 9 +++------
 srcpkgs/libheif/template | 2 +-
 2 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/libaom/template b/srcpkgs/libaom/template
index 75c2cae19e8d..549e4a7c5dc4 100644
--- a/srcpkgs/libaom/template
+++ b/srcpkgs/libaom/template
@@ -4,7 +4,6 @@ version=3.2.0
 revision=1
 create_wrksrc=yes
 build_style=cmake
-make_cmd=make
 configure_args="-DENABLE_DOCS=OFF -DBUILD_SHARED_LIBS=ON"
 hostmakedepends="yasm doxygen perl python"
 short_desc="AV1 Codec library implementation"
@@ -15,8 +14,6 @@ changelog="https://aomedia.googlesource.com/aom/+/master/CHANGELOG"
 distfiles="https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz"
 checksum=@358ac353cb20555aa8ad8faa4d14b98bf89dd05f76c45548d7219673c767d247
 
-export CMAKE_GENERATOR="Unix Makefiles"
-
 # aom segfaults with default musl stack size
 LDFLAGS="-Wl,-z,stack-size=2097152"
 
@@ -38,11 +35,11 @@ pre_check() {
 
 do_check() {
 	cd build
-	${make_cmd} testdata ${makejobs}
-	../test/examples.sh --bin-path examples
+	ninja testdata ${makejobs}
+	test/examples.sh --bin-path examples
 
 	if [ "$XBPS_CHECK_PKGS" = full ]; then
-		${make_cmd} runtests ${makejobs}
+		ninja runtests ${makejobs}
 	fi
 }
 
diff --git a/srcpkgs/libheif/template b/srcpkgs/libheif/template
index 1972c5b8ad7c..48b4279b9f3a 100644
--- a/srcpkgs/libheif/template
+++ b/srcpkgs/libheif/template
@@ -1,7 +1,7 @@
 # Template file for 'libheif'
 pkgname=libheif
 version=1.12.0
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--disable-option-checking"
 hostmakedepends="automake autoconf pkg-config libtool"

  parent reply	other threads:[~2022-02-20 21:12 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-09 19:15 [PR PATCH] " tibequadorian
2022-02-09 19:18 ` [PR PATCH] [Updated] " tibequadorian
2022-02-20 18:04 ` [PR REVIEW] " paper42
2022-02-20 18:20 ` tibequadorian
2022-02-20 18:22 ` tibequadorian
2022-02-20 18:35 ` tibequadorian
2022-02-20 18:38 ` tibequadorian
2022-02-20 20:44 ` paper42
2022-02-20 21:12 ` tibequadorian [this message]
2022-02-20 21:14 ` [PR PATCH] [Updated] " tibequadorian
2022-02-20 21:37 ` tibequadorian
2022-02-20 21:59 ` tibequadorian
2022-02-20 22:51 ` [PR REVIEW] " tibequadorian
2022-06-23  2:15 ` github-actions
2022-07-08  2:14 ` [PR PATCH] [Closed]: " github-actions

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220220211235.ufe_JzYIMh-HbHC6utwqJ6qtzP9QL0iRVwq8q3Yzn2w@z \
    --to=tibequadorian@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).