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.2.0.ebuild ChangeLog
Date: Mon, 26 May 2014 08:28:20
Message-Id: 20140526082816.DCF142004E@flycatcher.gentoo.org
1 patrick 14/05/26 08:28:16
2
3 Modified: ChangeLog
4 Added: peewee-2.2.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.7 dev-python/peewee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 20 May 2014 08:11:00 -0000 1.6
24 +++ ChangeLog 26 May 2014 08:28:16 -0000 1.7
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.6 2014/05/20 08:11:00 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.7 2014/05/26 08:28:16 patrick Exp $
30 +
31 +*peewee-2.2.0 (26 May 2014)
32 +
33 + 26 May 2014; Patrick Lauer <patrick@g.o> +peewee-2.2.0.ebuild:
34 + Bump
35
36 *peewee-2.1.7 (20 May 2014)
37
38
39
40
41 1.1 dev-python/peewee/peewee-2.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: peewee-2.2.0.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.0.ebuild,v 1.1 2014/05/26 08:28:16 patrick 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=""
66 DEPEND="${RDEPEND}
67 dev-python/setuptools[${PYTHON_USEDEP}]
68 test? (
69 dev-python/apsw[${PYTHON_USEDEP}]
70 dev-python/psycopg[${PYTHON_USEDEP}]
71 )"
72
73 python_test() {
74 "${PYTHON}" ./runtests.py || die "tests failed"
75 }
76
77 python_install_all() {
78 use examples && local EXAMPLES=( example/. )
79 distutils-r1_python_install_all
80 }