mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-16 14:29:05 -07:00
media-libs/dav1d: drop 0.9.2, 1.0.0
Bug: https://bugs.gentoo.org/906107 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -1,4 +1,2 @@
|
||||
DIST dav1d-0.9.2.tar.bz2 833722 BLAKE2B b05edd1ca627906e57923be08f1ecd73469f9a8e2ed585edf81f1fe1ffc173f1e4ba52eb766b82d9ea1349a6c1cf2a5a48cc9a5bcf2debeb9d640d9842e266f4 SHA512 adfb822734a3fc8b73e9cf5f757bfd78fb144b00d95f1e942254c5caf1d801b05438d39571486ef37a94d2226166937fc56160a862e8d6d45c4f6d790531dc3f
|
||||
DIST dav1d-1.0.0.tar.bz2 960470 BLAKE2B 79355eeceea37df81e30be49dfea3dee9747fbbb82c0a08be3bbda525881112a8eb847afe3c3ccd0447fd6ee67ae540c5120ea00d4f891ac422850c611850c97 SHA512 86c6481e787fb6b8c28521e1efb1876d1be99f5fa5332cddab1111059b44775e05203cfc5c80a1b404ee00f35a1f5e1099e21b1f0851d77fb0101567e8b1a892
|
||||
DIST dav1d-1.2.1.tar.xz 873008 BLAKE2B 52478112f1f2c39a020556a8ed18c1267de93fc129941eb87b75fa872188a0389389ba9c7f7ae641726ca78a0a515ce5923968374b8122fec159f33c1f65e7bc SHA512 f172eebc0a5f6c51d31fc9e9758c2dd0de51d8a5d0e00c93a5f2b1b16b7b4a37b365f9c56dea95d400e66b63af5fa4c63d9e720719ac38852777fc8c6066e4a7
|
||||
DIST dav1d-1.3.0.tar.xz 885220 BLAKE2B aa79eaa22adde287a31ed60b88ae8d4095e18b92359a7e30aecd13c10eafe07acdeeb2f0bdb232acc6b136cdbd87626ac641df0615683d50f355edfd6c028caf SHA512 a91d217b8656c452dd80f5597e988f0e7a2ea32b12092c2695e7dc388033db7b193f7a8c98413bec31d1c38af376561d39f7618b935c4feeb6498c5d2b43f6a4
|
||||
|
||||
@@ -1,61 +0,0 @@
|
||||
# Copyright 1999-2022 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
|
||||
SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2"
|
||||
KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~sparc x86"
|
||||
fi
|
||||
|
||||
inherit ${SCM} meson-multilib
|
||||
|
||||
DESCRIPTION="dav1d is an AV1 Decoder :)"
|
||||
HOMEPAGE="https://code.videolan.org/videolan/dav1d"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0/5"
|
||||
IUSE="+8bit +10bit +asm test xxhash"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
ASM_DEPEND=">=dev-lang/nasm-2.15.05"
|
||||
BDEPEND="asm? (
|
||||
abi_x86_32? ( ${ASM_DEPEND} )
|
||||
abi_x86_64? ( ${ASM_DEPEND} )
|
||||
)
|
||||
xxhash? ( dev-libs/xxhash )
|
||||
"
|
||||
|
||||
DOCS=( README.md doc/PATENTS THANKS.md )
|
||||
PATCHES=( "${FILESDIR}"/build-avoid-meson-s-symbols_have_underscore_prefix.patch )
|
||||
|
||||
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}
|
||||
-D enable_tests=$(usex test true false)
|
||||
-D xxhash_muxer=$(usex xxhash enabled disabled)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
if multilib_is_native_abi ; then
|
||||
meson_src_test
|
||||
fi
|
||||
}
|
||||
@@ -1,59 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2"
|
||||
KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86"
|
||||
fi
|
||||
|
||||
inherit meson-multilib
|
||||
|
||||
DESCRIPTION="dav1d is an AV1 Decoder :)"
|
||||
HOMEPAGE="https://code.videolan.org/videolan/dav1d"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
# Check SONAME on version bumps!
|
||||
SLOT="0/6"
|
||||
IUSE="+8bit +10bit +asm test xxhash"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
ASM_DEPEND=">=dev-lang/nasm-2.15.05"
|
||||
BDEPEND="asm? (
|
||||
abi_x86_32? ( ${ASM_DEPEND} )
|
||||
abi_x86_64? ( ${ASM_DEPEND} )
|
||||
)
|
||||
xxhash? ( dev-libs/xxhash )"
|
||||
|
||||
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=(
|
||||
-Dbitdepths=$(IFS=,; echo "${bits[*]}")
|
||||
-Denable_asm=${enable_asm}
|
||||
$(meson_use test enable_tests)
|
||||
$(meson_feature xxhash xxhash_muxer)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
if multilib_is_native_abi ; then
|
||||
meson_src_test
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user