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.6.1.ebuild ChangeLog
Date: Mon, 01 Jun 2015 07:55:05
Message-Id: 20150601075459.71691A1B@oystercatcher.gentoo.org
1 patrick 15/06/01 07:54:59
2
3 Modified: ChangeLog
4 Added: peewee-2.6.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.33 dev-python/peewee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 27 May 2015 16:36:29 -0000 1.32
24 +++ ChangeLog 1 Jun 2015 07:54:59 -0000 1.33
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/peewee
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.32 2015/05/27 16:36:29 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.33 2015/06/01 07:54:59 patrick Exp $
30 +
31 +*peewee-2.6.1 (01 Jun 2015)
32 +
33 + 01 Jun 2015; Patrick Lauer <patrick@g.o> +peewee-2.6.1.ebuild:
34 + Bump
35
36 27 May 2015; Justin Lecher <jlec@g.o> -peewee-2.4.5.ebuild,
37 metadata.xml:
38
39
40
41 1.1 dev-python/peewee/peewee-2.6.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.6.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.6.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: peewee-2.6.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.6.1.ebuild,v 1.1 2015/06/01 07:54:59 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"
66
67 RDEPEND=""
68 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
69 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
70 # Req'd to ensure a unique tmp.db for each python impl running the testsuite.
71 DISTUTILS_IN_SOURCE_BUILD=1
72
73 python_compile_all() {
74 use doc && emake -C docs html
75 }
76
77 python_test() {
78 # Testsuite run using runtests.py does not require deps listed in previous ebuild
79 "${PYTHON}" ./runtests.py || die "tests failed under ${EPYTHON}"
80 }
81
82 python_install_all() {
83 use doc && local HTML_DOCS=( docs/_build/html/. )
84 use examples && local EXAMPLES=( examples/. )
85 distutils-r1_python_install_all
86 }