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/peewee: peewee-2.2.4.ebuild ChangeLog peewee-2.1.6.ebuild peewee-2.1.5.ebuild peewee-2.1.4.ebuild peewee-2.1.7.ebuild peewee-2.2.1.ebuild
Date: Mon, 02 Jun 2014 10:28:32
Message-Id: 20140602102805.D84542004E@flycatcher.gentoo.org
1 idella4 14/06/02 10:28:05
2
3 Modified: ChangeLog
4 Added: peewee-2.2.4.ebuild
5 Removed: peewee-2.1.6.ebuild peewee-2.1.5.ebuild
6 peewee-2.1.4.ebuild peewee-2.1.7.ebuild
7 peewee-2.2.1.ebuild
8 Log:
9 bump; fix test phase, assisted with support testing by eroen
10
11 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
12
13 Revision Changes Path
14 1.9 dev-python/peewee/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.9&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.9&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?r1=1.8&r2=1.9
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v
23 retrieving revision 1.8
24 retrieving revision 1.9
25 diff -u -r1.8 -r1.9
26 --- ChangeLog 2 Jun 2014 05:28:57 -0000 1.8
27 +++ ChangeLog 2 Jun 2014 10:28:05 -0000 1.9
28 @@ -1,6 +1,13 @@
29 # ChangeLog for dev-python/peewee
30 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.8 2014/06/02 05:28:57 idella4 Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.9 2014/06/02 10:28:05 idella4 Exp $
33 +
34 +*peewee-2.2.4 (02 Jun 2014)
35 +
36 + 02 Jun 2014; Ian Delaney <idella4@g.o> +peewee-2.2.4.ebuild,
37 + -peewee-2.1.4.ebuild, -peewee-2.1.5.ebuild, -peewee-2.1.6.ebuild,
38 + -peewee-2.1.7.ebuild, -peewee-2.2.1.ebuild:
39 + bump; fix test phase, assisted with support testing by eroen
40
41 *peewee-2.2.1 (02 Jun 2014)
42
43
44
45
46 1.1 dev-python/peewee/peewee-2.2.4.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.2.4.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.2.4.ebuild?rev=1.1&content-type=text/plain
50
51 Index: peewee-2.2.4.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/peewee-2.2.4.ebuild,v 1.1 2014/06/02 10:28:05 idella4 Exp $
56
57 EAPI=5
58 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
59
60 inherit distutils-r1
61
62 DESCRIPTION="Small python ORM"
63 HOMEPAGE="https://github.com/coleifer/peewee/"
64 SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz"
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc examples test"
69
70 RDEPEND=""
71 DEPEND="${RDEPEND}
72 dev-python/setuptools[${PYTHON_USEDEP}]
73 test? (
74 dev-python/apsw[${PYTHON_USEDEP}]
75 dev-python/psycopg[${PYTHON_USEDEP}]
76 dev-python/django[${PYTHON_USEDEP}]
77 )"
78 # Req'd to ensure a unique tmp.db for each python impl running the testsuite.
79 DISTUTILS_IN_SOURCE_BUILD=1
80
81 python_compile_all() {
82 use doc && emake -C docs html
83 }
84
85 python_test() {
86 "${PYTHON}" ./runtests.py || die "tests failed under ${EPYTHON}"
87 }
88
89 python_install_all() {
90 use doc && local HTML_DOCS=( docs/_build/html/. )
91 use examples && local EXAMPLES=( example/. )
92 distutils-r1_python_install_all
93 }