Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/peewee: peewee-2.4.3.ebuild ChangeLog
Date: Sun, 30 Nov 2014 04:23:59
Message-Id: 20141130042355.249A0570E@oystercatcher.gentoo.org
1 patrick 14/11/30 04:23:55
2
3 Modified: ChangeLog
4 Added: peewee-2.4.3.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.21 dev-python/peewee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 26 Nov 2014 03:19:55 -0000 1.20
24 +++ ChangeLog 30 Nov 2014 04:23:55 -0000 1.21
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.20 2014/11/26 03:19:55 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.21 2014/11/30 04:23:55 patrick Exp $
30 +
31 +*peewee-2.4.3 (30 Nov 2014)
32 +
33 + 30 Nov 2014; Patrick Lauer <patrick@g.o> +peewee-2.4.3.ebuild:
34 + Bump
35
36 *peewee-2.4.2 (26 Nov 2014)
37
38
39
40
41 1.1 dev-python/peewee/peewee-2.4.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.4.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.4.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: peewee-2.4.3.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.4.3.ebuild,v 1.1 2014/11/30 04:23:55 patrick Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
54 PYTHON_REQ_USE="sqlite(+)"
55
56 inherit distutils-r1
57
58 DESCRIPTION="Small python ORM"
59 HOMEPAGE="https://github.com/coleifer/peewee/"
60 SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc examples test"
66
67 RDEPEND=""
68 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
69 test? (
70 dev-python/apsw[${PYTHON_USEDEP}]
71 dev-python/psycopg[${PYTHON_USEDEP}]
72 dev-python/django[${PYTHON_USEDEP}]
73 )"
74 # Req'd to ensure a unique tmp.db for each python impl running the testsuite.
75 DISTUTILS_IN_SOURCE_BUILD=1
76
77 python_compile_all() {
78 use doc && emake -C docs html
79 }
80
81 python_test() {
82 "${PYTHON}" ./runtests.py || die "tests failed under ${EPYTHON}"
83 }
84
85 python_install_all() {
86 use doc && local HTML_DOCS=( docs/_build/html/. )
87 use examples && local EXAMPLES=( examples/. )
88 distutils-r1_python_install_all
89 }