public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/dav1d/
Date: Thu, 26 Nov 2020 13:26:34 +0000 (UTC)	[thread overview]
Message-ID: <1606397181.f5939c74f246b1a1e6372b228171a6a5b14ba004.whissi@gentoo> (raw)

commit:     f5939c74f246b1a1e6372b228171a6a5b14ba004
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 13:21:20 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 13:26:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5939c74

media-libs/dav1d: drop old

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 media-libs/dav1d/Manifest           |  2 --
 media-libs/dav1d/dav1d-0.5.2.ebuild | 57 -------------------------------------
 media-libs/dav1d/dav1d-0.7.0.ebuild | 57 -------------------------------------
 3 files changed, 116 deletions(-)

diff --git a/media-libs/dav1d/Manifest b/media-libs/dav1d/Manifest
index 05e0e0b159b..1766c18ec5c 100644
--- a/media-libs/dav1d/Manifest
+++ b/media-libs/dav1d/Manifest
@@ -1,4 +1,2 @@
-DIST dav1d-0.5.2.tar.bz2 554192 BLAKE2B 29305d0bb20a3de0048d102789fe1fdb1a030596213a1e2f025918ac6bb37c92c8c5f8078320487702ed66b16d4d63234823b5475d84bdea853b92e76be4c70e SHA512 37da9138a1dba68b9e723ba48b23eab567f839308132fc5a28727c131280f2eca3e160b074982f5265c914dcad0e4029af9ce23909b32bb9ec60f235c623e384
-DIST dav1d-0.7.0.tar.bz2 613106 BLAKE2B e41dcf4c597da437c0840753eedb3d4c8c7e53494376128f7c0cabf9fe00038fbe676f093f4bce079233934c9f78def0b98b4f09a464c6bd162b7b2fb9f88410 SHA512 2ee1de4c29db6a5cbba0a1db669fb1143f3bae26595c4ea3f17c555fdccbaabc814b7af5caf738cf4dbffd22c690cfe869d33cd830533e24990679b7b9cb4b8b
 DIST dav1d-0.7.1.tar.bz2 644556 BLAKE2B f3539d73b2731be882c71a0e8e90c4382282a650ff9e0aa2bb1142f59a823bbe00011e384c65ae86b8b617054a167b8c90b83d96591ad5c133b7de336c30c753 SHA512 7db0f2eb5f6cbf2809ffb9ebaa18bf1331df00dc6e9d571380b2524143ce3bfdd2e7df1a31e82a52640e7ac81b2712127a395e857d061118845011a1e5fb4751
 DIST dav1d-0.8.0.tar.bz2 668627 BLAKE2B 6f45c6b0011acb74bb26fa201e667b16dbf8b691a2bc5d2043517381ca58132fa29ee828841609762737ac8637948b2bd4bac9e2c1d2ca23b1d3ad23f5883875 SHA512 906481ce5b9ce99cef2723c4c2466ba762095b9f88caccd42dcabfd4800964d7cd142736de1bf2ef25b631ee01eb26f7f1ac1754fc161b8fb7192e104df10e28

diff --git a/media-libs/dav1d/dav1d-0.5.2.ebuild b/media-libs/dav1d/dav1d-0.5.2.ebuild
deleted file mode 100644
index 62bf16413ec..00000000000
--- a/media-libs/dav1d/dav1d-0.5.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-SCM=""
-if [[ "${PV}" == "9999" ]]; then
-	SCM="git-r3"
-	EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d"
-else
-	KEYWORDS="amd64 arm arm64 ppc ppc64 ~sparc x86"
-	SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2"
-fi
-
-inherit ${SCM} meson ninja-utils multilib-minimal
-
-DESCRIPTION="dav1d is an AV1 Decoder :)"
-HOMEPAGE="https://code.videolan.org/videolan/dav1d"
-
-LICENSE="BSD-2"
-SLOT="0/3"
-IUSE="+8bit +10bit +asm"
-
-ASM_DEPEND=">=dev-lang/nasm-2.13.02"
-BDEPEND="asm? (
-		abi_x86_32? ( ${ASM_DEPEND} )
-		abi_x86_64? ( ${ASM_DEPEND} )
-	)"
-
-DOCS=( README.md doc/PATENTS THANKS.md )
-
-multilib_src_configure() {
-	local -a bits=()
-	use 8bit  && bits+=( 8 )
-	use 10bit && bits+=( 16 )
-
-	local enable_asm
-	if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then
-		enable_asm=false
-	else
-		enable_asm=$(usex asm true false)
-	fi
-
-	local emesonargs=(
-		-D bitdepths=$(IFS=,; echo "${bits[*]}")
-		-D enable_asm=${enable_asm}
-	)
-	meson_src_configure
-}
-
-multilib_src_compile() {
-	eninja
-}
-
-multilib_src_install() {
-	DESTDIR="${D}" eninja install
-}

diff --git a/media-libs/dav1d/dav1d-0.7.0.ebuild b/media-libs/dav1d/dav1d-0.7.0.ebuild
deleted file mode 100644
index 92d86ac5f99..00000000000
--- a/media-libs/dav1d/dav1d-0.7.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-SCM=""
-if [[ "${PV}" == "9999" ]]; then
-	SCM="git-r3"
-	EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d"
-else
-	KEYWORDS="amd64 arm arm64 ppc ppc64 ~sparc x86"
-	SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2"
-fi
-
-inherit ${SCM} meson ninja-utils multilib-minimal
-
-DESCRIPTION="dav1d is an AV1 Decoder :)"
-HOMEPAGE="https://code.videolan.org/videolan/dav1d"
-
-LICENSE="BSD-2"
-SLOT="0/4"
-IUSE="+8bit +10bit +asm"
-
-ASM_DEPEND=">=dev-lang/nasm-2.14.02"
-BDEPEND="asm? (
-		abi_x86_32? ( ${ASM_DEPEND} )
-		abi_x86_64? ( ${ASM_DEPEND} )
-	)"
-
-DOCS=( README.md doc/PATENTS THANKS.md )
-
-multilib_src_configure() {
-	local -a bits=()
-	use 8bit  && bits+=( 8 )
-	use 10bit && bits+=( 16 )
-
-	local enable_asm
-	if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then
-		enable_asm=false
-	else
-		enable_asm=$(usex asm true false)
-	fi
-
-	local emesonargs=(
-		-D bitdepths=$(IFS=,; echo "${bits[*]}")
-		-D enable_asm=${enable_asm}
-	)
-	meson_src_configure
-}
-
-multilib_src_compile() {
-	eninja
-}
-
-multilib_src_install() {
-	DESTDIR="${D}" eninja install
-}


             reply	other threads:[~2020-11-26 13:26 UTC|newest]

Thread overview: 135+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-26 13:26 Thomas Deutschmann [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-21 13:35 [gentoo-commits] repo/gentoo:master commit in: media-libs/dav1d/ Luca Barbato
2024-10-04 17:37 Andreas Sturmlechner
2024-09-24 15:22 Sam James
2024-09-23  7:37 Arthur Zamarin
2024-09-23  7:37 Arthur Zamarin
2024-09-23  7:27 Arthur Zamarin
2024-09-23  7:27 Arthur Zamarin
2024-09-23  6:02 Arthur Zamarin
2024-09-23  6:02 Arthur Zamarin
2024-06-10  8:52 Luca Barbato
2024-03-24 15:44 Michał Górny
2024-03-24 15:44 Michał Górny
2024-03-04  9:00 Sam James
2024-03-04  9:00 Sam James
2024-03-04  9:00 Sam James
2024-03-04  9:00 Sam James
2024-03-04  8:57 Sam James
2024-03-04  8:57 Sam James
2024-03-04  8:57 Sam James
2024-03-04  8:51 Sam James
2024-03-02  5:05 Sam James
2024-03-02  5:05 Sam James
2024-01-23  5:07 Ionen Wolkens
2023-12-12  6:30 Viorel Munteanu
2023-11-23 17:12 Sam James
2023-10-06  3:14 Sam James
2023-07-14 15:53 Arthur Zamarin
2023-07-09 11:03 Arthur Zamarin
2023-07-09 11:03 Arthur Zamarin
2023-07-09 11:03 Arthur Zamarin
2023-07-09  9:01 Sam James
2023-06-23 19:07 Fabian Groffen
2023-06-23 19:07 Fabian Groffen
2023-06-02 22:35 Sam James
2023-05-31  7:00 Sam James
2023-02-26 18:16 Arthur Zamarin
2023-02-17  5:17 Sam James
2023-02-17  5:14 Sam James
2022-08-16  1:10 Sam James
2022-08-16  1:08 Sam James
2022-08-16  0:39 Sam James
2022-08-01 17:41 Joonas Niilola
2022-08-01 17:41 Joonas Niilola
2022-07-30  9:51 Arthur Zamarin
2022-05-17 14:07 WANG Xuerui
2022-05-17 14:07 WANG Xuerui
2022-03-22  1:24 Sam James
2022-03-22  1:23 Sam James
2022-02-19  7:37 Arthur Zamarin
2022-02-19  0:37 Sam James
2022-02-18 17:54 Sam James
2022-02-18  7:40 Agostino Sarubbo
2022-02-18  3:36 Sam James
2022-02-18  3:36 Sam James
2021-09-09  7:39 Agostino Sarubbo
2021-09-08  0:46 Sam James
2021-09-08  0:46 Sam James
2021-09-08  0:42 Sam James
2021-09-07 11:55 Agostino Sarubbo
2021-09-07  2:43 Sam James
2021-09-07  1:45 Sam James
2021-08-06 12:58 Sam James
2021-08-02 12:33 Marek Szuba
2021-05-16 18:43 Luca Barbato
2021-03-31  2:24 Sam James
2021-03-31  2:24 Sam James
2021-03-30 22:05 Sam James
2021-03-30 22:05 Sam James
2021-03-30 18:32 Sam James
2021-03-30 17:31 Thomas Deutschmann
2021-02-28 15:20 Luca Barbato
2021-01-07 11:33 Sam James
2021-01-07  4:01 Sam James
2021-01-07  4:01 Sam James
2021-01-03 12:10 Sergei Trofimovich
2021-01-03  1:18 Sam James
2021-01-02 22:09 Sam James
2020-12-29 21:26 Sam James
2020-12-29 21:24 Sam James
2020-11-26  8:26 Sam James
2020-11-26  8:14 Sam James
2020-11-26  6:56 Agostino Sarubbo
2020-11-25 12:14 Agostino Sarubbo
2020-11-25 12:13 Agostino Sarubbo
2020-11-25 11:02 Thomas Deutschmann
2020-11-25 10:28 Thomas Deutschmann
2020-11-24 19:33 Thomas Deutschmann
2020-10-12 18:23 Thomas Deutschmann
2020-10-09  8:41 Agostino Sarubbo
2020-10-09  8:36 Agostino Sarubbo
2020-10-09  8:35 Agostino Sarubbo
2020-10-09  8:31 Agostino Sarubbo
2020-10-08 19:28 Sam James
2020-10-08 18:38 Sam James
2020-05-21 20:20 Luca Barbato
2020-05-21 20:20 Luca Barbato
2020-05-01 13:58 Agostino Sarubbo
2020-04-26 23:44 Thomas Deutschmann
2020-04-26  5:13 Georgy Yakovlev
2020-04-25 10:41 Mikle Kolyada
2020-04-11 17:27 Mart Raudsepp
2020-03-22  8:54 Mikle Kolyada
2020-03-08  1:55 Thomas Deutschmann
2020-03-06  7:15 Luca Barbato
2019-12-29 19:34 Mike Gilbert
2019-12-09  9:15 Luca Barbato
2019-12-06 20:26 Mike Gilbert
2019-10-29  6:38 Patrick McLean
2019-10-28 18:37 Patrick McLean
2019-09-29  2:56 Mike Gilbert
2019-09-14  5:03 Matt Turner
2019-09-14  5:03 Matt Turner
2019-09-14  5:03 Matt Turner
2019-08-19 16:41 Alexis Ballier
2019-07-26  9:16 Agostino Sarubbo
2019-07-22  0:05 Aaron Bauman
2019-07-21  8:21 Sergei Trofimovich
2019-07-02 11:19 Agostino Sarubbo
2019-07-02  8:28 Sergei Trofimovich
2019-07-01 19:23 Thomas Deutschmann
2019-05-16  7:50 Luca Barbato
2019-05-12  8:15 Luca Barbato
2019-05-06 16:15 Luca Barbato
2019-04-30 18:23 Luca Barbato
2019-03-20  7:05 Yixun Lan
2019-03-20  3:11 Thomas Deutschmann
2019-03-20  3:11 Thomas Deutschmann
2019-03-19 16:22 Luca Barbato
2019-03-05 16:29 Luca Barbato
2018-12-12 15:02 Luca Barbato
2018-10-01 21:13 Luca Barbato
2018-10-01 21:03 Luca Barbato
2018-10-01 21:03 Luca Barbato
2018-09-28 12:01 Luca Barbato

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=1606397181.f5939c74f246b1a1e6372b228171a6a5b14ba004.whissi@gentoo \
    --to=whissi@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