Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/mutagen: mutagen-1.24.ebuild ChangeLog
Date: Fri, 29 Aug 2014 05:30:44
Message-Id: 20140829053040.021514222@oystercatcher.gentoo.org
1 ssuominen 14/08/29 05:30:39
2
3 Modified: ChangeLog
4 Added: mutagen-1.24.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.106 media-libs/mutagen/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/ChangeLog?rev=1.106&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/ChangeLog?rev=1.106&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/ChangeLog?r1=1.105&r2=1.106
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v
20 retrieving revision 1.105
21 retrieving revision 1.106
22 diff -u -r1.105 -r1.106
23 --- ChangeLog 10 Aug 2014 21:11:10 -0000 1.105
24 +++ ChangeLog 29 Aug 2014 05:30:39 -0000 1.106
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/mutagen
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v 1.105 2014/08/10 21:11:10 slyfox Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v 1.106 2014/08/29 05:30:39 ssuominen Exp $
30 +
31 +*mutagen-1.24 (29 Aug 2014)
32 +
33 + 29 Aug 2014; Samuli Suominen <ssuominen@g.o> +mutagen-1.24.ebuild:
34 + Version bump.
35
36 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> mutagen-1.22.ebuild:
37 QA: drop trailing '.' from DESCRIPTION
38
39
40
41 1.1 media-libs/mutagen/mutagen-1.24.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/mutagen-1.24.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/mutagen-1.24.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mutagen-1.24.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/mutagen-1.24.ebuild,v 1.1 2014/08/29 05:30:39 ssuominen Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Mutagen is an audio metadata tag reader and writer implemented in pure Python"
58 HOMEPAGE="http://code.google.com/p/mutagen http://pypi.python.org/pypi/mutagen"
59 SRC_URI="https://bitbucket.org/lazka/${PN}/downloads/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
64 IUSE="doc test"
65
66 DEPEND="
67 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
68 test? ( dev-python/eyeD3:0 )
69 "
70
71 python_compile_all() {
72 use doc && emake -C docs
73 }
74
75 src_test() {
76 # tests/test_flac.py uses temp files with a constant path.
77 # If we had multiple python implementations, we would hit a race.
78 DISTUTILS_NO_PARALLEL_BUILD=1 distutils-r1_src_test
79 }
80
81 python_test() {
82 esetup.py test
83 }
84
85 python_install_all() {
86 local DOCS=( NEWS README.rst )
87 use doc && local HTML_DOCS=( docs/_build/. )
88 distutils-r1_python_install_all
89 }