Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/peewee/
Date: Thu, 28 Oct 2021 07:00:50
Message-Id: 1635404436.68c3c40a53cf7158b6a65e219b8fd5c6ba1e03e7.mgorny@gentoo
1 commit: 68c3c40a53cf7158b6a65e219b8fd5c6ba1e03e7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 28 06:43:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 28 07:00:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c3c40a
7
8 dev-python/peewee: Bump to 3.14.7
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/peewee/Manifest | 1 +
13 dev-python/peewee/peewee-3.14.7.ebuild | 35 ++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
17 index ed67a21c31a..a0660b00977 100644
18 --- a/dev-python/peewee/Manifest
19 +++ b/dev-python/peewee/Manifest
20 @@ -1 +1,2 @@
21 DIST peewee-3.14.4.tar.gz 882123 BLAKE2B e20848eaa7cd93ea5fcea152ffbfdbab694d9fea7ee8b945c029fee8d6c4a263317fbb0506df31d490611a2b2ac0718b0fdbea875f0013eb1f3f71941f12a26b SHA512 261856f4b691b8f5610d041a049148f213c22348a7e50514f7792932c1f4e8735b4dddb8a29c42e583c38e89551df2f05951d81bda0c47a80dc1eeeb0345f30f
22 +DIST peewee-3.14.7.tar.gz 891167 BLAKE2B eb8e095fc76ac8984f43fe57ea691eb570551fe07e43092a1d7acb023fbcf9cb1f3e921a428695c8e88d959cdf306c426a8fd3f3a58443a752521e161caa31ee SHA512 ea416fda8c39f08236d2f3b440ac6229a40b37caba7d487e1be34a75a05ff880eabb9423033043dfbfe25ab887fad8dcc8fcf2a3778836f19ae2c1ad8df77d96
23
24 diff --git a/dev-python/peewee/peewee-3.14.7.ebuild b/dev-python/peewee/peewee-3.14.7.ebuild
25 new file mode 100644
26 index 00000000000..1cc6d6fccfb
27 --- /dev/null
28 +++ b/dev-python/peewee/peewee-3.14.7.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +PYTHON_REQ_USE="sqlite"
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Small Python ORM"
41 +HOMEPAGE="https://github.com/coleifer/peewee/"
42 +SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="examples test"
48 +RESTRICT="!test? ( test )"
49 +
50 +BDEPEND="
51 + dev-python/cython[${PYTHON_USEDEP}]
52 + test? ( dev-python/psycopg[${PYTHON_USEDEP}] )
53 +"
54 +
55 +distutils_enable_sphinx docs
56 +
57 +python_test() {
58 + "${EPYTHON}" ./runtests.py -v 2 || die "tests failed under ${EPYTHON}"
59 +}
60 +
61 +python_install_all() {
62 + use examples && DOCS=( examples/ )
63 + distutils-r1_python_install_all
64 +}