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/eyeD3/
Date: Mon, 04 May 2020 10:57:04
Message-Id: 1588589759.8cb2fe8f676bc3c49981d6457c4e75ac581dc1cf.mgorny@gentoo
1 commit: 8cb2fe8f676bc3c49981d6457c4e75ac581dc1cf
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 10:55:59 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 10:55:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb2fe8f
7
8 dev-python/eyeD3: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/eyeD3/Manifest | 1 -
13 dev-python/eyeD3/eyeD3-0.7.5.ebuild | 37 -------------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/eyeD3/Manifest b/dev-python/eyeD3/Manifest
17 index 89f647c9520..90403397d3c 100644
18 --- a/dev-python/eyeD3/Manifest
19 +++ b/dev-python/eyeD3/Manifest
20 @@ -1,2 +1 @@
21 -DIST eyeD3-0.7.5.tgz 221685 BLAKE2B c296f61036cd0e43f1820c830e9fa9630d8bb56770c36c922ec0bbbd2ed9566c4a0330677dc1c7fd6cc6fa30f9b415abef2867d93a55ba337b520ed52e330c39 SHA512 9f57e05e4db78618e73ec15ca6ac7b983e13c24ae926bfb9194ee4fc1d735f80308dfc5bdac6016f5491bdb06d46b645d7ac54247d581467a8a22129fae85ba5
22 DIST eyeD3-0.8.11.tar.gz 215807 BLAKE2B e289a274198a4adceb0ec3b77a5c79f50faaa320edecdf07d1d2af3b5519f0c884c8cef146b124fd172d74626f70af2b689dd536ade1a68ed27fedff840513ee SHA512 ed147fbe6ce88319cdbfc752e1ddbcb141180bdd87854c209c621956bc52395c5ba442d929016419620c0b230f5b8a3e1fa638b73c7cf329405425148f953c9c
23
24 diff --git a/dev-python/eyeD3/eyeD3-0.7.5.ebuild b/dev-python/eyeD3/eyeD3-0.7.5.ebuild
25 deleted file mode 100644
26 index 5f3910e714e..00000000000
27 --- a/dev-python/eyeD3/eyeD3-0.7.5.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -# still appears ill prepared for python3; see bugs 501338, 501340
36 -
37 -PYTHON_COMPAT=( python2_7 )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Module for manipulating ID3 (v1 + v2) tags in Python"
42 -HOMEPAGE="http://eyed3.nicfit.net/"
43 -SRC_URI="http://eyed3.nicfit.net/releases/${P}.tgz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0.7"
47 -KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
48 -IUSE=""
49 -
50 -DEPEND="dev-python/paver[${PYTHON_USEDEP}]"
51 -
52 -python_prepare_all() {
53 - # prevent the build system from installing unwrapped bash script
54 - # and prevent it from pulling optional python-magic
55 - sed -i -e '/scripts/d' \
56 - -e '/install_requires/d' pavement.py || die
57 -
58 - distutils-r1_python_prepare_all
59 -}
60 -
61 -python_install() {
62 - distutils-r1_python_install
63 -
64 - sed -e "s:python:${EPYTHON}:" bin/eyeD3 > "${TMPDIR}"/eyeD3 || die
65 - python_doexe "${TMPDIR}"/eyeD3
66 -}