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 4ED5E158094 for ; Sat, 13 Aug 2022 08:05:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB409E0845; Sat, 13 Aug 2022 08:05:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 C98A4E0855 for ; Sat, 13 Aug 2022 08:05:32 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E43FE340ECE for ; Sat, 13 Aug 2022 08:05:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A54657D for ; Sat, 13 Aug 2022 08:05:29 +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: <1660377916.756dfa4d4ab8eb5da7716e46b13e4af03eb25ca1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/audioread/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/audioread/Manifest dev-python/audioread/audioread-3.0.0.ebuild dev-python/audioread/metadata.xml X-VCS-Directories: dev-python/audioread/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 756dfa4d4ab8eb5da7716e46b13e4af03eb25ca1 X-VCS-Branch: master Date: Sat, 13 Aug 2022 08:05:29 +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: b6b5583e-b6ab-4d90-bb9f-6c7e28443dd2 X-Archives-Hash: f69c240a02b405ac652a5f8462469248 commit: 756dfa4d4ab8eb5da7716e46b13e4af03eb25ca1 Author: Michał Górny gentoo org> AuthorDate: Sat Aug 13 06:26:53 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Aug 13 08:05:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=756dfa4d dev-python/audioread: Bump to 3.0.0 Signed-off-by: Michał Górny gentoo.org> dev-python/audioread/Manifest | 1 + dev-python/audioread/audioread-3.0.0.ebuild | 42 +++++++++++++++++++++++++++++ dev-python/audioread/metadata.xml | 2 +- 3 files changed, 44 insertions(+), 1 deletion(-) diff --git a/dev-python/audioread/Manifest b/dev-python/audioread/Manifest index 23cbe4994c59..c4cff31fc50d 100644 --- a/dev-python/audioread/Manifest +++ b/dev-python/audioread/Manifest @@ -1 +1,2 @@ DIST audioread-2.1.9.tar.gz 377500 BLAKE2B a90d1d7531c265a8c2b7933ac0bfc00fbdf298546620fef3ccae0204fc1eedcc584bf2fdb79b1bbda81b29d03346abc236cd0234684ba3cc70642f837033ab99 SHA512 ad2260b6931cfeebb815d48221366a2a5d8095965ff18e94c5eb0809d9a1b02e650a62ad5e895b7f1e003771fa3babf56f59ce4538aca78b678566fd28327290 +DIST audioread-3.0.0.tar.gz 377038 BLAKE2B fc81bb2459b5cb5e028abb7c6c963c9d731cc90f79108a40b5aafc88ff6e3c09d23d7ac1555566d2360d22015d75ebead6beb72022b1e0e654fe469a75a5ddd9 SHA512 c9f1e5206df998ad9d112dd4b75ae41cde01271485eed27f62feed89c5ca36d4bbce7a888498d3c20d85e8b50de6ef263f795eec164c4bd348d83535b66c38ae diff --git a/dev-python/audioread/audioread-3.0.0.ebuild b/dev-python/audioread/audioread-3.0.0.ebuild new file mode 100644 index 000000000000..d17c0e0ef106 --- /dev/null +++ b/dev-python/audioread/audioread-3.0.0.ebuild @@ -0,0 +1,42 @@ +# 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..11} ) + +inherit distutils-r1 + +DESCRIPTION="Wrapper for audio file decoding using FFmpeg or GStreamer" +HOMEPAGE=" + https://github.com/beetbox/audioread/ + https://pypi.org/project/audioread/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ffmpeg gstreamer mad" + +RDEPEND=" + ffmpeg? ( + media-video/ffmpeg + ) + gstreamer? ( + dev-python/pygobject:3[${PYTHON_USEDEP}] + media-libs/gstreamer:1.0 + media-plugins/gst-plugins-meta:1.0 + ) + mad? ( + dev-python/pymad[${PYTHON_USEDEP}] + ) +" +BDEPEND=" + test? ( + dev-python/pymad[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/audioread/metadata.xml b/dev-python/audioread/metadata.xml index f3656deb86fe..24815496d8ca 100644 --- a/dev-python/audioread/metadata.xml +++ b/dev-python/audioread/metadata.xml @@ -11,7 +11,7 @@ * The standard library wave and aifc modules (for WAV and AIFF files). - sampsyo/audioread + beetbox/audioread audioread