Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/llvmlite: llvmlite-0.5.0.ebuild ChangeLog llvmlite-0.2.0.ebuild
Date: Fri, 26 Jun 2015 07:47:35
Message-Id: 20150626074719.7539CA55@oystercatcher.gentoo.org
1 idella4 15/06/26 07:47:19
2
3 Modified: ChangeLog
4 Added: llvmlite-0.5.0.ebuild
5 Removed: llvmlite-0.2.0.ebuild
6 Log:
7 bump; upgrade deps & test phase
8
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.7 dev-python/llvmlite/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/llvmlite/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/llvmlite/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/llvmlite/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/llvmlite/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 3 Jun 2015 20:07:37 -0000 1.6
25 +++ ChangeLog 26 Jun 2015 07:47:19 -0000 1.7
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/llvmlite
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/llvmlite/ChangeLog,v 1.6 2015/06/03 20:07:37 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/llvmlite/ChangeLog,v 1.7 2015/06/26 07:47:19 idella4 Exp $
31 +
32 +*llvmlite-0.5.0 (26 Jun 2015)
33 +
34 + 26 Jun 2015; Ian Delaney <idella4@g.o> +llvmlite-0.5.0.ebuild,
35 + -llvmlite-0.2.0.ebuild:
36 + bump; upgrade deps & test phase
37
38 03 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
39 Add pypi to remote-id in metadata.xml
40
41
42
43 1.1 dev-python/llvmlite/llvmlite-0.5.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/llvmlite/llvmlite-0.5.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/llvmlite/llvmlite-0.5.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: llvmlite-0.5.0.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/llvmlite/llvmlite-0.5.0.ebuild,v 1.1 2015/06/26 07:47:19 idella4 Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
57
58 inherit distutils-r1
59
60 DESCRIPTION="Python wrapper around the llvm C++ library"
61 HOMEPAGE="https://pypi.python.org/pypi/llvmlite"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="doc examples"
68
69 RDEPEND="
70 =sys-devel/llvm-3.5*:=[multitarget]
71 $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7 python3_3)
72 "
73 DEPEND="${RDEPEND}"
74
75 python_prepare_all() {
76 # disable test using installed instance to read version info
77 sed -e 's:test_version:_&:' -i llvmlite/tests/test_binding.py || die
78 distutils-r1_python_prepare_all
79 }
80
81 python_test() {
82 "${PYTHON}" -m "llvmlite.tests" || die "Tests failed under ${EPYTHON}"
83 }
84
85 python_install_all() {
86 use examples && local EXAMPLES=( examples/. )
87 distutils-r1_python_install_all
88 }