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