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/svt-av1/
Date: Mon, 20 Jun 2022 02:35:50 +0000 (UTC)	[thread overview]
Message-ID: <1655692499.de745485bdbdaf6a2e99376c2b553b72a6a290ab.sam@gentoo> (raw)

commit:     de745485bdbdaf6a2e99376c2b553b72a6a290ab
Author:     James Beddek <telans <AT> posteo <DOT> de>
AuthorDate: Mon Jun 20 02:07:33 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 20 02:34:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de745485

media-libs/svt-av1: add 1.1.0

Closes: https://bugs.gentoo.org/841878
Signed-off-by: James Beddek <telans <AT> posteo.de>
Closes: https://github.com/gentoo/gentoo/pull/25986
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/svt-av1/Manifest             |  1 +
 media-libs/svt-av1/svt-av1-1.1.0.ebuild | 40 +++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/media-libs/svt-av1/Manifest b/media-libs/svt-av1/Manifest
index 132daf35afa6..eae9ea822541 100644
--- a/media-libs/svt-av1/Manifest
+++ b/media-libs/svt-av1/Manifest
@@ -1,3 +1,4 @@
 DIST svt-av1-0.8.6-r1.tar.gz 6416293 BLAKE2B 98a0c5547f63a9d04b5365a242d1a6e7b8f54449547309e53e9907d11d61c853f07ea1d8a5988ec1b67ef94bfd137ff1664f4352d9181cf96b5629f292c97f1c SHA512 535c073e53d99ed55efa0b7577a886dff136ba41f2d92e84ef0463b707136e156b6c4029e3ff7709be8ce54b0a7e7257af833b706b4282d7fd2636635df757d5
 DIST svt-av1-0.8.7.tar.gz 6396358 BLAKE2B 21a0d319078887809d08276b1a11b6dcca1be90a79c6bda19b86749fabb623918b9112de8ae3c7740b14f23d52e4e1c12ec0190f49880b09993525a857f8e334 SHA512 812b794eda930f53dcba6bb02bc5a3f417346705d64f590d7acf2d45df8d10985bd40c313eaaed514601ab699e23c87852059b9eb0b0ff8a717ef9fd80a132f7
 DIST svt-av1-0.9.1.tar.gz 9718171 BLAKE2B b4247e0b060d34df9336b3cb54e116318120b0ca88ee00747b63ff133417ef941fc5953bbfc2d55e0c9836f579b2b6d64e7cd5a82943556d2d648788947ac6ef SHA512 3c4594bf4019de630e0c58bde3cfa71cc4a6b399a8405c8652b2d2ee26d9a4eed03203c12f1fd3837d5d54ed4a22de90d8f21064f8a3db339a80f9c6f8b0fb95
+DIST svt-av1-1.1.0.tar.gz 9882945 BLAKE2B 2673fdbe17b36607e581cc540ca181672d16b3fbc0dd9c1a8b100ebea6b7a6872d6fa55976cb19c1c8afd50c5c09b67fbec1bcc892007ccd41e7f7ad68027d83 SHA512 87d661183de33554d228c2fa72deb9a945f2550083eb25688b4dc0676be384373a6a52af235066d85ce963ffbc7751c8afb46a2bc1c09e00f81ea0db5a232522

diff --git a/media-libs/svt-av1/svt-av1-1.1.0.ebuild b/media-libs/svt-av1/svt-av1-1.1.0.ebuild
new file mode 100644
index 000000000000..cbcd3fc47133
--- /dev/null
+++ b/media-libs/svt-av1/svt-av1-1.1.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake-multilib flag-o-matic
+
+DESCRIPTION="Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder)"
+HOMEPAGE="https://gitlab.com/AOMediaCodec/SVT-AV1"
+
+if [[ ${PV} = 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.com/AOMediaCodec/SVT-AV1.git"
+else
+	SRC_URI="https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v${PV}/SVT-AV1-v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+	S="${WORKDIR}/SVT-AV1-v${PV}"
+fi
+
+# Also see "Alliance for Open Media Patent License 1.0"
+LICENSE="BSD-2 Apache-2.0 BSD ISC LGPL-2.1+ MIT"
+SLOT="0"
+
+BDEPEND="amd64? ( dev-lang/yasm )"
+
+multilib_src_configure() {
+	append-ldflags -Wl,-z,noexecstack
+
+	local mycmakeargs=(
+		# Tests require linking against https://github.com/Cidana-Developers/aom/tree/av1-normative ?
+		# undefined reference to `ifd_inspect'
+		# https://github.com/Cidana-Developers/aom/commit/cfc5c9e95bcb48a5a41ca7908b44df34ea1313c0
+		-DBUILD_TESTING=OFF
+		-DCMAKE_OUTPUT_DIRECTORY="${BUILD_DIR}"
+	)
+
+	[[ ${ABI} != amd64 ]] && mycmakeargs+=( -DCOMPILE_C_ONLY=ON )
+
+	cmake_src_configure
+}


             reply	other threads:[~2022-06-20  2:35 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-20  2:35 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-12  3:29 [gentoo-commits] repo/gentoo:master commit in: media-libs/svt-av1/ Eli Schwartz
2024-08-12  3:29 Eli Schwartz
2024-01-28 20:56 Jonas Stein
2023-12-06 17:57 Ionen Wolkens
2023-11-23 17:12 Sam James
2023-09-07 20:53 Sam James
2023-09-07 20:53 Sam James
2023-09-07 20:53 Sam James
2023-09-07 20:16 Sam James
2023-06-13 14:36 Jason A. Donenfeld
2023-06-01  6:22 Sam James
2023-06-01  5:32 Joonas Niilola
2023-06-01  5:31 Sam James
2023-06-01  5:22 Sam James
2023-06-01  5:22 Sam James
2023-04-07 11:41 Sam James
2023-04-07 11:41 Sam James
2023-04-07 11:39 Sam James
2023-03-03  6:28 Viorel Munteanu
2022-10-17  6:45 Agostino Sarubbo
2022-10-17  6:44 Agostino Sarubbo
2022-10-17  6:43 Agostino Sarubbo
2022-10-17  5:28 Arthur Zamarin
2022-08-08 12:39 Agostino Sarubbo
2022-08-05  7:16 Agostino Sarubbo
2022-08-04  8:03 Agostino Sarubbo
2022-05-17 14:07 WANG Xuerui
2022-05-17 14:07 WANG Xuerui
2022-02-24 21:56 Sam James
2022-02-24 21:56 Sam James
2022-01-15 10:25 Jakov Smolić
2021-11-17  2:16 Sam James
2021-11-15 19:41 Agostino Sarubbo
2021-11-15 16:29 Agostino Sarubbo
2021-11-15  8:45 Jakov Smolić
2021-11-14  5:45 Sam James
2021-11-14  5:41 Sam James
2021-11-14  5:38 Sam James
2021-11-14  5:22 Sam James
2021-11-14  3:21 Sam James
2021-11-13 11:30 Arthur Zamarin
2021-11-13 10:48 Joonas Niilola
2021-11-11  9:47 Jakov Smolić
2021-10-04 12:21 Ionen Wolkens
2021-10-04 12:21 Ionen Wolkens
2021-10-04 12:21 Ionen Wolkens
2021-09-07  3:05 Sam James
2021-09-07  3:03 Sam James
2021-08-02 12:33 Marek Szuba
2021-05-16 20:00 Sam James
2021-04-25 17:35 Sam James
2021-04-25  9:31 Sam James
2021-04-23 13:33 Sam James
2021-04-23 13:33 Sam James
2021-04-18  2:08 Sam James
2021-02-21 19:48 Sam James
2021-02-11  7:37 Sergei Trofimovich
2021-02-11  7:36 Sergei Trofimovich
2021-02-09 21:41 Sam James
2021-02-05  2:06 Sam James
2021-01-22 18:43 Sam James
2021-01-11 17:34 Sergei Trofimovich
2021-01-10  3:42 Joonas Niilola

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=1655692499.de745485bdbdaf6a2e99376c2b553b72a6a290ab.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