From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3A9AD158041 for ; Tue, 5 Mar 2024 12:04:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D882E29B4; Tue, 5 Mar 2024 12:04:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37471E29B4 for ; Tue, 5 Mar 2024 12:04:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2787B343012 for ; Tue, 5 Mar 2024 12:04:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5EC5E118C for ; Tue, 5 Mar 2024 12:04:12 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1709640238.4c229ed5ca59bb3cb5858881f3f1c5749c0216cb.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opus/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opus/opus-1.5.1.ebuild X-VCS-Directories: media-libs/opus/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 4c229ed5ca59bb3cb5858881f3f1c5749c0216cb X-VCS-Branch: master Date: Tue, 5 Mar 2024 12:04:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3cfb0e02-3a9a-4468-8067-f7c479244674 X-Archives-Hash: 19cc388141badd1918ad2d3870449ae2 commit: 4c229ed5ca59bb3cb5858881f3f1c5749c0216cb Author: Miroslav Šulc gentoo org> AuthorDate: Tue Mar 5 12:03:58 2024 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Tue Mar 5 12:03:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c229ed5 media-libs/opus: dropped obsolete 1.5.1 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/opus/opus-1.5.1.ebuild | 65 --------------------------------------- 1 file changed, 65 deletions(-) diff --git a/media-libs/opus/opus-1.5.1.ebuild b/media-libs/opus/opus-1.5.1.ebuild deleted file mode 100644 index 61ed18829372..000000000000 --- a/media-libs/opus/opus-1.5.1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..12} ) -inherit flag-o-matic meson-multilib python-any-r1 - -DESCRIPTION="Open codec for interactive speech and music transmission over the Internet" -HOMEPAGE="https://opus-codec.org/" -SRC_URI="https://downloads.xiph.org/releases/opus/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" -INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon" -IUSE="custom-modes debug doc hardened static-libs test ${INTRINSIC_FLAGS}" -RESTRICT="!test? ( test )" - -BDEPEND=" - ${PYTHON_DEPS} - doc? ( - app-text/doxygen - media-gfx/graphviz - ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-1.3.1-libdir-macro.patch - "${FILESDIR}"/${PN}-1.4-arm64-neon.patch -) - -multilib_src_configure() { - local emesonargs=( - -Ddefault_library=$(multilib_native_usex static-libs both shared) - - $(meson_use custom-modes) - $(meson_feature test tests) - $(meson_use debug assertions) - $(meson_use hardened hardening) - - $(meson_native_use_feature doc docs) - - -Ddocdir="${EPREFIX}"/usr/share/doc/${PF} - ) - - local i - # We want to disable intrinsics if no flags are enabled - # (This is a fun Bash construct to do that!) - # bug #752069 - # TODO: What is -Dasm for? - for i in ${INTRINSIC_FLAGS} ; do - use ${i} && emesonargs+=( -Dintrinsics=enabled ) && break - done || emesonargs+=( -Dintrinsics=disabled ) - - if is-flagq -ffast-math || is-flagq -Ofast ; then - emesonargs+=( -Dfloat-approx=true ) - fi - - meson_src_configure -} - -multilib_src_test() { - meson_src_test --timeout-multiplier=2 -}