Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/eyeD3: eyeD3-0.7.4-r1.ebuild ChangeLog
Date: Tue, 01 Apr 2014 09:19:58
Message-Id: 20140401091954.26B112005E@flycatcher.gentoo.org
1 ssuominen 14/04/01 09:19:54
2
3 Modified: ChangeLog
4 Added: eyeD3-0.7.4-r1.ebuild
5 Log:
6 Replace "python" with content of EPYTHON variable in /usr/bin/eyeD3 wrt #506422 by Andrew Udvare
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.68 dev-python/eyeD3/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/eyeD3/ChangeLog?rev=1.68&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/eyeD3/ChangeLog?rev=1.68&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/eyeD3/ChangeLog?r1=1.67&r2=1.68
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/eyeD3/ChangeLog,v
20 retrieving revision 1.67
21 retrieving revision 1.68
22 diff -u -r1.67 -r1.68
23 --- ChangeLog 10 Mar 2014 17:36:22 -0000 1.67
24 +++ ChangeLog 1 Apr 2014 09:19:53 -0000 1.68
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/eyeD3
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/ChangeLog,v 1.67 2014/03/10 17:36:22 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/ChangeLog,v 1.68 2014/04/01 09:19:53 ssuominen Exp $
30 +
31 +*eyeD3-0.7.4-r1 (01 Apr 2014)
32 +
33 + 01 Apr 2014; Samuli Suominen <ssuominen@g.o> +eyeD3-0.7.4-r1.ebuild:
34 + Replace "python" with content of EPYTHON variable in /usr/bin/eyeD3 wrt
35 + #506422 by Andrew Udvare
36
37 10 Mar 2014; Samuli Suominen <ssuominen@g.o> eyeD3-0.6.18-r1.ebuild:
38 Remove temporary dependency for the eyeD3 binary since every reverse
39
40
41
42 1.1 dev-python/eyeD3/eyeD3-0.7.4-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/eyeD3/eyeD3-0.7.4-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/eyeD3/eyeD3-0.7.4-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: eyeD3-0.7.4-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/eyeD3-0.7.4-r1.ebuild,v 1.1 2014/04/01 09:19:53 ssuominen Exp $
52
53 EAPI=5
54
55 # For python3_{2,3}, see bugs 501338, 501340
56
57 PYTHON_COMPAT=( python2_7 )
58
59 inherit distutils-r1
60
61 DESCRIPTION="Module for manipulating ID3 (v1 + v2) tags in Python"
62 HOMEPAGE="http://eyed3.nicfit.net/"
63 SRC_URI="http://eyed3.nicfit.net/releases/${P}.tgz"
64
65 LICENSE="GPL-2"
66 SLOT="0.7"
67 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
68 IUSE=""
69
70 RDEPEND="!<${CATEGORY}/${PN}-0.6.18-r1:0"
71 DEPEND="${RDEPEND}
72 dev-python/paver[${PYTHON_USEDEP}]"
73
74 python_install() {
75 distutils-r1_python_install
76
77 sed -i -e "s:python:${EPYTHON}:" "${ED}"/usr/bin/${PN}
78 }
79
80 python_install_all() {
81 dodoc AUTHORS ChangeLog README.rst
82 distutils-r1_python_install_all
83 }