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