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 25BE7158089 for ; Thu, 28 Sep 2023 04:44:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA5832BC036; Thu, 28 Sep 2023 04:44:00 +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 CF0A52BC036 for ; Thu, 28 Sep 2023 04:44:00 +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 E885B335CE9 for ; Thu, 28 Sep 2023 04:43:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F95D1274 for ; Thu, 28 Sep 2023 04:43:57 +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: <1695876228.6904889d65ec2c1bd774ca98064f94e0c88542da.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.1.ebuild X-VCS-Directories: dev-python/audioread/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6904889d65ec2c1bd774ca98064f94e0c88542da X-VCS-Branch: master Date: Thu, 28 Sep 2023 04:43:57 +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: 881d393a-ea53-469d-bebc-472c4c68c363 X-Archives-Hash: c47f7a6075cc5db64edb93c39ebdedc3 commit: 6904889d65ec2c1bd774ca98064f94e0c88542da Author: Michał Górny gentoo org> AuthorDate: Thu Sep 28 04:24:51 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Sep 28 04:43:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6904889d dev-python/audioread: Bump to 3.0.1 Signed-off-by: Michał Górny gentoo.org> dev-python/audioread/Manifest | 1 + dev-python/audioread/audioread-3.0.1.ebuild | 41 +++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/dev-python/audioread/Manifest b/dev-python/audioread/Manifest index e7df7e9c5a8d..ef181e291e0b 100644 --- a/dev-python/audioread/Manifest +++ b/dev-python/audioread/Manifest @@ -1 +1,2 @@ DIST audioread-3.0.0.tar.gz 377038 BLAKE2B fc81bb2459b5cb5e028abb7c6c963c9d731cc90f79108a40b5aafc88ff6e3c09d23d7ac1555566d2360d22015d75ebead6beb72022b1e0e654fe469a75a5ddd9 SHA512 c9f1e5206df998ad9d112dd4b75ae41cde01271485eed27f62feed89c5ca36d4bbce7a888498d3c20d85e8b50de6ef263f795eec164c4bd348d83535b66c38ae +DIST audioread-3.0.1.tar.gz 116513 BLAKE2B a16fad6d56fe5b48b635ae3a20bf74f20848d0489b2b3ea0b6e99c7f2b4bf61adc14509ec1c9d153819265fb057ad3676cb178cfe26622fa0f6fec782e1bc1cf SHA512 b362bf85372fa64a3ed54258e344787db4f15d19a9d959522339fc441eb7ae0d1394707e8c3aa6bc77a42cc790650670d84800f1f3885efe932f718ed0a35bc1 diff --git a/dev-python/audioread/audioread-3.0.1.ebuild b/dev-python/audioread/audioread-3.0.1.ebuild new file mode 100644 index 000000000000..7dcd062a5017 --- /dev/null +++ b/dev-python/audioread/audioread-3.0.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Wrapper for audio file decoding using FFmpeg or GStreamer" +HOMEPAGE=" + https://github.com/beetbox/audioread/ + https://pypi.org/project/audioread/ +" + +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