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 6AB9D15808B for ; Mon, 21 Mar 2022 09:56:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53942E0827; Mon, 21 Mar 2022 09:55:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C99E1E0827 for ; Mon, 21 Mar 2022 09:55:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 670C8342FA2 for ; Mon, 21 Mar 2022 09:55:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7B24250 for ; Mon, 21 Mar 2022 09:55:55 +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: <1647856551.c822add786b4708cb1ff0f7946b377403b1574e4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymad/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pymad/pymad-0.10-r1.ebuild X-VCS-Directories: dev-python/pymad/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c822add786b4708cb1ff0f7946b377403b1574e4 X-VCS-Branch: master Date: Mon, 21 Mar 2022 09:55:55 +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: b2514a28-9c34-494e-8a26-dadfcab5bfdd X-Archives-Hash: 1be3263fcf9c583cd8b0db505c1e36a7 commit: c822add786b4708cb1ff0f7946b377403b1574e4 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 21 09:50:20 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 21 09:55:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c822add7 dev-python/pymad: Enable py3.10 Closes: https://bugs.gentoo.org/835725 Signed-off-by: Michał Górny gentoo.org> dev-python/pymad/pymad-0.10-r1.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/dev-python/pymad/pymad-0.10-r1.ebuild b/dev-python/pymad/pymad-0.10-r1.ebuild index f9e7b3d99845..0708a1057149 100644 --- a/dev-python/pymad/pymad-0.10-r1.ebuild +++ b/dev-python/pymad/pymad-0.10-r1.ebuild @@ -4,13 +4,19 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="Python wrapper for libmad MP3 decoding in python" -HOMEPAGE="https://github.com/jaqx0r/pymad" -SRC_URI="https://github.com/jaqx0r/${PN}/archive/version/${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE=" + https://github.com/jaqx0r/pymad/ + https://pypi.org/project/pymad/ +" +SRC_URI=" + https://github.com/jaqx0r/${PN}/archive/version/${PV}.tar.gz + -> ${P}.tar.gz +" S="${WORKDIR}/${PN}-version-${PV}" LICENSE="GPL-2"