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.3.2.ebuild ChangeLog |
Date: | Tue, 30 Sep 2014 06:18:22 |
Message-Id: | 20140930061818.4B9F7691E@oystercatcher.gentoo.org |
1 | patrick 14/09/30 06:18:18 |
2 | |
3 | Modified: ChangeLog |
4 | Added: peewee-2.3.2.ebuild |
5 | Log: |
6 | Bump |
7 | |
8 | (Portage version: 2.2.14_rc1/cvs/Linux x86_64, unsigned Manifest commit) |
9 | |
10 | Revision Changes Path |
11 | 1.15 dev-python/peewee/ChangeLog |
12 | |
13 | file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.15&view=markup |
14 | plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.15&content-type=text/plain |
15 | diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?r1=1.14&r2=1.15 |
16 | |
17 | Index: ChangeLog |
18 | =================================================================== |
19 | RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v |
20 | retrieving revision 1.14 |
21 | retrieving revision 1.15 |
22 | diff -u -r1.14 -r1.15 |
23 | --- ChangeLog 28 Aug 2014 09:34:30 -0000 1.14 |
24 | +++ ChangeLog 30 Sep 2014 06:18:18 -0000 1.15 |
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.14 2014/08/28 09:34:30 patrick Exp $ |
29 | +# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.15 2014/09/30 06:18:18 patrick Exp $ |
30 | + |
31 | +*peewee-2.3.2 (30 Sep 2014) |
32 | + |
33 | + 30 Sep 2014; Patrick Lauer <patrick@g.o> +peewee-2.3.2.ebuild: |
34 | + Bump |
35 | |
36 | *peewee-2.3.1 (28 Aug 2014) |
37 | |
38 | |
39 | |
40 | |
41 | 1.1 dev-python/peewee/peewee-2.3.2.ebuild |
42 | |
43 | file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.3.2.ebuild?rev=1.1&view=markup |
44 | plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/peewee-2.3.2.ebuild?rev=1.1&content-type=text/plain |
45 | |
46 | Index: peewee-2.3.2.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.3.2.ebuild,v 1.1 2014/09/30 06:18:18 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="${RDEPEND} |
69 | dev-python/setuptools[${PYTHON_USEDEP}] |
70 | test? ( |
71 | dev-python/apsw[${PYTHON_USEDEP}] |
72 | dev-python/psycopg[${PYTHON_USEDEP}] |
73 | dev-python/django[${PYTHON_USEDEP}] |
74 | )" |
75 | # Req'd to ensure a unique tmp.db for each python impl running the testsuite. |
76 | DISTUTILS_IN_SOURCE_BUILD=1 |
77 | |
78 | python_compile_all() { |
79 | use doc && emake -C docs html |
80 | } |
81 | |
82 | python_test() { |
83 | "${PYTHON}" ./runtests.py || die "tests failed under ${EPYTHON}" |
84 | } |
85 | |
86 | python_install_all() { |
87 | use doc && local HTML_DOCS=( docs/_build/html/. ) |
88 | use examples && local EXAMPLES=( example/. ) |
89 | distutils-r1_python_install_all |
90 | } |