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 69A1A158088 for ; Sat, 29 Jan 2022 21:19:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28A622BC019; Sat, 29 Jan 2022 21:19:30 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B64BF2BC011 for ; Sat, 29 Jan 2022 21:19:29 +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 A5B3F343369 for ; Sat, 29 Jan 2022 21:19:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14C522B3 for ; Sat, 29 Jan 2022 21:19:27 +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: <1643490961.418d17f6ffe7ff1935e46c23b9c95c626e7eac33.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: 418d17f6ffe7ff1935e46c23b9c95c626e7eac33 X-VCS-Branch: master Date: Sat, 29 Jan 2022 21:19:27 +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: 1c18fc70-4130-4b57-89b8-c16f4d3cc41a X-Archives-Hash: d3f3719c60df90a18185a04f5c6c4804 commit: 418d17f6ffe7ff1935e46c23b9c95c626e7eac33 Author: Michał Górny gentoo org> AuthorDate: Sat Jan 29 21:16:01 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 29 21:16:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=418d17f6 dev-python/pymad: Switch to PEP 517 build Signed-off-by: Michał Górny gentoo.org> dev-python/pymad/pymad-0.10-r1.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-python/pymad/pymad-0.10-r1.ebuild b/dev-python/pymad/pymad-0.10-r1.ebuild new file mode 100644 index 000000000000..f9e7b3d99845 --- /dev/null +++ b/dev-python/pymad/pymad-0.10-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..9} ) + +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" +S="${WORKDIR}/${PN}-version-${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="media-libs/libmad" +RDEPEND="${DEPEND}"