Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tagpy/
Date: Tue, 07 Jun 2022 07:15:40
Message-Id: 1654586101.7bf1473e6f41937c3f0a2dba69ffd0ffc539f0af.mgorny@gentoo
1 commit: 7bf1473e6f41937c3f0a2dba69ffd0ffc539f0af
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 7 07:09:31 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 7 07:15:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bf1473e
7
8 dev-python/tagpy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tagpy/tagpy-2018.1-r2.ebuild | 55 ---------------------------------
13 1 file changed, 55 deletions(-)
14
15 diff --git a/dev-python/tagpy/tagpy-2018.1-r2.ebuild b/dev-python/tagpy/tagpy-2018.1-r2.ebuild
16 deleted file mode 100644
17 index 1d343447f936..000000000000
18 --- a/dev-python/tagpy/tagpy-2018.1-r2.ebuild
19 +++ /dev/null
20 @@ -1,55 +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_{7..9} )
27 -DISTUTILS_IN_SOURCE_BUILD=1
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Python Bindings for TagLib"
31 -HOMEPAGE="
32 - https://mathema.tician.de//software/tagpy
33 - https://pypi.org/project/tagpy/"
34 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35 -
36 -LICENSE="BSD"
37 -SLOT="0"
38 -KEYWORDS="amd64 ppc ppc64 ~sparc x86"
39 -IUSE="examples"
40 -
41 -RDEPEND="
42 - >=dev-libs/boost-1.70:=[python,threads(+),${PYTHON_USEDEP}]
43 - >=media-libs/taglib-1.8"
44 -DEPEND="${RDEPEND}"
45 -
46 -distutils_enable_tests pytest
47 -
48 -PATCHES=( "${FILESDIR}"/${P}-taglib-1.8.patch )
49 -
50 -python_prepare_all() {
51 - cp "${FILESDIR}"/${P}-readme.rst README.rst || die
52 - distutils-r1_python_prepare_all
53 -}
54 -
55 -python_configure() {
56 - local boostpy_ver="${EPYTHON#python}"
57 -
58 - "${EPYTHON}" configure.py \
59 - --taglib-inc-dir="${ESYSROOT}"/usr/include/taglib \
60 - --boost-python-libname="boost_python${boostpy_ver/\.}"
61 -}
62 -
63 -python_test() {
64 - cd test || die
65 - "${EPYTHON}" *.py || die "Testsuite failed under ${EPYTHON}"
66 -}
67 -
68 -python_install_all() {
69 - if use examples; then
70 - docinto examples
71 - dodoc -r test/.
72 - fi
73 -
74 - distutils-r1_python_install_all
75 -}