Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mutagen/
Date: Tue, 03 Dec 2019 05:06:33
Message-Id: 1575349554.37c1b7d52296ff0594ebb06359c1299cbb62648a.asturm@gentoo
1 commit: 37c1b7d52296ff0594ebb06359c1299cbb62648a
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 2 21:41:36 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 3 05:05:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37c1b7d5
7
8 media-libs/mutagen: 1.43.0 version bump, python3_8, fix EAPI-7 and deps
9
10 Closes: https://bugs.gentoo.org/700508
11 Package-Manager: Portage-2.3.80, Repoman-2.3.19
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 media-libs/mutagen/Manifest | 1 +
15 media-libs/mutagen/mutagen-1.43.0.ebuild | 44 ++++++++++++++++++++++++++++++++
16 2 files changed, 45 insertions(+)
17
18 diff --git a/media-libs/mutagen/Manifest b/media-libs/mutagen/Manifest
19 index 923dc18348d..e4d9dcfead0 100644
20 --- a/media-libs/mutagen/Manifest
21 +++ b/media-libs/mutagen/Manifest
22 @@ -4,3 +4,4 @@ DIST mutagen-1.39.tar.gz 916084 BLAKE2B e67de0f0c2b33283ea276511f5537f5f12a35d33
23 DIST mutagen-1.40.0.tar.gz 917874 BLAKE2B 69405942af849a8c82d14424a242e77cd9d554155494976402c3eb5d95dcccbf14de5fd3268cb9cf12e0035dcbf88c3724d1684c21612b2f0b0a87cb48de1ec8 SHA512 ad4accccc3457d1ff7238c2941b20aeb532e9b41bf2bf1cb130e428f9af9a7dd18a0e81a4d45fbc98783d8cf90cd105de09d703c70beea7cba5eca58dab1bb69
24 DIST mutagen-1.41.1.tar.gz 918398 BLAKE2B e164cdca199bd1d18703604ca67722a3bb35ef6d53d8b8be1adbb0baf103ef7e45d4871929085242778726326a927771c589836a021dbd0dfdb83c0d5836f656 SHA512 d40fd74480eedc514d7b7b1d701c0403490cffc8ed3b8aa114ffe91a40c41de0daa0c54d9ad1a89ec211fab59ec271a3b1775c9efcc5661a5e1607e1ecadbea6
25 DIST mutagen-1.42.0.tar.gz 925894 BLAKE2B fe85f2c47a19276078183f426450ca50ccabab64eec39dfb1535054ee6571b01375210b164dc6c824f74631eb8393c8d5d48b7a7a29443349f30fdb627a74b6f SHA512 26c307023d1ff29c0377cdee1317732a8aba70433a3679127a3d9c8cc5df9e81d143700e7e74a42975485b0510d8bd09dc2b5ec9a737442a6e676f1f0b14c80a
26 +DIST mutagen-1.43.0.tar.gz 1143839 BLAKE2B 044906b730763e001fa2cb863c8bb1fec45713aca57b6311f783f66218e4f3410987d04d56a1e4fbf41a229860bbb574b4077401e1f2384e70d80fdc9f3b23ad SHA512 66df63705a43befa9cf6688bc8b3acc4fd1559eb28920c105b47a97c35422b5e19527051445daa7aed66facc2e4c14d71058f8560bbd564fecbe56a076491e3f
27
28 diff --git a/media-libs/mutagen/mutagen-1.43.0.ebuild b/media-libs/mutagen/mutagen-1.43.0.ebuild
29 new file mode 100644
30 index 00000000000..43af0777006
31 --- /dev/null
32 +++ b/media-libs/mutagen/mutagen-1.43.0.ebuild
33 @@ -0,0 +1,44 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7,3_8} )
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Audio metadata tag reader and writer implemented in pure Python"
43 +HOMEPAGE="https://github.com/quodlibet/mutagen https://pypi.org/project/mutagen/"
44 +SRC_URI="https://github.com/quodlibet/mutagen/releases/download/release-${PV}/${P}.tar.gz"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
49 +IUSE="doc test"
50 +
51 +# TODO: Missing support for >=dev-python/eyeD3-0.7 API
52 +# test? ( >=dev-python/eyeD3-0.7 )
53 +BDEPEND="
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + doc? ( dev-python/sphinx )
56 + test? (
57 + dev-python/hypothesis[${PYTHON_USEDEP}]
58 + dev-python/pyflakes[${PYTHON_USEDEP}]
59 + dev-python/pytest[${PYTHON_USEDEP}]
60 + )
61 +"
62 +
63 +RESTRICT="!test? ( test )"
64 +
65 +python_compile_all() {
66 + use doc && emake -C docs
67 +}
68 +
69 +python_test() {
70 + esetup.py test --no-quality
71 +}
72 +
73 +python_install_all() {
74 + local DOCS=( NEWS README.rst )
75 + use doc && local HTML_DOCS=( docs/_build/. )
76 + distutils-r1_python_install_all
77 +}