From 2e88d8a8857d6cd0db5162fbd548f8d3719bd983 Mon Sep 17 00:00:00 2001 From: Paul Zander Date: Mon, 22 Dec 2025 17:59:01 +0100 Subject: [PATCH] dev-python/auditok: Remove py3.11 Signed-off-by: Paul Zander --- dev-python/auditok/Manifest | 1 - dev-python/auditok/auditok-0.1.5.ebuild | 41 ---------------------- dev-python/auditok/auditok-0.2.0-r1.ebuild | 4 +-- 3 files changed, 2 insertions(+), 44 deletions(-) delete mode 100644 dev-python/auditok/auditok-0.1.5.ebuild diff --git a/dev-python/auditok/Manifest b/dev-python/auditok/Manifest index 9ef2bbd3c3..93a3741995 100644 --- a/dev-python/auditok/Manifest +++ b/dev-python/auditok/Manifest @@ -1,2 +1 @@ -DIST auditok-0.1.5.tar.gz 1940153 BLAKE2B 5cdd6b2b810fcaa29026974d10e602ef8b464da29a104bc4d8ef8203fe9bab492e9921f0bd2f8e649b75551036eb617302df598855fd31f435b07b73d3803def SHA512 52dbd2fa66dbf0da52ea6f456b41d117029d45939c581ca270ecdecca4e05dd551fe6f681baad8fd0f6ab828b38157e214ff7df61bf0c88e57738a4e44023ce5 DIST auditok-0.2.0.tar.gz 2482517 BLAKE2B 8db341116e74d875f73757c758ad24c3f8b06cf69a95b09cf7dda30495e46e456861c03ce0bdea2a0c714225a452f6d8a85348c625343fc1e247acb11db31ee6 SHA512 aa9e05d03fde68277395134d247cf7c211b48852fe0e8ac6df9d773242363b692f0505317d54268e81dc29a49250775c4695f0f826d576589850d2290efadffb diff --git a/dev-python/auditok/auditok-0.1.5.ebuild b/dev-python/auditok/auditok-0.1.5.ebuild deleted file mode 100644 index 1344e91637..0000000000 --- a/dev-python/auditok/auditok-0.1.5.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{11..12} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 optfeature - -DESCRIPTION="A module for Audio/Acoustic Activity Detection" -HOMEPAGE="https://github.com/amsehili/auditok/" -SRC_URI="https://github.com/amsehili/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - test? ( - dev-python/pydub[${PYTHON_USEDEP}] - dev-python/genty[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - ) - " - -distutils_enable_tests unittest - -python_test() { - eunittest tests/ -} - -pkg_postinst() { - optfeature "reading audio files in popular audio formats (ogg, mp3, etc.) or extracting audio from a video file" dev-python/pydub - optfeature "reading audio data from the microphone and playing audio back" dev-python/pyaudio - optfeature "plotting audio signal and detections" dev-python/matplotlib - optfeature "matplotlib. Also used for some math operations instead of standard python if available" dev-python/numpy -} diff --git a/dev-python/auditok/auditok-0.2.0-r1.ebuild b/dev-python/auditok/auditok-0.2.0-r1.ebuild index f15f259cc9..d23ca26838 100644 --- a/dev-python/auditok/auditok-0.2.0-r1.ebuild +++ b/dev-python/auditok/auditok-0.2.0-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 2021-2024 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{11..12} ) +PYTHON_COMPAT=( python3_{12..13} ) inherit distutils-r1 optfeature