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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 28B1913835B for ; Sun, 31 Jan 2021 19:07:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 533FEE0875; Sun, 31 Jan 2021 19:07:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A65CE0875 for ; Sun, 31 Jan 2021 19:07:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 472EC3410A8 for ; Sun, 31 Jan 2021 19:07:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3BE84B0 for ; Sun, 31 Jan 2021 19:07:01 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1612120011.50df764529f949cfa1f238b542b3401ae44779d8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sbc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/sbc/Manifest media-libs/sbc/sbc-1.4.ebuild X-VCS-Directories: media-libs/sbc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 50df764529f949cfa1f238b542b3401ae44779d8 X-VCS-Branch: master Date: Sun, 31 Jan 2021 19:07:01 +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: 078e1212-1f9b-4822-92e0-1ad3265e239a X-Archives-Hash: c8422e0fe4dcd7993d97418430a71d03 commit: 50df764529f949cfa1f238b542b3401ae44779d8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 31 19:05:38 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 31 19:06:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50df7645 media-libs/sbc: Drop 1.4 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/sbc/Manifest | 1 - media-libs/sbc/sbc-1.4.ebuild | 33 --------------------------------- 2 files changed, 34 deletions(-) diff --git a/media-libs/sbc/Manifest b/media-libs/sbc/Manifest index 41721d26859..6b74d262d1b 100644 --- a/media-libs/sbc/Manifest +++ b/media-libs/sbc/Manifest @@ -1,2 +1 @@ -DIST sbc-1.4.tar.xz 250656 BLAKE2B a5b59a0ac209b44843af49e63f7b6a6b397b3905f0efc52c18a3b92785d297d39dad80f5b124e97c50a9535f892f1451bf0a2945ba223a522eafbcad46eaad9d SHA512 f35250c202034e93ce4046d29883d76b162164d42fb59e6af8ff5e57f197244238f5f8087309cef2d44755c179e7f0869cf096735c8de510b1ac7e0f6c29d84f DIST sbc-1.5.tar.xz 264472 BLAKE2B 421a4cb5ab0e282255f8bdb810384e0a4d6d66835869489c22d51d2a0cabd7ef834bef3756ff887b9d9166dcfe88f4d661c26cb804e2868fb6106cc4886f9dcc SHA512 0243586188acede595317f2afbfdb41be5850d2a6133c374edbe5cbcf59a2a0fd4570d0b8f2d13ce9637ce48b2f1910c3e4ab1c0354dbf273ee67b09db8c4915 diff --git a/media-libs/sbc/sbc-1.4.ebuild b/media-libs/sbc/sbc-1.4.ebuild deleted file mode 100644 index 9b8ceb6391f..00000000000 --- a/media-libs/sbc/sbc-1.4.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit multilib multilib-minimal - -DESCRIPTION="Audio codec to connect bluetooth HQ audio devices as headphones or loudspeakers" -HOMEPAGE="https://git.kernel.org/?p=bluetooth/sbc.git http://www.bluez.org/sbc-10/" -SRC_URI="https://www.kernel.org/pub/linux/bluetooth/${P}.tar.xz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86" -IUSE="static-libs" - -# --enable-tester is building src/sbctester but the tarball is missing required -# .wav file to execute it -RESTRICT="test" - -RDEPEND="" -DEPEND="virtual/pkgconfig" - -multilib_src_configure() { - ECONF_SOURCE=${S} \ - econf \ - $(use_enable static-libs static) \ - --disable-tester -} - -multilib_src_install_all() { - einstalldocs - find "${D}" -name '*.la' -delete || die -}