update mutagen-1.45.1

This commit is contained in:
Andreas Billmeier 2020-09-09 21:24:19 +02:00 committed by Andreas Billmeier
vanhempi 5940368f25
commit 63d6ab0b73
Allekirjoittanut: onkelbeh
GPG avaimen ID: E6DB12C8C550F3C0
3 muutettua tiedostoa jossa 47 lisäystä ja 0 poistoa

Näytä tiedosto

@ -6,6 +6,7 @@
* update pydelijn-0.6.1
* bump python-synology-0.9.0
* PyEssent small fix
* update mutagen-1.45.1
2020-09-08
* update Plugwise-Smile-1.4.0

Näytä tiedosto

@ -1,5 +1,7 @@
DIST mutagen-1.43.0.tar.gz 1143839 BLAKE2B 044906b730763e001fa2cb863c8bb1fec45713aca57b6311f783f66218e4f3410987d04d56a1e4fbf41a229860bbb574b4077401e1f2384e70d80fdc9f3b23ad SHA512 66df63705a43befa9cf6688bc8b3acc4fd1559eb28920c105b47a97c35422b5e19527051445daa7aed66facc2e4c14d71058f8560bbd564fecbe56a076491e3f
DIST mutagen-1.45.0.tar.gz 1286513 BLAKE2B a5f906ec00895733a3337f0ef8cc8d0a7de219e385ea7cbb1bb74c0c62a51bcdb059df5e97af1dec45b01a06e9b1526c8a70dcf6a8234d38bf7476366b2d4e79 SHA512 453594bee9c5fb516d627f9a58939241f5766784c39a2c9eea179e18df1d24585d36d8558e8eb424f6393e5bd99806f470cf4e645f3632bc92cf499422af7ce5
DIST mutagen-1.45.1.tar.gz 1285455 BLAKE2B a1e29698d96b4c98f16e18dd8b3f902e41dcc4409d01da861a726a6a9fbd7f116e07b4e1872b8b3857f0eec080d18bac736de741635746f5c71416a3a8ef6e78 SHA512 c5244efa01b9de5ec22ceca39e55f34b933ca4a5bec0f2088fd3adca657f0230cbe85cd5e156db1d90fb44d9339bc94dc3bdcd3e49f1b0d46bc3d71ece6b45d8
EBUILD mutagen-1.43.0.ebuild 1091 BLAKE2B 3fb234f5d012240a07539d9d47b19a1b4844094f16e359314139d4281fb48c129af2bae9d8f5f734cd0d265f74917fb9523dbca71c7f2e7012675ab2549d9de3 SHA512 791616d4d3e46fd0c5d7e94864b424a8df942aca713cd83e34d0470efc787771650b659736799c5a37253ac0dbf40d99af2793ac5e83f5c01be45cca9e557a64
EBUILD mutagen-1.45.0.ebuild 1108 BLAKE2B fd073fc7afd94da884b2b79f40af770b4292450f9a758b9ff84abae4f7526fabe9f921bb4105e46cb2a819709923c7b208c8b059a52faec6c1a5fd53202aae2f SHA512 4ff1d32bb13be0ffb2a1d49354d3dbd7637ed181d19443050748caa04c46041c5435fd5013e5b70201b39f3c9ae01d1bd9db3cf403de5059b1aab4f63ebd3c4a
EBUILD mutagen-1.45.1.ebuild 1108 BLAKE2B fd073fc7afd94da884b2b79f40af770b4292450f9a758b9ff84abae4f7526fabe9f921bb4105e46cb2a819709923c7b208c8b059a52faec6c1a5fd53202aae2f SHA512 4ff1d32bb13be0ffb2a1d49354d3dbd7637ed181d19443050748caa04c46041c5435fd5013e5b70201b39f3c9ae01d1bd9db3cf403de5059b1aab4f63ebd3c4a
MISC metadata.xml 380 BLAKE2B 9fd70ca6ca6e8d17b66ea703f65885b87714ed0560ffe7502d85da3ee8fdf1d62545c1166b64d99f2bd2bfa6105f8f8865bc28769069c1ae3da4b1c3c174fd69 SHA512 87ce1f85bd6aff7c159fd22a412eb9ea95ac4f58fb2cc70fd4c4f470bfe9f6366b906bc9cef833ae5c10b7a3601c15edab9e8418cf78d7d9e993191873f41d59

Näytä tiedosto

@ -0,0 +1,44 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
DESCRIPTION="Audio metadata tag reader and writer implemented in pure Python"
HOMEPAGE="https://github.com/quodlibet/mutagen https://pypi.org/project/mutagen/"
SRC_URI="https://github.com/quodlibet/mutagen/releases/download/release-${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
# TODO: Missing support for >=dev-python/eyeD3-0.7 API
# test? ( >=dev-python/eyeD3-0.7 )
BDEPEND="
doc? ( dev-python/sphinx )
test? (
dev-python/hypothesis[${PYTHON_USEDEP}]
dev-python/pyflakes[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)
"
RESTRICT="!test? ( test )"
python_compile_all() {
use doc && emake -C docs
}
python_test() {
esetup.py test --no-quality
}
python_install_all() {
local DOCS=( NEWS README.rst )
use doc && local HTML_DOCS=( docs/_build/. )
distutils-r1_python_install_all
}