public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/kvazaar/
Date: Mon, 20 Mar 2023 05:36:09 +0000 (UTC)	[thread overview]
Message-ID: <1679290539.19e111e291e62ab657919e3286442617a23d1f63.sam@gentoo> (raw)

commit:     19e111e291e62ab657919e3286442617a23d1f63
Author:     Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Thu Mar 16 05:57:18 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 20 05:35:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e111e2

media-libs/kvazaar: add 2.2.0, wire up tests

Bug: https://bugs.gentoo.org/896120
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Closes: https://github.com/gentoo/gentoo/pull/30149
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/kvazaar/Manifest                              |  1 +
 .../{kvazaar-9999.ebuild => kvazaar-2.2.0.ebuild}        | 16 ++++++++--------
 media-libs/kvazaar/kvazaar-9999.ebuild                   | 16 ++++++++--------
 3 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/media-libs/kvazaar/Manifest b/media-libs/kvazaar/Manifest
index b4dc3234b543..a3305dc8296a 100644
--- a/media-libs/kvazaar/Manifest
+++ b/media-libs/kvazaar/Manifest
@@ -1,2 +1,3 @@
 DIST greatest-1.2.1.tar.gz 19792 BLAKE2B e6abd20eebf3223311fcd62e341595318dd00f192cf4b62ef3f0443a3e10fee71f4283f836931fee52672f2b37398f86046ae97220c2b6c6045fec9f9bf5cda8 SHA512 c17162fa222c84fef7826ba5202aae573d516a71bc2c59c8991db2a76f7069ed53d00aaab1b792e0c7e4243fae38183764c2e7ae0a61faf2ff13e78b29ccc211
 DIST kvazaar-2.1.0.tar.gz 605962 BLAKE2B 0d61af55ab0caef2247524e8c564f9c24cfb479fcbd721f43e4409899e1a187a0e6de0b08a052cfb144ea31da906ba1c2160d6712828d6e55f0826d87f5c96ba SHA512 14b29f48908e004cf1b4f1f0c338b7b134a34140edcd58a645b4529c506cd567ebe3d56aa66e469dc417e1baa29bb8a476825b78825e810ac68a029191ad32ec
+DIST kvazaar-2.2.0.tar.gz 617414 BLAKE2B 6ddb88ddea315d80e0af87a13127f235c184ae829492d1ff456899d2a24669b3deca25a320a8bdcf6e2cebc2c24e33c0678ac7bf51d2634a46781f66497bed54 SHA512 476abe251d7f555911851bc5a7dca84a96c0cd243c6a45dd59b808b8adf2b0787f69101a061bd48dfb6fe54a0aea046417f21fc826f14f518cada25c6d22aec4

diff --git a/media-libs/kvazaar/kvazaar-9999.ebuild b/media-libs/kvazaar/kvazaar-2.2.0.ebuild
similarity index 78%
copy from media-libs/kvazaar/kvazaar-9999.ebuild
copy to media-libs/kvazaar/kvazaar-2.2.0.ebuild
index d44b2a4ef699..eae2fc58decc 100644
--- a/media-libs/kvazaar/kvazaar-9999.ebuild
+++ b/media-libs/kvazaar/kvazaar-2.2.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 GREATEST_PV="1.2.1"
 
@@ -11,7 +11,7 @@ if [[ ${PV} = *9999 ]] ; then
 else
 	SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz
 		test? ( https://github.com/silentbicycle/greatest/archive/v${GREATEST_PV}.tar.gz -> greatest-${GREATEST_PV}.tar.gz )"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+	KEYWORDS="~amd64 ~mips"
 fi
 inherit autotools flag-o-matic multilib-minimal
 
@@ -30,6 +30,7 @@ RDEPEND=""
 DEPEND="${RDEPEND}
 	test? (
 		media-video/ffmpeg
+		media-video/hevc-hm
 	)
 	abi_x86_32? ( ${ASM_DEP} )
 	abi_x86_64? ( ${ASM_DEP} )
@@ -46,11 +47,6 @@ src_prepare() {
 	fi
 	# Some m4 macros append Werror, we do not want that.
 	append-flags "-Wno-error"
-
-	# valgrind isn't available on all archs
-	# also, the valgrind tests fail with new ffmpeg (upstream only tests again ffmpeg 2.6.3)
-	# see https://github.com/ultravideo/kvazaar/issues/216
-	find "${S}/tests/" -type f -exec grep -q 'valgrind_test' '{}' \; -delete || die
 }
 
 multilib_src_configure() {
@@ -59,6 +55,10 @@ multilib_src_configure() {
 		$(use_enable static-libs static)
 }
 
+multilib_src_test() {
+	KVZ_TEST_VALGRIND=0 emake check
+}
+
 multilib_src_install_all() {
 	find "${ED}" -name '*.la' -delete || die
 }

diff --git a/media-libs/kvazaar/kvazaar-9999.ebuild b/media-libs/kvazaar/kvazaar-9999.ebuild
index d44b2a4ef699..eae2fc58decc 100644
--- a/media-libs/kvazaar/kvazaar-9999.ebuild
+++ b/media-libs/kvazaar/kvazaar-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 GREATEST_PV="1.2.1"
 
@@ -11,7 +11,7 @@ if [[ ${PV} = *9999 ]] ; then
 else
 	SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz
 		test? ( https://github.com/silentbicycle/greatest/archive/v${GREATEST_PV}.tar.gz -> greatest-${GREATEST_PV}.tar.gz )"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+	KEYWORDS="~amd64 ~mips"
 fi
 inherit autotools flag-o-matic multilib-minimal
 
@@ -30,6 +30,7 @@ RDEPEND=""
 DEPEND="${RDEPEND}
 	test? (
 		media-video/ffmpeg
+		media-video/hevc-hm
 	)
 	abi_x86_32? ( ${ASM_DEP} )
 	abi_x86_64? ( ${ASM_DEP} )
@@ -46,11 +47,6 @@ src_prepare() {
 	fi
 	# Some m4 macros append Werror, we do not want that.
 	append-flags "-Wno-error"
-
-	# valgrind isn't available on all archs
-	# also, the valgrind tests fail with new ffmpeg (upstream only tests again ffmpeg 2.6.3)
-	# see https://github.com/ultravideo/kvazaar/issues/216
-	find "${S}/tests/" -type f -exec grep -q 'valgrind_test' '{}' \; -delete || die
 }
 
 multilib_src_configure() {
@@ -59,6 +55,10 @@ multilib_src_configure() {
 		$(use_enable static-libs static)
 }
 
+multilib_src_test() {
+	KVZ_TEST_VALGRIND=0 emake check
+}
+
 multilib_src_install_all() {
 	find "${ED}" -name '*.la' -delete || die
 }


             reply	other threads:[~2023-03-20  5:36 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-20  5:36 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-25 20:42 [gentoo-commits] repo/gentoo:master commit in: media-libs/kvazaar/ Sam James
2024-11-23 17:21 Michał Górny
2024-11-23 15:05 Michał Górny
2024-11-23 14:25 Sam James
2024-04-07 23:37 Sam James
2024-04-07 23:35 Sam James
2024-03-12  4:29 Ionen Wolkens
2024-03-11 16:17 Viorel Munteanu
2024-03-08 20:02 Sam James
2023-12-22  5:14 Ionen Wolkens
2023-12-02 17:26 Arthur Zamarin
2023-12-01 19:13 Arthur Zamarin
2023-06-01 16:42 Arthur Zamarin
2023-06-01 16:41 Arthur Zamarin
2023-04-08  6:47 Viorel Munteanu
2023-04-05 13:32 WANG Xuerui
2023-04-05 13:32 WANG Xuerui
2023-03-26 16:22 Arthur Zamarin
2023-03-20 13:57 Yixun Lan
2022-12-02 18:44 WANG Xuerui
2022-11-12 17:48 Matt Turner
2022-11-12 16:09 Arthur Zamarin
2022-11-12 16:07 Arthur Zamarin
2022-11-12 16:06 Arthur Zamarin
2022-11-12 16:06 Arthur Zamarin
2022-09-05  3:56 Sam James
2022-09-03  5:27 Sam James
2022-03-15 13:27 Alexis Ballier
2021-08-24 14:33 Marek Szuba
2021-05-17 21:02 Sergei Trofimovich
2021-05-13 17:02 Sam James
2021-05-13 17:01 Sam James
2021-05-13 17:01 Sam James
2021-05-13 16:58 Sam James
2021-05-13 16:58 Sam James
2021-05-13 16:39 Sam James
2020-08-31  9:10 Alexis Ballier
2020-04-14  7:28 Sergei Trofimovich
2019-02-12 21:03 Sergei Trofimovich
2019-02-04 20:16 Markus Meier
2019-01-30 13:20 Tobias Klausmann
2019-01-17 21:32 Mikle Kolyada
2019-01-13 10:01 Sergei Trofimovich
2019-01-04  0:02 Thomas Deutschmann
2019-01-03 15:03 Sergei Trofimovich
2019-01-03 14:58 Sergei Trofimovich
2018-12-04 14:08 Craig Andrews
2018-11-30 22:45 Andreas Sturmlechner
2018-11-30 22:45 Andreas Sturmlechner
2018-11-30 22:45 Andreas Sturmlechner
2018-04-16 19:03 Sergei Trofimovich
2018-03-25 23:29 Sergei Trofimovich
2018-03-06 22:35 Sergei Trofimovich
2018-03-06 22:35 Sergei Trofimovich
2017-11-30 13:57 Alexis Ballier
2017-07-15  5:03 Markus Meier
2017-07-04 15:49 Agostino Sarubbo
2017-07-04 10:17 Agostino Sarubbo
2017-07-01 20:58 Sergei Trofimovich
2017-06-16  9:44 Alexis Ballier
2017-06-10 20:14 Sergei Trofimovich
2017-06-10 20:14 Sergei Trofimovich
2017-04-05 14:07 Tobias Klausmann
2017-03-10 12:08 Alexis Ballier
2017-03-02 15:52 Tobias Klausmann
2017-02-23 12:35 Michael Weber
2017-02-22 13:24 Michael Weber
2017-02-22 13:19 Jeroen Roovers
2017-02-18  8:51 Jeroen Roovers
2017-02-17 17:28 Markus Meier
2017-02-15 15:56 Agostino Sarubbo
2017-02-15 15:05 Agostino Sarubbo
2016-10-15 11:47 Pacho Ramos
2016-10-15 11:47 Pacho Ramos
2016-10-15 11:47 Pacho Ramos
2016-10-15  9:42 Alexis Ballier
2016-10-15  5:17 Jeroen Roovers
2016-10-03  9:04 Alexis Ballier
2016-07-26 10:51 Chí-Thanh Christopher Nguyễn
2016-07-26  9:27 Alexis Ballier
2016-01-29 19:41 Alexis Ballier
2016-01-18 15:13 Alexis Ballier
2015-11-13  9:11 Alexis Ballier
2015-10-30 12:40 Alexis Ballier

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=1679290539.19e111e291e62ab657919e3286442617a23d1f63.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.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