dev-python/soundfile: Bump to 0.11.0_beta20220128

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
This commit is contained in:
Nils Freydank 2022-02-09 23:02:03 +01:00
parent 9660001536
commit ef61689354
Signed by: nfr
GPG Key ID: 0F1DEAB2D36AD112
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
DIST soundfile-0.10.3_p20211207.tar.gz 36551 BLAKE2B ecf5b37c89f9ab0c41ff41f3a1b2f5121642fa3ab52d926af553fd12112bb1fcb142eb1accbf33099c74a8a776de3a0ecac3f7f359211d4b5ccfd3496cfd5151 SHA512 4094195f9ada03325072aa0ee9e0a3581221d80986c03d830da3d3c36ec0dbd140e9db3d2d4cde9f1a842739990eed7c070f4e64aee96c7bff28fd40b325a0b6
DIST soundfile-0.11.0_beta20220128.tar.gz 36546 BLAKE2B a931849cdac6c116c28295f579b6c5f449db441d0c0576b9bf6b3ba24862d1b10de025553629903b5008fbd6e48fe4b022aa0507c84f124a60a28e8745585f9d SHA512 7810901a706bc81f8ad0a77c8fcb3c07196abf75613e68a39f0efb3129431da8f313bbfa8666583bcf603f685a1d5ef67ef36a6069211cf0223c7f8de3e73b6a

View File

@ -1,4 +1,4 @@
# Copyright 2016-2021 Gentoo Authors
# Copyright 2016-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{9..10} )
inherit distutils-r1
COMMIT_ID="d1d125f5749780b0b068b5fcb49d8e84f7f4f045"
COMMIT_ID="d41120acbc771b2eaaeb17c444aea835b652b188"
DESCRIPTION="SoundFile is an audio library based on libsndfile, CFFI, and NumPy"
HOMEPAGE="https://github.com/bastibe/python-soundfile"
@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/bastibe/python-${PN}"
inherit git-r3
else
if [[ ${PV} == *_p* ]]; then
if [[ (${PV} == *_p*) || (${PV} == *_beta*) ]]; then
SRC_URI="https://github.com/bastibe/python-${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/python-${PN}-${COMMIT_ID}"
else