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, 22 Sep 2022 12:15:45
Message-Id: 1663848930.d4a67b8bab571c33095e61c6ab4271b30bf7af18.mgorny@gentoo
1 commit: d4a67b8bab571c33095e61c6ab4271b30bf7af18
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 22 11:46:55 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 22 12:15:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a67b8b
7
8 dev-python/peewee: Bump to 3.15.3
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.15.3.ebuild | 41 ++++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
17 index f4ed9b86087d..d7d0dfa5ad8b 100644
18 --- a/dev-python/peewee/Manifest
19 +++ b/dev-python/peewee/Manifest
20 @@ -1,2 +1,3 @@
21 DIST peewee-3.15.1.gh.tar.gz 903784 BLAKE2B 2570f12089728dd56bbcdf8715b7874fe11bed4790b80780b5850445188305a98695cbaac2e7a9b1cd53d9ae601a6a1be796219386dfa07da45610013151062d SHA512 eabfa7ae532fc6d392c7c89844ac28533787dd1a8e08ba797d6f0c5f70b9e60d74e3ca98e1a1e71e66744a7b48a3544c228289d7ac415619bfd81da15d6cf0fc
22 DIST peewee-3.15.2.gh.tar.gz 905707 BLAKE2B 7441586c8da5080a50964a4d8e5c73f28b8e1adeb45b4ced675c70f55cb3264460014dbab36f097fbacfc2fce8cf3f42ef36a6c1737a671ecd8bfede6af82c8e SHA512 6fa574161cdd224104bb428b9935574d3dc69ec574e5887ab68c7686d63af856787e3411e27703773c0e2f75f51915da569538662a908c225ace3c14c78892b9
23 +DIST peewee-3.15.3.gh.tar.gz 906883 BLAKE2B 4cc76b4288e8b8e36b4df2f42e31c8eeec314b2af28612d272699e6cc79d836fdc8800f18883e721fd98ca04bf58b0ed26ba61ab36280d28a32d1ca18ab6577c SHA512 bf297423178fca432add6e1ef2aba41ebd87d2bdc34e47872b5c35573dd9eedd42a290cad53dfce68e0bc0e07bb537064c25bf6b43b43d678302d6345eaa35a4
24
25 diff --git a/dev-python/peewee/peewee-3.15.3.ebuild b/dev-python/peewee/peewee-3.15.3.ebuild
26 new file mode 100644
27 index 000000000000..82b01219bc7a
28 --- /dev/null
29 +++ b/dev-python/peewee/peewee-3.15.3.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..11} )
38 +PYTHON_REQ_USE="sqlite"
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Small Python ORM"
43 +HOMEPAGE="
44 + https://github.com/coleifer/peewee/
45 + https://pypi.org/project/peewee/
46 +"
47 +SRC_URI="
48 + https://github.com/coleifer/${PN}/archive/${PV}.tar.gz
49 + -> ${P}.gh.tar.gz
50 +"
51 +
52 +LICENSE="BSD"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~riscv ~x86"
55 +IUSE="examples test"
56 +RESTRICT="!test? ( test )"
57 +
58 +BDEPEND="
59 + dev-python/cython[${PYTHON_USEDEP}]
60 +"
61 +
62 +distutils_enable_sphinx docs
63 +
64 +python_test() {
65 + "${EPYTHON}" runtests.py -v 2 || die "tests failed under ${EPYTHON}"
66 +}
67 +
68 +python_install_all() {
69 + use examples && DOCS=( examples/ )
70 + distutils-r1_python_install_all
71 +}