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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B44CB158020 for ; Fri, 23 Dec 2022 09:05:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2295E07A9; Fri, 23 Dec 2022 09:05:35 +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 BF48BE07A9 for ; Fri, 23 Dec 2022 09:05:35 +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 A59A6340DBE for ; Fri, 23 Dec 2022 09:05:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F263B7DE for ; Fri, 23 Dec 2022 09:05:32 +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: <1671786321.0cb26e56353b580a7f8a3a409898db6e96e5c504.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libopusenc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libopusenc/libopusenc-0.2.1.ebuild X-VCS-Directories: media-libs/libopusenc/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 0cb26e56353b580a7f8a3a409898db6e96e5c504 X-VCS-Branch: master Date: Fri, 23 Dec 2022 09:05:32 +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: 0a070f42-fd07-47be-ac86-9d71a9f6801d X-Archives-Hash: 99dcc5512fed52d30d074b0f413ec9ed commit: 0cb26e56353b580a7f8a3a409898db6e96e5c504 Author: Miroslav Šulc gentoo org> AuthorDate: Fri Dec 23 09:05:21 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Dec 23 09:05:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb26e56 media-libs/libopusenc: dropped obsolete 0.2.1 Bug: https://bugs.gentoo.org/887835 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/libopusenc/libopusenc-0.2.1.ebuild | 31 --------------------------- 1 file changed, 31 deletions(-) diff --git a/media-libs/libopusenc/libopusenc-0.2.1.ebuild b/media-libs/libopusenc/libopusenc-0.2.1.ebuild deleted file mode 100644 index 28c6ad68ed83..000000000000 --- a/media-libs/libopusenc/libopusenc-0.2.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="High-level API for encoding .opus files" -HOMEPAGE="https://www.opus-codec.org/" -SRC_URI="https://archive.mozilla.org/pub/opus/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm64 ppc ppc64 ~riscv x86" -IUSE="doc" - -BDEPEND="virtual/pkgconfig" -RDEPEND=">=media-libs/opus-1.1:=" -DEPEND=" - ${RDEPEND} - doc? ( app-doc/doxygen[dot] )" - -src_configure() { - econf \ - --enable-shared \ - --disable-static \ - $(use_enable doc) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}