From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1849F15827B for ; Mon, 11 Aug 2025 21:02:33 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id F372C340D3C for ; Mon, 11 Aug 2025 21:02:32 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id F38E3110280; Mon, 11 Aug 2025 21:02:31 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E9FFF110280 for ; Mon, 11 Aug 2025 21:02:31 +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 9C207340D3C for ; Mon, 11 Aug 2025 21:02:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02D49333F for ; Mon, 11 Aug 2025 21:02:30 +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: <1754946120.d3f81d8816a8a63cc64bebb0e22cd2e21d47c645.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/bcg729/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/bcg729/bcg729-1.1.1.ebuild X-VCS-Directories: media-libs/bcg729/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d3f81d8816a8a63cc64bebb0e22cd2e21d47c645 X-VCS-Branch: master Date: Mon, 11 Aug 2025 21:02:30 +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: cfc68ca0-e696-4611-801a-eef6f0361b8f X-Archives-Hash: 20dc2631b3c135d6c35aa4363e66dfec commit: d3f81d8816a8a63cc64bebb0e22cd2e21d47c645 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 11 20:36:03 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 11 21:02:00 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f81d88 media-libs/bcg729: drop 1.1.1 Bug: https://bugs.gentoo.org/958661 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/bcg729/bcg729-1.1.1.ebuild | 51 ----------------------------------- 1 file changed, 51 deletions(-) diff --git a/media-libs/bcg729/bcg729-1.1.1.ebuild b/media-libs/bcg729/bcg729-1.1.1.ebuild deleted file mode 100644 index 2b5d8de3f110..000000000000 --- a/media-libs/bcg729/bcg729-1.1.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -TEST_SUFFIX="tests-20210101" -DESCRIPTION="Encoder and decoder of the ITU G729 Annex A/B speech codec" -HOMEPAGE="https://github.com/BelledonneCommunications/bcg729" -SRC_URI="https://github.com/BelledonneCommunications/${PN}/archive/${PV/_/-}.tar.gz -> ${P}.tar.gz" -SRC_URI+=" test? ( http://www.belledonne-communications.com/bc-downloads/${PN}-patterns.zip -> ${PN}-${TEST_SUFFIX}.zip )" -S="${WORKDIR}/${P/_/-}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~sparc x86" -IUSE="test" - -RESTRICT="test" -# Not all passing yet -# TODO: Report upstream -#RESTRICT="!test? ( test )" - -BDEPEND="test? ( app-arch/unzip )" -RDEPEND="!media-plugins/mediastreamer-bcg729" - -src_prepare() { - sed -i -e 's/-Werror //' CMakeLists.txt || die - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DENABLE_STATIC=no - -DENABLE_TESTS=$(usex test) - ) - cmake_src_configure -} - -src_test() { - cd "${BUILD_DIR}/test" || die - mv "${WORKDIR}/patterns" "${BUILD_DIR}/test/" || die - - ./testCampaignAll || die -} - -src_install() { - cmake_src_install - find "${ED}" -name '*.la' -delete || die -}