Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/picard: ChangeLog picard-1.2.ebuild
Date: Mon, 20 May 2013 15:26:47
Message-Id: 20130520152644.4FAE12171D@flycatcher.gentoo.org
1 aballier 13/05/20 15:26:44
2
3 Modified: ChangeLog
4 Added: picard-1.2.ebuild
5 Log:
6 version bump, bug #463982
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.45 media-sound/picard/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/picard/ChangeLog?rev=1.45&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/picard/ChangeLog?rev=1.45&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/picard/ChangeLog?r1=1.44&r2=1.45
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v
20 retrieving revision 1.44
21 retrieving revision 1.45
22 diff -u -r1.44 -r1.45
23 --- ChangeLog 14 Jan 2013 04:14:22 -0000 1.44
24 +++ ChangeLog 20 May 2013 15:26:44 -0000 1.45
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/picard
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.44 2013/01/14 04:14:22 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.45 2013/05/20 15:26:44 aballier Exp $
30 +
31 +*picard-1.2 (20 May 2013)
32 +
33 + 20 May 2013; Alexis Ballier <aballier@g.o> +picard-1.2.ebuild:
34 + version bump, bug #463982
35
36 14 Jan 2013; Tim Harder <radhermit@g.o> -picard-0.15.1-r1.ebuild,
37 -picard-0.16.ebuild, -picard-1.0.ebuild, metadata.xml:
38
39
40
41 1.1 media-sound/picard/picard-1.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/picard/picard-1.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/picard/picard-1.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: picard-1.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-1.2.ebuild,v 1.1 2013/05/20 15:26:44 aballier Exp $
51
52 EAPI=4
53
54 PYTHON_DEPEND="2:2.5"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="2.4 2.6 3.*"
57
58 inherit eutils distutils
59
60 MY_P="${P/_/}"
61 DESCRIPTION="An improved rewrite/port of the Picard Tagger using Qt"
62 HOMEPAGE="http://musicbrainz.org/doc/PicardQt"
63 SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/picard/${MY_P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~x86"
68 IUSE="+acoustid +cdda nls"
69
70 DEPEND="dev-python/PyQt4[X]
71 media-libs/mutagen
72 acoustid? ( media-libs/chromaprint[tools] )
73 cdda? ( >=media-libs/libdiscid-0.1.1 )
74 "
75 RDEPEND="${DEPEND}"
76
77 # doesn't work with ebuilds
78 RESTRICT="test"
79
80 S="${WORKDIR}/${MY_P}"
81
82 DOCS="AUTHORS.txt NEWS.txt"
83
84 src_compile() {
85 distutils_src_compile $(use nls || echo "--disable-locales")
86 }
87
88 src_install() {
89 distutils_src_install --disable-autoupdate --skip-build \
90 $(use nls || echo "--disable-locales")
91
92 doicon picard.ico
93 domenu picard.desktop
94 }
95
96 pkg_postinst() {
97 distutils_pkg_postinst
98 echo
99 ewarn "If you are upgrading Picard and it does not start"
100 ewarn "try removing Picard's settings:"
101 ewarn " rm ~/.config/MusicBrainz/Picard.conf"
102 elog
103 elog "You should set the environment variable BROWSER to something like"
104 elog "\"firefox '%s' &\" to let python know which browser to use."
105 }