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 41692158004 for ; Tue, 23 Apr 2024 03:59:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFA1FE29E5; Tue, 23 Apr 2024 03:59:54 +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 5F3F6E29E5 for ; Tue, 23 Apr 2024 03:59:54 +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 403243432FB for ; Tue, 23 Apr 2024 03:59:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71C4B1705 for ; Tue, 23 Apr 2024 03:59:51 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1713844671.3b34ad3f0d5cfa06041b275a4852a9d9e136d12c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/whipper/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/whipper/whipper-0.10.0.ebuild X-VCS-Directories: media-sound/whipper/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3b34ad3f0d5cfa06041b275a4852a9d9e136d12c X-VCS-Branch: master Date: Tue, 23 Apr 2024 03:59:51 +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: fbf2a96e-7701-4bf3-b0a3-6e7861c1a08e X-Archives-Hash: 4cf9d287d355654b9af49e16de77b62e commit: 3b34ad3f0d5cfa06041b275a4852a9d9e136d12c Author: Michał Górny gentoo org> AuthorDate: Tue Apr 23 03:57:51 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Apr 23 03:57:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b34ad3f media-sound/whipper: Remove old Signed-off-by: Michał Górny gentoo.org> media-sound/whipper/whipper-0.10.0.ebuild | 55 ------------------------------- 1 file changed, 55 deletions(-) diff --git a/media-sound/whipper/whipper-0.10.0.ebuild b/media-sound/whipper/whipper-0.10.0.ebuild deleted file mode 100644 index c865bb56dbb7..000000000000 --- a/media-sound/whipper/whipper-0.10.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} ) - -DISTUTILS_USE_PEP517="setuptools" - -inherit distutils-r1 - -DESCRIPTION="A Python CD-DA ripper preferring accuracy over speed (forked from morituri)" -HOMEPAGE="https://github.com/whipper-team/whipper" -SRC_URI="https://github.com/whipper-team/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="media-libs/libsndfile:=" -RDEPEND=" - ${DEPEND} - app-cdr/cdrdao - >=dev-libs/libcdio-paranoia-0.94_p2 - dev-python/musicbrainzngs[${PYTHON_USEDEP}] - >=dev-python/pycdio-2.1.0[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/discid[${PYTHON_USEDEP}] - dev-python/ruamel-yaml[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - media-libs/mutagen[${PYTHON_USEDEP}] - media-sound/sox[flac]" -BDEPEND=" - dev-python/setuptools-scm[${PYTHON_USEDEP}] - test? ( dev-python/twisted[${PYTHON_USEDEP}] )" - -distutils_enable_tests unittest - -PATCHES=( "${FILESDIR}/${PN}-0.7.0-cdparanoia-name-fix.patch" ) - -python_prepare_all() { - # accurip test totally depends on network access - rm "${PN}"/test/test_common_accurip.py || die - - # Test fails with - # Log [82 chars]28Z\n\nRipping phase information:\n Drive: HL[2290 chars]31\n - # != - # Log [82 chars]28Z\nRipping phase information:\n Drive: HL-D[2274 chars]31\n - # assertion. TODO: fix test. - rm "${PN}"/test/test_result_logger.py || die - - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} - - distutils-r1_python_prepare_all -}