Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/eyeD3/
Date: Sat, 02 Jul 2022 12:20:43
Message-Id: 1656764413.28c3726f57a31b2df2476493aec799775c8cae94.arthurzam@gentoo
1 commit: 28c3726f57a31b2df2476493aec799775c8cae94
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 12:20:13 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 12:20:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28c3726f
7
8 dev-python/eyeD3: drop 0.9.6
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/eyeD3/eyeD3-0.9.6.ebuild | 45 -------------------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/dev-python/eyeD3/eyeD3-0.9.6.ebuild b/dev-python/eyeD3/eyeD3-0.9.6.ebuild
16 deleted file mode 100644
17 index 8245a9dc9755..000000000000
18 --- a/dev-python/eyeD3/eyeD3-0.9.6.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Module for manipulating ID3 (v1 + v2) tags in Python"
31 -HOMEPAGE="https://eyed3.nicfit.net/"
32 -SRC_URI="https://github.com/nicfit/eyeD3/archive/v${PV}.tar.gz -> ${P}.tar.gz
33 - test? ( https://eyed3.nicfit.net/releases/eyeD3-test-data.tgz )"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0.7"
37 -KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
38 -
39 -RDEPEND="
40 - dev-python/deprecation[${PYTHON_USEDEP}]
41 - dev-python/filetype[${PYTHON_USEDEP}]"
42 -# note: most of the deps are optional runtime deps / plugin deps
43 -BDEPEND="
44 - test? (
45 - dev-python/pillow[${PYTHON_USEDEP}]
46 - dev-python/pylast[${PYTHON_USEDEP}]
47 - dev-python/ruamel-yaml[${PYTHON_USEDEP}]
48 - dev-python/six[${PYTHON_USEDEP}]
49 - )"
50 -
51 -distutils_enable_tests pytest
52 -
53 -src_prepare() {
54 - # requires unpackaged factory-boy, doesn't seem to relevant
55 - # to anything but eyeD3 usage with factory-boy
56 - rm tests/test_factory.py || die
57 - # requires unpackaged grako
58 - rm tests/test_display_plugin.py || die
59 -
60 - if use test; then
61 - mv "${WORKDIR}"/eyeD3-test-data tests/data || die
62 - fi
63 -
64 - distutils-r1_src_prepare
65 -}