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 AC4461582ED for ; Thu, 13 Jun 2024 09:26:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7DD2E2AEE; Thu, 13 Jun 2024 09:26:39 +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 CBF1AE2AEE for ; Thu, 13 Jun 2024 09:26:39 +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 1EDE533BED4 for ; Thu, 13 Jun 2024 09:26:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C0211CE0 for ; Thu, 13 Jun 2024 09:26:35 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1718270772.929044e94493e46524f80364264ac781867d9631.kangie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/beets/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/beets/beets-9999.ebuild X-VCS-Directories: media-sound/beets/ X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: 929044e94493e46524f80364264ac781867d9631 X-VCS-Branch: master Date: Thu, 13 Jun 2024 09:26:35 +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: d7d2ea2f-fa19-4185-9385-5810c768eb18 X-Archives-Hash: 7b9b8ce8178b4f3a8e13124399867dda commit: 929044e94493e46524f80364264ac781867d9631 Author: Matt Jolly gentoo org> AuthorDate: Thu Jun 13 04:19:19 2024 +0000 Commit: Matt Jolly gentoo org> CommitDate: Thu Jun 13 09:26:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=929044e9 media-sound/beets: update 9999; upstream moved to Poetry Signed-off-by: Matt Jolly gentoo.org> media-sound/beets/beets-9999.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media-sound/beets/beets-9999.ebuild b/media-sound/beets/beets-9999.ebuild index 00a1c997e652..ed8336d62a74 100644 --- a/media-sound/beets/beets-9999.ebuild +++ b/media-sound/beets/beets-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_PEP517=setuptools +DISTUTILS_USE_PEP517=poetry PYTHON_COMPAT=( python3_{10..12} ) PYTHON_REQ_USE="sqlite" @@ -108,10 +108,10 @@ src_prepare() { # https://github.com/beetbox/beets/commit/8b4983fe7cae9397acd3e23602e419d8dc1041d4 # merged code coverage into standard test runs; since we disable coverage globally # we need to sed out some 'addopts' for coverage in setup.cfg that cause tests to choke. - sed -i -e "/--cov=beets/,+9d" setup.cfg || die "Failed to disable code coverage options in setup.cfg" + #sed -i -e "/--cov=beets/,+9d" setup.cfg || die "Failed to disable code coverage options in setup.cfg" # Update the version if we're not building from pypy; it's probably a _pre or live ebuild. if [[ ${PV} == "9999" ]] || [[ ${UPDATE_VERSION} == "yes" ]]; then - sed -i -e "s/version='.*'/version='${PV}'/" setup.py || die "Failed to update version in VCS sources" + sed -i -e "s/^version = \".*\"$/version = \"${PV}\"/" pyproject.toml || die "Failed to update version in VCS sources" sed -i -e "s/__version__ = \".*\"/__version__ = \"${PV}\"/" beets/__init__.py fi default @@ -141,7 +141,7 @@ python_test() { local EPYTEST_DESELECT=( test/test_ui.py::CompletionTest::test_completion ) - epytest -n$(makeopts_jobs) -v + epytest -n$(makeopts_jobs) -v --no-cov } python_install_all() {