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/axiom: axiom-0.7.0.ebuild ChangeLog
Date: Wed, 22 Jan 2014 01:27:30
Message-Id: 20140122012725.93E5F2004C@flycatcher.gentoo.org
1 idella4 14/01/22 01:27:25
2
3 Modified: ChangeLog
4 Added: axiom-0.7.0.ebuild
5 Log:
6 bump: add; pytest for test phase, test phase
7
8 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.44 dev-python/axiom/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/axiom/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/axiom/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 9 Aug 2013 17:28:24 -0000 1.43
24 +++ ChangeLog 22 Jan 2014 01:27:25 -0000 1.44
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/axiom
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.43 2013/08/09 17:28:24 mgorny Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/ChangeLog,v 1.44 2014/01/22 01:27:25 idella4 Exp $
31 +
32 +*axiom-0.7.0 (22 Jan 2014)
33 +
34 + 22 Jan 2014; Ian Delaney <idella4@g.o> +axiom-0.7.0.ebuild:
35 + bump: add; pytest for test phase, test phase
36
37 09 Aug 2013; Michał Górny <mgorny@g.o> axiom-0.6.0-r1.ebuild:
38 Own the dropin.cache for axiom.plugins.
39
40
41
42 1.1 dev-python/axiom/axiom-0.7.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/axiom/axiom-0.7.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/axiom/axiom-0.7.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: axiom-0.7.0.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/axiom/axiom-0.7.0.ebuild,v 1.1 2014/01/22 01:27:25 idella4 Exp $
52
53 EAPI="5"
54 PYTHON_COMPAT=( python{2_6,2_7} )
55 PYTHON_REQ_USE="sqlite"
56
57 inherit twisted-r1
58
59 DESCRIPTION="Object database implemented on top of SQLite."
60 HOMEPAGE="http://divmod.org/trac/wiki/DivmodAxiom http://pypi.python.org/pypi/Axiom"
61 SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz"
62
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="test"
67
68 RDEPEND=">=dev-python/epsilon-0.6.0-r2[${PYTHON_USEDEP}]
69 dev-python/twisted-core[${PYTHON_USEDEP}]
70 >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]"
71 DEPEND="${RDEPEND}
72 test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
73
74 PATCHES=( "${FILESDIR}/${PN}-0.5.30-sqlite3_3.6.4.patch" )
75
76 TWISTED_PLUGINS+=( axiom.plugins )
77
78 python_install() {
79 distutils-r1_python_install
80
81 touch "${D}$(python_get_sitedir)"/axiom/plugins/dropin.cache || die
82 }
83
84 python_install_all() {
85 dodoc NAME.txt
86
87 distutils-r1_python_install_all
88 }
89
90 python_test() {
91 py.test ${PN}/test/ || die "testsuite failed under ${EPYTHON}"
92 }