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 87C41158089 for ; Thu, 16 Nov 2023 14:04:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 307592BC023; Thu, 16 Nov 2023 14:04:12 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 107F32BC021 for ; Thu, 16 Nov 2023 14:04:12 +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 28535335D6A for ; Thu, 16 Nov 2023 14:04:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F3FE1397 for ; Thu, 16 Nov 2023 14:04:09 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1700142906.29dff2b2d12a06240bddc630778c5cc80de4d36b.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/webrtcvad/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/webrtcvad/Manifest dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild X-VCS-Directories: dev-python/webrtcvad/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 29dff2b2d12a06240bddc630778c5cc80de4d36b X-VCS-Branch: master Date: Thu, 16 Nov 2023 14:04:09 +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: 63df7a90-b416-476a-8d50-7fb6265573ca X-Archives-Hash: 7bb1796287a5b33e9168eac724d422d5 commit: 29dff2b2d12a06240bddc630778c5cc80de4d36b Author: David Roman gmail com> AuthorDate: Thu Nov 16 13:49:56 2023 +0000 Commit: David Roman gmail com> CommitDate: Thu Nov 16 13:55:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=29dff2b2 dev-python/webrtcvad: patch for oob and mem leak + update webrtc Signed-off-by: David Roman gmail.com> dev-python/webrtcvad/Manifest | 1 + dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild | 27 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-python/webrtcvad/Manifest b/dev-python/webrtcvad/Manifest index 6c9714040b..f7a5e1f0f4 100644 --- a/dev-python/webrtcvad/Manifest +++ b/dev-python/webrtcvad/Manifest @@ -1 +1,2 @@ +DIST webrtcvad-2.0.10-patches.tar.xz 36072 BLAKE2B efe6cfccfae8c2706e4c85d47fcf6cf91135ae85dfb59aec9d61457fa3f2856ea2e51c2df9b12dd0fc79d0484f56f56277e7782faf3564931d75e252b3ebbd3c SHA512 0f18dfe92d767cf16c49677a88089f5b3a44b9e2e593d89cbcd145c23a0d049f09eb720ccc5b13a464943e9b68f1a5e741a40ed300a9a28a0eee33277ca19bfb DIST webrtcvad-2.0.10.tar.gz 183166 BLAKE2B aa36c895c23cb9d4ea9679c3a7231abac7ef5be4adf61f06fc557fff69ab84181cabf737d4c0a7255d518454a94ca3c4c0fc969405777f02ab3c1a7c0403eac2 SHA512 ce414e39c3128e22495e8e21e46d09485952168ca763937cebb654dab87ffcfecea8198c74c009a47d8caed2a8ebc22572036fda4be36597d82e6e7057f80ae2 diff --git a/dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild b/dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild new file mode 100644 index 0000000000..c57a1d8db6 --- /dev/null +++ b/dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python interface to the Google WebRTC Voice Activity Detector (VAD)" +HOMEPAGE="https://github.com/wiseman/py-webrtcvad" +SRC_URI="https://github.com/wiseman/py-${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://gentoo.kropotkin.rocks/distfiles/${P}-patches.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +# Depends on a package removed from ::gento (bug #915162) +RESTRICT="test" + +S="${WORKDIR}/py-${P}" + +PATCHES=( "${WORKDIR}/${PN}-update-webrtc.patch" "${WORKDIR}/${PN}-fix-mem-leak.patch" "${WORKDIR}/${PN}-fix-oob.patch" ) + 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 3191C158089 for ; Thu, 16 Nov 2023 13:55:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7069D2BC01F; Thu, 16 Nov 2023 13:55:26 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53F832BC01F for ; Thu, 16 Nov 2023 13:55:26 +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 715C3335D46 for ; Thu, 16 Nov 2023 13:55:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7CFCA1394 for ; Thu, 16 Nov 2023 13:55:23 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1700142906.29dff2b2d12a06240bddc630778c5cc80de4d36b.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/webrtcvad/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/webrtcvad/Manifest dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild X-VCS-Directories: dev-python/webrtcvad/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 29dff2b2d12a06240bddc630778c5cc80de4d36b X-VCS-Branch: dev Date: Thu, 16 Nov 2023 13:55:23 +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: eb8c6f00-ac6f-465a-b4fc-842d09cda9ab X-Archives-Hash: ca6c62d23e5b66a15c6980310a0bd200 Message-ID: <20231116135523.55jxvPVBLMmQZqfDPX48z238gfvsz0yqxgDoN9aR5Ms@z> commit: 29dff2b2d12a06240bddc630778c5cc80de4d36b Author: David Roman gmail com> AuthorDate: Thu Nov 16 13:49:56 2023 +0000 Commit: David Roman gmail com> CommitDate: Thu Nov 16 13:55:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=29dff2b2 dev-python/webrtcvad: patch for oob and mem leak + update webrtc Signed-off-by: David Roman gmail.com> dev-python/webrtcvad/Manifest | 1 + dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild | 27 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-python/webrtcvad/Manifest b/dev-python/webrtcvad/Manifest index 6c9714040b..f7a5e1f0f4 100644 --- a/dev-python/webrtcvad/Manifest +++ b/dev-python/webrtcvad/Manifest @@ -1 +1,2 @@ +DIST webrtcvad-2.0.10-patches.tar.xz 36072 BLAKE2B efe6cfccfae8c2706e4c85d47fcf6cf91135ae85dfb59aec9d61457fa3f2856ea2e51c2df9b12dd0fc79d0484f56f56277e7782faf3564931d75e252b3ebbd3c SHA512 0f18dfe92d767cf16c49677a88089f5b3a44b9e2e593d89cbcd145c23a0d049f09eb720ccc5b13a464943e9b68f1a5e741a40ed300a9a28a0eee33277ca19bfb DIST webrtcvad-2.0.10.tar.gz 183166 BLAKE2B aa36c895c23cb9d4ea9679c3a7231abac7ef5be4adf61f06fc557fff69ab84181cabf737d4c0a7255d518454a94ca3c4c0fc969405777f02ab3c1a7c0403eac2 SHA512 ce414e39c3128e22495e8e21e46d09485952168ca763937cebb654dab87ffcfecea8198c74c009a47d8caed2a8ebc22572036fda4be36597d82e6e7057f80ae2 diff --git a/dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild b/dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild new file mode 100644 index 0000000000..c57a1d8db6 --- /dev/null +++ b/dev-python/webrtcvad/webrtcvad-2.0.10-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python interface to the Google WebRTC Voice Activity Detector (VAD)" +HOMEPAGE="https://github.com/wiseman/py-webrtcvad" +SRC_URI="https://github.com/wiseman/py-${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://gentoo.kropotkin.rocks/distfiles/${P}-patches.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +# Depends on a package removed from ::gento (bug #915162) +RESTRICT="test" + +S="${WORKDIR}/py-${P}" + +PATCHES=( "${WORKDIR}/${PN}-update-webrtc.patch" "${WORKDIR}/${PN}-fix-mem-leak.patch" "${WORKDIR}/${PN}-fix-oob.patch" ) +