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 CFBC1158013 for ; Sat, 28 Aug 2021 17:49:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08B8EE0844; Sat, 28 Aug 2021 17:49:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E28BCE0844 for ; Sat, 28 Aug 2021 17:49:56 +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 0553A342BD4 for ; Sat, 28 Aug 2021 17:49:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92D4A79 for ; Sat, 28 Aug 2021 17:49:54 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1630172889.31e123362f591442b78c99a73ad818966435b601.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/picard/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/picard/picard-9999.ebuild X-VCS-Directories: media-sound/picard/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 31e123362f591442b78c99a73ad818966435b601 X-VCS-Branch: master Date: Sat, 28 Aug 2021 17:49:54 +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: 33911e5a-7288-4bb4-9d8e-e08d001f15da X-Archives-Hash: c18d828d3649d58c0ecda293467c24eb commit: 31e123362f591442b78c99a73ad818966435b601 Author: Louis Sautier gentoo org> AuthorDate: Sat Aug 28 17:42:30 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat Aug 28 17:48:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31e12336 media-sound/picard: sync live ebuild with 2.6.3 Signed-off-by: Louis Sautier gentoo.org> media-sound/picard/picard-9999.ebuild | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/media-sound/picard/picard-9999.ebuild b/media-sound/picard/picard-9999.ebuild index 7592c9ab3a2..3b869df3541 100644 --- a/media-sound/picard/picard-9999.ebuild +++ b/media-sound/picard/picard-9999.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{8,9} ) +PYTHON_COMPAT=( python3_{8..10} ) DISTUTILS_SINGLE_IMPL=1 -DISABLE_AUTOFORMATTING=true + inherit distutils-r1 xdg if [[ ${PV} = *9999* ]]; then @@ -29,16 +29,16 @@ BDEPEND=" " RDEPEND=" $(python_gen_cond_dep ' + dev-python/fasteners[${PYTHON_USEDEP}] dev-python/PyQt5[declarative,gui,network,widgets,${PYTHON_USEDEP}] dev-python/python-dateutil[${PYTHON_USEDEP}] + media-libs/mutagen[${PYTHON_USEDEP}] + discid? ( dev-python/python-discid[${PYTHON_USEDEP}] ) ') - dev-qt/qtgui:5 - media-libs/mutagen - discid? ( dev-python/python-discid ) fingerprints? ( media-libs/chromaprint[tools] ) " -RESTRICT="test" # doesn't work with ebuilds +distutils_enable_tests pytest python_compile() { local build_args=( @@ -60,13 +60,3 @@ python_install() { fi distutils-r1_python_install ${install_args[@]} } - -python_install_all() { - distutils-r1_python_install_all - - if [[ -n "${REPLACING_VERSIONS}" ]]; then - elog "If you are upgrading Picard and it does not start, try removing" - elog "Picard's settings:" - elog " rm ~/.config/MusicBrainz/Picard.conf" - fi -}