Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wtf-peewee/
Date: Sun, 25 Feb 2018 07:28:29
Message-Id: 1519543701.14d7035516a3d8ca34282c7ac2698584683ed5f6.patrick@gentoo
1 commit: 14d7035516a3d8ca34282c7ac2698584683ed5f6
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 25 07:28:04 2018 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 25 07:28:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14d70355
7
8 dev-python/wtf-peewee: Bump
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-python/wtf-peewee/Manifest | 1 +
13 dev-python/wtf-peewee/wtf-peewee-3.0.0.ebuild | 29 +++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-python/wtf-peewee/Manifest b/dev-python/wtf-peewee/Manifest
17 index 98ac177e533..ab3358d16ed 100644
18 --- a/dev-python/wtf-peewee/Manifest
19 +++ b/dev-python/wtf-peewee/Manifest
20 @@ -1 +1,2 @@
21 DIST wtf-peewee-0.2.6.tar.gz 61072 BLAKE2B 92069d6df08301e48ab38da1fadd0b63f16dc1cda441bc10afbb423f0c08d040817a3b24e9faf2931f38493a5b48e941cc869f64f8f566679f107c7f51c79861 SHA512 073973e1dbec17fb3b036447e5150d5de36aeb47c697878e4e97abec4de53a77275278000f4dc982bc1aa1a76736f5a15053d583ab04316c568085973025f833
22 +DIST wtf-peewee-3.0.0.tar.gz 61500 BLAKE2B 6e80bed253b86d2be6dd26342ae3bb3845354c3736bc5869338a2aec30fe24f2b83bfaa678188eaeb05d128cd9519fe0b99dfad2883efa7b7c5654abbd3524f7 SHA512 248bb39fb6b23006f87860982a249df2c7501f1cb2a9d86ef79d909fb41a0b79f61fcd19a504498587480812c7c2feb74e2a97f2c5c2548845413866ca60e053
23
24 diff --git a/dev-python/wtf-peewee/wtf-peewee-3.0.0.ebuild b/dev-python/wtf-peewee/wtf-peewee-3.0.0.ebuild
25 new file mode 100644
26 index 00000000000..82141bdfac3
27 --- /dev/null
28 +++ b/dev-python/wtf-peewee/wtf-peewee-3.0.0.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python2_7 python3_{4,5} )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="WTForms integration for peewee models"
39 +HOMEPAGE="https://github.com/coleifer/wtf-peewee/"
40 +SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +LICENSE="BSD"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="examples test"
45 +
46 +RDEPEND=">=dev-python/peewee-3[${PYTHON_USEDEP}]
47 + dev-python/wtforms[${PYTHON_USEDEP}]"
48 +DEPEND="${RDEPEND}
49 + dev-python/setuptools[${PYTHON_USEDEP}]"
50 +
51 +python_test() {
52 + "${PYTHON}" ./runtests.py || die "Testing failed with ${EPYTHON}"
53 +}
54 +
55 +python_install_all() {
56 + use examples && dodoc -r example
57 + distutils-r1_python_install_all
58 +}