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/wtf-peewee: wtf-peewee-0.2.3.ebuild ChangeLog
Date: Wed, 04 Jun 2014 08:22:37
Message-Id: 20140604082232.5C0E42004E@flycatcher.gentoo.org
1 idella4 14/06/04 08:22:32
2
3 Modified: ChangeLog
4 Added: wtf-peewee-0.2.3.ebuild
5 Log:
6 bump
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/wtf-peewee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wtf-peewee/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wtf-peewee/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wtf-peewee/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/wtf-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 07:48:43 -0000 1.7
24 +++ ChangeLog 4 Jun 2014 08:22:32 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/wtf-peewee
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wtf-peewee/ChangeLog,v 1.7 2014/05/26 07:48:43 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/wtf-peewee/ChangeLog,v 1.8 2014/06/04 08:22:32 idella4 Exp $
30 +
31 +*wtf-peewee-0.2.3 (04 Jun 2014)
32 +
33 + 04 Jun 2014; Ian Delaney <idella4@g.o> +wtf-peewee-0.2.3.ebuild:
34 + bump
35
36 *wtf-peewee-0.2.2 (26 May 2014)
37
38
39
40
41 1.1 dev-python/wtf-peewee/wtf-peewee-0.2.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wtf-peewee/wtf-peewee-0.2.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wtf-peewee/wtf-peewee-0.2.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wtf-peewee-0.2.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/wtf-peewee/wtf-peewee-0.2.3.ebuild,v 1.1 2014/06/04 08:22:32 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 )
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="examples test"
64
65 RDEPEND="dev-python/peewee[${PYTHON_USEDEP}]
66 dev-python/wtforms[${PYTHON_USEDEP}]"
67 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
68 test? ( "${RDEPEND}" )"
69
70 python_prepare_all() {
71 # https://github.com/coleifer/peewee/issues/361
72 sed -e s':test_choices:_&:' \
73 -e s':test_null_form_saving:_&:' \
74 -i "${PN/\-/}"/tests.py || die
75 distutils-r1_python_prepare_all
76 }
77
78 python_test() {
79 "${PYTHON}" ./runtests.py || die "Testing failed with ${EPYTHON}"
80 }
81
82 python_install_all() {
83 use examples && local EXAMPLES=( example/. )
84 distutils-r1_python_install_all
85 }