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 5A7AA1581C1 for ; Sat, 13 Jul 2024 07:35:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 847912BC04D; Sat, 13 Jul 2024 07:35:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 690982BC04D for ; Sat, 13 Jul 2024 07:35:07 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B29A933E3A9 for ; Sat, 13 Jul 2024 07:35:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB4B51E1F for ; Sat, 13 Jul 2024 07:35:03 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1720856089.eb86a9e0ceadb3f707e2a95b8adc76bfb9ca9f0d.juippis@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-r3.ebuild X-VCS-Directories: media-sound/whipper/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: eb86a9e0ceadb3f707e2a95b8adc76bfb9ca9f0d X-VCS-Branch: master Date: Sat, 13 Jul 2024 07:35:03 +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: 395fedee-4eec-4ac9-849b-eebba304298d X-Archives-Hash: 2de5a17fe68c20485e6d1c80a9a32e20 commit: eb86a9e0ceadb3f707e2a95b8adc76bfb9ca9f0d Author: Quentin Retornaz retornaz com> AuthorDate: Sun Jun 9 00:38:26 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Jul 13 07:34:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb86a9e0 media-sound/whipper: fix DEPEND="media-libs/libsndfile[-minimal]" Closes: https://bugs.gentoo.org/933747 Signed-off-by: Quentin Retornaz retornaz.com> Signed-off-by: Joonas Niilola gentoo.org> media-sound/whipper/whipper-0.10.0-r3.ebuild | 56 ++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/media-sound/whipper/whipper-0.10.0-r3.ebuild b/media-sound/whipper/whipper-0.10.0-r3.ebuild new file mode 100644 index 000000000000..e54f41695dc6 --- /dev/null +++ b/media-sound/whipper/whipper-0.10.0-r3.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_PEP517="setuptools" +PYTHON_COMPAT=( python3_{10..12} ) + +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:=[-minimal] +" +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" + "${FILESDIR}/${PN}-0.10.0-ruamel-yaml.patch" +) + +python_prepare_all() { + # accurip test totally depends on network access + rm "${PN}"/test/test_common_accurip.py || die + + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + + distutils-r1_python_prepare_all +}