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/a2jmidid: ChangeLog a2jmidid-6.ebuild
Date: Mon, 20 May 2013 16:17:38
Message-Id: 20130520161735.3E2FD2171D@flycatcher.gentoo.org
1 aballier 13/05/20 16:17:35
2
3 Modified: ChangeLog a2jmidid-6.ebuild
4 Log:
5 convert to waf-utils and improve python code, bug #313931 by Arfrever Frehtes Taifersar Arahesis
6
7 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
8
9 Revision Changes Path
10 1.7 media-sound/a2jmidid/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 17 Mar 2013 15:39:08 -0000 1.6
23 +++ ChangeLog 20 May 2013 16:17:35 -0000 1.7
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-sound/a2jmidid
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v 1.6 2013/03/17 15:39:08 hwoarang Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/ChangeLog,v 1.7 2013/05/20 16:17:35 aballier Exp $
29 +
30 + 20 May 2013; Alexis Ballier <aballier@g.o> a2jmidid-6.ebuild:
31 + convert to waf-utils and improve python code, bug #313931 by Arfrever Frehtes
32 + Taifersar Arahesis
33
34 17 Mar 2013; Markos Chandras <hwoarang@g.o> metadata.xml:
35 Add proxy-maintainers to metadata.xml
36
37
38
39 1.3 media-sound/a2jmidid/a2jmidid-6.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/a2jmidid-6.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/a2jmidid-6.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/a2jmidid/a2jmidid-6.ebuild?r1=1.2&r2=1.3
44
45 Index: a2jmidid-6.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-6.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- a2jmidid-6.ebuild 5 May 2012 08:02:52 -0000 1.2
52 +++ a2jmidid-6.ebuild 20 May 2013 16:17:35 -0000 1.3
53 @@ -1,8 +1,12 @@
54 -# Copyright 1999-2012 Gentoo Foundation
55 +# Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-6.ebuild,v 1.2 2012/05/05 08:02:52 mgorny Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-sound/a2jmidid/a2jmidid-6.ebuild,v 1.3 2013/05/20 16:17:35 aballier Exp $
59
60 -inherit toolchain-funcs
61 +EAPI="4"
62 +PYTHON_DEPEND="2"
63 +NO_WAF_LIBDIR=1
64 +
65 +inherit python toolchain-funcs waf-utils
66
67 DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
68 HOMEPAGE="http://home.gna.org/a2jmidid/"
69 @@ -17,16 +21,16 @@
70 media-sound/jack-audio-connection-kit
71 sys-apps/dbus"
72 DEPEND="${RDEPEND}
73 - virtual/pkgconfig
74 - dev-lang/python"
75 + virtual/pkgconfig"
76 +
77 +DOCS=(AUTHORS README NEWS internals.txt)
78
79 -src_compile() {
80 - tc-export CC AR CPP LD RANLIB
81 - ./waf configure --prefix=/usr || die "failed to configure"
82 - ./waf || die "failed to build"
83 +pkg_setup() {
84 + python_set_active_version 2
85 + python_pkg_setup
86 }
87
88 src_install() {
89 - ./waf --destdir="${D}" install || die "install failed"
90 - dodoc AUTHORS README NEWS internals.txt
91 + waf-utils_src_install
92 + python_convert_shebangs -r 2 "${ED}"
93 }