dev-python/miniaudio: add 1.58, update 1.45

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-05-29 09:01:58 +02:00 committed by Andreas Billmeier
parent 7ed4461189
commit a82ce4e55b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 7 deletions

View File

@ -1,3 +1,5 @@
DIST miniaudio-1.45.tar.gz 545636 BLAKE2B 98a64ef54519c92a4d59164a8d5f0e5728dcc625a7872b2f16125495003ea673b24989464f27fd3e836123a6d93607abbea5d518b67188bc6b3475bd04739fd9 SHA512 ea02a9fd1156691d8ced56e378479ad8cd6a72ea5bbdb9cf9a1cc8cd127e796ba5d701a85a8744aa5deee33d6e84d3e693ddd16b8383f36d2fbd8c44c03dcdb8
EBUILD miniaudio-1.45.ebuild 747 BLAKE2B e87ee81cde9ab010ecb9ea477da88ce2d05b35bcfd445d637e307861c6bb6eb740b985c1b6e6d64adc873e04ea1a672834074aaae4d250059b991bea6783169f SHA512 f05de1d298976b248daa93b36489993c1a7630072807fec1fc889643b6b0b25b1a19ba3d39bdf419729c6045ad3e603e33491c4c4374b39e2cf7ff9ab3c1b788
DIST miniaudio-1.58.tar.gz 704845 BLAKE2B 1fa4a7e2441f1defddb7d472c06f255c9f246caf2587573ca5aac82317a2d5cb04c4d4cf1642063b4197d41a3457fc39f6570f88657dc7a492f2af86eedb4739 SHA512 56d48ccafe5ab725d539cf1511919d98fd7b0354418cb06736b0778f134d973801457f664533aab8e91bc5f78d23efa66b382033d13261911d0eda53a22f22c8
EBUILD miniaudio-1.45.ebuild 732 BLAKE2B 846a315af18a828e5b967224e357a411251b321043bd6a1162451c3493dd2afb54853d8c8b6abc79240114f8343010b2f54c0a1f75387c70795df7bc92be8c5d SHA512 41c8b6e80838862f0be97b99411e5b4929401e3b6139bfa09f52b50d6681d2c732e1a79514639507af89133255d87502cc7505cf215a8ca015d5a8cf06696b2a
EBUILD miniaudio-1.58.ebuild 732 BLAKE2B 846a315af18a828e5b967224e357a411251b321043bd6a1162451c3493dd2afb54853d8c8b6abc79240114f8343010b2f54c0a1f75387c70795df7bc92be8c5d SHA512 41c8b6e80838862f0be97b99411e5b4929401e3b6139bfa09f52b50d6681d2c732e1a79514639507af89133255d87502cc7505cf215a8ca015d5a8cf06696b2a
MISC metadata.xml 513 BLAKE2B 4f0dde913b8a22239ce321977ba20f3c2c4a9dce783823eda127dc37b2b6c5c7c18d7ea3c81e429a37fbb7c4733ee0440312b625e00700c8e2cf9f974eac8cff SHA512 b42cba3c797aa8d5b1334968fe618788f207505d6c4b8bc7d759a7033208504a77480f428ac0f0ba62b39c67ede1b07cbfbfc40959b77c3488add1d08690e892

View File

@ -1,15 +1,13 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="python bindings for the miniaudio library and its decoders (mp3, flac, ogg vorbis, wav)"
HOMEPAGE="https://github.com/irmen/pyminiaudio https://pypi.org/project/miniaudio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"

View File

@ -0,0 +1,31 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="python bindings for the miniaudio library and its decoders (mp3, flac, ogg vorbis, wav)"
HOMEPAGE="https://github.com/irmen/pyminiaudio https://pypi.org/project/miniaudio/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/cffi-1.12.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest